This source file includes following definitions.
- csum_partial_copy_from_user
- csum_and_copy_to_user
- csum_fold
- csum_tcpudp_nofold
- csum_tcpudp_magic
- csum_ipv6_magic
- ip_compute_csum
- csum_add
1
2 #ifndef __SPARC64_CHECKSUM_H
3 #define __SPARC64_CHECKSUM_H
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #include <linux/in6.h>
20 #include <linux/uaccess.h>
21
22
23
24
25
26
27
28
29
30
31
32
33 __wsum csum_partial(const void * buff, int len, __wsum sum);
34
35
36
37
38
39
40
41 __wsum csum_partial_copy_nocheck(const void *src, void *dst,
42 int len, __wsum sum);
43
44 long __csum_partial_copy_from_user(const void __user *src,
45 void *dst, int len,
46 __wsum sum);
47
48 static inline __wsum
49 csum_partial_copy_from_user(const void __user *src,
50 void *dst, int len,
51 __wsum sum, int *err)
52 {
53 long ret = __csum_partial_copy_from_user(src, dst, len, sum);
54 if (ret < 0)
55 *err = -EFAULT;
56 return (__force __wsum) ret;
57 }
58
59
60
61
62 #define HAVE_CSUM_COPY_USER
63 long __csum_partial_copy_to_user(const void *src,
64 void __user *dst, int len,
65 __wsum sum);
66
67 static inline __wsum
68 csum_and_copy_to_user(const void *src,
69 void __user *dst, int len,
70 __wsum sum, int *err)
71 {
72 long ret = __csum_partial_copy_to_user(src, dst, len, sum);
73 if (ret < 0)
74 *err = -EFAULT;
75 return (__force __wsum) ret;
76 }
77
78
79
80
81 __sum16 ip_fast_csum(const void *iph, unsigned int ihl);
82
83
84 static inline __sum16 csum_fold(__wsum sum)
85 {
86 unsigned int tmp;
87
88 __asm__ __volatile__(
89 " addcc %0, %1, %1\n"
90 " srl %1, 16, %1\n"
91 " addc %1, %%g0, %1\n"
92 " xnor %%g0, %1, %0\n"
93 : "=&r" (sum), "=r" (tmp)
94 : "0" (sum), "1" ((__force u32)sum<<16)
95 : "cc");
96 return (__force __sum16)sum;
97 }
98
99 static inline __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
100 __u32 len, __u8 proto,
101 __wsum sum)
102 {
103 __asm__ __volatile__(
104 " addcc %1, %0, %0\n"
105 " addccc %2, %0, %0\n"
106 " addccc %3, %0, %0\n"
107 " addc %0, %%g0, %0\n"
108 : "=r" (sum), "=r" (saddr)
109 : "r" (daddr), "r" (proto + len), "0" (sum), "1" (saddr)
110 : "cc");
111 return sum;
112 }
113
114
115
116
117
118 static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr,
119 __u32 len, __u8 proto,
120 __wsum sum)
121 {
122 return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
123 }
124
125 #define _HAVE_ARCH_IPV6_CSUM
126
127 static inline __sum16 csum_ipv6_magic(const struct in6_addr *saddr,
128 const struct in6_addr *daddr,
129 __u32 len, __u8 proto, __wsum sum)
130 {
131 __asm__ __volatile__ (
132 " addcc %3, %4, %%g7\n"
133 " addccc %5, %%g7, %%g7\n"
134 " lduw [%2 + 0x0c], %%g2\n"
135 " lduw [%2 + 0x08], %%g3\n"
136 " addccc %%g2, %%g7, %%g7\n"
137 " lduw [%2 + 0x04], %%g2\n"
138 " addccc %%g3, %%g7, %%g7\n"
139 " lduw [%2 + 0x00], %%g3\n"
140 " addccc %%g2, %%g7, %%g7\n"
141 " lduw [%1 + 0x0c], %%g2\n"
142 " addccc %%g3, %%g7, %%g7\n"
143 " lduw [%1 + 0x08], %%g3\n"
144 " addccc %%g2, %%g7, %%g7\n"
145 " lduw [%1 + 0x04], %%g2\n"
146 " addccc %%g3, %%g7, %%g7\n"
147 " lduw [%1 + 0x00], %%g3\n"
148 " addccc %%g2, %%g7, %%g7\n"
149 " addccc %%g3, %%g7, %0\n"
150 " addc 0, %0, %0\n"
151 : "=&r" (sum)
152 : "r" (saddr), "r" (daddr), "r"(htonl(len)),
153 "r"(htonl(proto)), "r"(sum)
154 : "g2", "g3", "g7", "cc");
155
156 return csum_fold(sum);
157 }
158
159
160 static inline __sum16 ip_compute_csum(const void *buff, int len)
161 {
162 return csum_fold(csum_partial(buff, len, 0));
163 }
164
165 #define HAVE_ARCH_CSUM_ADD
166 static inline __wsum csum_add(__wsum csum, __wsum addend)
167 {
168 __asm__ __volatile__(
169 "addcc %0, %1, %0\n"
170 "addx %0, %%g0, %0"
171 : "=r" (csum)
172 : "r" (addend), "0" (csum));
173
174 return csum;
175 }
176
177 #endif