2 * This file contains assembly-language implementations
3 * of IP-style 1's complement checksum routines.
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
12 * Severely hacked about by Paul Mackerras (paulus@cs.anu.edu.au).
15 #include <linux/sys.h>
16 #include <asm/processor.h>
17 #include <asm/cache.h>
18 #include <asm/errno.h>
19 #include <asm/ppc_asm.h>
24 * computes the checksum of a memory block at buff, length len,
25 * and adds in "sum" (32-bit)
27 * __csum_partial(buff, len, sum)
29 _GLOBAL(__csum_partial)
31 srawi. r6,r4,2 /* Divide len by 4 and also clear carry */
32 beq 3f /* if we're doing < 4 bytes */
33 andi. r0,r3,2 /* Align buffer to longword boundary */
35 lhz r0,4(r3) /* do 2 bytes to get aligned */
38 srwi. r6,r4,2 /* # words to do */
41 1: andi. r6,r6,3 /* Prepare to handle words 4 by 4 */
47 21: srwi. r6,r4,4 /* # blocks of 4 words to do */
67 slwi r0,r0,8 /* Upper byte of word */
69 5: addze r3,r5 /* add in final carry */
73 * Computes the checksum of a memory block at src, length len,
74 * and adds in "sum" (32-bit), while copying the block to dst.
75 * If an access exception occurs on src or dst, it stores -EFAULT
76 * to *src_err or *dst_err respectively, and (for an error on
77 * src) zeroes the rest of dst.
79 * csum_partial_copy_generic(src, dst, len, sum, src_err, dst_err)
81 #define CSUM_COPY_16_BYTES_WITHEX(n) \
103 #define CSUM_COPY_16_BYTES_EXCODE(n) \
104 .section __ex_table,"a"; \
106 .long 8 ## n ## 0b,src_error; \
107 .long 8 ## n ## 1b,src_error; \
108 .long 8 ## n ## 2b,src_error; \
109 .long 8 ## n ## 3b,src_error; \
110 .long 8 ## n ## 4b,dst_error; \
111 .long 8 ## n ## 5b,dst_error; \
112 .long 8 ## n ## 6b,dst_error; \
113 .long 8 ## n ## 7b,dst_error; \
117 .stabs "arch/powerpc/lib/",N_SO,0,0,0f
118 .stabs "checksum_32.S",N_SO,0,0,0f
121 CACHELINE_BYTES = L1_CACHE_BYTES
122 LG_CACHELINE_BYTES = L1_CACHE_SHIFT
123 CACHELINE_MASK = (L1_CACHE_BYTES-1)
125 _GLOBAL(csum_partial_copy_generic)
130 andi. r0,r4,1 /* is destination address even ? */
136 andi. r0,r0,CACHELINE_MASK /* # bytes to start of cache line */
139 cmplw 0,r5,r0 /* is this more than total to do? */
140 blt 63f /* if not much to do */
141 andi. r8,r0,3 /* get it word-aligned first */
145 70: lbz r9,4(r4) /* do some bytes */
157 72: lwzu r9,4(r4) /* do some words */
162 58: srwi. r0,r5,LG_CACHELINE_BYTES /* # complete cachelines */
163 clrlwi r5,r5,32-LG_CACHELINE_BYTES
167 /* Here we decide how far ahead to prefetch the source */
173 #if MAX_COPY_PREFETCH > 1
174 /* Heuristically, for large transfers we prefetch
175 MAX_COPY_PREFETCH cachelines ahead. For small transfers
176 we prefetch 1 cacheline ahead. */
177 cmpwi r0,MAX_COPY_PREFETCH
179 li r7,MAX_COPY_PREFETCH
182 addi r3,r3,CACHELINE_BYTES
186 addi r3,r3,CACHELINE_BYTES
187 #endif /* MAX_COPY_PREFETCH > 1 */
195 /* the main body of the cacheline loop */
196 CSUM_COPY_16_BYTES_WITHEX(0)
197 #if L1_CACHE_BYTES >= 32
198 CSUM_COPY_16_BYTES_WITHEX(1)
199 #if L1_CACHE_BYTES >= 64
200 CSUM_COPY_16_BYTES_WITHEX(2)
201 CSUM_COPY_16_BYTES_WITHEX(3)
202 #if L1_CACHE_BYTES >= 128
203 CSUM_COPY_16_BYTES_WITHEX(4)
204 CSUM_COPY_16_BYTES_WITHEX(5)
205 CSUM_COPY_16_BYTES_WITHEX(6)
206 CSUM_COPY_16_BYTES_WITHEX(7)
240 rlwinm r3,r3,8,0,31 /* swap bytes for odd destination */
262 .section __ex_table,"a"
272 * this stuff handles faults in the cacheline loop and branches to either
273 * src_error (if in read part) or dst_error (if in write part)
275 CSUM_COPY_16_BYTES_EXCODE(0)
276 #if L1_CACHE_BYTES >= 32
277 CSUM_COPY_16_BYTES_EXCODE(1)
278 #if L1_CACHE_BYTES >= 64
279 CSUM_COPY_16_BYTES_EXCODE(2)
280 CSUM_COPY_16_BYTES_EXCODE(3)
281 #if L1_CACHE_BYTES >= 128
282 CSUM_COPY_16_BYTES_EXCODE(4)
283 CSUM_COPY_16_BYTES_EXCODE(5)
284 CSUM_COPY_16_BYTES_EXCODE(6)
285 CSUM_COPY_16_BYTES_EXCODE(7)
290 .section __ex_table,"a"