Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-sparc64 / checksum.h
blobdc8bed246fc982da713a3fcb74434a8eb9c84888
1 /* $Id: checksum.h,v 1.19 2002/02/09 19:49:31 davem Exp $ */
2 #ifndef __SPARC64_CHECKSUM_H
3 #define __SPARC64_CHECKSUM_H
5 /* checksum.h: IP/UDP/TCP checksum routines on the V9.
7 * Copyright(C) 1995 Linus Torvalds
8 * Copyright(C) 1995 Miguel de Icaza
9 * Copyright(C) 1996 David S. Miller
10 * Copyright(C) 1996 Eddie C. Dost
11 * Copyright(C) 1997 Jakub Jelinek
13 * derived from:
14 * Alpha checksum c-code
15 * ix86 inline assembly
16 * RFC1071 Computing the Internet Checksum
19 #include <linux/in6.h>
20 #include <asm/uaccess.h>
22 /* computes the checksum of a memory block at buff, length len,
23 * and adds in "sum" (32-bit)
25 * returns a 32-bit number suitable for feeding into itself
26 * or csum_tcpudp_magic
28 * this function must be called with even lengths, except
29 * for the last fragment, which may be odd
31 * it's best to have buff aligned on a 32-bit boundary
33 extern unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum);
35 /* the same as csum_partial, but copies from user space while it
36 * checksums
38 * here even more important to align src and dst on a 32-bit (or even
39 * better 64-bit) boundary
41 extern unsigned int csum_partial_copy_nocheck(const unsigned char *src,
42 unsigned char *dst,
43 int len, unsigned int sum);
45 extern long __csum_partial_copy_from_user(const unsigned char __user *src,
46 unsigned char *dst, int len,
47 unsigned int sum);
49 static inline unsigned int
50 csum_partial_copy_from_user(const unsigned char __user *src,
51 unsigned char *dst, int len,
52 unsigned int sum, int *err)
54 long ret = __csum_partial_copy_from_user(src, dst, len, sum);
55 if (ret < 0)
56 *err = -EFAULT;
57 return (unsigned int) ret;
60 /*
61 * Copy and checksum to user
63 #define HAVE_CSUM_COPY_USER
64 extern long __csum_partial_copy_to_user(const unsigned char *src,
65 unsigned char __user *dst, int len,
66 unsigned int sum);
68 static inline unsigned int
69 csum_and_copy_to_user(const unsigned char *src,
70 unsigned char __user *dst, int len,
71 unsigned int sum, int *err)
73 long ret = __csum_partial_copy_to_user(src, dst, len, sum);
74 if (ret < 0)
75 *err = -EFAULT;
76 return (unsigned int) ret;
79 /* ihl is always 5 or greater, almost always is 5, and iph is word aligned
80 * the majority of the time.
82 extern unsigned short ip_fast_csum(__const__ unsigned char *iph,
83 unsigned int ihl);
85 /* Fold a partial checksum without adding pseudo headers. */
86 static inline unsigned short csum_fold(unsigned int sum)
88 unsigned int tmp;
90 __asm__ __volatile__(
91 " addcc %0, %1, %1\n"
92 " srl %1, 16, %1\n"
93 " addc %1, %%g0, %1\n"
94 " xnor %%g0, %1, %0\n"
95 : "=&r" (sum), "=r" (tmp)
96 : "0" (sum), "1" (sum<<16)
97 : "cc");
98 return (sum & 0xffff);
101 static inline unsigned long csum_tcpudp_nofold(unsigned long saddr,
102 unsigned long daddr,
103 unsigned int len,
104 unsigned short proto,
105 unsigned int sum)
107 __asm__ __volatile__(
108 " addcc %1, %0, %0\n"
109 " addccc %2, %0, %0\n"
110 " addccc %3, %0, %0\n"
111 " addc %0, %%g0, %0\n"
112 : "=r" (sum), "=r" (saddr)
113 : "r" (daddr), "r" ((proto<<16)+len), "0" (sum), "1" (saddr)
114 : "cc");
115 return sum;
119 * computes the checksum of the TCP/UDP pseudo-header
120 * returns a 16-bit checksum, already complemented
122 static inline unsigned short int csum_tcpudp_magic(unsigned long saddr,
123 unsigned long daddr,
124 unsigned short len,
125 unsigned short proto,
126 unsigned int sum)
128 return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
131 #define _HAVE_ARCH_IPV6_CSUM
133 static inline unsigned short int csum_ipv6_magic(struct in6_addr *saddr,
134 struct in6_addr *daddr,
135 __u32 len,
136 unsigned short proto,
137 unsigned int sum)
139 __asm__ __volatile__ (
140 " addcc %3, %4, %%g7\n"
141 " addccc %5, %%g7, %%g7\n"
142 " lduw [%2 + 0x0c], %%g2\n"
143 " lduw [%2 + 0x08], %%g3\n"
144 " addccc %%g2, %%g7, %%g7\n"
145 " lduw [%2 + 0x04], %%g2\n"
146 " addccc %%g3, %%g7, %%g7\n"
147 " lduw [%2 + 0x00], %%g3\n"
148 " addccc %%g2, %%g7, %%g7\n"
149 " lduw [%1 + 0x0c], %%g2\n"
150 " addccc %%g3, %%g7, %%g7\n"
151 " lduw [%1 + 0x08], %%g3\n"
152 " addccc %%g2, %%g7, %%g7\n"
153 " lduw [%1 + 0x04], %%g2\n"
154 " addccc %%g3, %%g7, %%g7\n"
155 " lduw [%1 + 0x00], %%g3\n"
156 " addccc %%g2, %%g7, %%g7\n"
157 " addccc %%g3, %%g7, %0\n"
158 " addc 0, %0, %0\n"
159 : "=&r" (sum)
160 : "r" (saddr), "r" (daddr), "r"(htonl(len)),
161 "r"(htonl(proto)), "r"(sum)
162 : "g2", "g3", "g7", "cc");
164 return csum_fold(sum);
167 /* this routine is used for miscellaneous IP-like checksums, mainly in icmp.c */
168 static inline unsigned short ip_compute_csum(unsigned char * buff, int len)
170 return csum_fold(csum_partial(buff, len, 0));
173 #endif /* !(__SPARC64_CHECKSUM_H) */