cmpxchg.h 1.8 KB

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