cmpxchg.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright IBM Corp. 1999, 2011
  3. *
  4. * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
  5. */
  6. #ifndef __ASM_CMPXCHG_H
  7. #define __ASM_CMPXCHG_H
  8. #include <linux/mmdebug.h>
  9. #include <linux/types.h>
  10. #include <linux/bug.h>
  11. #define cmpxchg(ptr, o, n) \
  12. ({ \
  13. __typeof__(*(ptr)) __o = (o); \
  14. __typeof__(*(ptr)) __n = (n); \
  15. (__typeof__(*(ptr))) __sync_val_compare_and_swap((ptr),__o,__n);\
  16. })
  17. #define cmpxchg64 cmpxchg
  18. #define cmpxchg_local cmpxchg
  19. #define cmpxchg64_local cmpxchg
  20. #define xchg(ptr, x) \
  21. ({ \
  22. __typeof__(ptr) __ptr = (ptr); \
  23. __typeof__(*(ptr)) __old; \
  24. do { \
  25. __old = *__ptr; \
  26. } while (!__sync_bool_compare_and_swap(__ptr, __old, x)); \
  27. __old; \
  28. })
  29. #define __cmpxchg_double(p1, p2, o1, o2, n1, n2) \
  30. ({ \
  31. register __typeof__(*(p1)) __old1 asm("2") = (o1); \
  32. register __typeof__(*(p2)) __old2 asm("3") = (o2); \
  33. register __typeof__(*(p1)) __new1 asm("4") = (n1); \
  34. register __typeof__(*(p2)) __new2 asm("5") = (n2); \
  35. int cc; \
  36. asm volatile( \
  37. " cdsg %[old],%[new],%[ptr]\n" \
  38. " ipm %[cc]\n" \
  39. " srl %[cc],28" \
  40. : [cc] "=d" (cc), [old] "+d" (__old1), "+d" (__old2) \
  41. : [new] "d" (__new1), "d" (__new2), \
  42. [ptr] "Q" (*(p1)), "Q" (*(p2)) \
  43. : "memory", "cc"); \
  44. !cc; \
  45. })
  46. #define cmpxchg_double(p1, p2, o1, o2, n1, n2) \
  47. ({ \
  48. __typeof__(p1) __p1 = (p1); \
  49. __typeof__(p2) __p2 = (p2); \
  50. BUILD_BUG_ON(sizeof(*(p1)) != sizeof(long)); \
  51. BUILD_BUG_ON(sizeof(*(p2)) != sizeof(long)); \
  52. VM_BUG_ON((unsigned long)((__p1) + 1) != (unsigned long)(__p2));\
  53. __cmpxchg_double(__p1, __p2, o1, o2, n1, n2); \
  54. })
  55. #define system_has_cmpxchg_double() 1
  56. #endif /* __ASM_CMPXCHG_H */