pda.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #ifndef X86_64_PDA_H
  2. #define X86_64_PDA_H
  3. #ifndef __ASSEMBLY__
  4. #include <linux/stddef.h>
  5. #include <linux/types.h>
  6. #include <linux/cache.h>
  7. #include <asm/page.h>
  8. /* Per processor datastructure. %gs points to it while the kernel runs */
  9. struct x8664_pda {
  10. struct task_struct *pcurrent; /* 0 Current process */
  11. unsigned long data_offset; /* 8 Per cpu data offset from linker
  12. address */
  13. unsigned long kernelstack; /* 16 top of kernel stack for current */
  14. unsigned long oldrsp; /* 24 user rsp for system call */
  15. int irqcount; /* 32 Irq nesting counter. Starts with -1 */
  16. int cpunumber; /* 36 Logical CPU number */
  17. #ifdef CONFIG_CC_STACKPROTECTOR
  18. unsigned long stack_canary; /* 40 stack canary value */
  19. /* gcc-ABI: this canary MUST be at
  20. offset 40!!! */
  21. #endif
  22. char *irqstackptr;
  23. int nodenumber; /* number of current node */
  24. unsigned int __softirq_pending;
  25. unsigned int __nmi_count; /* number of NMI on this CPUs */
  26. short mmu_state;
  27. short isidle;
  28. struct mm_struct *active_mm;
  29. unsigned apic_timer_irqs;
  30. unsigned irq0_irqs;
  31. } ____cacheline_aligned_in_smp;
  32. extern struct x8664_pda *_cpu_pda[];
  33. extern struct x8664_pda boot_cpu_pda[];
  34. #define cpu_pda(i) (_cpu_pda[i])
  35. /*
  36. * There is no fast way to get the base address of the PDA, all the accesses
  37. * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
  38. */
  39. extern void __bad_pda_field(void) __attribute__((noreturn));
  40. /*
  41. * proxy_pda doesn't actually exist, but tell gcc it is accessed for
  42. * all PDA accesses so it gets read/write dependencies right.
  43. */
  44. extern struct x8664_pda _proxy_pda;
  45. #define pda_offset(field) offsetof(struct x8664_pda, field)
  46. #define pda_to_op(op,field,val) do { \
  47. typedef typeof(_proxy_pda.field) T__; \
  48. if (0) { T__ tmp__; tmp__ = (val); } /* type checking */ \
  49. switch (sizeof(_proxy_pda.field)) { \
  50. case 2: \
  51. asm(op "w %1,%%gs:%c2" : \
  52. "+m" (_proxy_pda.field) : \
  53. "ri" ((T__)val), \
  54. "i"(pda_offset(field))); \
  55. break; \
  56. case 4: \
  57. asm(op "l %1,%%gs:%c2" : \
  58. "+m" (_proxy_pda.field) : \
  59. "ri" ((T__)val), \
  60. "i" (pda_offset(field))); \
  61. break; \
  62. case 8: \
  63. asm(op "q %1,%%gs:%c2": \
  64. "+m" (_proxy_pda.field) : \
  65. "ri" ((T__)val), \
  66. "i"(pda_offset(field))); \
  67. break; \
  68. default: \
  69. __bad_pda_field(); \
  70. } \
  71. } while (0)
  72. #define pda_from_op(op,field) ({ \
  73. typeof(_proxy_pda.field) ret__; \
  74. switch (sizeof(_proxy_pda.field)) { \
  75. case 2: \
  76. asm(op "w %%gs:%c1,%0" : \
  77. "=r" (ret__) : \
  78. "i" (pda_offset(field)), \
  79. "m" (_proxy_pda.field)); \
  80. break; \
  81. case 4: \
  82. asm(op "l %%gs:%c1,%0": \
  83. "=r" (ret__): \
  84. "i" (pda_offset(field)), \
  85. "m" (_proxy_pda.field)); \
  86. break; \
  87. case 8: \
  88. asm(op "q %%gs:%c1,%0": \
  89. "=r" (ret__) : \
  90. "i" (pda_offset(field)), \
  91. "m" (_proxy_pda.field)); \
  92. break; \
  93. default: \
  94. __bad_pda_field(); \
  95. } \
  96. ret__; })
  97. #define read_pda(field) pda_from_op("mov",field)
  98. #define write_pda(field,val) pda_to_op("mov",field,val)
  99. #define add_pda(field,val) pda_to_op("add",field,val)
  100. #define sub_pda(field,val) pda_to_op("sub",field,val)
  101. #define or_pda(field,val) pda_to_op("or",field,val)
  102. /* This is not atomic against other CPUs -- CPU preemption needs to be off */
  103. #define test_and_clear_bit_pda(bit,field) ({ \
  104. int old__; \
  105. asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" \
  106. : "=r" (old__), "+m" (_proxy_pda.field) \
  107. : "dIr" (bit), "i" (pda_offset(field)) : "memory"); \
  108. old__; \
  109. })
  110. #endif
  111. #define PDA_STACKOFFSET (5*8)
  112. #endif