[PATCH] CREDITS update
[linux-2.6/history.git] / include / asm-arm / processor.h
blob3890d603835547e8a30f30f4a17755019097cd01
1 /*
2 * linux/include/asm-arm/processor.h
4 * Copyright (C) 1995-1999 Russell King
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 */
11 #ifndef __ASM_ARM_PROCESSOR_H
12 #define __ASM_ARM_PROCESSOR_H
15 * Default implementation of macro that returns current
16 * instruction pointer ("program counter").
18 #define current_text_addr() ({ __label__ _l; _l: &&_l;})
20 #ifdef __KERNEL__
22 #define MCA_bus 0
23 #define MCA_bus__is_a_macro
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>
31 #define KERNEL_STACK_SIZE PAGE_SIZE
33 union debug_insn {
34 u32 arm;
35 u16 thumb;
38 struct debug_entry {
39 u32 address;
40 union debug_insn insn;
43 struct debug_info {
44 int nsaved;
45 struct debug_entry bp[2];
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;
57 #define INIT_THREAD { }
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) */ \
77 /* Forward declaration, a strange C thing */
78 struct task_struct;
80 /* Free all resources held by a thread. */
81 extern void release_thread(struct task_struct *);
83 /* Prepare to copy thread state - unlazy all lazy status */
84 #define prepare_to_copy(tsk) do { } while (0)
86 unsigned long get_wchan(struct task_struct *p);
88 #define cpu_relax() barrier()
91 * Create a new kernel thread
93 extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
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])
99 * Prefetching support - only ARMv5.
101 #if __LINUX_ARM_ARCH__ >= 5
103 #define ARCH_HAS_PREFETCH
104 #define prefetch(ptr) \
105 ({ \
106 __asm__ __volatile__( \
107 "pld\t%0" \
109 : "o" (*(char *)(ptr)) \
110 : "cc"); \
113 #define ARCH_HAS_PREFETCHW
114 #define prefetchw(ptr) prefetch(ptr)
116 #define ARCH_HAS_SPINLOCK_PREFETCH
117 #define spin_lock_prefetch(x) do { } while (0)
119 #endif
121 #endif
123 #endif /* __ASM_ARM_PROCESSOR_H */