memory.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #ifndef _ASM_PPC64_MEMORY_H_
  2. #define _ASM_PPC64_MEMORY_H_
  3. /*
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. */
  9. #include <linux/config.h>
  10. /*
  11. * Arguably the bitops and *xchg operations don't imply any memory barrier
  12. * or SMP ordering, but in fact a lot of drivers expect them to imply
  13. * both, since they do on x86 cpus.
  14. */
  15. #ifdef CONFIG_SMP
  16. #define EIEIO_ON_SMP "eieio\n"
  17. #define ISYNC_ON_SMP "\n\tisync"
  18. #define SYNC_ON_SMP "lwsync\n\t"
  19. #else
  20. #define EIEIO_ON_SMP
  21. #define ISYNC_ON_SMP
  22. #define SYNC_ON_SMP
  23. #endif
  24. static inline void eieio(void)
  25. {
  26. __asm__ __volatile__ ("eieio" : : : "memory");
  27. }
  28. static inline void isync(void)
  29. {
  30. __asm__ __volatile__ ("isync" : : : "memory");
  31. }
  32. #ifdef CONFIG_SMP
  33. #define eieio_on_smp() eieio()
  34. #define isync_on_smp() isync()
  35. #else
  36. #define eieio_on_smp() __asm__ __volatile__("": : :"memory")
  37. #define isync_on_smp() __asm__ __volatile__("": : :"memory")
  38. #endif
  39. /* Macros for adjusting thread priority (hardware multi-threading) */
  40. #define HMT_very_low() asm volatile("or 31,31,31 # very low priority")
  41. #define HMT_low() asm volatile("or 1,1,1 # low priority")
  42. #define HMT_medium_low() asm volatile("or 6,6,6 # medium low priority")
  43. #define HMT_medium() asm volatile("or 2,2,2 # medium priority")
  44. #define HMT_medium_high() asm volatile("or 5,5,5 # medium high priority")
  45. #define HMT_high() asm volatile("or 3,3,3 # high priority")
  46. #define HMT_VERY_LOW "\tor 31,31,31 # very low priority\n"
  47. #define HMT_LOW "\tor 1,1,1 # low priority\n"
  48. #define HMT_MEDIUM_LOW "\tor 6,6,6 # medium low priority\n"
  49. #define HMT_MEDIUM "\tor 2,2,2 # medium priority\n"
  50. #define HMT_MEDIUM_HIGH "\tor 5,5,5 # medium high priority\n"
  51. #define HMT_HIGH "\tor 3,3,3 # high priority\n"
  52. #endif