1 #ifndef _ASM_M32R_SYSTEM_H
2 #define _ASM_M32R_SYSTEM_H
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * Copyright (C) 2001 by Hiroyuki Kondo, Hirokazu Takata, and Hitoshi Yamamoto
10 * Copyright (C) 2004 Hirokazu Takata <takata at linux-m32r.org>
13 #include <linux/config.h>
14 #include <asm/assembler.h>
19 * switch_to(prev, next) should switch from task `prev' to `next'
20 * `prev' will never be the same as `next'.
22 * `next' and `prev' should be struct task_struct, but it isn't always defined
26 #define prepare_to_switch() do { } while(0)
27 #endif /* not CONFIG_SMP */
29 #define switch_to(prev, next, last) do { \
30 register unsigned long arg0 __asm__ ("r0") = (unsigned long)prev; \
31 register unsigned long arg1 __asm__ ("r1") = (unsigned long)next; \
32 register unsigned long *oldsp __asm__ ("r2") = &(prev->thread.sp); \
33 register unsigned long *newsp __asm__ ("r3") = &(next->thread.sp); \
34 register unsigned long *oldlr __asm__ ("r4") = &(prev->thread.lr); \
35 register unsigned long *newlr __asm__ ("r5") = &(next->thread.lr); \
36 register struct task_struct *__last __asm__ ("r6"); \
37 __asm__ __volatile__ ( \
40 "st r10, @-r15 \n\t" \
41 "st r11, @-r15 \n\t" \
42 "st r12, @-r15 \n\t" \
43 "st r13, @-r15 \n\t" \
44 "st r14, @-r15 \n\t" \
45 "seth r14, #high(1f) \n\t" \
46 "or3 r14, r14, #low(1f) \n\t" \
47 "st r14, @r4 ; store old LR \n\t" \
48 "st r15, @r2 ; store old SP \n\t" \
49 "ld r15, @r3 ; load new SP \n\t" \
50 "st r0, @-r15 ; store 'prev' onto new stack \n\t" \
51 "ld r14, @r5 ; load new LR \n\t" \
55 "ld r6, @r15+ ; load 'prev' from new stack \n\t" \
56 "ld r14, @r15+ \n\t" \
57 "ld r13, @r15+ \n\t" \
58 "ld r12, @r15+ \n\t" \
59 "ld r11, @r15+ \n\t" \
60 "ld r10, @r15+ \n\t" \
64 : "r" (arg0), "r" (arg1), "r" (oldsp), "r" (newsp), \
65 "r" (oldlr), "r" (newlr) \
71 /* Interrupt Control */
72 #if !defined(CONFIG_CHIP_M32102)
73 #define local_irq_enable() \
74 __asm__ __volatile__ ("setpsw #0x40 -> nop": : :"memory")
75 #define local_irq_disable() \
76 __asm__ __volatile__ ("clrpsw #0x40 -> nop": : :"memory")
77 #else /* CONFIG_CHIP_M32102 */
78 static inline void local_irq_enable(void)
83 "or3 %0, %0, #0x0040; \n\t"
85 : "=&r" (tmpreg) : : "cbit", "memory");
88 static inline void local_irq_disable(void)
90 unsigned long tmpreg0, tmpreg1;
92 "ld24 %0, #0 ; Use 32-bit insn. \n\t"
93 "mvfc %1, psw ; No interrupt can be accepted here. \n\t"
95 "and3 %0, %1, #0xffbf \n\t"
97 : "=&r" (tmpreg0), "=&r" (tmpreg1) : : "cbit", "memory");
99 #endif /* CONFIG_CHIP_M32102 */
101 #define local_save_flags(x) \
102 __asm__ __volatile__("mvfc %0,psw" : "=r"(x) : /* no input */)
104 #define local_irq_restore(x) \
105 __asm__ __volatile__("mvtc %0,psw" : /* no outputs */ \
106 : "r" (x) : "cbit", "memory")
108 #if !defined(CONFIG_CHIP_M32102)
109 #define local_irq_save(x) \
110 __asm__ __volatile__( \
111 "mvfc %0, psw; \n\t" \
112 "clrpsw #0x40 -> nop; \n\t" \
113 : "=r" (x) : /* no input */ : "memory")
114 #else /* CONFIG_CHIP_M32102 */
115 #define local_irq_save(x) \
117 unsigned long tmpreg; \
118 __asm__ __volatile__( \
120 "mvfc %0, psw \n\t" \
121 "mvtc %1, psw \n\t" \
122 "and3 %1, %0, #0xffbf \n\t" \
123 "mvtc %1, psw \n\t" \
124 : "=r" (x), "=&r" (tmpreg) \
125 : : "cbit", "memory"); \
127 #endif /* CONFIG_CHIP_M32102 */
129 #define irqs_disabled() \
131 unsigned long flags; \
132 local_save_flags(flags); \
136 #define nop() __asm__ __volatile__ ("nop" : : )
138 #define xchg(ptr,x) \
139 ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
141 #define tas(ptr) (xchg((ptr),1))
144 extern void __xchg_called_with_bad_pointer(void);
147 #ifdef CONFIG_CHIP_M32700_TS1
148 #define DCACHE_CLEAR(reg0, reg1, addr) \
149 "seth "reg1", #high(dcache_dummy); \n\t" \
150 "or3 "reg1", "reg1", #low(dcache_dummy); \n\t" \
151 "lock "reg0", @"reg1"; \n\t" \
152 "add3 "reg0", "addr", #0x1000; \n\t" \
153 "ld "reg0", @"reg0"; \n\t" \
154 "add3 "reg0", "addr", #0x2000; \n\t" \
155 "ld "reg0", @"reg0"; \n\t" \
156 "unlock "reg0", @"reg1"; \n\t"
157 /* FIXME: This workaround code cannot handle kenrel modules
158 * correctly under SMP environment.
160 #else /* CONFIG_CHIP_M32700_TS1 */
161 #define DCACHE_CLEAR(reg0, reg1, addr)
162 #endif /* CONFIG_CHIP_M32700_TS1 */
164 static __inline__ unsigned long __xchg(unsigned long x, volatile void * ptr,
168 unsigned long tmp = 0;
170 local_irq_save(flags);
175 __asm__ __volatile__ (
178 : "=&r" (tmp) : "r" (x), "r" (ptr) : "memory");
181 __asm__ __volatile__ (
184 : "=&r" (tmp) : "r" (x), "r" (ptr) : "memory");
187 __asm__ __volatile__ (
190 : "=&r" (tmp) : "r" (x), "r" (ptr) : "memory");
192 #else /* CONFIG_SMP */
194 __asm__ __volatile__ (
195 DCACHE_CLEAR("%0", "r4", "%2")
197 "unlock %1, @%2; \n\t"
198 : "=&r" (tmp) : "r" (x), "r" (ptr)
200 #ifdef CONFIG_CHIP_M32700_TS1
202 #endif /* CONFIG_CHIP_M32700_TS1 */
206 __xchg_called_with_bad_pointer();
207 #endif /* CONFIG_SMP */
210 local_irq_restore(flags);
215 #define __HAVE_ARCH_CMPXCHG 1
217 static __inline__ unsigned long
218 __cmpxchg_u32(volatile unsigned int *p, unsigned int old, unsigned int new)
223 local_irq_save(flags);
224 __asm__ __volatile__ (
225 DCACHE_CLEAR("%0", "r4", "%1")
226 M32R_LOCK" %0, @%1; \n"
227 " bne %0, %2, 1f; \n"
228 M32R_UNLOCK" %3, @%1; \n"
232 M32R_UNLOCK" %2, @%1; \n"
236 : "r" (p), "r" (old), "r" (new)
238 #ifdef CONFIG_CHIP_M32700_TS1
240 #endif /* CONFIG_CHIP_M32700_TS1 */
242 local_irq_restore(flags);
247 /* This function doesn't exist, so you'll get a linker error
248 if something tries to do an invalid cmpxchg(). */
249 extern void __cmpxchg_called_with_bad_pointer(void);
251 static __inline__ unsigned long
252 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)
256 return __cmpxchg_u32(ptr, old, new);
257 #if 0 /* we don't have __cmpxchg_u64 */
259 return __cmpxchg_u64(ptr, old, new);
262 __cmpxchg_called_with_bad_pointer();
266 #define cmpxchg(ptr,o,n) \
268 __typeof__(*(ptr)) _o_ = (o); \
269 __typeof__(*(ptr)) _n_ = (n); \
270 (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
271 (unsigned long)_n_, sizeof(*(ptr))); \
274 #endif /* __KERNEL__ */
279 * mb() prevents loads and stores being reordered across this point.
280 * rmb() prevents loads being reordered across this point.
281 * wmb() prevents stores being reordered across this point.
283 #define mb() barrier()
288 * read_barrier_depends - Flush all pending reads that subsequents reads
291 * No data-dependent reads from memory-like regions are ever reordered
292 * over this barrier. All reads preceding this primitive are guaranteed
293 * to access memory (but not necessarily other CPUs' caches) before any
294 * reads following this primitive that depend on the data return by
295 * any of the preceding reads. This primitive is much lighter weight than
296 * rmb() on most CPUs, and is never heavier weight than is
299 * These ordering constraints are respected by both the local CPU
302 * Ordering is not guaranteed by anything other than these primitives,
303 * not even by data dependencies. See the documentation for
304 * memory_barrier() for examples and URLs to more information.
306 * For example, the following code would force ordering (the initial
307 * value of "a" is zero, "b" is one, and "p" is "&a"):
315 * read_barrier_depends();
320 * because the read of "*q" depends on the read of "p" and these
321 * two reads are separated by a read_barrier_depends(). However,
322 * the following code, with the same initial values for "a" and "b":
330 * read_barrier_depends();
334 * does not enforce ordering, since there is no data dependency between
335 * the read of "a" and the read of "b". Therefore, on some CPUs, such
336 * as Alpha, "y" could be set to 3 and "x" to 0. Use rmb()
337 * in cases like thiswhere there are no data dependencies.
340 #define read_barrier_depends() do { } while (0)
343 #define smp_mb() mb()
344 #define smp_rmb() rmb()
345 #define smp_wmb() wmb()
346 #define smp_read_barrier_depends() read_barrier_depends()
348 #define smp_mb() barrier()
349 #define smp_rmb() barrier()
350 #define smp_wmb() barrier()
351 #define smp_read_barrier_depends() do { } while (0)
354 #define set_mb(var, value) do { xchg(&var, value); } while (0)
355 #define set_wmb(var, value) do { var = value; wmb(); } while (0)
357 #define arch_align_stack(x) (x)
359 #endif /* _ASM_M32R_SYSTEM_H */