]> rtime.felk.cvut.cz Git - mcf548x/linux.git/blob - arch/m68k/include/asm/checksum.h
bfd09bcaa102936e06bc38f9cd8a6cb2107ceb3c
[mcf548x/linux.git] / arch / m68k / include / asm / checksum.h
1 #ifndef _M68K_CHECKSUM_H
2 #define _M68K_CHECKSUM_H
3
4 #include <linux/in6.h>
5
6 /*
7  * computes the checksum of a memory block at buff, length len,
8  * and adds in "sum" (32-bit)
9  *
10  * returns a 32-bit number suitable for feeding into itself
11  * or csum_tcpudp_magic
12  *
13  * this function must be called with even lengths, except
14  * for the last fragment, which may be odd
15  *
16  * it's best to have buff aligned on a 32-bit boundary
17  */
18 __wsum csum_partial(const void *buff, int len, __wsum sum);
19
20 /*
21  * the same as csum_partial, but copies from src while it
22  * checksums
23  *
24  * here even more important to align src and dst on a 32-bit (or even
25  * better 64-bit) boundary
26  */
27
28 extern __wsum csum_partial_copy_from_user(const void __user *src,
29                                                 void *dst,
30                                                 int len, __wsum sum,
31                                                 int *csum_err);
32
33 extern __wsum csum_partial_copy_nocheck(const void *src,
34                                               void *dst, int len,
35                                               __wsum sum);
36
37
38 #ifdef CONFIG_COLDFIRE
39
40 /*
41  *      The ColdFire cores don't support all the 68k instructions used
42  *      in the optimized checksum code below. So it reverts back to using
43  *      more standard C coded checksums. The fast checksum code is
44  *      significantly larger than the optimized version, so it is not
45  *      inlined here.
46  */
47 __sum16 ip_fast_csum(const void *iph, unsigned int ihl);
48
49 static inline __sum16 csum_fold(__wsum sum)
50 {
51         unsigned int tmp = (__force u32)sum;
52
53         tmp = (tmp & 0xffff) + (tmp >> 16);
54         tmp = (tmp & 0xffff) + (tmp >> 16);
55
56         return (__force __sum16)~tmp;
57 }
58
59 #else
60
61 /*
62  *      This is a version of ip_fast_csum() optimized for IP headers,
63  *      which always checksum on 4 octet boundaries.
64  */
65 static inline __sum16 ip_fast_csum(const void *iph, unsigned int ihl)
66 {
67         unsigned int sum = 0;
68         unsigned long tmp;
69 #ifdef CONFIG_COLDFIRE
70         #error need to do this in CF asm 
71 #else
72         __asm__ ("subqw #1,%2\n"
73                  "1:\t"
74                  "movel %1@+,%3\n\t"
75                  "addxl %3,%0\n\t"
76                  "dbra  %2,1b\n\t"
77                  "movel %0,%3\n\t"
78                  "swap  %3\n\t"
79                  "addxw %3,%0\n\t"
80                  "clrw  %3\n\t"
81                  "addxw %3,%0\n\t"
82                  : "=d" (sum), "=&a" (iph), "=&d" (ihl), "=&d" (tmp)
83                  : "0" (sum), "1" (iph), "2" (ihl)
84                  : "memory");
85 #endif
86         return (__force __sum16)~sum;
87 }
88
89 static inline __sum16 csum_fold(__wsum sum)
90 {
91         unsigned int tmp = (__force u32)sum;
92 #ifdef CONFIG_COLDFIRE
93         #error need to do this in CF asm 
94         /*tmp = (tmp & 0xffff) + (tmp >> 16);
95         tmp = (tmp & 0xffff) + (tmp >> 16);
96         return (__force __sum16) ~tmp;*/
97 #else
98
99         __asm__("swap %1\n\t"
100                 "addw %1, %0\n\t"
101                 "clrw %1\n\t"
102                 "addxw %1, %0"
103                 : "=&d" (sum), "=&d" (tmp)
104                 : "0" (sum), "1" (tmp));
105 #endif
106         return (__force __sum16)~sum;
107 }
108
109 #endif /* CONFIG_COLDFIRE */
110
111 static inline __wsum
112 csum_tcpudp_nofold(__be32 saddr, __be32 daddr, unsigned short len,
113                   unsigned short proto, __wsum sum)
114 {
115         __asm__ ("addl  %2,%0\n\t"
116                  "addxl %3,%0\n\t"
117                  "addxl %4,%0\n\t"
118                  "clrl %1\n\t"
119                  "addxl %1,%0"
120                  : "=&d" (sum), "=d" (saddr)
121                  : "g" (daddr), "1" (saddr), "d" (len + proto),
122                    "0" (sum));
123         return sum;
124 }
125
126
127 /*
128  * computes the checksum of the TCP/UDP pseudo-header
129  * returns a 16-bit checksum, already complemented
130  */
131 static inline __sum16
132 csum_tcpudp_magic(__be32 saddr, __be32 daddr, unsigned short len,
133                   unsigned short proto, __wsum sum)
134 {
135         return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
136 }
137
138 /*
139  * this routine is used for miscellaneous IP-like checksums, mainly
140  * in icmp.c
141  */
142
143 static inline __sum16 ip_compute_csum(const void *buff, int len)
144 {
145         return csum_fold (csum_partial(buff, len, 0));
146 }
147
148 #define _HAVE_ARCH_IPV6_CSUM
149 static __inline__ __sum16
150 csum_ipv6_magic(const struct in6_addr *saddr, const struct in6_addr *daddr,
151                 __u32 len, unsigned short proto, __wsum sum)
152 {
153         register unsigned long tmp;
154         __asm__("addl %2@,%0\n\t"
155                 "movel %2@(4),%1\n\t"
156                 "addxl %1,%0\n\t"
157                 "movel %2@(8),%1\n\t"
158                 "addxl %1,%0\n\t"
159                 "movel %2@(12),%1\n\t"
160                 "addxl %1,%0\n\t"
161                 "movel %3@,%1\n\t"
162                 "addxl %1,%0\n\t"
163                 "movel %3@(4),%1\n\t"
164                 "addxl %1,%0\n\t"
165                 "movel %3@(8),%1\n\t"
166                 "addxl %1,%0\n\t"
167                 "movel %3@(12),%1\n\t"
168                 "addxl %1,%0\n\t"
169                 "addxl %4,%0\n\t"
170                 "clrl %1\n\t"
171                 "addxl %1,%0"
172                 : "=&d" (sum), "=&d" (tmp)
173                 : "a" (saddr), "a" (daddr), "d" (len + proto),
174                   "0" (sum));
175
176         return csum_fold(sum);
177 }
178
179 #endif /* _M68K_CHECKSUM_H */