cpudata_64.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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 __nmi_count;
  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 const struct seq_operations cpuinfo_op;
  77. extern unsigned long real_hard_smp_processor_id(void);
  78. struct cpuid_patch_entry {
  79. unsigned int addr;
  80. unsigned int cheetah_safari[4];
  81. unsigned int cheetah_jbus[4];
  82. unsigned int starfire[4];
  83. unsigned int sun4v[4];
  84. };
  85. extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end;
  86. struct sun4v_1insn_patch_entry {
  87. unsigned int addr;
  88. unsigned int insn;
  89. };
  90. extern struct sun4v_1insn_patch_entry __sun4v_1insn_patch,
  91. __sun4v_1insn_patch_end;
  92. struct sun4v_2insn_patch_entry {
  93. unsigned int addr;
  94. unsigned int insns[2];
  95. };
  96. extern struct sun4v_2insn_patch_entry __sun4v_2insn_patch,
  97. __sun4v_2insn_patch_end;
  98. #endif /* !(__ASSEMBLY__) */
  99. #define TRAP_PER_CPU_THREAD 0x00
  100. #define TRAP_PER_CPU_PGD_PADDR 0x08
  101. #define TRAP_PER_CPU_CPU_MONDO_PA 0x10
  102. #define TRAP_PER_CPU_DEV_MONDO_PA 0x18
  103. #define TRAP_PER_CPU_RESUM_MONDO_PA 0x20
  104. #define TRAP_PER_CPU_RESUM_KBUF_PA 0x28
  105. #define TRAP_PER_CPU_NONRESUM_MONDO_PA 0x30
  106. #define TRAP_PER_CPU_NONRESUM_KBUF_PA 0x38
  107. #define TRAP_PER_CPU_FAULT_INFO 0x40
  108. #define TRAP_PER_CPU_CPU_MONDO_BLOCK_PA 0xc0
  109. #define TRAP_PER_CPU_CPU_LIST_PA 0xc8
  110. #define TRAP_PER_CPU_TSB_HUGE 0xd0
  111. #define TRAP_PER_CPU_TSB_HUGE_TEMP 0xd8
  112. #define TRAP_PER_CPU_IRQ_WORKLIST_PA 0xe0
  113. #define TRAP_PER_CPU_CPU_MONDO_QMASK 0xe8
  114. #define TRAP_PER_CPU_DEV_MONDO_QMASK 0xec
  115. #define TRAP_PER_CPU_RESUM_QMASK 0xf0
  116. #define TRAP_PER_CPU_NONRESUM_QMASK 0xf4
  117. #define TRAP_BLOCK_SZ_SHIFT 8
  118. #include <asm/scratchpad.h>
  119. #define __GET_CPUID(REG) \
  120. /* Spitfire implementation (default). */ \
  121. 661: ldxa [%g0] ASI_UPA_CONFIG, REG; \
  122. srlx REG, 17, REG; \
  123. and REG, 0x1f, REG; \
  124. nop; \
  125. .section .cpuid_patch, "ax"; \
  126. /* Instruction location. */ \
  127. .word 661b; \
  128. /* Cheetah Safari implementation. */ \
  129. ldxa [%g0] ASI_SAFARI_CONFIG, REG; \
  130. srlx REG, 17, REG; \
  131. and REG, 0x3ff, REG; \
  132. nop; \
  133. /* Cheetah JBUS implementation. */ \
  134. ldxa [%g0] ASI_JBUS_CONFIG, REG; \
  135. srlx REG, 17, REG; \
  136. and REG, 0x1f, REG; \
  137. nop; \
  138. /* Starfire implementation. */ \
  139. sethi %hi(0x1fff40000d0 >> 9), REG; \
  140. sllx REG, 9, REG; \
  141. or REG, 0xd0, REG; \
  142. lduwa [REG] ASI_PHYS_BYPASS_EC_E, REG;\
  143. /* sun4v implementation. */ \
  144. mov SCRATCHPAD_CPUID, REG; \
  145. ldxa [REG] ASI_SCRATCHPAD, REG; \
  146. nop; \
  147. nop; \
  148. .previous;
  149. #ifdef CONFIG_SMP
  150. #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  151. __GET_CPUID(TMP) \
  152. sethi %hi(trap_block), DEST; \
  153. sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
  154. or DEST, %lo(trap_block), DEST; \
  155. add DEST, TMP, DEST; \
  156. /* Clobbers TMP, current address space PGD phys address into DEST. */
  157. #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
  158. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  159. ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
  160. /* Clobbers TMP, loads local processor's IRQ work area into DEST. */
  161. #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \
  162. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  163. add DEST, TRAP_PER_CPU_IRQ_WORKLIST_PA, DEST;
  164. /* Clobbers TMP, loads DEST with current thread info pointer. */
  165. #define TRAP_LOAD_THREAD_REG(DEST, TMP) \
  166. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  167. ldx [DEST + TRAP_PER_CPU_THREAD], DEST;
  168. /* Given the current thread info pointer in THR, load the per-cpu
  169. * area base of the current processor into DEST. REG1, REG2, and REG3 are
  170. * clobbered.
  171. *
  172. * You absolutely cannot use DEST as a temporary in this code. The
  173. * reason is that traps can happen during execution, and return from
  174. * trap will load the fully resolved DEST per-cpu base. This can corrupt
  175. * the calculations done by the macro mid-stream.
  176. */
  177. #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3) \
  178. lduh [THR + TI_CPU], REG1; \
  179. sethi %hi(__per_cpu_shift), REG3; \
  180. sethi %hi(__per_cpu_base), REG2; \
  181. ldx [REG3 + %lo(__per_cpu_shift)], REG3; \
  182. ldx [REG2 + %lo(__per_cpu_base)], REG2; \
  183. sllx REG1, REG3, REG3; \
  184. add REG3, REG2, DEST;
  185. #else
  186. #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  187. sethi %hi(trap_block), DEST; \
  188. or DEST, %lo(trap_block), DEST; \
  189. /* Uniprocessor versions, we know the cpuid is zero. */
  190. #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
  191. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  192. ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
  193. /* Clobbers TMP, loads local processor's IRQ work area into DEST. */
  194. #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \
  195. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  196. add DEST, TRAP_PER_CPU_IRQ_WORKLIST_PA, DEST;
  197. #define TRAP_LOAD_THREAD_REG(DEST, TMP) \
  198. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  199. ldx [DEST + TRAP_PER_CPU_THREAD], DEST;
  200. /* No per-cpu areas on uniprocessor, so no need to load DEST. */
  201. #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3)
  202. #endif /* !(CONFIG_SMP) */
  203. #endif /* _SPARC64_CPUDATA_H */