barrier_64.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __SPARC64_BARRIER_H
  3. #define __SPARC64_BARRIER_H
  4. /* These are here in an effort to more fully work around Spitfire Errata
  5. * #51. Essentially, if a memory barrier occurs soon after a mispredicted
  6. * branch, the chip can stop executing instructions until a trap occurs.
  7. * Therefore, if interrupts are disabled, the chip can hang forever.
  8. *
  9. * It used to be believed that the memory barrier had to be right in the
  10. * delay slot, but a case has been traced recently wherein the memory barrier
  11. * was one instruction after the branch delay slot and the chip still hung.
  12. * The offending sequence was the following in sym_wakeup_done() of the
  13. * sym53c8xx_2 driver:
  14. *
  15. * call sym_ccb_from_dsa, 0
  16. * movge %icc, 0, %l0
  17. * brz,pn %o0, .LL1303
  18. * mov %o0, %l2
  19. * membar #LoadLoad
  20. *
  21. * The branch has to be mispredicted for the bug to occur. Therefore, we put
  22. * the memory barrier explicitly into a "branch always, predicted taken"
  23. * delay slot to avoid the problem case.
  24. */
  25. #define membar_safe(type) \
  26. do { __asm__ __volatile__("ba,pt %%xcc, 1f\n\t" \
  27. " membar " type "\n" \
  28. "1:\n" \
  29. : : : "memory"); \
  30. } while (0)
  31. /* The kernel always executes in TSO memory model these days,
  32. * and furthermore most sparc64 chips implement more stringent
  33. * memory ordering than required by the specifications.
  34. */
  35. #define mb() membar_safe("#StoreLoad")
  36. #define rmb() __asm__ __volatile__("":::"memory")
  37. #define wmb() __asm__ __volatile__("":::"memory")
  38. #define __smp_store_release(p, v) \
  39. do { \
  40. compiletime_assert_atomic_type(*p); \
  41. barrier(); \
  42. WRITE_ONCE(*p, v); \
  43. } while (0)
  44. #define __smp_load_acquire(p) \
  45. ({ \
  46. typeof(*p) ___p1 = READ_ONCE(*p); \
  47. compiletime_assert_atomic_type(*p); \
  48. barrier(); \
  49. ___p1; \
  50. })
  51. #define __smp_mb__before_atomic() barrier()
  52. #define __smp_mb__after_atomic() barrier()
  53. #include <asm-generic/barrier.h>
  54. #endif /* !(__SPARC64_BARRIER_H) */