NG4copy_from_user.S 695 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* NG4copy_from_user.S: Niagara-4 optimized copy from userspace.
  2. *
  3. * Copyright (C) 2012 David S. Miller (davem@davemloft.net)
  4. */
  5. #define EX_LD(x, y) \
  6. 98: x; \
  7. .section __ex_table,"a";\
  8. .align 4; \
  9. .word 98b, y; \
  10. .text; \
  11. .align 4;
  12. #define EX_LD_FP(x,y) \
  13. 98: x; \
  14. .section __ex_table,"a";\
  15. .align 4; \
  16. .word 98b, y##_fp; \
  17. .text; \
  18. .align 4;
  19. #ifndef ASI_AIUS
  20. #define ASI_AIUS 0x11
  21. #endif
  22. #define FUNC_NAME NG4copy_from_user
  23. #define LOAD(type,addr,dest) type##a [addr] %asi, dest
  24. #define EX_RETVAL(x) 0
  25. #ifdef __KERNEL__
  26. #define PREAMBLE \
  27. rd %asi, %g1; \
  28. cmp %g1, ASI_AIUS; \
  29. bne,pn %icc, ___copy_in_user; \
  30. nop
  31. #endif
  32. #include "NG4memcpy.S"