2 * linux/arch/arm/lib/csumpartial.S
4 * Copyright (C) 1995-1998 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/linkage.h>
11 #include <asm/assembler.h>
16 * Function: __u32 csum_partial(const char *src, int len, __u32 sum)
17 * Params : r0 = buffer, r1 = len, r2 = checksum
18 * Returns : r0 = new checksum
25 td1 .req r4 @ save before use
26 td2 .req r5 @ save before use
34 * Handle 0 to 7 bytes, with any alignment of source and
35 * destination pointers. Note that when we get here, C = 0
37 .Lless8: teq len, #0 @ check for zero count
40 /* we must have at least one byte. */
41 tst buf, #1 @ odd address?
42 movne sum, sum, ror #8
45 adcnes sum, sum, td0, put_byte_1
50 /* we are now half-word aligned */
53 #if __LINUX_ARM_ARCH__ >= 4
61 orr td0, td0, td3, lsl #8
63 orr td0, td3, td0, lsl #8
70 .Lless8_byte: tst len, #1 @ odd number of bytes
71 ldrneb td0, [buf], #1 @ include last byte
72 adcnes sum, sum, td0, put_byte_0 @ update checksum
74 .Ldone: adc r0, sum, #0 @ collect up the last carry
76 tst td0, #1 @ check buffer alignment
77 movne r0, r0, ror #8 @ rotate checksum by 8 bits
78 ldr pc, [sp], #4 @ return
80 .Lnot_aligned: tst buf, #1 @ odd address
81 ldrneb td0, [buf], #1 @ make even
83 adcnes sum, sum, td0, put_byte_1 @ update checksum
85 tst buf, #2 @ 32-bit aligned?
86 #if __LINUX_ARM_ARCH__ >= 4
87 ldrneh td0, [buf], #2 @ make 32-bit aligned
94 orrne td0, td0, ip, lsl #8
96 orrne td0, ip, td0, lsl #8
99 adcnes sum, sum, td0 @ update checksum
104 cmp len, #8 @ Ensure that we have at least
105 blo .Lless8 @ 8 bytes to copy.
108 movne sum, sum, ror #8
110 adds sum, sum, #0 @ C = 0
111 tst buf, #3 @ Test destination alignment
112 blne .Lnot_aligned @ align destination, return here
118 2: ldmia buf!, {td0, td1, td2, td3}
123 ldmia buf!, {td0, td1, td2, td3}
133 3: tst len, #0x1c @ should not change C
136 4: ldr td0, [buf], #4
142 ENDPROC(csum_partial)