2 * linux/arch/arm/lib/csumpartialcopyuser.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 * 27/03/03 Ian Molton Clean up CONFIG_CPU
13 #include <linux/linkage.h>
14 #include <asm/assembler.h>
15 #include <asm/errno.h>
16 #include <asm/asm-offsets.h>
22 stmfd sp!, {r1 - r2, r4 - r8, fp, ip, lr, pc}
27 ldmfd sp, {r1, r2, r4-r8, fp, sp, pc}
31 9999: ldrbt \reg1, [r0], $1
32 .section __ex_table, "a"
38 .macro load2b, reg1, reg2
39 9999: ldrbt \reg1, [r0], $1
40 9998: ldrbt \reg2, [r0], $1
41 .section __ex_table, "a"
48 9999: ldrt \reg1, [r0], $4
49 .section __ex_table, "a"
55 .macro load2l, reg1, reg2
56 9999: ldrt \reg1, [r0], $4
57 9998: ldrt \reg2, [r0], $4
58 .section __ex_table, "a"
64 .macro load4l, reg1, reg2, reg3, reg4
65 9999: ldrt \reg1, [r0], $4
66 9998: ldrt \reg2, [r0], $4
67 9997: ldrt \reg3, [r0], $4
68 9996: ldrt \reg4, [r0], $4
69 .section __ex_table, "a"
79 * csum_partial_copy_from_user(const char *src, char *dst, int len, int sum, int *err_ptr)
80 * r0 = src, r1 = dst, r2 = len, r3 = sum, [sp] = *err_ptr
81 * Returns : r0 = checksum, [[sp, #0], #0] = 0 or -EFAULT
84 #define FN_ENTRY ENTRY(csum_partial_copy_from_user)
86 #include "csumpartialcopygeneric.S"
89 * FIXME: minor buglet here
90 * We don't return the checksum for the data present in the buffer. To do
91 * so properly, we would have to add in whatever registers were loaded before
92 * the fault, which, with the current asm above is not predictable.
96 6001: mov r4, #-EFAULT
97 ldr r5, [fp, #4] @ *err_ptr
99 ldmia sp, {r1, r2} @ retrieve dst, len
101 mov r0, #0 @ zero the buffer