blob: d2ca07bb88371448bfb15f1797f637ce9a16da3a [file] [log] [blame]
Kumar Galad95bbcb2005-10-20 11:44:46 -05001#ifndef _ASM_POWERPC_CHECKSUM_H
2#define _ASM_POWERPC_CHECKSUM_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5/*
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12/*
13 * This is a version of ip_compute_csum() optimized for IP headers,
14 * which always checksum on 4 octet boundaries. ihl is the number
15 * of 32-bit words and is always >= 5.
16 */
Anton Blanchard7a332b02013-09-23 12:04:51 +100017#ifdef CONFIG_GENERIC_CSUM
18#include <asm-generic/checksum.h>
19#else
Al Viro879178c2006-11-14 21:21:58 -080020extern __sum16 ip_fast_csum(const void *iph, unsigned int ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * computes the checksum of a memory block at buff, length len,
24 * and adds in "sum" (32-bit)
25 *
26 * returns a 32-bit number suitable for feeding into itself
27 * or csum_tcpudp_magic
28 *
29 * this function must be called with even lengths, except
30 * for the last fragment, which may be odd
31 *
32 * it's best to have buff aligned on a 32-bit boundary
33 */
Al Viro879178c2006-11-14 21:21:58 -080034extern __wsum csum_partial(const void *buff, int len, __wsum sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
Kumar Galad95bbcb2005-10-20 11:44:46 -050037 * Computes the checksum of a memory block at src, length len,
38 * and adds in "sum" (32-bit), while copying the block to dst.
39 * If an access exception occurs on src or dst, it stores -EFAULT
40 * to *src_err or *dst_err respectively (if that pointer is not
41 * NULL), and, for an error on src, zeroes the rest of dst.
42 *
43 * Like csum_partial, this must be called with even lengths,
44 * except for the last fragment.
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
Al Viro879178c2006-11-14 21:21:58 -080046extern __wsum csum_partial_copy_generic(const void *src, void *dst,
47 int len, __wsum sum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int *src_err, int *dst_err);
Anton Blanchardfdd374b2010-08-02 20:09:52 +000049
50#ifdef __powerpc64__
51#define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
52extern __wsum csum_and_copy_from_user(const void __user *src, void *dst,
53 int len, __wsum sum, int *err_ptr);
Anton Blanchard8c773912010-08-02 20:11:36 +000054#define HAVE_CSUM_COPY_USER
55extern __wsum csum_and_copy_to_user(const void *src, void __user *dst,
56 int len, __wsum sum, int *err_ptr);
Anton Blanchardfdd374b2010-08-02 20:09:52 +000057#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * the same as csum_partial, but copies from src to dst while it
60 * checksums.
61 */
Kumar Galad95bbcb2005-10-20 11:44:46 -050062#define csum_partial_copy_from_user(src, dst, len, sum, errp) \
Al Viro879178c2006-11-14 21:21:58 -080063 csum_partial_copy_generic((__force const void *)(src), (dst), (len), (sum), (errp), NULL)
Anton Blanchardfdd374b2010-08-02 20:09:52 +000064#endif
Kumar Galad95bbcb2005-10-20 11:44:46 -050065
66#define csum_partial_copy_nocheck(src, dst, len, sum) \
67 csum_partial_copy_generic((src), (dst), (len), (sum), NULL, NULL)
68
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
71 * turns a 32-bit partial checksum (e.g. from csum_partial) into a
72 * 1's complement 16-bit checksum.
73 */
Al Viro879178c2006-11-14 21:21:58 -080074static inline __sum16 csum_fold(__wsum sum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 unsigned int tmp;
77
78 /* swap the two 16-bit halves of sum */
79 __asm__("rlwinm %0,%1,16,0,31" : "=r" (tmp) : "r" (sum));
80 /* if there is a carry from adding the two 16-bit halves,
81 it will carry from the lower half into the upper half,
82 giving us the correct sum in the upper half. */
Al Viro879178c2006-11-14 21:21:58 -080083 return (__force __sum16)(~((__force u32)sum + tmp) >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
86/*
87 * this routine is used for miscellaneous IP-like checksums, mainly
88 * in icmp.c
89 */
Al Viro879178c2006-11-14 21:21:58 -080090static inline __sum16 ip_compute_csum(const void *buff, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 return csum_fold(csum_partial(buff, len, 0));
93}
94
Al Viro879178c2006-11-14 21:21:58 -080095static inline __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 unsigned short len,
97 unsigned short proto,
Al Viro879178c2006-11-14 21:21:58 -080098 __wsum sum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Al Viro879178c2006-11-14 21:21:58 -0800100#ifdef __powerpc64__
101 unsigned long s = (__force u32)sum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Al Viro879178c2006-11-14 21:21:58 -0800103 s += (__force u32)saddr;
104 s += (__force u32)daddr;
105 s += proto + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 s += (s >> 32);
Al Viro879178c2006-11-14 21:21:58 -0800107 return (__force __wsum) s;
Kumar Galad95bbcb2005-10-20 11:44:46 -0500108#else
Kumar Galad95bbcb2005-10-20 11:44:46 -0500109 __asm__("\n\
110 addc %0,%0,%1 \n\
111 adde %0,%0,%2 \n\
112 adde %0,%0,%3 \n\
113 addze %0,%0 \n\
114 "
115 : "=r" (sum)
Al Viro879178c2006-11-14 21:21:58 -0800116 : "r" (daddr), "r"(saddr), "r"(proto + len), "0"(sum));
117 return sum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#endif
Al Viro879178c2006-11-14 21:21:58 -0800119}
Anton Blanchard7a332b02013-09-23 12:04:51 +1000120
LEROY Christophe92c985f2015-05-19 17:18:55 +0200121/*
122 * computes the checksum of the TCP/UDP pseudo-header
123 * returns a 16-bit checksum, already complemented
124 */
125static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr,
126 unsigned short len,
127 unsigned short proto,
128 __wsum sum)
129{
130 return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum));
131}
132
LEROY Christophe501c8de2015-05-19 17:18:57 +0200133#define HAVE_ARCH_CSUM_ADD
134static inline __wsum csum_add(__wsum csum, __wsum addend)
135{
136#ifdef __powerpc64__
137 u64 res = (__force u64)csum;
138
139 res += (__force u64)addend;
140 return (__force __wsum)((u32)res + (res >> 32));
141#else
142 asm("addc %0,%0,%1;"
143 "addze %0,%0;"
Christophe Leroy11dfbf52015-09-22 16:34:21 +0200144 : "+r" (csum) : "r" (addend) : "xer");
LEROY Christophe501c8de2015-05-19 17:18:57 +0200145 return csum;
146#endif
147}
148
Anton Blanchard7a332b02013-09-23 12:04:51 +1000149#endif
Arnd Bergmann88ced032005-12-16 22:43:46 +0100150#endif /* __KERNEL__ */
Kumar Galad95bbcb2005-10-20 11:44:46 -0500151#endif