1 #ifndef __ASM_ARM_SYSTEM_H
2 #define __ASM_ARM_SYSTEM_H
6 #include <linux/config.h>
8 #define CPU_ARCH_UNKNOWN 0
9 #define CPU_ARCH_ARMv3 1
10 #define CPU_ARCH_ARMv4 2
11 #define CPU_ARCH_ARMv4T 3
12 #define CPU_ARCH_ARMv5 4
13 #define CPU_ARCH_ARMv5T 5
14 #define CPU_ARCH_ARMv5TE 6
15 #define CPU_ARCH_ARMv5TEJ 7
16 #define CPU_ARCH_ARMv6 8
19 * CR1 bits (CP#15 CR1)
21 #define CR_M (1 << 0) /* MMU enable */
22 #define CR_A (1 << 1) /* Alignment abort enable */
23 #define CR_C (1 << 2) /* Dcache enable */
24 #define CR_W (1 << 3) /* Write buffer enable */
25 #define CR_P (1 << 4) /* 32-bit exception handler */
26 #define CR_D (1 << 5) /* 32-bit data address range */
27 #define CR_L (1 << 6) /* Implementation defined */
28 #define CR_B (1 << 7) /* Big endian */
29 #define CR_S (1 << 8) /* System MMU protection */
30 #define CR_R (1 << 9) /* ROM MMU protection */
31 #define CR_F (1 << 10) /* Implementation defined */
32 #define CR_Z (1 << 11) /* Implementation defined */
33 #define CR_I (1 << 12) /* Icache enable */
34 #define CR_V (1 << 13) /* Vectors relocated to 0xffff0000 */
35 #define CR_RR (1 << 14) /* Round Robin cache replacement */
36 #define CR_L4 (1 << 15) /* LDR pc can set T bit */
37 #define CR_DT (1 << 16)
38 #define CR_IT (1 << 18)
39 #define CR_ST (1 << 19)
40 #define CR_FI (1 << 21) /* Fast interrupt (lower latency mode) */
41 #define CR_U (1 << 22) /* Unaligned access operation */
42 #define CR_XP (1 << 23) /* Extended page tables */
43 #define CR_VE (1 << 24) /* Vectored interrupts */
46 #define CPUID_CACHETYPE 1
48 #define CPUID_TLBTYPE 3
50 #define read_cpuid(reg) \
53 asm("mrc p15, 0, %0, c0, c0, " __stringify(reg) \
60 #define __cacheid_present(val) (val != read_cpuid(CPUID_ID))
61 #define __cacheid_vivt(val) ((val & (15 << 25)) != (14 << 25))
62 #define __cacheid_vipt(val) ((val & (15 << 25)) == (14 << 25))
63 #define __cacheid_vipt_nonaliasing(val) ((val & (15 << 25 | 1 << 23)) == (14 << 25))
64 #define __cacheid_vipt_aliasing(val) ((val & (15 << 25 | 1 << 23)) == (14 << 25 | 1 << 23))
66 #define cache_is_vivt() \
68 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \
69 (!__cacheid_present(__val)) || __cacheid_vivt(__val); \
72 #define cache_is_vipt() \
74 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \
75 __cacheid_present(__val) && __cacheid_vipt(__val); \
78 #define cache_is_vipt_nonaliasing() \
80 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \
81 __cacheid_present(__val) && \
82 __cacheid_vipt_nonaliasing(__val); \
85 #define cache_is_vipt_aliasing() \
87 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \
88 __cacheid_present(__val) && \
89 __cacheid_vipt_aliasing(__val); \
93 * This is used to ensure the compiler did actually allocate the register we
94 * asked it for some inline assembly sequences. Apparently we can't trust
95 * the compiler from one version to another so a bit of paranoia won't hurt.
96 * This string is meant to be concatenated with the inline asm string and
97 * will cause compilation to stop on mismatch.
99 #define __asmeq(x, y) ".ifnc " x "," y " ; .err ; .endif\n\t"
103 #include <linux/linkage.h>
108 /* information about the system we're running on */
109 extern unsigned int system_rev
;
110 extern unsigned int system_serial_low
;
111 extern unsigned int system_serial_high
;
112 extern unsigned int mem_fclk_21285
;
116 void die(const char *msg
, struct pt_regs
*regs
, int err
)
117 __attribute__((noreturn
));
119 void die_if_kernel(const char *str
, struct pt_regs
*regs
, int err
);
121 void hook_fault_code(int nr
, int (*fn
)(unsigned long, unsigned int,
123 int sig
, const char *name
);
125 #include <asm/proc-fns.h>
127 #define xchg(ptr,x) \
128 ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
130 #define tas(ptr) (xchg((ptr),1))
132 extern asmlinkage
void __backtrace(void);
134 extern int cpu_architecture(void);
137 __asm__ __volatile__( \
138 "mcr p15, 0, %0, c1, c0, 0 @ set CR" \
143 unsigned int __val; \
144 __asm__ __volatile__( \
145 "mrc p15, 0, %0, c1, c0, 0 @ get CR" \
146 : "=r" (__val) : : "cc"); \
150 extern unsigned long cr_no_alignment
; /* defined in entry-armv.S */
151 extern unsigned long cr_alignment
; /* defined in entry-armv.S */
153 #define UDBG_UNDEFINED (1 << 0)
154 #define UDBG_SYSCALL (1 << 1)
155 #define UDBG_BADABORT (1 << 2)
156 #define UDBG_SEGV (1 << 3)
157 #define UDBG_BUS (1 << 4)
159 extern unsigned int user_debug
;
161 #if __LINUX_ARM_ARCH__ >= 4
162 #define vectors_base() ((cr_alignment & CR_V) ? 0xffff0000 : 0)
164 #define vectors_base() (0)
167 #define mb() __asm__ __volatile__ ("" : : : "memory")
170 #define read_barrier_depends() do { } while(0)
171 #define set_mb(var, value) do { var = value; mb(); } while (0)
172 #define set_wmb(var, value) do { var = value; wmb(); } while (0)
173 #define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");
177 * Define our own context switch locking. This allows us to enable
178 * interrupts over the context switch, otherwise we end up with high
179 * interrupt latency. The real problem area is switch_mm() which may
180 * do a full cache flush.
182 #define prepare_arch_switch(rq,next) \
184 spin_lock(&(next)->switch_lock); \
185 spin_unlock_irq(&(rq)->lock); \
188 #define finish_arch_switch(rq,prev) \
189 spin_unlock(&(prev)->switch_lock)
191 #define task_running(rq,p) \
192 ((rq)->curr == (p) || spin_is_locked(&(p)->switch_lock))
195 * Our UP-case is more simple, but we assume knowledge of how
196 * spin_unlock_irq() and friends are implemented. This avoids
197 * us needlessly decrementing and incrementing the preempt count.
199 #define prepare_arch_switch(rq,next) local_irq_enable()
200 #define finish_arch_switch(rq,prev) spin_unlock(&(rq)->lock)
201 #define task_running(rq,p) ((rq)->curr == (p))
205 * switch_to(prev, next) should switch from task `prev' to `next'
206 * `prev' will never be the same as `next'. schedule() itself
207 * contains the memory barrier to tell GCC not to cache `current'.
209 extern struct task_struct
*__switch_to(struct task_struct
*, struct thread_info
*, struct thread_info
*);
211 #define switch_to(prev,next,last) \
213 last = __switch_to(prev,prev->thread_info,next->thread_info); \
217 * CPU interrupt mask handling.
219 #if __LINUX_ARM_ARCH__ >= 6
221 #define local_irq_save(x) \
223 __asm__ __volatile__( \
224 "mrs %0, cpsr @ local_irq_save\n" \
226 : "=r" (x) : : "memory", "cc"); \
229 #define local_irq_enable() __asm__("cpsie i @ __sti" : : : "memory", "cc")
230 #define local_irq_disable() __asm__("cpsid i @ __cli" : : : "memory", "cc")
231 #define local_fiq_enable() __asm__("cpsie f @ __stf" : : : "memory", "cc")
232 #define local_fiq_disable() __asm__("cpsid f @ __clf" : : : "memory", "cc")
236 #if 0 // mask by Victor Yu. 05-30-2005
238 * Save the current interrupt enable state & disable IRQs
240 #define local_irq_save(x) \
242 unsigned long temp; \
243 (void) (&temp == &x); \
244 __asm__ __volatile__( \
245 "mrs %0, cpsr @ local_irq_save\n" \
246 " orr %1, %0, #128\n" \
248 : "=r" (x), "=r" (temp) \
256 #define local_irq_enable() \
258 unsigned long temp; \
259 __asm__ __volatile__( \
260 "mrs %0, cpsr @ local_irq_enable\n" \
261 " bic %0, %0, #128\n" \
271 #define local_irq_disable() \
273 unsigned long temp; \
274 __asm__ __volatile__( \
275 "mrs %0, cpsr @ local_irq_disable\n" \
276 " orr %0, %0, #128\n" \
282 #else // add by Victor Yu. 05-30-2005
284 * Save the current interrupt enable state & disable IRQs
286 #define local_irq_save(x) \
288 unsigned long temp; \
289 (void) (&temp == &x); \
290 __asm__ __volatile__( \
291 "mrs %0, cpsr @ local_irq_save\n" \
292 " orr %1, %0, #192\n" \
294 : "=r" (x), "=r" (temp) \
302 #define local_irq_enable() \
304 unsigned long temp; \
305 __asm__ __volatile__( \
306 "mrs %0, cpsr @ local_irq_enable\n" \
307 " bic %0, %0, #192\n" \
317 #define local_irq_disable() \
319 unsigned long temp; \
320 __asm__ __volatile__( \
321 "mrs %0, cpsr @ local_irq_disable\n" \
322 " orr %0, %0, #192\n" \
335 unsigned long temp; \
336 __asm__ __volatile__( \
337 "mrs %0, cpsr @ stf\n" \
338 " bic %0, %0, #64\n" \
350 unsigned long temp; \
351 __asm__ __volatile__( \
352 "mrs %0, cpsr @ clf\n" \
353 " orr %0, %0, #64\n" \
363 * Save the current interrupt enable state.
365 #define local_save_flags(x) \
367 __asm__ __volatile__( \
368 "mrs %0, cpsr @ local_save_flags" \
369 : "=r" (x) : : "memory", "cc"); \
373 * restore saved IRQ & FIQ state
375 #define local_irq_restore(x) \
376 __asm__ __volatile__( \
377 "msr cpsr_c, %0 @ local_irq_restore\n" \
383 #error SMP not supported
385 #define smp_mb() mb()
386 #define smp_rmb() rmb()
387 #define smp_wmb() wmb()
388 #define smp_read_barrier_depends() read_barrier_depends()
392 #define smp_mb() barrier()
393 #define smp_rmb() barrier()
394 #define smp_wmb() barrier()
395 #define smp_read_barrier_depends() do { } while(0)
397 #define clf() __clf()
398 #define stf() __stf()
400 #define irqs_disabled() \
402 unsigned long flags; \
403 local_save_flags(flags); \
407 #if defined(CONFIG_CPU_SA1100) || defined(CONFIG_CPU_SA110)
409 * On the StrongARM, "swp" is terminally broken since it bypasses the
410 * cache totally. This means that the cache becomes inconsistent, and,
411 * since we use normal loads/stores as well, this is really bad.
412 * Typically, this causes oopsen in filp_close, but could have other,
413 * more disasterous effects. There are two work-arounds:
414 * 1. Disable interrupts and emulate the atomic swap
415 * 2. Clean the cache, perform atomic swap, flush the cache
417 * We choose (1) since its the "easiest" to achieve here and is not
418 * dependent on the processor type.
423 static inline unsigned long __xchg(unsigned long x
, volatile void *ptr
, int size
)
425 extern void __bad_xchg(volatile void *, int);
434 local_irq_save(flags
);
435 ret
= *(volatile unsigned char *)ptr
;
436 *(volatile unsigned char *)ptr
= x
;
437 local_irq_restore(flags
);
441 local_irq_save(flags
);
442 ret
= *(volatile unsigned long *)ptr
;
443 *(volatile unsigned long *)ptr
= x
;
444 local_irq_restore(flags
);
447 case 1: __asm__
__volatile__ ("swpb %0, %1, [%2]"
452 case 4: __asm__
__volatile__ ("swp %0, %1, [%2]"
458 default: __bad_xchg(ptr
, size
), ret
= 0;
464 #endif /* CONFIG_SMP */
466 #endif /* __ASSEMBLY__ */
468 #endif /* __KERNEL__ */