Merge tag 'livepatching-for-6.3' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / arch / x86 / lib / csum-partial_64.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * arch/x86_64/lib/csum-partial.c
4 *
5 * This file contains network checksum routines that are better done
6 * in an architecture-specific manner due to speed.
7 */
8
9#include <linux/compiler.h>
e683014c 10#include <linux/export.h>
1da177e4 11#include <asm/checksum.h>
34115065 12#include <asm/word-at-a-time.h>
1da177e4 13
1da177e4
LT
14static inline unsigned short from32to16(unsigned a)
15{
16 unsigned short b = a >> 16;
17 asm("addw %w2,%w0\n\t"
18 "adcw $0,%w0\n"
19 : "=r" (b)
20 : "0" (b), "r" (a));
21 return b;
22}
23
24/*
34115065 25 * Do a checksum on an arbitrary memory area.
1da177e4
LT
26 * Returns a 32bit checksum.
27 *
28 * This isn't as time critical as it used to be because many NICs
29 * do hardware checksumming these days.
34115065
ED
30 *
31 * Still, with CHECKSUM_COMPLETE this is called to compute
32 * checksums on IPv6 headers (40 bytes) and other small parts.
33 * it's best to have buff aligned on a 64-bit boundary
1da177e4 34 */
34115065 35__wsum csum_partial(const void *buff, int len, __wsum sum)
1da177e4 36{
34115065
ED
37 u64 temp64 = (__force u64)sum;
38 unsigned odd, result;
1da177e4 39
1da177e4
LT
40 odd = 1 & (unsigned long) buff;
41 if (unlikely(odd)) {
34115065
ED
42 if (unlikely(len == 0))
43 return sum;
44 temp64 = ror32((__force u32)sum, 8);
45 temp64 += (*(unsigned char *)buff << 8);
1da177e4
LT
46 len--;
47 buff++;
48 }
1da177e4 49
34115065
ED
50 while (unlikely(len >= 64)) {
51 asm("addq 0*8(%[src]),%[res]\n\t"
52 "adcq 1*8(%[src]),%[res]\n\t"
53 "adcq 2*8(%[src]),%[res]\n\t"
54 "adcq 3*8(%[src]),%[res]\n\t"
55 "adcq 4*8(%[src]),%[res]\n\t"
56 "adcq 5*8(%[src]),%[res]\n\t"
57 "adcq 6*8(%[src]),%[res]\n\t"
58 "adcq 7*8(%[src]),%[res]\n\t"
59 "adcq $0,%[res]"
60 : [res] "+r" (temp64)
61 : [src] "r" (buff)
62 : "memory");
63 buff += 64;
64 len -= 64;
65 }
66
67 if (len & 32) {
68 asm("addq 0*8(%[src]),%[res]\n\t"
69 "adcq 1*8(%[src]),%[res]\n\t"
70 "adcq 2*8(%[src]),%[res]\n\t"
71 "adcq 3*8(%[src]),%[res]\n\t"
72 "adcq $0,%[res]"
73 : [res] "+r" (temp64)
74 : [src] "r" (buff)
75 : "memory");
76 buff += 32;
77 }
78 if (len & 16) {
79 asm("addq 0*8(%[src]),%[res]\n\t"
80 "adcq 1*8(%[src]),%[res]\n\t"
81 "adcq $0,%[res]"
82 : [res] "+r" (temp64)
83 : [src] "r" (buff)
84 : "memory");
85 buff += 16;
86 }
87 if (len & 8) {
88 asm("addq 0*8(%[src]),%[res]\n\t"
89 "adcq $0,%[res]"
90 : [res] "+r" (temp64)
91 : [src] "r" (buff)
92 : "memory");
93 buff += 8;
94 }
95 if (len & 7) {
34115065
ED
96 unsigned int shift = (8 - (len & 7)) * 8;
97 unsigned long trail;
1da177e4 98
34115065 99 trail = (load_unaligned_zeropad(buff) << shift) >> shift;
1da177e4 100
34115065
ED
101 asm("addq %[trail],%[res]\n\t"
102 "adcq $0,%[res]"
103 : [res] "+r" (temp64)
104 : [trail] "r" (trail));
1da177e4 105 }
34115065
ED
106 result = add32_with_carry(temp64 >> 32, temp64 & 0xffffffff);
107 if (unlikely(odd)) {
1da177e4
LT
108 result = from32to16(result);
109 result = ((result >> 8) & 0xff) | ((result & 0xff) << 8);
110 }
34115065 111 return (__force __wsum)result;
1da177e4 112}
784d5699 113EXPORT_SYMBOL(csum_partial);
1da177e4 114
1da177e4
LT
115/*
116 * this routine is used for miscellaneous IP-like checksums, mainly
117 * in icmp.c
118 */
a4f89fb7 119__sum16 ip_compute_csum(const void *buff, int len)
1da177e4
LT
120{
121 return csum_fold(csum_partial(buff,len,0));
122}
2ee60e17 123EXPORT_SYMBOL(ip_compute_csum);