uml-patch-2.6.6-1
[linux-2.6.git] / include / asm-um / processor-generic.h
1 /* 
2  * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.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 struct thread_struct {
24         int forking;
25         unsigned long kernel_stack;
26         int nsyscalls;
27         struct pt_regs regs;
28         unsigned long cr2;
29         int err;
30         unsigned long trap_no;
31         void *fault_addr;
32         void *fault_catcher;
33         struct task_struct *prev_sched;
34         unsigned long temp_stack;
35         void *exec_buf;
36         struct arch_thread arch;
37         union {
38 #ifdef CONFIG_MODE_TT
39                 struct {
40                         int extern_pid;
41                         int tracing;
42                         int switch_pipe[2];
43                         int singlestep_syscall;
44                         int vm_seq;
45                 } tt;
46 #endif
47 #ifdef CONFIG_MODE_SKAS
48                 struct {
49                         void *switch_buf;
50                         void *fork_buf;
51                         int mm_count;
52                 } skas;
53 #endif
54         } mode;
55         struct {
56                 int op;
57                 union {
58                         struct {
59                                 int pid;
60                         } fork, exec;
61                         struct {
62                                 int (*proc)(void *);
63                                 void *arg;
64                         } thread;
65                         struct {
66                                 void (*proc)(void *);
67                                 void *arg;
68                         } cb;
69                 } u;
70         } request;
71 };
72
73 #define INIT_THREAD \
74 { \
75         .forking                = 0, \
76         .kernel_stack           = 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 #define TASK_SIZE       (task_size)
115
116 /* This decides where the kernel will search for a free chunk of vm
117  * space during mmap's.
118  */
119 #define TASK_UNMAPPED_BASE      (0x40000000)
120
121 extern void start_thread(struct pt_regs *regs, unsigned long entry, 
122                          unsigned long stack);
123
124 struct cpuinfo_um {
125         unsigned long loops_per_jiffy;
126         int ipi_pipe[2];
127 };
128
129 extern struct cpuinfo_um boot_cpu_data;
130
131 #define my_cpu_data             cpu_data[smp_processor_id()]
132
133 #ifdef CONFIG_SMP
134 extern struct cpuinfo_um cpu_data[];
135 #define current_cpu_data cpu_data[smp_processor_id()]
136 #else
137 #define cpu_data (&boot_cpu_data)
138 #define current_cpu_data boot_cpu_data
139 #endif
140
141 #define KSTK_EIP(tsk) (PT_REGS_IP(&tsk->thread.regs))
142 #define KSTK_ESP(tsk) (PT_REGS_SP(&tsk->thread.regs))
143 #define get_wchan(p) (0)
144
145 #endif
146
147 /*
148  * Overrides for Emacs so that we follow Linus's tabbing style.
149  * Emacs will notice this stuff at the end of the file and automatically
150  * adjust the settings for this buffer only.  This must remain at the end
151  * of the file.
152  * ---------------------------------------------------------------------------
153  * Local variables:
154  * c-file-style: "linux"
155  * End:
156  */