1 #ifndef __ASM_SH_SYSTEM_H
2 #define __ASM_SH_SYSTEM_H
5 * Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima
6 * Copyright (C) 2002 Paul Mundt
9 #include <linux/irqflags.h>
10 #include <linux/compiler.h>
11 #include <asm/types.h>
12 #include <asm/ptrace.h>
15 * switch_to() should switch tasks to task nr n, first
18 #define switch_to(prev, next, last) do { \
19 struct task_struct *__last; \
20 register unsigned long *__ts1 __asm__ ("r1") = &prev->thread.sp; \
21 register unsigned long *__ts2 __asm__ ("r2") = &prev->thread.pc; \
22 register unsigned long *__ts4 __asm__ ("r4") = (unsigned long *)prev; \
23 register unsigned long *__ts5 __asm__ ("r5") = (unsigned long *)next; \
24 register unsigned long *__ts6 __asm__ ("r6") = &next->thread.sp; \
25 register unsigned long __ts7 __asm__ ("r7") = next->thread.pc; \
26 __asm__ __volatile__ (".balign 4\n\t" \
27 "stc.l gbr, @-r15\n\t" \
28 "sts.l pr, @-r15\n\t" \
29 "mov.l r8, @-r15\n\t" \
30 "mov.l r9, @-r15\n\t" \
31 "mov.l r10, @-r15\n\t" \
32 "mov.l r11, @-r15\n\t" \
33 "mov.l r12, @-r15\n\t" \
34 "mov.l r13, @-r15\n\t" \
35 "mov.l r14, @-r15\n\t" \
36 "mov.l r15, @r1 ! save SP\n\t" \
37 "mov.l @r6, r15 ! change to new stack\n\t" \
39 "mov.l %0, @r2 ! save PC\n\t" \
41 "jmp @%0 ! call __switch_to\n\t" \
42 " lds r7, pr ! with return to new PC\n\t" \
45 ".long __switch_to\n" \
47 "mov.l @r15+, r14\n\t" \
48 "mov.l @r15+, r13\n\t" \
49 "mov.l @r15+, r12\n\t" \
50 "mov.l @r15+, r11\n\t" \
51 "mov.l @r15+, r10\n\t" \
52 "mov.l @r15+, r9\n\t" \
53 "mov.l @r15+, r8\n\t" \
54 "lds.l @r15+, pr\n\t" \
55 "ldc.l @r15+, gbr\n\t" \
57 : "r" (__ts1), "r" (__ts2), "r" (__ts4), \
58 "r" (__ts5), "r" (__ts6), "r" (__ts7) \
64 * On SMP systems, when the scheduler does migration-cost autodetection,
65 * it needs a way to flush as much of the CPU's caches as possible.
69 static inline void sched_cacheflush(void)
73 #ifdef CONFIG_CPU_SH4A
76 unsigned long __addr; \
77 __addr = 0xa8000000; \
78 __asm__ __volatile__( \
81 : "m" (__m(__addr))); \
86 * A brief note on ctrl_barrier(), the control register write barrier.
88 * Legacy SH cores typically require a sequence of 8 nops after
89 * modification of a control register in order for the changes to take
90 * effect. On newer cores (like the sh4a and sh5) this is accomplished
93 * Also note that on sh4a in the icbi case we can forego a synco for the
94 * write barrier, as it's not necessary for control registers.
96 * Historically we have only done this type of barrier for the MMUCR, but
97 * it's also necessary for the CCR, so we make it generic here instead.
99 #ifdef CONFIG_CPU_SH4A
100 #define mb() __asm__ __volatile__ ("synco": : :"memory")
102 #define wmb() __asm__ __volatile__ ("synco": : :"memory")
103 #define ctrl_barrier() __icbi()
104 #define read_barrier_depends() do { } while(0)
106 #define mb() __asm__ __volatile__ ("": : :"memory")
108 #define wmb() __asm__ __volatile__ ("": : :"memory")
109 #define ctrl_barrier() __asm__ __volatile__ ("nop;nop;nop;nop;nop;nop;nop;nop")
110 #define read_barrier_depends() do { } while(0)
114 #define smp_mb() mb()
115 #define smp_rmb() rmb()
116 #define smp_wmb() wmb()
117 #define smp_read_barrier_depends() read_barrier_depends()
119 #define smp_mb() barrier()
120 #define smp_rmb() barrier()
121 #define smp_wmb() barrier()
122 #define smp_read_barrier_depends() do { } while(0)
125 #define set_mb(var, value) do { xchg(&var, value); } while (0)
129 * When handling TLB or caches, we need to do it from P2 area.
131 #define jump_to_P2() \
133 unsigned long __dummy; \
134 __asm__ __volatile__( \
143 : "r" (0x20000000)); \
149 #define back_to_P1() \
151 unsigned long __dummy; \
153 __asm__ __volatile__( \
160 : "=&r" (__dummy)); \
163 static inline unsigned long xchg_u32(volatile u32 *m, unsigned long val)
165 unsigned long flags, retval;
167 local_irq_save(flags);
170 local_irq_restore(flags);
174 static inline unsigned long xchg_u8(volatile u8 *m, unsigned long val)
176 unsigned long flags, retval;
178 local_irq_save(flags);
181 local_irq_restore(flags);
185 extern void __xchg_called_with_bad_pointer(void);
187 #define __xchg(ptr, x, size) \
189 unsigned long __xchg__res; \
190 volatile void *__xchg_ptr = (ptr); \
193 __xchg__res = xchg_u32(__xchg_ptr, x); \
196 __xchg__res = xchg_u8(__xchg_ptr, x); \
199 __xchg_called_with_bad_pointer(); \
207 #define xchg(ptr,x) \
208 ((__typeof__(*(ptr)))__xchg((ptr),(unsigned long)(x), sizeof(*(ptr))))
210 static inline unsigned long __cmpxchg_u32(volatile int * m, unsigned long old,
216 local_irq_save(flags);
220 local_irq_restore(flags); /* implies memory barrier */
224 /* This function doesn't exist, so you'll get a linker error
225 * if something tries to do an invalid cmpxchg(). */
226 extern void __cmpxchg_called_with_bad_pointer(void);
228 #define __HAVE_ARCH_CMPXCHG 1
230 static inline unsigned long __cmpxchg(volatile void * ptr, unsigned long old,
231 unsigned long new, int size)
235 return __cmpxchg_u32(ptr, old, new);
237 __cmpxchg_called_with_bad_pointer();
241 #define cmpxchg(ptr,o,n) \
243 __typeof__(*(ptr)) _o_ = (o); \
244 __typeof__(*(ptr)) _n_ = (n); \
245 (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
246 (unsigned long)_n_, sizeof(*(ptr))); \
249 extern void die(const char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn));
251 extern void *set_exception_table_vec(unsigned int vec, void *handler);
253 static inline void *set_exception_table_evt(unsigned int evt, void *handler)
255 return set_exception_table_vec(evt >> 5, handler);
259 * disable hlt during certain critical i/o operations
261 #define HAVE_DISABLE_HLT
262 void disable_hlt(void);
263 void enable_hlt(void);
265 #define arch_align_stack(x) (x)