2 * include/asm-xtensa/checksum.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
11 #ifndef _XTENSA_CHECKSUM_H
12 #define _XTENSA_CHECKSUM_H
14 #include <linux/in6.h>
15 #include <linux/uaccess.h>
19 * computes the checksum of a memory block at buff, length len,
20 * and adds in "sum" (32-bit)
22 * returns a 32-bit number suitable for feeding into itself
23 * or csum_tcpudp_magic
25 * this function must be called with even lengths, except
26 * for the last fragment, which may be odd
28 * it's best to have buff aligned on a 32-bit boundary
30 asmlinkage __wsum
csum_partial(const void *buff
, int len
, __wsum sum
);
33 * the same as csum_partial, but copies from src while it
34 * checksums, and handles user-space pointer exceptions correctly, when needed.
36 * here even more important to align src and dst on a 32-bit (or even
37 * better 64-bit) boundary
40 asmlinkage __wsum
csum_partial_copy_generic(const void *src
, void *dst
, int len
);
42 #define _HAVE_ARCH_CSUM_AND_COPY
44 * Note: when you get a NULL pointer exception here this means someone
45 * passed in an incorrect kernel address to one of these functions.
48 __wsum
csum_partial_copy_nocheck(const void *src
, void *dst
, int len
)
50 return csum_partial_copy_generic(src
, dst
, len
);
53 #define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
55 __wsum
csum_and_copy_from_user(const void __user
*src
, void *dst
,
58 if (!access_ok(src
, len
))
60 return csum_partial_copy_generic((__force
const void *)src
, dst
, len
);
64 * Fold a partial checksum
67 static __inline__ __sum16
csum_fold(__wsum sum
)
70 __asm__("extui %1, %0, 16, 16\n\t"
71 "extui %0 ,%0, 0, 16\n\t"
75 "extui %0, %0, 16, 16\n\t"
78 "extui %0, %0, 0, 16\n\t"
79 : "=r" (sum
), "=&r" (__dummy
)
81 return (__force __sum16
)sum
;
85 * This is a version of ip_compute_csum() optimized for IP headers,
86 * which always checksum on 4 octet boundaries.
88 static __inline__ __sum16
ip_fast_csum(const void *iph
, unsigned int ihl
)
90 unsigned int sum
, tmp
, endaddr
;
104 "bgeu %0, %3, 1f\n\t"
108 #if !XCHAL_HAVE_LOOPS
112 /* Since the input registers which are loaded with iph and ihl
113 are modified, we must also specify them as outputs, or gcc
114 will assume they contain their original values. */
115 : "=r" (sum
), "=r" (iph
), "=r" (ihl
), "=&r" (tmp
),
117 : "1" (iph
), "2" (ihl
)
120 return csum_fold(sum
);
123 static __inline__ __wsum
csum_tcpudp_nofold(__be32 saddr
, __be32 daddr
,
124 __u32 len
, __u8 proto
,
129 unsigned long len_proto
= (len
+ proto
) << 8;
130 #elif defined(__XTENSA_EB__)
131 unsigned long len_proto
= len
+ proto
;
133 # error processor byte order undefined!
135 __asm__("add %0, %0, %1\n\t"
136 "bgeu %0, %1, 1f\n\t"
140 "bgeu %0, %2, 1f\n\t"
144 "bgeu %0, %3, 1f\n\t"
147 : "=r" (sum
), "=r" (len_proto
)
148 : "r" (daddr
), "r" (saddr
), "1" (len_proto
), "0" (sum
));
153 * computes the checksum of the TCP/UDP pseudo-header
154 * returns a 16-bit checksum, already complemented
156 static __inline__ __sum16
csum_tcpudp_magic(__be32 saddr
, __be32 daddr
,
157 __u32 len
, __u8 proto
,
160 return csum_fold(csum_tcpudp_nofold(saddr
,daddr
,len
,proto
,sum
));
164 * this routine is used for miscellaneous IP-like checksums, mainly
168 static __inline__ __sum16
ip_compute_csum(const void *buff
, int len
)
170 return csum_fold (csum_partial(buff
, len
, 0));
173 #define _HAVE_ARCH_IPV6_CSUM
174 static __inline__ __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
175 const struct in6_addr
*daddr
,
176 __u32 len
, __u8 proto
,
179 unsigned int __dummy
;
180 __asm__("l32i %1, %2, 0\n\t"
182 "bgeu %0, %1, 1f\n\t"
187 "bgeu %0, %1, 1f\n\t"
192 "bgeu %0, %1, 1f\n\t"
195 "l32i %1, %2, 12\n\t"
197 "bgeu %0, %1, 1f\n\t"
202 "bgeu %0, %1, 1f\n\t"
207 "bgeu %0, %1, 1f\n\t"
212 "bgeu %0, %1, 1f\n\t"
215 "l32i %1, %3, 12\n\t"
217 "bgeu %0, %1, 1f\n\t"
221 "bgeu %0, %4, 1f\n\t"
225 "bgeu %0, %5, 1f\n\t"
228 : "=r" (sum
), "=&r" (__dummy
)
229 : "r" (saddr
), "r" (daddr
),
230 "r" (htonl(len
)), "r" (htonl(proto
)), "0" (sum
)
233 return csum_fold(sum
);
237 * Copy and checksum to user
239 #define HAVE_CSUM_COPY_USER
240 static __inline__ __wsum
csum_and_copy_to_user(const void *src
,
241 void __user
*dst
, int len
)
243 if (!access_ok(dst
, len
))
245 return csum_partial_copy_generic(src
, (__force
void *)dst
, len
);