2 * include/asm-xtensa/system.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
11 #ifndef _XTENSA_SYSTEM_H
12 #define _XTENSA_SYSTEM_H
14 #include <linux/stringify.h>
15 #include <linux/irqflags.h>
17 #include <asm/processor.h>
19 #define smp_read_barrier_depends() do { } while(0)
20 #define read_barrier_depends() do { } while(0)
22 #define mb() barrier()
27 #error smp_* not defined
29 #define smp_mb() barrier()
30 #define smp_rmb() barrier()
31 #define smp_wmb() barrier()
34 #define set_mb(var, value) do { var = value; mb(); } while (0)
36 #if !defined (__ASSEMBLY__)
38 /* * switch_to(n) should switch tasks to task nr n, first
39 * checking that n isn't the current task, in which case it does nothing.
41 extern void *_switch_to(void *last
, void *next
);
43 #endif /* __ASSEMBLY__ */
45 #define switch_to(prev,next,last) \
47 (last) = _switch_to(prev, next); \
54 static inline unsigned long
55 __cmpxchg_u32(volatile int *p
, int old
, int new)
57 __asm__
__volatile__("rsil a15, "__stringify(LOCKLEVEL
)"\n\t"
62 "wsr a15, "__stringify(PS
)" \n\t"
65 : "a" (p
), "a" (old
), "r" (new)
69 /* This function doesn't exist, so you'll get a linker error
70 * if something tries to do an invalid cmpxchg(). */
72 extern void __cmpxchg_called_with_bad_pointer(void);
74 static __inline__
unsigned long
75 __cmpxchg(volatile void *ptr
, unsigned long old
, unsigned long new, int size
)
78 case 4: return __cmpxchg_u32(ptr
, old
, new);
79 default: __cmpxchg_called_with_bad_pointer();
84 #define cmpxchg(ptr,o,n) \
85 ({ __typeof__(*(ptr)) _o_ = (o); \
86 __typeof__(*(ptr)) _n_ = (n); \
87 (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
88 (unsigned long)_n_, sizeof (*(ptr))); \
91 #include <asm-generic/cmpxchg-local.h>
93 static inline unsigned long __cmpxchg_local(volatile void *ptr
,
95 unsigned long new, int size
)
99 return __cmpxchg_u32(ptr
, old
, new);
101 return __cmpxchg_local_generic(ptr
, old
, new, size
);
108 * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make
111 #define cmpxchg_local(ptr, o, n) \
112 ((__typeof__(*(ptr)))__cmpxchg_local_generic((ptr), (unsigned long)(o),\
113 (unsigned long)(n), sizeof(*(ptr))))
114 #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
119 * Note that a15 is used here because the register allocation
120 * done by the compiler is not guaranteed and a window overflow
121 * may not occur between the rsil and wsr instructions. By using
122 * a15 in the rsil, the machine is guaranteed to be in a state
123 * where no register reference will cause an overflow.
126 static inline unsigned long xchg_u32(volatile int * m
, unsigned long val
)
129 __asm__
__volatile__("rsil a15, "__stringify(LOCKLEVEL
)"\n\t"
130 "l32i %0, %1, 0 \n\t"
131 "s32i %2, %1, 0 \n\t"
132 "wsr a15, "__stringify(PS
)" \n\t"
140 #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
143 * This only works if the compiler isn't horribly bad at optimizing.
144 * gcc-2.5.8 reportedly can't handle this, but I define that one to
148 extern void __xchg_called_with_bad_pointer(void);
150 static __inline__
unsigned long
151 __xchg(unsigned long x
, volatile void * ptr
, int size
)
155 return xchg_u32(ptr
, x
);
157 __xchg_called_with_bad_pointer();
161 extern void set_except_vector(int n
, void *addr
);
163 static inline void spill_registers(void)
167 __asm__
__volatile__ (
168 "movi a14," __stringify (PS_EXCM_BIT
) " | 1\n\t"
170 "rsr a13," __stringify(SAR
) "\n\t"
171 "xsr a14," __stringify(PS
) "\n\t"
172 "movi a0, _spill_registers\n\t"
176 "wsr a13," __stringify(SAR
) "\n\t"
177 "wsr a14," __stringify(PS
) "\n\t"
178 :: "a" (&a0
), "a" (&ps
)
179 : "a2", "a3", "a4", "a7", "a11", "a12", "a13", "a14", "a15", "memory");
182 #define arch_align_stack(x) (x)
184 #endif /* _XTENSA_SYSTEM_H */