cpudata.h 5.2 KB

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