vserver 1.9.5.x5
[linux-2.6.git] / include / asm-sparc64 / checksum.h
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
4
5 /*  checksum.h:  IP/UDP/TCP checksum routines on the V9.
6  *
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
12  *
13  * derived from:
14  *      Alpha checksum c-code
15  *      ix86 inline assembly
16  *      RFC1071 Computing the Internet Checksum
17  */
18
19 #include <linux/in6.h>
20 #include <asm/uaccess.h>
21
22 /* computes the checksum of a memory block at buff, length len,
23  * and adds in "sum" (32-bit)
24  *
25  * returns a 32-bit number suitable for feeding into itself
26  * or csum_tcpudp_magic
27  *
28  * this function must be called with even lengths, except
29  * for the last fragment, which may be odd
30  *
31  * it's best to have buff aligned on a 32-bit boundary
32  */
33 extern unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum);
34
35 /* the same as csum_partial, but copies from user space while it
36  * checksums
37  *
38  * here even more important to align src and dst on a 32-bit (or even
39  * better 64-bit) boundary
40  */
41 extern unsigned int csum_partial_copy_sparc64(const unsigned char *src, unsigned char *dst,
42                                               int len, unsigned int sum);
43                         
44 static inline unsigned int 
45 csum_partial_copy_nocheck (const unsigned char *src, unsigned char *dst, int len,
46                            unsigned int sum)
47 {
48         int ret;
49         unsigned char cur_ds = get_thread_current_ds();
50         __asm__ __volatile__ ("wr %%g0, %0, %%asi" : : "i" (ASI_P));
51         ret = csum_partial_copy_sparc64(src, dst, len, sum);
52         __asm__ __volatile__ ("wr %%g0, %0, %%asi" : : "r" (cur_ds));
53         return ret;
54 }
55
56 static inline unsigned int 
57 csum_partial_copy_from_user(const unsigned char __user *src, unsigned char *dst, int len,
58                             unsigned int sum, int *err)
59 {
60         __asm__ __volatile__ ("stx      %0, [%%sp + 0x7ff + 128]"
61                               : : "r" (err));
62         return csum_partial_copy_sparc64((__force const char *) src,
63                                          dst, len, sum);
64 }
65
66 /* 
67  *      Copy and checksum to user
68  */
69 #define HAVE_CSUM_COPY_USER
70 extern unsigned int csum_partial_copy_user_sparc64(const unsigned char *src, unsigned char __user *dst,
71                                                    int len, unsigned int sum);
72
73 static inline unsigned int 
74 csum_and_copy_to_user(const unsigned char *src, unsigned char __user *dst, int len,
75                       unsigned int sum, int *err)
76 {
77         __asm__ __volatile__ ("stx      %0, [%%sp + 0x7ff + 128]"
78                               : : "r" (err));
79         return csum_partial_copy_user_sparc64(src, dst, len, sum);
80 }
81   
82 /* ihl is always 5 or greater, almost always is 5, and iph is word aligned
83  * the majority of the time.
84  */
85 extern unsigned short ip_fast_csum(__const__ unsigned char *iph,
86                                    unsigned int ihl);
87
88 /* Fold a partial checksum without adding pseudo headers. */
89 static inline unsigned short csum_fold(unsigned int sum)
90 {
91         unsigned int tmp;
92
93         __asm__ __volatile__(
94 "       addcc           %0, %1, %1\n"
95 "       srl             %1, 16, %1\n"
96 "       addc            %1, %%g0, %1\n"
97 "       xnor            %%g0, %1, %0\n"
98         : "=&r" (sum), "=r" (tmp)
99         : "0" (sum), "1" (sum<<16)
100         : "cc");
101         return (sum & 0xffff);
102 }
103
104 static inline unsigned long csum_tcpudp_nofold(unsigned long saddr,
105                                                unsigned long daddr,
106                                                unsigned int len,
107                                                unsigned short proto,
108                                                unsigned int sum)
109 {
110         __asm__ __volatile__(
111 "       addcc           %1, %0, %0\n"
112 "       addccc          %2, %0, %0\n"
113 "       addccc          %3, %0, %0\n"
114 "       addc            %0, %%g0, %0\n"
115         : "=r" (sum), "=r" (saddr)
116         : "r" (daddr), "r" ((proto<<16)+len), "0" (sum), "1" (saddr)
117         : "cc");
118         return sum;
119 }
120
121 /*
122  * computes the checksum of the TCP/UDP pseudo-header
123  * returns a 16-bit checksum, already complemented
124  */
125 static inline unsigned short int csum_tcpudp_magic(unsigned long saddr,
126                                                    unsigned long daddr,
127                                                    unsigned short len,
128                                                    unsigned short proto,
129                                                    unsigned int sum) 
130 {
131         return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
132 }
133
134 #define _HAVE_ARCH_IPV6_CSUM
135
136 static inline unsigned short int csum_ipv6_magic(struct in6_addr *saddr,
137                                                  struct in6_addr *daddr,
138                                                  __u32 len,
139                                                  unsigned short proto,
140                                                  unsigned int sum) 
141 {
142         __asm__ __volatile__ (
143 "       addcc           %3, %4, %%g7\n"
144 "       addccc          %5, %%g7, %%g7\n"
145 "       lduw            [%2 + 0x0c], %%g2\n"
146 "       lduw            [%2 + 0x08], %%g3\n"
147 "       addccc          %%g2, %%g7, %%g7\n"
148 "       lduw            [%2 + 0x04], %%g2\n"
149 "       addccc          %%g3, %%g7, %%g7\n"
150 "       lduw            [%2 + 0x00], %%g3\n"
151 "       addccc          %%g2, %%g7, %%g7\n"
152 "       lduw            [%1 + 0x0c], %%g2\n"
153 "       addccc          %%g3, %%g7, %%g7\n"
154 "       lduw            [%1 + 0x08], %%g3\n"
155 "       addccc          %%g2, %%g7, %%g7\n"
156 "       lduw            [%1 + 0x04], %%g2\n"
157 "       addccc          %%g3, %%g7, %%g7\n"
158 "       lduw            [%1 + 0x00], %%g3\n"
159 "       addccc          %%g2, %%g7, %%g7\n"
160 "       addccc          %%g3, %%g7, %0\n"
161 "       addc            0, %0, %0\n"
162         : "=&r" (sum)
163         : "r" (saddr), "r" (daddr), "r"(htonl(len)),
164           "r"(htonl(proto)), "r"(sum)
165         : "g2", "g3", "g7", "cc");
166
167         return csum_fold(sum);
168 }
169
170 /* this routine is used for miscellaneous IP-like checksums, mainly in icmp.c */
171 static inline unsigned short ip_compute_csum(unsigned char * buff, int len)
172 {
173         return csum_fold(csum_partial(buff, len, 0));
174 }
175
176 #endif /* !(__SPARC64_CHECKSUM_H) */