enable kexec
[linux-2.6.git] / include / asm-um / processor-generic.h
1 /* 
2  * Copyright (C) 2000 - 2004 Jeff Dike (jdike@addtoit.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __UM_PROCESSOR_GENERIC_H
7 #define __UM_PROCESSOR_GENERIC_H
8
9 struct pt_regs;
10
11 struct task_struct;
12
13 #include "linux/config.h"
14 #include "asm/ptrace.h"
15 #include "choose-mode.h"
16
17 struct mm_struct;
18
19 #define current_text_addr() ((void *) 0)
20
21 #define cpu_relax()   barrier()
22
23 #define STACK_PAGE_COUNT        (4096/PAGE_SIZE)
24
25 struct thread_struct {
26         int forking;
27         int nsyscalls;
28         struct pt_regs regs;
29         unsigned long cr2;
30         int err;
31         unsigned long trap_no;
32         void *fault_addr;
33         void *fault_catcher;
34         struct task_struct *prev_sched;
35         unsigned long temp_stack;
36         void *exec_buf;
37         struct arch_thread arch;
38         union {
39 #ifdef CONFIG_MODE_TT
40                 struct {
41                         int extern_pid;
42                         int tracing;
43                         int switch_pipe[2];
44                         int singlestep_syscall;
45                         int vm_seq;
46                 } tt;
47 #endif
48 #ifdef CONFIG_MODE_SKAS
49                 struct {
50                         void *switch_buf;
51                         void *fork_buf;
52                         int mm_count;
53                 } skas;
54 #endif
55         } mode;
56         struct {
57                 int op;
58                 union {
59                         struct {
60                                 int pid;
61                         } fork, exec;
62                         struct {
63                                 int (*proc)(void *);
64                                 void *arg;
65                         } thread;
66                         struct {
67                                 void (*proc)(void *);
68                                 void *arg;
69                         } cb;
70                 } u;
71         } request;
72 };
73
74 #define INIT_THREAD \
75 { \
76         .forking                = 0, \
77         .nsyscalls              = 0, \
78         .regs                   = EMPTY_REGS, \
79         .cr2                    = 0, \
80         .err                    = 0, \
81         .fault_addr             = NULL, \
82         .prev_sched             = NULL, \
83         .temp_stack             = 0, \
84         .exec_buf               = NULL, \
85         .arch                   = INIT_ARCH_THREAD, \
86         .request                = { 0 } \
87 }
88
89 typedef struct {
90         unsigned long seg;
91 } mm_segment_t;
92
93 extern struct task_struct *alloc_task_struct(void);
94
95 extern void release_thread(struct task_struct *);
96 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
97 extern void dump_thread(struct pt_regs *regs, struct user *u);
98 extern void prepare_to_copy(struct task_struct *tsk);
99
100 extern unsigned long thread_saved_pc(struct task_struct *t);
101
102 static inline void mm_copy_segments(struct mm_struct *from_mm, 
103                                     struct mm_struct *new_mm)
104 {
105 }
106
107 #define init_stack      (init_thread_union.stack)
108
109 /*
110  * User space process size: 3GB (default).
111  */
112 extern unsigned long task_size;
113
114 #undef TASK_SIZE
115 #define TASK_SIZE       (task_size)
116
117 /* This decides where the kernel will search for a free chunk of vm
118  * space during mmap's.
119  */
120 #define TASK_UNMAPPED_BASE      (0x40000000)
121
122 extern void start_thread(struct pt_regs *regs, unsigned long entry, 
123                          unsigned long stack);
124
125 struct cpuinfo_um {
126         unsigned long loops_per_jiffy;
127         int ipi_pipe[2];
128 };
129
130 extern struct cpuinfo_um boot_cpu_data;
131
132 #define my_cpu_data             cpu_data[smp_processor_id()]
133
134 #ifdef CONFIG_SMP
135 extern struct cpuinfo_um cpu_data[];
136 #define current_cpu_data cpu_data[smp_processor_id()]
137 #else
138 #define cpu_data (&boot_cpu_data)
139 #define current_cpu_data boot_cpu_data
140 #endif
141
142 #define KSTK_EIP(tsk) (PT_REGS_IP(&tsk->thread.regs))
143 #define KSTK_ESP(tsk) (PT_REGS_SP(&tsk->thread.regs))
144 #define get_wchan(p) (0)
145
146 #endif
147
148 /*
149  * Overrides for Emacs so that we follow Linus's tabbing style.
150  * Emacs will notice this stuff at the end of the file and automatically
151  * adjust the settings for this buffer only.  This must remain at the end
152  * of the file.
153  * ---------------------------------------------------------------------------
154  * Local variables:
155  * c-file-style: "linux"
156  * End:
157  */