cpudata.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /* cpudata.h: Per-cpu parameters.
  2. *
  3. * Copyright (C) 2003, 2005, 2006 David S. Miller (davem@davemloft.net)
  4. */
  5. #ifndef _SPARC64_CPUDATA_H
  6. #define _SPARC64_CPUDATA_H
  7. #include <asm/hypervisor.h>
  8. #ifndef __ASSEMBLY__
  9. #include <linux/percpu.h>
  10. #include <linux/threads.h>
  11. typedef struct {
  12. /* Dcache line 1 */
  13. unsigned int __softirq_pending; /* must be 1st, see rtrap.S */
  14. unsigned int multiplier;
  15. unsigned int counter;
  16. unsigned int idle_volume;
  17. unsigned long clock_tick; /* %tick's per second */
  18. unsigned long udelay_val;
  19. /* Dcache line 2, rarely used */
  20. unsigned int dcache_size;
  21. unsigned int dcache_line_size;
  22. unsigned int icache_size;
  23. unsigned int icache_line_size;
  24. unsigned int ecache_size;
  25. unsigned int ecache_line_size;
  26. unsigned int __pad3;
  27. unsigned int __pad4;
  28. } cpuinfo_sparc;
  29. DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
  30. #define cpu_data(__cpu) per_cpu(__cpu_data, (__cpu))
  31. #define local_cpu_data() __get_cpu_var(__cpu_data)
  32. /* Trap handling code needs to get at a few critical values upon
  33. * trap entry and to process TSB misses. These cannot be in the
  34. * per_cpu() area as we really need to lock them into the TLB and
  35. * thus make them part of the main kernel image. As a result we
  36. * try to make this as small as possible.
  37. *
  38. * This is padded out and aligned to 64-bytes to avoid false sharing
  39. * on SMP.
  40. */
  41. /* If you modify the size of this structure, please update
  42. * TRAP_BLOCK_SZ_SHIFT below.
  43. */
  44. struct thread_info;
  45. struct trap_per_cpu {
  46. /* D-cache line 1 */
  47. struct thread_info *thread;
  48. unsigned long pgd_paddr;
  49. unsigned long __pad1[2];
  50. /* D-cache line 2 */
  51. unsigned long __pad2[4];
  52. /* Dcache lines 3 and 4 */
  53. struct hv_fault_status fault_info;
  54. } __attribute__((aligned(64)));
  55. extern struct trap_per_cpu trap_block[NR_CPUS];
  56. extern void init_cur_cpu_trap(void);
  57. extern void setup_tba(void);
  58. #ifdef CONFIG_SMP
  59. struct cpuid_patch_entry {
  60. unsigned int addr;
  61. unsigned int cheetah_safari[4];
  62. unsigned int cheetah_jbus[4];
  63. unsigned int starfire[4];
  64. unsigned int sun4v[4];
  65. };
  66. extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end;
  67. #endif
  68. struct sun4v_1insn_patch_entry {
  69. unsigned int addr;
  70. unsigned int insn;
  71. };
  72. extern struct sun4v_1insn_patch_entry __sun4v_1insn_patch,
  73. __sun4v_1insn_patch_end;
  74. struct sun4v_2insn_patch_entry {
  75. unsigned int addr;
  76. unsigned int insns[2];
  77. };
  78. extern struct sun4v_2insn_patch_entry __sun4v_2insn_patch,
  79. __sun4v_2insn_patch_end;
  80. #endif /* !(__ASSEMBLY__) */
  81. #define TRAP_PER_CPU_THREAD 0x00
  82. #define TRAP_PER_CPU_PGD_PADDR 0x08
  83. #define TRAP_PER_CPU_FAULT_INFO 0x20
  84. #define TRAP_BLOCK_SZ_SHIFT 7
  85. #include <asm/scratchpad.h>
  86. #ifdef CONFIG_SMP
  87. #define __GET_CPUID(REG) \
  88. /* Spitfire implementation (default). */ \
  89. 661: ldxa [%g0] ASI_UPA_CONFIG, REG; \
  90. srlx REG, 17, REG; \
  91. and REG, 0x1f, REG; \
  92. nop; \
  93. .section .cpuid_patch, "ax"; \
  94. /* Instruction location. */ \
  95. .word 661b; \
  96. /* Cheetah Safari implementation. */ \
  97. ldxa [%g0] ASI_SAFARI_CONFIG, REG; \
  98. srlx REG, 17, REG; \
  99. and REG, 0x3ff, REG; \
  100. nop; \
  101. /* Cheetah JBUS implementation. */ \
  102. ldxa [%g0] ASI_JBUS_CONFIG, REG; \
  103. srlx REG, 17, REG; \
  104. and REG, 0x1f, REG; \
  105. nop; \
  106. /* Starfire implementation. */ \
  107. sethi %hi(0x1fff40000d0 >> 9), REG; \
  108. sllx REG, 9, REG; \
  109. or REG, 0xd0, REG; \
  110. lduwa [REG] ASI_PHYS_BYPASS_EC_E, REG;\
  111. /* sun4v implementation. */ \
  112. mov SCRATCHPAD_CPUID, REG; \
  113. nop; \
  114. ldxa [REG] ASI_SCRATCHPAD, REG; \
  115. nop; \
  116. .previous;
  117. /* Clobbers TMP, current address space PGD phys address into DEST. */
  118. #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
  119. __GET_CPUID(TMP) \
  120. sethi %hi(trap_block), DEST; \
  121. sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
  122. or DEST, %lo(trap_block), DEST; \
  123. add DEST, TMP, DEST; \
  124. ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
  125. /* Clobbers TMP, loads local processor's IRQ work area into DEST. */
  126. #define TRAP_LOAD_IRQ_WORK(DEST, TMP) \
  127. __GET_CPUID(TMP) \
  128. sethi %hi(__irq_work), DEST; \
  129. sllx TMP, 6, TMP; \
  130. or DEST, %lo(__irq_work), DEST; \
  131. add DEST, TMP, DEST;
  132. /* Clobbers TMP, loads DEST with current thread info pointer. */
  133. #define TRAP_LOAD_THREAD_REG(DEST, TMP) \
  134. __GET_CPUID(TMP) \
  135. sethi %hi(trap_block), DEST; \
  136. sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
  137. or DEST, %lo(trap_block), DEST; \
  138. ldx [DEST + TMP], DEST;
  139. /* Given the current thread info pointer in THR, load the per-cpu
  140. * area base of the current processor into DEST. REG1, REG2, and REG3 are
  141. * clobbered.
  142. *
  143. * You absolutely cannot use DEST as a temporary in this code. The
  144. * reason is that traps can happen during execution, and return from
  145. * trap will load the fully resolved DEST per-cpu base. This can corrupt
  146. * the calculations done by the macro mid-stream.
  147. */
  148. #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3) \
  149. ldub [THR + TI_CPU], REG1; \
  150. sethi %hi(__per_cpu_shift), REG3; \
  151. sethi %hi(__per_cpu_base), REG2; \
  152. ldx [REG3 + %lo(__per_cpu_shift)], REG3; \
  153. ldx [REG2 + %lo(__per_cpu_base)], REG2; \
  154. sllx REG1, REG3, REG3; \
  155. add REG3, REG2, DEST;
  156. #else
  157. /* Uniprocessor versions, we know the cpuid is zero. */
  158. #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
  159. sethi %hi(trap_block), DEST; \
  160. or DEST, %lo(trap_block), DEST; \
  161. ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
  162. #define TRAP_LOAD_IRQ_WORK(DEST, TMP) \
  163. sethi %hi(__irq_work), DEST; \
  164. or DEST, %lo(__irq_work), DEST;
  165. #define TRAP_LOAD_THREAD_REG(DEST, TMP) \
  166. sethi %hi(trap_block), DEST; \
  167. ldx [DEST + %lo(trap_block)], DEST;
  168. /* No per-cpu areas on uniprocessor, so no need to load DEST. */
  169. #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3)
  170. #endif /* !(CONFIG_SMP) */
  171. #endif /* _SPARC64_CPUDATA_H */