blob: d24cfe16afc1babc4feb78f0c697555754304346 [file] [log] [blame]
Sam Ravnborgf5e706a2008-07-17 21:55:51 -07001#ifndef __SPARC64_SYSTEM_H
2#define __SPARC64_SYSTEM_H
3
4#include <asm/ptrace.h>
5#include <asm/processor.h>
6#include <asm/visasm.h>
7
8#ifndef __ASSEMBLY__
9
10#include <linux/irqflags.h>
11#include <asm-generic/cmpxchg-local.h>
12
13/*
14 * Sparc (general) CPU types
15 */
16enum sparc_cpu {
17 sun4 = 0x00,
18 sun4c = 0x01,
19 sun4m = 0x02,
20 sun4d = 0x03,
21 sun4e = 0x04,
22 sun4u = 0x05, /* V8 ploos ploos */
23 sun_unknown = 0x06,
24 ap1000 = 0x07, /* almost a sun4m */
25};
26
27#define sparc_cpu_model sun4u
28
Adrian Bunk5110bd22008-08-31 20:59:37 -070029/* This cannot ever be a sun4c :) That's just history. */
30#define ARCH_SUN4C 0
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070031
David S. Miller76c36d02009-09-10 05:55:17 -070032extern const char *sparc_cpu_type;
33extern const char *sparc_fpu_type;
34extern const char *sparc_pmu_type;
35
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070036extern char reboot_command[];
37
38/* These are here in an effort to more fully work around Spitfire Errata
39 * #51. Essentially, if a memory barrier occurs soon after a mispredicted
40 * branch, the chip can stop executing instructions until a trap occurs.
41 * Therefore, if interrupts are disabled, the chip can hang forever.
42 *
43 * It used to be believed that the memory barrier had to be right in the
44 * delay slot, but a case has been traced recently wherein the memory barrier
45 * was one instruction after the branch delay slot and the chip still hung.
46 * The offending sequence was the following in sym_wakeup_done() of the
47 * sym53c8xx_2 driver:
48 *
49 * call sym_ccb_from_dsa, 0
50 * movge %icc, 0, %l0
51 * brz,pn %o0, .LL1303
52 * mov %o0, %l2
53 * membar #LoadLoad
54 *
55 * The branch has to be mispredicted for the bug to occur. Therefore, we put
56 * the memory barrier explicitly into a "branch always, predicted taken"
57 * delay slot to avoid the problem case.
58 */
59#define membar_safe(type) \
60do { __asm__ __volatile__("ba,pt %%xcc, 1f\n\t" \
61 " membar " type "\n" \
62 "1:\n" \
63 : : : "memory"); \
64} while (0)
65
David S. Miller4eb0c002009-11-05 20:24:33 -080066/* The kernel always executes in TSO memory model these days,
67 * and furthermore most sparc64 chips implement more stringent
68 * memory ordering than required by the specifications.
69 */
David S. Miller293666b2008-11-15 13:33:25 -080070#define mb() membar_safe("#StoreLoad")
71#define rmb() __asm__ __volatile__("":::"memory")
72#define wmb() __asm__ __volatile__("":::"memory")
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070073
74#endif
75
76#define nop() __asm__ __volatile__ ("nop")
77
78#define read_barrier_depends() do { } while(0)
79#define set_mb(__var, __value) \
David S. Miller293666b2008-11-15 13:33:25 -080080 do { __var = __value; membar_safe("#StoreLoad"); } while(0)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070081
82#ifdef CONFIG_SMP
83#define smp_mb() mb()
84#define smp_rmb() rmb()
85#define smp_wmb() wmb()
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070086#else
87#define smp_mb() __asm__ __volatile__("":::"memory")
88#define smp_rmb() __asm__ __volatile__("":::"memory")
89#define smp_wmb() __asm__ __volatile__("":::"memory")
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070090#endif
91
David S. Miller293666b2008-11-15 13:33:25 -080092#define smp_read_barrier_depends() do { } while(0)
93
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070094#define flushi(addr) __asm__ __volatile__ ("flush %0" : : "r" (addr) : "memory")
95
96#define flushw_all() __asm__ __volatile__("flushw")
97
98/* Performance counter register access. */
99#define read_pcr(__p) __asm__ __volatile__("rd %%pcr, %0" : "=r" (__p))
100#define write_pcr(__p) __asm__ __volatile__("wr %0, 0x0, %%pcr" : : "r" (__p))
101#define read_pic(__p) __asm__ __volatile__("rd %%pic, %0" : "=r" (__p))
102
103/* Blackbird errata workaround. See commentary in
104 * arch/sparc64/kernel/smp.c:smp_percpu_timer_interrupt()
105 * for more information.
106 */
David S. Miller456cad82008-11-25 22:27:50 -0800107#define write_pic(__p) \
108 __asm__ __volatile__("ba,pt %%xcc, 99f\n\t" \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700109 ".align 64\n" \
David S. Miller456cad82008-11-25 22:27:50 -0800110 "99:wr %0, 0x0, %%pic\n\t" \
111 "rd %%pic, %%g0" : : "r" (__p))
112#define reset_pic() write_pic(0)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700113
114#ifndef __ASSEMBLY__
115
116extern void sun_do_break(void);
117extern int stop_a_enabled;
David S. Miller17f04fb2008-09-11 23:33:53 -0700118extern int scons_pwroff;
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700119
120extern void fault_in_user_windows(void);
121extern void synchronize_user_stack(void);
122
123extern void __flushw_user(void);
124#define flushw_user() __flushw_user()
125
126#define flush_user_windows flushw_user
127#define flush_register_windows flushw_all
128
129/* Don't hold the runqueue lock over context switch */
130#define __ARCH_WANT_UNLOCKED_CTXSW
131#define prepare_arch_switch(next) \
132do { \
133 flushw_all(); \
134} while (0)
135
136 /* See what happens when you design the chip correctly?
137 *
138 * We tell gcc we clobber all non-fixed-usage registers except
139 * for l0/l1. It will use one for 'next' and the other to hold
140 * the output value of 'last'. 'next' is not referenced again
141 * past the invocation of switch_to in the scheduler, so we need
142 * not preserve it's value. Hairy, but it lets us remove 2 loads
143 * and 2 stores in this critical code path. -DaveM
144 */
145#define switch_to(prev, next, last) \
David S. Millerc7d5a002010-03-03 08:08:49 -0800146do { flush_tlb_pending(); \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700147 save_and_clear_fpu(); \
148 /* If you are tempted to conditionalize the following */ \
149 /* so that ASI is only written if it changes, think again. */ \
150 __asm__ __volatile__("wr %%g0, %0, %%asi" \
151 : : "r" (__thread_flag_byte_ptr(task_thread_info(next))[TI_FLAG_BYTE_CURRENT_DS]));\
152 trap_block[current_thread_info()->cpu].thread = \
153 task_thread_info(next); \
154 __asm__ __volatile__( \
155 "mov %%g4, %%g7\n\t" \
156 "stx %%i6, [%%sp + 2047 + 0x70]\n\t" \
157 "stx %%i7, [%%sp + 2047 + 0x78]\n\t" \
158 "rdpr %%wstate, %%o5\n\t" \
159 "stx %%o6, [%%g6 + %6]\n\t" \
160 "stb %%o5, [%%g6 + %5]\n\t" \
161 "rdpr %%cwp, %%o5\n\t" \
162 "stb %%o5, [%%g6 + %8]\n\t" \
David S. Millerf9aad602008-11-25 22:26:59 -0800163 "wrpr %%g0, 15, %%pil\n\t" \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700164 "mov %4, %%g6\n\t" \
165 "ldub [%4 + %8], %%g1\n\t" \
166 "wrpr %%g1, %%cwp\n\t" \
167 "ldx [%%g6 + %6], %%o6\n\t" \
168 "ldub [%%g6 + %5], %%o5\n\t" \
169 "ldub [%%g6 + %7], %%o7\n\t" \
170 "wrpr %%o5, 0x0, %%wstate\n\t" \
171 "ldx [%%sp + 2047 + 0x70], %%i6\n\t" \
172 "ldx [%%sp + 2047 + 0x78], %%i7\n\t" \
173 "ldx [%%g6 + %9], %%g4\n\t" \
David S. Millerf9aad602008-11-25 22:26:59 -0800174 "wrpr %%g0, 14, %%pil\n\t" \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700175 "brz,pt %%o7, switch_to_pc\n\t" \
176 " mov %%g7, %0\n\t" \
177 "sethi %%hi(ret_from_syscall), %%g1\n\t" \
178 "jmpl %%g1 + %%lo(ret_from_syscall), %%g0\n\t" \
179 " nop\n\t" \
180 ".globl switch_to_pc\n\t" \
181 "switch_to_pc:\n\t" \
182 : "=&r" (last), "=r" (current), "=r" (current_thread_info_reg), \
183 "=r" (__local_per_cpu_offset) \
184 : "0" (task_thread_info(next)), \
185 "i" (TI_WSTATE), "i" (TI_KSP), "i" (TI_NEW_CHILD), \
186 "i" (TI_CWP), "i" (TI_TASK) \
187 : "cc", \
188 "g1", "g2", "g3", "g7", \
189 "l1", "l2", "l3", "l4", "l5", "l6", "l7", \
190 "i0", "i1", "i2", "i3", "i4", "i5", \
191 "o0", "o1", "o2", "o3", "o4", "o5", "o7"); \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700192} while(0)
193
194static inline unsigned long xchg32(__volatile__ unsigned int *m, unsigned int val)
195{
196 unsigned long tmp1, tmp2;
197
198 __asm__ __volatile__(
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700199" mov %0, %1\n"
200"1: lduw [%4], %2\n"
201" cas [%4], %2, %0\n"
202" cmp %2, %0\n"
203" bne,a,pn %%icc, 1b\n"
204" mov %1, %0\n"
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700205 : "=&r" (val), "=&r" (tmp1), "=&r" (tmp2)
206 : "0" (val), "r" (m)
207 : "cc", "memory");
208 return val;
209}
210
211static inline unsigned long xchg64(__volatile__ unsigned long *m, unsigned long val)
212{
213 unsigned long tmp1, tmp2;
214
215 __asm__ __volatile__(
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700216" mov %0, %1\n"
217"1: ldx [%4], %2\n"
218" casx [%4], %2, %0\n"
219" cmp %2, %0\n"
220" bne,a,pn %%xcc, 1b\n"
221" mov %1, %0\n"
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700222 : "=&r" (val), "=&r" (tmp1), "=&r" (tmp2)
223 : "0" (val), "r" (m)
224 : "cc", "memory");
225 return val;
226}
227
228#define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
229
230extern void __xchg_called_with_bad_pointer(void);
231
232static inline unsigned long __xchg(unsigned long x, __volatile__ void * ptr,
233 int size)
234{
235 switch (size) {
236 case 4:
237 return xchg32(ptr, x);
238 case 8:
239 return xchg64(ptr, x);
240 };
241 __xchg_called_with_bad_pointer();
242 return x;
243}
244
245extern void die_if_kernel(char *str, struct pt_regs *regs) __attribute__ ((noreturn));
246
247/*
248 * Atomic compare and exchange. Compare OLD with MEM, if identical,
249 * store NEW in MEM. Return the initial value in MEM. Success is
250 * indicated by comparing RETURN with OLD.
251 */
252
253#define __HAVE_ARCH_CMPXCHG 1
254
255static inline unsigned long
256__cmpxchg_u32(volatile int *m, int old, int new)
257{
David S. Miller293666b2008-11-15 13:33:25 -0800258 __asm__ __volatile__("cas [%2], %3, %0"
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700259 : "=&r" (new)
260 : "0" (new), "r" (m), "r" (old)
261 : "memory");
262
263 return new;
264}
265
266static inline unsigned long
267__cmpxchg_u64(volatile long *m, unsigned long old, unsigned long new)
268{
David S. Miller293666b2008-11-15 13:33:25 -0800269 __asm__ __volatile__("casx [%2], %3, %0"
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700270 : "=&r" (new)
271 : "0" (new), "r" (m), "r" (old)
272 : "memory");
273
274 return new;
275}
276
277/* This function doesn't exist, so you'll get a linker error
278 if something tries to do an invalid cmpxchg(). */
279extern void __cmpxchg_called_with_bad_pointer(void);
280
281static inline unsigned long
282__cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)
283{
284 switch (size) {
285 case 4:
286 return __cmpxchg_u32(ptr, old, new);
287 case 8:
288 return __cmpxchg_u64(ptr, old, new);
289 }
290 __cmpxchg_called_with_bad_pointer();
291 return old;
292}
293
294#define cmpxchg(ptr,o,n) \
295 ({ \
296 __typeof__(*(ptr)) _o_ = (o); \
297 __typeof__(*(ptr)) _n_ = (n); \
298 (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
299 (unsigned long)_n_, sizeof(*(ptr))); \
300 })
301
302/*
303 * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make
304 * them available.
305 */
306
307static inline unsigned long __cmpxchg_local(volatile void *ptr,
308 unsigned long old,
309 unsigned long new, int size)
310{
311 switch (size) {
312 case 4:
313 case 8: return __cmpxchg(ptr, old, new, size);
314 default:
315 return __cmpxchg_local_generic(ptr, old, new, size);
316 }
317
318 return old;
319}
320
321#define cmpxchg_local(ptr, o, n) \
322 ((__typeof__(*(ptr)))__cmpxchg_local((ptr), (unsigned long)(o), \
323 (unsigned long)(n), sizeof(*(ptr))))
324#define cmpxchg64_local(ptr, o, n) \
325 ({ \
326 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
327 cmpxchg_local((ptr), (o), (n)); \
328 })
329
330#endif /* !(__ASSEMBLY__) */
331
332#define arch_align_stack(x) (x)
333
334#endif /* !(__SPARC64_SYSTEM_H) */