cpudata.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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. #include <asm/asi.h>
  9. #ifndef __ASSEMBLY__
  10. #include <linux/percpu.h>
  11. #include <linux/threads.h>
  12. typedef struct {
  13. /* Dcache line 1 */
  14. unsigned int __softirq_pending; /* must be 1st, see rtrap.S */
  15. unsigned int __pad0;
  16. unsigned long clock_tick; /* %tick's per second */
  17. unsigned long __pad;
  18. unsigned int __pad1;
  19. unsigned int __pad2;
  20. /* Dcache line 2, rarely used */
  21. unsigned int dcache_size;
  22. unsigned int dcache_line_size;
  23. unsigned int icache_size;
  24. unsigned int icache_line_size;
  25. unsigned int ecache_size;
  26. unsigned int ecache_line_size;
  27. int core_id;
  28. int proc_id;
  29. } cpuinfo_sparc;
  30. DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
  31. #define cpu_data(__cpu) per_cpu(__cpu_data, (__cpu))
  32. #define local_cpu_data() __get_cpu_var(__cpu_data)
  33. /* Trap handling code needs to get at a few critical values upon
  34. * trap entry and to process TSB misses. These cannot be in the
  35. * per_cpu() area as we really need to lock them into the TLB and
  36. * thus make them part of the main kernel image. As a result we
  37. * try to make this as small as possible.
  38. *
  39. * This is padded out and aligned to 64-bytes to avoid false sharing
  40. * on SMP.
  41. */
  42. /* If you modify the size of this structure, please update
  43. * TRAP_BLOCK_SZ_SHIFT below.
  44. */
  45. struct thread_info;
  46. struct trap_per_cpu {
  47. /* D-cache line 1: Basic thread information, cpu and device mondo queues */
  48. struct thread_info *thread;
  49. unsigned long pgd_paddr;
  50. unsigned long cpu_mondo_pa;
  51. unsigned long dev_mondo_pa;
  52. /* D-cache line 2: Error Mondo Queue and kernel buffer pointers */
  53. unsigned long resum_mondo_pa;
  54. unsigned long resum_kernel_buf_pa;
  55. unsigned long nonresum_mondo_pa;
  56. unsigned long nonresum_kernel_buf_pa;
  57. /* Dcache lines 3, 4, 5, and 6: Hypervisor Fault Status */
  58. struct hv_fault_status fault_info;
  59. /* Dcache line 7: Physical addresses of CPU send mondo block and CPU list. */
  60. unsigned long cpu_mondo_block_pa;
  61. unsigned long cpu_list_pa;
  62. unsigned long tsb_huge;
  63. unsigned long tsb_huge_temp;
  64. /* Dcache line 8: IRQ work list, and keep trap_block a power-of-2 in size. */
  65. unsigned long irq_worklist_pa;
  66. unsigned int cpu_mondo_qmask;
  67. unsigned int dev_mondo_qmask;
  68. unsigned int resum_qmask;
  69. unsigned int nonresum_qmask;
  70. void *hdesc;
  71. } __attribute__((aligned(64)));
  72. extern struct trap_per_cpu trap_block[NR_CPUS];
  73. extern void init_cur_cpu_trap(struct thread_info *);
  74. extern void setup_tba(void);
  75. extern int ncpus_probed;
  76. extern unsigned long real_hard_smp_processor_id(void);
  77. struct cpuid_patch_entry {
  78. unsigned int addr;
  79. unsigned int cheetah_safari[4];
  80. unsigned int cheetah_jbus[4];
  81. unsigned int starfire[4];
  82. unsigned int sun4v[4];
  83. };
  84. extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end;
  85. struct sun4v_1insn_patch_entry {
  86. unsigned int addr;
  87. unsigned int insn;
  88. };
  89. extern struct sun4v_1insn_patch_entry __sun4v_1insn_patch,
  90. __sun4v_1insn_patch_end;
  91. struct sun4v_2insn_patch_entry {
  92. unsigned int addr;
  93. unsigned int insns[2];
  94. };
  95. extern struct sun4v_2insn_patch_entry __sun4v_2insn_patch,
  96. __sun4v_2insn_patch_end;
  97. #endif /* !(__ASSEMBLY__) */
  98. #define TRAP_PER_CPU_THREAD 0x00
  99. #define TRAP_PER_CPU_PGD_PADDR 0x08
  100. #define TRAP_PER_CPU_CPU_MONDO_PA 0x10
  101. #define TRAP_PER_CPU_DEV_MONDO_PA 0x18
  102. #define TRAP_PER_CPU_RESUM_MONDO_PA 0x20
  103. #define TRAP_PER_CPU_RESUM_KBUF_PA 0x28
  104. #define TRAP_PER_CPU_NONRESUM_MONDO_PA 0x30
  105. #define TRAP_PER_CPU_NONRESUM_KBUF_PA 0x38
  106. #define TRAP_PER_CPU_FAULT_INFO 0x40
  107. #define TRAP_PER_CPU_CPU_MONDO_BLOCK_PA 0xc0
  108. #define TRAP_PER_CPU_CPU_LIST_PA 0xc8
  109. #define TRAP_PER_CPU_TSB_HUGE 0xd0
  110. #define TRAP_PER_CPU_TSB_HUGE_TEMP 0xd8
  111. #define TRAP_PER_CPU_IRQ_WORKLIST_PA 0xe0
  112. #define TRAP_PER_CPU_CPU_MONDO_QMASK 0xe8
  113. #define TRAP_PER_CPU_DEV_MONDO_QMASK 0xec
  114. #define TRAP_PER_CPU_RESUM_QMASK 0xf0
  115. #define TRAP_PER_CPU_NONRESUM_QMASK 0xf4
  116. #define TRAP_BLOCK_SZ_SHIFT 8
  117. #include <asm/scratchpad.h>
  118. #define __GET_CPUID(REG) \
  119. /* Spitfire implementation (default). */ \
  120. 661: ldxa [%g0] ASI_UPA_CONFIG, REG; \
  121. srlx REG, 17, REG; \
  122. and REG, 0x1f, REG; \
  123. nop; \
  124. .section .cpuid_patch, "ax"; \
  125. /* Instruction location. */ \
  126. .word 661b; \
  127. /* Cheetah Safari implementation. */ \
  128. ldxa [%g0] ASI_SAFARI_CONFIG, REG; \
  129. srlx REG, 17, REG; \
  130. and REG, 0x3ff, REG; \
  131. nop; \
  132. /* Cheetah JBUS implementation. */ \
  133. ldxa [%g0] ASI_JBUS_CONFIG, REG; \
  134. srlx REG, 17, REG; \
  135. and REG, 0x1f, REG; \
  136. nop; \
  137. /* Starfire implementation. */ \
  138. sethi %hi(0x1fff40000d0 >> 9), REG; \
  139. sllx REG, 9, REG; \
  140. or REG, 0xd0, REG; \
  141. lduwa [REG] ASI_PHYS_BYPASS_EC_E, REG;\
  142. /* sun4v implementation. */ \
  143. mov SCRATCHPAD_CPUID, REG; \
  144. ldxa [REG] ASI_SCRATCHPAD, REG; \
  145. nop; \
  146. nop; \
  147. .previous;
  148. #ifdef CONFIG_SMP
  149. #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  150. __GET_CPUID(TMP) \
  151. sethi %hi(trap_block), DEST; \
  152. sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
  153. or DEST, %lo(trap_block), DEST; \
  154. add DEST, TMP, DEST; \
  155. /* Clobbers TMP, current address space PGD phys address into DEST. */
  156. #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
  157. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  158. ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
  159. /* Clobbers TMP, loads local processor's IRQ work area into DEST. */
  160. #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \
  161. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  162. add DEST, TRAP_PER_CPU_IRQ_WORKLIST_PA, DEST;
  163. /* Clobbers TMP, loads DEST with current thread info pointer. */
  164. #define TRAP_LOAD_THREAD_REG(DEST, TMP) \
  165. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  166. ldx [DEST + TRAP_PER_CPU_THREAD], DEST;
  167. /* Given the current thread info pointer in THR, load the per-cpu
  168. * area base of the current processor into DEST. REG1, REG2, and REG3 are
  169. * clobbered.
  170. *
  171. * You absolutely cannot use DEST as a temporary in this code. The
  172. * reason is that traps can happen during execution, and return from
  173. * trap will load the fully resolved DEST per-cpu base. This can corrupt
  174. * the calculations done by the macro mid-stream.
  175. */
  176. #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3) \
  177. lduh [THR + TI_CPU], REG1; \
  178. sethi %hi(__per_cpu_shift), REG3; \
  179. sethi %hi(__per_cpu_base), REG2; \
  180. ldx [REG3 + %lo(__per_cpu_shift)], REG3; \
  181. ldx [REG2 + %lo(__per_cpu_base)], REG2; \
  182. sllx REG1, REG3, REG3; \
  183. add REG3, REG2, DEST;
  184. #else
  185. #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  186. sethi %hi(trap_block), DEST; \
  187. or DEST, %lo(trap_block), DEST; \
  188. /* Uniprocessor versions, we know the cpuid is zero. */
  189. #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
  190. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  191. ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
  192. /* Clobbers TMP, loads local processor's IRQ work area into DEST. */
  193. #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \
  194. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  195. add DEST, TRAP_PER_CPU_IRQ_WORKLIST_PA, DEST;
  196. #define TRAP_LOAD_THREAD_REG(DEST, TMP) \
  197. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  198. ldx [DEST + TRAP_PER_CPU_THREAD], DEST;
  199. /* No per-cpu areas on uniprocessor, so no need to load DEST. */
  200. #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3)
  201. #endif /* !(CONFIG_SMP) */
  202. #endif /* _SPARC64_CPUDATA_H */