ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-arm / processor.h
1 /*
2  *  linux/include/asm-arm/processor.h
3  *
4  *  Copyright (C) 1995-1999 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10
11 #ifndef __ASM_ARM_PROCESSOR_H
12 #define __ASM_ARM_PROCESSOR_H
13
14 /*
15  * Default implementation of macro that returns current
16  * instruction pointer ("program counter").
17  */
18 #define current_text_addr() ({ __label__ _l; _l: &&_l;})
19
20 #ifdef __KERNEL__
21
22 #define MCA_bus 0
23 #define MCA_bus__is_a_macro
24
25 #include <asm/atomic.h>
26 #include <asm/ptrace.h>
27 #include <asm/procinfo.h>
28 #include <asm/arch/memory.h>
29 #include <asm/types.h>
30
31 #define KERNEL_STACK_SIZE       PAGE_SIZE
32
33 union debug_insn {
34         u32     arm;
35         u16     thumb;
36 };
37
38 struct debug_entry {
39         u32                     address;
40         union debug_insn        insn;
41 };
42
43 struct debug_info {
44         int                     nsaved;
45         struct debug_entry      bp[2];
46 };
47
48 struct thread_struct {
49                                                         /* fault info     */
50         unsigned long           address;
51         unsigned long           trap_no;
52         unsigned long           error_code;
53                                                         /* debugging      */
54         struct debug_info       debug;
55 };
56
57 #define INIT_THREAD  {  }
58
59 #define start_thread(regs,pc,sp)                                        \
60 ({                                                                      \
61         unsigned long *stack = (unsigned long *)sp;                     \
62         set_fs(USER_DS);                                                \
63         memzero(regs->uregs, sizeof(regs->uregs));                      \
64         if (current->personality & ADDR_LIMIT_32BIT)                    \
65                 regs->ARM_cpsr = USR_MODE;                              \
66         else                                                            \
67                 regs->ARM_cpsr = USR26_MODE;                            \
68         if (elf_hwcap & HWCAP_THUMB && pc & 1)                          \
69                 regs->ARM_cpsr |= PSR_T_BIT;                            \
70         regs->ARM_pc = pc & ~1;         /* pc */                        \
71         regs->ARM_sp = sp;              /* sp */                        \
72         regs->ARM_r2 = stack[2];        /* r2 (envp) */                 \
73         regs->ARM_r1 = stack[1];        /* r1 (argv) */                 \
74         regs->ARM_r0 = stack[0];        /* r0 (argc) */                 \
75 })
76
77 /* Forward declaration, a strange C thing */
78 struct task_struct;
79
80 /* Free all resources held by a thread. */
81 extern void release_thread(struct task_struct *);
82
83 /* Prepare to copy thread state - unlazy all lazy status */
84 #define prepare_to_copy(tsk)    do { } while (0)
85
86 unsigned long get_wchan(struct task_struct *p);
87
88 #define cpu_relax()                     barrier()
89
90 /*
91  * Create a new kernel thread
92  */
93 extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
94
95 #define KSTK_EIP(tsk)   (((unsigned long *)(4096+(unsigned long)(tsk)->thread_info))[1019])
96 #define KSTK_ESP(tsk)   (((unsigned long *)(4096+(unsigned long)(tsk)->thread_info))[1017])
97
98 /*
99  * Prefetching support - only ARMv5.
100  */
101 #if __LINUX_ARM_ARCH__ >= 5
102
103 #define ARCH_HAS_PREFETCH
104 #define prefetch(ptr)                           \
105         ({                                      \
106                 __asm__ __volatile__(           \
107                 "pld\t%0"                       \
108                 :                               \
109                 : "o" (*(char *)(ptr))          \
110                 : "cc");                        \
111         })
112
113 #define ARCH_HAS_PREFETCHW
114 #define prefetchw(ptr)  prefetch(ptr)
115
116 #define ARCH_HAS_SPINLOCK_PREFETCH
117 #define spin_lock_prefetch(x) do { } while (0)
118
119 #endif
120
121 #endif
122
123 #endif /* __ASM_ARM_PROCESSOR_H */