cpudata.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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: Unused, needed to keep trap_block a power-of-2 in size. */
  65. unsigned long __pad2[4];
  66. } __attribute__((aligned(64)));
  67. extern struct trap_per_cpu trap_block[NR_CPUS];
  68. extern void init_cur_cpu_trap(struct thread_info *);
  69. extern void setup_tba(void);
  70. struct cpuid_patch_entry {
  71. unsigned int addr;
  72. unsigned int cheetah_safari[4];
  73. unsigned int cheetah_jbus[4];
  74. unsigned int starfire[4];
  75. unsigned int sun4v[4];
  76. };
  77. extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end;
  78. struct sun4v_1insn_patch_entry {
  79. unsigned int addr;
  80. unsigned int insn;
  81. };
  82. extern struct sun4v_1insn_patch_entry __sun4v_1insn_patch,
  83. __sun4v_1insn_patch_end;
  84. struct sun4v_2insn_patch_entry {
  85. unsigned int addr;
  86. unsigned int insns[2];
  87. };
  88. extern struct sun4v_2insn_patch_entry __sun4v_2insn_patch,
  89. __sun4v_2insn_patch_end;
  90. #endif /* !(__ASSEMBLY__) */
  91. #define TRAP_PER_CPU_THREAD 0x00
  92. #define TRAP_PER_CPU_PGD_PADDR 0x08
  93. #define TRAP_PER_CPU_CPU_MONDO_PA 0x10
  94. #define TRAP_PER_CPU_DEV_MONDO_PA 0x18
  95. #define TRAP_PER_CPU_RESUM_MONDO_PA 0x20
  96. #define TRAP_PER_CPU_RESUM_KBUF_PA 0x28
  97. #define TRAP_PER_CPU_NONRESUM_MONDO_PA 0x30
  98. #define TRAP_PER_CPU_NONRESUM_KBUF_PA 0x38
  99. #define TRAP_PER_CPU_FAULT_INFO 0x40
  100. #define TRAP_PER_CPU_CPU_MONDO_BLOCK_PA 0xc0
  101. #define TRAP_PER_CPU_CPU_LIST_PA 0xc8
  102. #define TRAP_PER_CPU_TSB_HUGE 0xd0
  103. #define TRAP_PER_CPU_TSB_HUGE_TEMP 0xd8
  104. #define TRAP_BLOCK_SZ_SHIFT 8
  105. #include <asm/scratchpad.h>
  106. #define __GET_CPUID(REG) \
  107. /* Spitfire implementation (default). */ \
  108. 661: ldxa [%g0] ASI_UPA_CONFIG, REG; \
  109. srlx REG, 17, REG; \
  110. and REG, 0x1f, REG; \
  111. nop; \
  112. .section .cpuid_patch, "ax"; \
  113. /* Instruction location. */ \
  114. .word 661b; \
  115. /* Cheetah Safari implementation. */ \
  116. ldxa [%g0] ASI_SAFARI_CONFIG, REG; \
  117. srlx REG, 17, REG; \
  118. and REG, 0x3ff, REG; \
  119. nop; \
  120. /* Cheetah JBUS implementation. */ \
  121. ldxa [%g0] ASI_JBUS_CONFIG, REG; \
  122. srlx REG, 17, REG; \
  123. and REG, 0x1f, REG; \
  124. nop; \
  125. /* Starfire implementation. */ \
  126. sethi %hi(0x1fff40000d0 >> 9), REG; \
  127. sllx REG, 9, REG; \
  128. or REG, 0xd0, REG; \
  129. lduwa [REG] ASI_PHYS_BYPASS_EC_E, REG;\
  130. /* sun4v implementation. */ \
  131. mov SCRATCHPAD_CPUID, REG; \
  132. ldxa [REG] ASI_SCRATCHPAD, REG; \
  133. nop; \
  134. nop; \
  135. .previous;
  136. #ifdef CONFIG_SMP
  137. #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  138. __GET_CPUID(TMP) \
  139. sethi %hi(trap_block), DEST; \
  140. sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
  141. or DEST, %lo(trap_block), DEST; \
  142. add DEST, TMP, DEST; \
  143. /* Clobbers TMP, current address space PGD phys address into DEST. */
  144. #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
  145. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  146. ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
  147. /* Clobbers TMP, loads local processor's IRQ work area into DEST. */
  148. #define TRAP_LOAD_IRQ_WORK(DEST, TMP) \
  149. __GET_CPUID(TMP) \
  150. sethi %hi(__irq_work), DEST; \
  151. sllx TMP, 6, TMP; \
  152. or DEST, %lo(__irq_work), DEST; \
  153. add DEST, TMP, 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. #define TRAP_LOAD_IRQ_WORK(DEST, TMP) \
  184. sethi %hi(__irq_work), DEST; \
  185. or DEST, %lo(__irq_work), DEST;
  186. #define TRAP_LOAD_THREAD_REG(DEST, TMP) \
  187. TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
  188. ldx [DEST + TRAP_PER_CPU_THREAD], DEST;
  189. /* No per-cpu areas on uniprocessor, so no need to load DEST. */
  190. #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3)
  191. #endif /* !(CONFIG_SMP) */
  192. #endif /* _SPARC64_CPUDATA_H */