blob: a3dc4afc4b21cebc4aa2bba3a5d575b461cba0b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* cpudata.h: Per-cpu parameters.
2 *
David S. Miller56fb4df2006-02-26 23:24:22 -08003 * Copyright (C) 2003, 2005, 2006 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6#ifndef _SPARC64_CPUDATA_H
7#define _SPARC64_CPUDATA_H
8
David S. Millerd257d5d2006-02-06 23:44:37 -08009#include <asm/hypervisor.h>
10
David S. Miller56fb4df2006-02-26 23:24:22 -080011#ifndef __ASSEMBLY__
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/percpu.h>
David S. Miller56fb4df2006-02-26 23:24:22 -080014#include <linux/threads.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16typedef struct {
17 /* Dcache line 1 */
David S. Millerd7ce78f2005-08-29 22:46:43 -070018 unsigned int __softirq_pending; /* must be 1st, see rtrap.S */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 unsigned int multiplier;
20 unsigned int counter;
21 unsigned int idle_volume;
22 unsigned long clock_tick; /* %tick's per second */
23 unsigned long udelay_val;
24
David S. Miller3c936462006-01-31 18:30:27 -080025 /* Dcache line 2, rarely used */
David S. Miller80dc0d62005-09-26 00:32:17 -070026 unsigned int dcache_size;
27 unsigned int dcache_line_size;
28 unsigned int icache_size;
29 unsigned int icache_line_size;
30 unsigned int ecache_size;
31 unsigned int ecache_line_size;
David S. Miller80dc0d62005-09-26 00:32:17 -070032 unsigned int __pad3;
David S. Miller05e28f92006-01-31 18:30:13 -080033 unsigned int __pad4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034} cpuinfo_sparc;
35
36DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
37#define cpu_data(__cpu) per_cpu(__cpu_data, (__cpu))
38#define local_cpu_data() __get_cpu_var(__cpu_data)
39
David S. Miller56fb4df2006-02-26 23:24:22 -080040/* Trap handling code needs to get at a few critical values upon
41 * trap entry and to process TSB misses. These cannot be in the
42 * per_cpu() area as we really need to lock them into the TLB and
43 * thus make them part of the main kernel image. As a result we
44 * try to make this as small as possible.
45 *
46 * This is padded out and aligned to 64-bytes to avoid false sharing
47 * on SMP.
48 */
49
50/* If you modify the size of this structure, please update
51 * TRAP_BLOCK_SZ_SHIFT below.
52 */
53struct thread_info;
54struct trap_per_cpu {
55/* D-cache line 1 */
56 struct thread_info *thread;
57 unsigned long pgd_paddr;
58 unsigned long __pad1[2];
59
60/* D-cache line 2 */
61 unsigned long __pad2[4];
David S. Millerd257d5d2006-02-06 23:44:37 -080062
63/* Dcache lines 3 and 4 */
64 struct hv_fault_status fault_info;
David S. Miller56fb4df2006-02-26 23:24:22 -080065} __attribute__((aligned(64)));
66extern struct trap_per_cpu trap_block[NR_CPUS];
67extern void init_cur_cpu_trap(void);
David S. Millera8b900d2006-01-31 18:33:37 -080068extern void setup_tba(void);
David S. Miller56fb4df2006-02-26 23:24:22 -080069
David S. Miller92704a12006-02-26 23:27:19 -080070#ifdef CONFIG_SMP
71struct cpuid_patch_entry {
72 unsigned int addr;
73 unsigned int cheetah_safari[4];
74 unsigned int cheetah_jbus[4];
75 unsigned int starfire[4];
David S. Millerd96b8152006-02-04 15:40:53 -080076 unsigned int sun4v[4];
David S. Miller92704a12006-02-26 23:27:19 -080077};
78extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end;
79#endif
80
David S. Miller936f4822006-02-05 21:29:28 -080081struct gl_1insn_patch_entry {
82 unsigned int addr;
83 unsigned int insn;
84};
85extern struct gl_1insn_patch_entry __gl_1insn_patch, __gl_1insn_patch_end;
David S. Miller45fec052006-02-05 22:27:28 -080086
87struct gl_2insn_patch_entry {
88 unsigned int addr;
89 unsigned int insns[2];
90};
91extern struct gl_2insn_patch_entry __gl_2insn_patch, __gl_2insn_patch_end;
David S. Miller56fb4df2006-02-26 23:24:22 -080092#endif /* !(__ASSEMBLY__) */
93
94#define TRAP_PER_CPU_THREAD 0x00
95#define TRAP_PER_CPU_PGD_PADDR 0x08
David S. Millerd257d5d2006-02-06 23:44:37 -080096#define TRAP_PER_CPU_FAULT_INFO 0x20
David S. Miller56fb4df2006-02-26 23:24:22 -080097
David S. Millerd257d5d2006-02-06 23:44:37 -080098#define TRAP_BLOCK_SZ_SHIFT 7
David S. Miller56fb4df2006-02-26 23:24:22 -080099
David S. Millerd96b8152006-02-04 15:40:53 -0800100#include <asm/scratchpad.h>
101
David S. Miller92704a12006-02-26 23:27:19 -0800102#ifdef CONFIG_SMP
103
104#define __GET_CPUID(REG) \
105 /* Spitfire implementation (default). */ \
106661: ldxa [%g0] ASI_UPA_CONFIG, REG; \
107 srlx REG, 17, REG; \
108 and REG, 0x1f, REG; \
109 nop; \
110 .section .cpuid_patch, "ax"; \
111 /* Instruction location. */ \
112 .word 661b; \
113 /* Cheetah Safari implementation. */ \
114 ldxa [%g0] ASI_SAFARI_CONFIG, REG; \
115 srlx REG, 17, REG; \
116 and REG, 0x3ff, REG; \
117 nop; \
118 /* Cheetah JBUS implementation. */ \
119 ldxa [%g0] ASI_JBUS_CONFIG, REG; \
120 srlx REG, 17, REG; \
121 and REG, 0x1f, REG; \
122 nop; \
123 /* Starfire implementation. */ \
124 sethi %hi(0x1fff40000d0 >> 9), REG; \
125 sllx REG, 9, REG; \
126 or REG, 0xd0, REG; \
127 lduwa [REG] ASI_PHYS_BYPASS_EC_E, REG;\
David S. Millerd96b8152006-02-04 15:40:53 -0800128 /* sun4v implementation. */ \
129 mov SCRATCHPAD_CPUID, REG; \
130 nop; \
131 ldxa [REG] ASI_SCRATCHPAD, REG; \
132 nop; \
David S. Miller92704a12006-02-26 23:27:19 -0800133 .previous;
David S. Miller56fb4df2006-02-26 23:24:22 -0800134
David S. Millerffe483d2006-02-02 21:55:10 -0800135/* Clobbers TMP, current address space PGD phys address into DEST. */
136#define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
137 __GET_CPUID(TMP) \
138 sethi %hi(trap_block), DEST; \
139 sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
140 or DEST, %lo(trap_block), DEST; \
141 add DEST, TMP, DEST; \
142 ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
David S. Miller56fb4df2006-02-26 23:24:22 -0800143
David S. Millerffe483d2006-02-02 21:55:10 -0800144/* Clobbers TMP, loads local processor's IRQ work area into DEST. */
145#define TRAP_LOAD_IRQ_WORK(DEST, TMP) \
146 __GET_CPUID(TMP) \
147 sethi %hi(__irq_work), DEST; \
148 sllx TMP, 6, TMP; \
149 or DEST, %lo(__irq_work), DEST; \
150 add DEST, TMP, DEST;
David S. Miller56fb4df2006-02-26 23:24:22 -0800151
David S. Millerffe483d2006-02-02 21:55:10 -0800152/* Clobbers TMP, loads DEST with current thread info pointer. */
153#define TRAP_LOAD_THREAD_REG(DEST, TMP) \
154 __GET_CPUID(TMP) \
155 sethi %hi(trap_block), DEST; \
156 sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
157 or DEST, %lo(trap_block), DEST; \
158 ldx [DEST + TMP], DEST;
David S. Miller56fb4df2006-02-26 23:24:22 -0800159
David S. Millerffe483d2006-02-02 21:55:10 -0800160/* Given the current thread info pointer in THR, load the per-cpu
161 * area base of the current processor into DEST. REG1, REG2, and REG3 are
David S. Miller56fb4df2006-02-26 23:24:22 -0800162 * clobbered.
David S. Miller86b81862006-01-31 18:34:51 -0800163 *
David S. Millerffe483d2006-02-02 21:55:10 -0800164 * You absolutely cannot use DEST as a temporary in this code. The
David S. Miller86b81862006-01-31 18:34:51 -0800165 * reason is that traps can happen during execution, and return from
David S. Millerffe483d2006-02-02 21:55:10 -0800166 * trap will load the fully resolved DEST per-cpu base. This can corrupt
David S. Miller86b81862006-01-31 18:34:51 -0800167 * the calculations done by the macro mid-stream.
David S. Miller56fb4df2006-02-26 23:24:22 -0800168 */
David S. Millerffe483d2006-02-02 21:55:10 -0800169#define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3) \
170 ldub [THR + TI_CPU], REG1; \
David S. Miller86b81862006-01-31 18:34:51 -0800171 sethi %hi(__per_cpu_shift), REG3; \
David S. Miller56fb4df2006-02-26 23:24:22 -0800172 sethi %hi(__per_cpu_base), REG2; \
David S. Miller86b81862006-01-31 18:34:51 -0800173 ldx [REG3 + %lo(__per_cpu_shift)], REG3; \
David S. Miller56fb4df2006-02-26 23:24:22 -0800174 ldx [REG2 + %lo(__per_cpu_base)], REG2; \
David S. Miller86b81862006-01-31 18:34:51 -0800175 sllx REG1, REG3, REG3; \
David S. Millerffe483d2006-02-02 21:55:10 -0800176 add REG3, REG2, DEST;
David S. Miller92704a12006-02-26 23:27:19 -0800177
David S. Miller56fb4df2006-02-26 23:24:22 -0800178#else
David S. Miller92704a12006-02-26 23:27:19 -0800179
180/* Uniprocessor versions, we know the cpuid is zero. */
David S. Millerffe483d2006-02-02 21:55:10 -0800181#define TRAP_LOAD_PGD_PHYS(DEST, TMP) \
182 sethi %hi(trap_block), DEST; \
183 or DEST, %lo(trap_block), DEST; \
184 ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
David S. Miller92704a12006-02-26 23:27:19 -0800185
David S. Millerffe483d2006-02-02 21:55:10 -0800186#define TRAP_LOAD_IRQ_WORK(DEST, TMP) \
187 sethi %hi(__irq_work), DEST; \
188 or DEST, %lo(__irq_work), DEST;
David S. Miller92704a12006-02-26 23:27:19 -0800189
David S. Millerffe483d2006-02-02 21:55:10 -0800190#define TRAP_LOAD_THREAD_REG(DEST, TMP) \
191 sethi %hi(trap_block), DEST; \
192 ldx [DEST + %lo(trap_block)], DEST;
David S. Miller92704a12006-02-26 23:27:19 -0800193
David S. Millerffe483d2006-02-02 21:55:10 -0800194/* No per-cpu areas on uniprocessor, so no need to load DEST. */
195#define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3)
David S. Miller92704a12006-02-26 23:27:19 -0800196
197#endif /* !(CONFIG_SMP) */
David S. Miller56fb4df2006-02-26 23:24:22 -0800198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif /* _SPARC64_CPUDATA_H */