csumpartialcopyuser.S 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * linux/arch/arm/lib/csumpartialcopyuser.S
  3. *
  4. * Copyright (C) 1995-1998 Russell King
  5. *
  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.
  9. *
  10. * 27/03/03 Ian Molton Clean up CONFIG_CPU
  11. *
  12. */
  13. #include <linux/linkage.h>
  14. #include <asm/assembler.h>
  15. #include <asm/errno.h>
  16. #include <asm/asm-offsets.h>
  17. .text
  18. .macro save_regs
  19. stmfd sp!, {r1, r2, r4 - r8, lr}
  20. .endm
  21. .macro load_regs
  22. ldmfd sp!, {r1, r2, r4 - r8, pc}
  23. .endm
  24. .macro load1b, reg1
  25. ldrusr \reg1, r0, 1
  26. .endm
  27. .macro load2b, reg1, reg2
  28. ldrusr \reg1, r0, 1
  29. ldrusr \reg2, r0, 1
  30. .endm
  31. .macro load1l, reg1
  32. ldrusr \reg1, r0, 4
  33. .endm
  34. .macro load2l, reg1, reg2
  35. ldrusr \reg1, r0, 4
  36. ldrusr \reg2, r0, 4
  37. .endm
  38. .macro load4l, reg1, reg2, reg3, reg4
  39. ldrusr \reg1, r0, 4
  40. ldrusr \reg2, r0, 4
  41. ldrusr \reg3, r0, 4
  42. ldrusr \reg4, r0, 4
  43. .endm
  44. /*
  45. * unsigned int
  46. * csum_partial_copy_from_user(const char *src, char *dst, int len, int sum, int *err_ptr)
  47. * r0 = src, r1 = dst, r2 = len, r3 = sum, [sp] = *err_ptr
  48. * Returns : r0 = checksum, [[sp, #0], #0] = 0 or -EFAULT
  49. */
  50. #define FN_ENTRY ENTRY(csum_partial_copy_from_user)
  51. #define FN_EXIT ENDPROC(csum_partial_copy_from_user)
  52. #include "csumpartialcopygeneric.S"
  53. /*
  54. * FIXME: minor buglet here
  55. * We don't return the checksum for the data present in the buffer. To do
  56. * so properly, we would have to add in whatever registers were loaded before
  57. * the fault, which, with the current asm above is not predictable.
  58. */
  59. .pushsection .fixup,"ax"
  60. .align 4
  61. 9001: mov r4, #-EFAULT
  62. ldr r5, [sp, #8*4] @ *err_ptr
  63. str r4, [r5]
  64. ldmia sp, {r1, r2} @ retrieve dst, len
  65. add r2, r2, r1
  66. mov r0, #0 @ zero the buffer
  67. 9002: teq r2, r1
  68. strneb r0, [r1], #1
  69. bne 9002b
  70. load_regs
  71. .popsection