cpudata.h 6.7 KB

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