blob: e6b762b314881d0c7f28cec120b869e46c511bb0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_ARM_SYSTEM_H
2#define __ASM_ARM_SYSTEM_H
3
4#ifdef __KERNEL__
5
6#include <linux/config.h>
7
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
17
18/*
19 * CR1 bits (CP#15 CR1)
20 */
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 */
44
45#define CPUID_ID 0
46#define CPUID_CACHETYPE 1
47#define CPUID_TCM 2
48#define CPUID_TLBTYPE 3
49
50#define read_cpuid(reg) \
51 ({ \
52 unsigned int __val; \
53 asm("mrc p15, 0, %0, c0, c0, " __stringify(reg) \
54 : "=r" (__val) \
55 : \
56 : "cc"); \
57 __val; \
58 })
59
60/*
61 * This is used to ensure the compiler did actually allocate the register we
62 * asked it for some inline assembly sequences. Apparently we can't trust
63 * the compiler from one version to another so a bit of paranoia won't hurt.
64 * This string is meant to be concatenated with the inline asm string and
65 * will cause compilation to stop on mismatch.
66 * (for details, see gcc PR 15089)
67 */
68#define __asmeq(x, y) ".ifnc " x "," y " ; .err ; .endif\n\t"
69
70#ifndef __ASSEMBLY__
71
72#include <linux/linkage.h>
73
74struct thread_info;
75struct task_struct;
76
77/* information about the system we're running on */
78extern unsigned int system_rev;
79extern unsigned int system_serial_low;
80extern unsigned int system_serial_high;
81extern unsigned int mem_fclk_21285;
82
83struct pt_regs;
84
85void die(const char *msg, struct pt_regs *regs, int err)
86 __attribute__((noreturn));
87
Russell Kingcfb08102005-06-30 11:06:49 +010088struct siginfo;
89void notify_die(const char *str, struct pt_regs *regs, struct siginfo *info,
90 unsigned long err, unsigned long trap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92void hook_fault_code(int nr, int (*fn)(unsigned long, unsigned int,
93 struct pt_regs *),
94 int sig, const char *name);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#define xchg(ptr,x) \
97 ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
98
99#define tas(ptr) (xchg((ptr),1))
100
101extern asmlinkage void __backtrace(void);
Russell King652a12e2005-04-17 15:50:36 +0100102extern asmlinkage void c_backtrace(unsigned long fp, int pmode);
Russell King5470dc62005-11-16 18:36:49 +0000103
104struct mm_struct;
Russell King652a12e2005-04-17 15:50:36 +0100105extern void show_pte(struct mm_struct *mm, unsigned long addr);
106extern void __show_regs(struct pt_regs *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108extern int cpu_architecture(void);
Russell King36c5ed22005-06-19 18:39:33 +0100109extern void cpu_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Richard Purdie74617fb2006-06-19 19:57:12 +0100111void arm_machine_restart(char mode);
112extern void (*arm_pm_restart)(char str);
113
Lennert Buytenhek23bdf862006-03-28 21:00:40 +0100114/*
115 * Intel's XScale3 core supports some v6 features (supersections, L2)
116 * but advertises itself as v5 as it does not support the v6 ISA. For
117 * this reason, we need a way to explicitly test for this type of CPU.
118 */
119#ifndef CONFIG_CPU_XSC3
120#define cpu_is_xsc3() 0
121#else
122static inline int cpu_is_xsc3(void)
123{
124 extern unsigned int processor_id;
125
126 if ((processor_id & 0xffffe000) == 0x69056000)
127 return 1;
128
129 return 0;
130}
131#endif
132
Deepak Saxena5cedae92006-05-31 16:14:05 -0700133#if !defined(CONFIG_CPU_XSCALE) && !defined(CONFIG_CPU_XSC3)
134#define cpu_is_xscale() 0
135#else
136#define cpu_is_xscale() 1
137#endif
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define set_cr(x) \
140 __asm__ __volatile__( \
141 "mcr p15, 0, %0, c1, c0, 0 @ set CR" \
142 : : "r" (x) : "cc")
143
144#define get_cr() \
145 ({ \
146 unsigned int __val; \
147 __asm__ __volatile__( \
148 "mrc p15, 0, %0, c1, c0, 0 @ get CR" \
149 : "=r" (__val) : : "cc"); \
150 __val; \
151 })
152
153extern unsigned long cr_no_alignment; /* defined in entry-armv.S */
154extern unsigned long cr_alignment; /* defined in entry-armv.S */
155
156#define UDBG_UNDEFINED (1 << 0)
157#define UDBG_SYSCALL (1 << 1)
158#define UDBG_BADABORT (1 << 2)
159#define UDBG_SEGV (1 << 3)
160#define UDBG_BUS (1 << 4)
161
162extern unsigned int user_debug;
163
164#if __LINUX_ARM_ARCH__ >= 4
165#define vectors_high() (cr_alignment & CR_V)
166#else
167#define vectors_high() (0)
168#endif
169
Russell King6d9b37a2005-07-26 19:44:26 +0100170#if __LINUX_ARM_ARCH__ >= 6
171#define mb() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" \
172 : : "r" (0) : "memory")
173#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define mb() __asm__ __volatile__ ("" : : : "memory")
Russell King6d9b37a2005-07-26 19:44:26 +0100175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define rmb() mb()
177#define wmb() mb()
178#define read_barrier_depends() do { } while(0)
179#define set_mb(var, value) do { var = value; mb(); } while (0)
180#define set_wmb(var, value) do { var = value; wmb(); } while (0)
181#define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
Nick Piggin4866cde2005-06-25 14:57:23 -0700184 * switch_mm() may do a full cache flush over the context switch,
185 * so enable interrupts over the context switch to avoid high
186 * latency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
Nick Piggin4866cde2005-06-25 14:57:23 -0700188#define __ARCH_WANT_INTERRUPTS_ON_CTXSW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/*
191 * switch_to(prev, next) should switch from task `prev' to `next'
192 * `prev' will never be the same as `next'. schedule() itself
193 * contains the memory barrier to tell GCC not to cache `current'.
194 */
195extern struct task_struct *__switch_to(struct task_struct *, struct thread_info *, struct thread_info *);
196
197#define switch_to(prev,next,last) \
198do { \
Al Viroe7c1b322006-01-12 01:05:56 -0800199 last = __switch_to(prev,task_thread_info(prev), task_thread_info(next)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200} while (0)
201
202/*
Ingo Molnar4dc7a0b2006-01-12 01:05:27 -0800203 * On SMP systems, when the scheduler does migration-cost autodetection,
204 * it needs a way to flush as much of the CPU's caches as possible.
205 *
206 * TODO: fill this in!
207 */
208static inline void sched_cacheflush(void)
209{
210}
211
212/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * CPU interrupt mask handling.
214 */
215#if __LINUX_ARM_ARCH__ >= 6
216
217#define local_irq_save(x) \
218 ({ \
219 __asm__ __volatile__( \
220 "mrs %0, cpsr @ local_irq_save\n" \
221 "cpsid i" \
222 : "=r" (x) : : "memory", "cc"); \
223 })
224
225#define local_irq_enable() __asm__("cpsie i @ __sti" : : : "memory", "cc")
226#define local_irq_disable() __asm__("cpsid i @ __cli" : : : "memory", "cc")
227#define local_fiq_enable() __asm__("cpsie f @ __stf" : : : "memory", "cc")
228#define local_fiq_disable() __asm__("cpsid f @ __clf" : : : "memory", "cc")
229
230#else
231
232/*
233 * Save the current interrupt enable state & disable IRQs
234 */
235#define local_irq_save(x) \
236 ({ \
237 unsigned long temp; \
238 (void) (&temp == &x); \
239 __asm__ __volatile__( \
240 "mrs %0, cpsr @ local_irq_save\n" \
241" orr %1, %0, #128\n" \
242" msr cpsr_c, %1" \
243 : "=r" (x), "=r" (temp) \
244 : \
245 : "memory", "cc"); \
246 })
247
248/*
249 * Enable IRQs
250 */
251#define local_irq_enable() \
252 ({ \
253 unsigned long temp; \
254 __asm__ __volatile__( \
255 "mrs %0, cpsr @ local_irq_enable\n" \
256" bic %0, %0, #128\n" \
257" msr cpsr_c, %0" \
258 : "=r" (temp) \
259 : \
260 : "memory", "cc"); \
261 })
262
263/*
264 * Disable IRQs
265 */
266#define local_irq_disable() \
267 ({ \
268 unsigned long temp; \
269 __asm__ __volatile__( \
270 "mrs %0, cpsr @ local_irq_disable\n" \
271" orr %0, %0, #128\n" \
272" msr cpsr_c, %0" \
273 : "=r" (temp) \
274 : \
275 : "memory", "cc"); \
276 })
277
278/*
279 * Enable FIQs
280 */
281#define local_fiq_enable() \
282 ({ \
283 unsigned long temp; \
284 __asm__ __volatile__( \
285 "mrs %0, cpsr @ stf\n" \
286" bic %0, %0, #64\n" \
287" msr cpsr_c, %0" \
288 : "=r" (temp) \
289 : \
290 : "memory", "cc"); \
291 })
292
293/*
294 * Disable FIQs
295 */
296#define local_fiq_disable() \
297 ({ \
298 unsigned long temp; \
299 __asm__ __volatile__( \
300 "mrs %0, cpsr @ clf\n" \
301" orr %0, %0, #64\n" \
302" msr cpsr_c, %0" \
303 : "=r" (temp) \
304 : \
305 : "memory", "cc"); \
306 })
307
308#endif
309
310/*
311 * Save the current interrupt enable state.
312 */
313#define local_save_flags(x) \
314 ({ \
315 __asm__ __volatile__( \
316 "mrs %0, cpsr @ local_save_flags" \
317 : "=r" (x) : : "memory", "cc"); \
318 })
319
320/*
321 * restore saved IRQ & FIQ state
322 */
323#define local_irq_restore(x) \
324 __asm__ __volatile__( \
325 "msr cpsr_c, %0 @ local_irq_restore\n" \
326 : \
327 : "r" (x) \
328 : "memory", "cc")
329
330#define irqs_disabled() \
331({ \
332 unsigned long flags; \
333 local_save_flags(flags); \
Andrew Morton9a558cb2005-06-21 17:14:28 -0700334 (int)(flags & PSR_I_BIT); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335})
336
337#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339#define smp_mb() mb()
340#define smp_rmb() rmb()
341#define smp_wmb() wmb()
342#define smp_read_barrier_depends() read_barrier_depends()
343
344#else
345
346#define smp_mb() barrier()
347#define smp_rmb() barrier()
348#define smp_wmb() barrier()
349#define smp_read_barrier_depends() do { } while(0)
350
Russell King053a7b52005-06-28 19:22:25 +0100351#endif /* CONFIG_SMP */
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#if defined(CONFIG_CPU_SA1100) || defined(CONFIG_CPU_SA110)
354/*
355 * On the StrongARM, "swp" is terminally broken since it bypasses the
356 * cache totally. This means that the cache becomes inconsistent, and,
357 * since we use normal loads/stores as well, this is really bad.
358 * Typically, this causes oopsen in filp_close, but could have other,
359 * more disasterous effects. There are two work-arounds:
360 * 1. Disable interrupts and emulate the atomic swap
361 * 2. Clean the cache, perform atomic swap, flush the cache
362 *
363 * We choose (1) since its the "easiest" to achieve here and is not
364 * dependent on the processor type.
Russell King053a7b52005-06-28 19:22:25 +0100365 *
366 * NOTE that this solution won't work on an SMP system, so explcitly
367 * forbid it here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
369#define swp_is_buggy
370#endif
371
372static inline unsigned long __xchg(unsigned long x, volatile void *ptr, int size)
373{
374 extern void __bad_xchg(volatile void *, int);
375 unsigned long ret;
376#ifdef swp_is_buggy
377 unsigned long flags;
378#endif
Russell King95607822005-07-26 19:39:31 +0100379#if __LINUX_ARM_ARCH__ >= 6
380 unsigned int tmp;
381#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 switch (size) {
Russell King95607822005-07-26 19:39:31 +0100384#if __LINUX_ARM_ARCH__ >= 6
385 case 1:
386 asm volatile("@ __xchg1\n"
387 "1: ldrexb %0, [%3]\n"
388 " strexb %1, %2, [%3]\n"
389 " teq %1, #0\n"
390 " bne 1b"
391 : "=&r" (ret), "=&r" (tmp)
392 : "r" (x), "r" (ptr)
393 : "memory", "cc");
394 break;
395 case 4:
396 asm volatile("@ __xchg4\n"
397 "1: ldrex %0, [%3]\n"
398 " strex %1, %2, [%3]\n"
399 " teq %1, #0\n"
400 " bne 1b"
401 : "=&r" (ret), "=&r" (tmp)
402 : "r" (x), "r" (ptr)
403 : "memory", "cc");
404 break;
405#elif defined(swp_is_buggy)
406#ifdef CONFIG_SMP
407#error SMP is not supported on this platform
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#endif
Russell King95607822005-07-26 19:39:31 +0100409 case 1:
410 local_irq_save(flags);
411 ret = *(volatile unsigned char *)ptr;
412 *(volatile unsigned char *)ptr = x;
413 local_irq_restore(flags);
414 break;
415
416 case 4:
417 local_irq_save(flags);
418 ret = *(volatile unsigned long *)ptr;
419 *(volatile unsigned long *)ptr = x;
420 local_irq_restore(flags);
421 break;
422#else
423 case 1:
424 asm volatile("@ __xchg1\n"
425 " swpb %0, %1, [%2]"
426 : "=&r" (ret)
427 : "r" (x), "r" (ptr)
428 : "memory", "cc");
429 break;
430 case 4:
431 asm volatile("@ __xchg4\n"
432 " swp %0, %1, [%2]"
433 : "=&r" (ret)
434 : "r" (x), "r" (ptr)
435 : "memory", "cc");
436 break;
437#endif
438 default:
439 __bad_xchg(ptr, size), ret = 0;
440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 return ret;
444}
445
Ben Dooksdabaeff2006-03-15 23:17:26 +0000446extern void disable_hlt(void);
447extern void enable_hlt(void);
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#endif /* __ASSEMBLY__ */
450
451#define arch_align_stack(x) (x)
452
453#endif /* __KERNEL__ */
454
455#endif