ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-alpha / processor.h
1 /*
2  * include/asm-alpha/processor.h
3  *
4  * Copyright (C) 1994 Linus Torvalds
5  */
6
7 #ifndef __ASM_ALPHA_PROCESSOR_H
8 #define __ASM_ALPHA_PROCESSOR_H
9
10 #include <linux/personality.h>  /* for ADDR_LIMIT_32BIT */
11
12 /*
13  * Returns current instruction pointer ("program counter").
14  */
15 #define current_text_addr() \
16   ({ void *__pc; __asm__ ("br %0,.+4" : "=r"(__pc)); __pc; })
17
18 /*
19  * We have a 42-bit user address space: 4TB user VM...
20  */
21 #define TASK_SIZE (0x40000000000UL)
22
23 /* This decides where the kernel will search for a free chunk of vm
24  * space during mmap's.
25  */
26 #define TASK_UNMAPPED_BASE \
27   ((current->personality & ADDR_LIMIT_32BIT) ? 0x40000000 : TASK_SIZE / 2)
28
29 /*
30  * Bus types
31  */
32 #define MCA_bus 0
33 #define MCA_bus__is_a_macro /* for versions in ksyms.c */
34
35 typedef struct {
36         unsigned long seg;
37 } mm_segment_t;
38
39 /* This is dead.  Everything has been moved to thread_info.  */
40 struct thread_struct { };
41 #define INIT_THREAD  { }
42
43 /* Return saved PC of a blocked thread.  */
44 struct task_struct;
45 extern unsigned long thread_saved_pc(struct task_struct *);
46
47 /* Do necessary setup to start up a newly executed thread.  */
48 extern void start_thread(struct pt_regs *, unsigned long, unsigned long);
49
50 /* Free all resources held by a thread. */
51 extern void release_thread(struct task_struct *);
52
53 /* Prepare to copy thread state - unlazy all lazy status */
54 #define prepare_to_copy(tsk)    do { } while (0)
55
56 /* Create a kernel thread without removing it from tasklists.  */
57 extern long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
58
59 unsigned long get_wchan(struct task_struct *p);
60
61 /* See arch/alpha/kernel/ptrace.c for details.  */
62 #define PT_REG(reg) \
63   (PAGE_SIZE*2 - sizeof(struct pt_regs) + offsetof(struct pt_regs, reg))
64
65 #define SW_REG(reg) \
66  (PAGE_SIZE*2 - sizeof(struct pt_regs) - sizeof(struct switch_stack) \
67   + offsetof(struct switch_stack, reg))
68
69 #define KSTK_EIP(tsk) \
70   (*(unsigned long *)(PT_REG(pc) + (unsigned long) ((tsk)->thread_info)))
71
72 #define KSTK_ESP(tsk) \
73   ((tsk) == current ? rdusp() : (tsk)->thread_info->pcb.usp)
74
75 #define cpu_relax()     barrier()
76
77 #define ARCH_HAS_PREFETCH
78 #define ARCH_HAS_PREFETCHW
79 #define ARCH_HAS_SPINLOCK_PREFETCH
80
81 #ifndef CONFIG_SMP
82 /* Nothing to prefetch. */
83 #define spin_lock_prefetch(lock)        do { } while (0)
84 #endif
85
86 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
87 extern inline void prefetch(const void *ptr)  
88
89         __builtin_prefetch(ptr, 0, 3);
90 }
91
92 extern inline void prefetchw(const void *ptr)  
93 {
94         __builtin_prefetch(ptr, 1, 3);
95 }
96
97 #ifdef CONFIG_SMP
98 extern inline void spin_lock_prefetch(const void *ptr)  
99 {
100         __builtin_prefetch(ptr, 1, 3);
101 }
102 #endif
103
104 #else
105 extern inline void prefetch(const void *ptr)  
106
107         __asm__ ("ldl $31,%0" : : "m"(*(char *)ptr)); 
108 }
109
110 extern inline void prefetchw(const void *ptr)  
111 {
112         __asm__ ("ldq $31,%0" : : "m"(*(char *)ptr)); 
113 }
114
115 #ifdef CONFIG_SMP
116 extern inline void spin_lock_prefetch(const void *ptr)  
117 {
118         __asm__ ("ldq $31,%0" : : "m"(*(char *)ptr)); 
119 }
120 #endif
121
122 #endif /* GCC 3.1 */
123
124 #endif /* __ASM_ALPHA_PROCESSOR_H */