synch.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_POWERPC_SYNCH_H
  3. #define _ASM_POWERPC_SYNCH_H
  4. #ifdef __KERNEL__
  5. #include <asm/cputable.h>
  6. #include <asm/feature-fixups.h>
  7. #include <asm/ppc-opcode.h>
  8. #ifndef __ASSEMBLY__
  9. extern unsigned int __start___lwsync_fixup, __stop___lwsync_fixup;
  10. extern void do_lwsync_fixups(unsigned long value, void *fixup_start,
  11. void *fixup_end);
  12. static inline void eieio(void)
  13. {
  14. if (IS_ENABLED(CONFIG_BOOKE))
  15. __asm__ __volatile__ ("mbar" : : : "memory");
  16. else
  17. __asm__ __volatile__ ("eieio" : : : "memory");
  18. }
  19. static inline void isync(void)
  20. {
  21. __asm__ __volatile__ ("isync" : : : "memory");
  22. }
  23. static inline void ppc_after_tlbiel_barrier(void)
  24. {
  25. asm volatile("ptesync": : :"memory");
  26. /*
  27. * POWER9, POWER10 need a cp_abort after tlbiel to ensure the copy is
  28. * invalidated correctly. If this is not done, the paste can take data
  29. * from the physical address that was translated at copy time.
  30. *
  31. * POWER9 in practice does not need this, because address spaces with
  32. * accelerators mapped will use tlbie (which does invalidate the copy)
  33. * to invalidate translations. It's not possible to limit POWER10 this
  34. * way due to local copy-paste.
  35. */
  36. asm volatile(ASM_FTR_IFSET(PPC_CP_ABORT, "", %0) : : "i" (CPU_FTR_ARCH_31) : "memory");
  37. }
  38. #endif /* __ASSEMBLY__ */
  39. #if defined(__powerpc64__)
  40. # define LWSYNC lwsync
  41. #elif defined(CONFIG_PPC_E500)
  42. # define LWSYNC \
  43. START_LWSYNC_SECTION(96); \
  44. sync; \
  45. MAKE_LWSYNC_SECTION_ENTRY(96, __lwsync_fixup);
  46. #else
  47. # define LWSYNC sync
  48. #endif
  49. #ifdef CONFIG_SMP
  50. #define __PPC_ACQUIRE_BARRIER \
  51. START_LWSYNC_SECTION(97); \
  52. isync; \
  53. MAKE_LWSYNC_SECTION_ENTRY(97, __lwsync_fixup);
  54. #define PPC_ACQUIRE_BARRIER "\n" stringify_in_c(__PPC_ACQUIRE_BARRIER)
  55. #define PPC_RELEASE_BARRIER stringify_in_c(LWSYNC) "\n"
  56. #define PPC_ATOMIC_ENTRY_BARRIER "\n" stringify_in_c(sync) "\n"
  57. #define PPC_ATOMIC_EXIT_BARRIER "\n" stringify_in_c(sync) "\n"
  58. #else
  59. #define PPC_ACQUIRE_BARRIER
  60. #define PPC_RELEASE_BARRIER
  61. #define PPC_ATOMIC_ENTRY_BARRIER
  62. #define PPC_ATOMIC_EXIT_BARRIER
  63. #endif
  64. #endif /* __KERNEL__ */
  65. #endif /* _ASM_POWERPC_SYNCH_H */