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>
21 stmfd sp!, {r1, r2, r4 - r8, lr}
25 ldmfd sp!, {r1, r2, r4 - r8, pc}
32 .macro load2b, reg1, reg2
41 .macro load2l, reg1, reg2
46 .macro load4l, reg1, reg2, reg3, reg4
55 * csum_partial_copy_from_user(const char *src, char *dst, int len, int sum, int *err_ptr)
56 * r0 = src, r1 = dst, r2 = len, r3 = sum, [sp] = *err_ptr
57 * Returns : r0 = checksum, [[sp, #0], #0] = 0 or -EFAULT
60 #define FN_ENTRY ENTRY(csum_partial_copy_from_user)
61 #define FN_EXIT ENDPROC(csum_partial_copy_from_user)
63 #include "csumpartialcopygeneric.S"
66 * FIXME: minor buglet here
67 * We don't return the checksum for the data present in the buffer. To do
68 * so properly, we would have to add in whatever registers were loaded before
69 * the fault, which, with the current asm above is not predictable.
73 9001: mov r4, #-EFAULT
74 ldr r5, [fp, #4] @ *err_ptr
76 ldmia sp, {r1, r2} @ retrieve dst, len
78 mov r0, #0 @ zero the buffer