uml: throw out CONFIG_MODE_TT
[linux-2.6-block.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 "asm/ptrace.h"
14 #include "choose-mode.h"
15 #include "registers.h"
16 #include "sysdep/archsetjmp.h"
17
18 struct mm_struct;
19
20 struct thread_struct {
21         /* This flag is set to 1 before calling do_fork (and analyzed in
22          * copy_thread) to mark that we are begin called from userspace (fork /
23          * vfork / clone), and reset to 0 after. It is left to 0 when called
24          * from kernelspace (i.e. kernel_thread() or fork_idle(), as of 2.6.11). */
25         struct task_struct *saved_task;
26         int forking;
27         int nsyscalls;
28         struct pt_regs regs;
29         int singlestep_syscall;
30         void *fault_addr;
31         void *fault_catcher;
32         struct task_struct *prev_sched;
33         unsigned long temp_stack;
34         void *exec_buf;
35         struct arch_thread arch;
36         union {
37                 struct {
38                         jmp_buf switch_buf;
39                         int mm_count;
40                 } skas;
41         } mode;
42         struct {
43                 int op;
44                 union {
45                         struct {
46                                 int pid;
47                         } fork, exec;
48                         struct {
49                                 int (*proc)(void *);
50                                 void *arg;
51                         } thread;
52                         struct {
53                                 void (*proc)(void *);
54                                 void *arg;
55                         } cb;
56                 } u;
57         } request;
58 };
59
60 #define INIT_THREAD \
61 { \
62         .forking                = 0, \
63         .nsyscalls              = 0, \
64         .regs                   = EMPTY_REGS, \
65         .fault_addr             = NULL, \
66         .prev_sched             = NULL, \
67         .temp_stack             = 0, \
68         .exec_buf               = NULL, \
69         .arch                   = INIT_ARCH_THREAD, \
70         .request                = { 0 } \
71 }
72
73 typedef struct {
74         unsigned long seg;
75 } mm_segment_t;
76
77 extern struct task_struct *alloc_task_struct(void);
78
79 extern void release_thread(struct task_struct *);
80 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
81
82 static inline void prepare_to_copy(struct task_struct *tsk)
83 {
84 }
85
86
87 extern unsigned long thread_saved_pc(struct task_struct *t);
88
89 static inline void mm_copy_segments(struct mm_struct *from_mm,
90                                     struct mm_struct *new_mm)
91 {
92 }
93
94 #define init_stack      (init_thread_union.stack)
95
96 /*
97  * User space process size: 3GB (default).
98  */
99 extern unsigned long task_size;
100
101 #define TASK_SIZE       (task_size)
102
103 /* This decides where the kernel will search for a free chunk of vm
104  * space during mmap's.
105  */
106 #define TASK_UNMAPPED_BASE      (0x40000000)
107
108 extern void start_thread(struct pt_regs *regs, unsigned long entry, 
109                          unsigned long stack);
110
111 struct cpuinfo_um {
112         unsigned long loops_per_jiffy;
113         int ipi_pipe[2];
114 };
115
116 extern struct cpuinfo_um boot_cpu_data;
117
118 #define my_cpu_data             cpu_data[smp_processor_id()]
119
120 #ifdef CONFIG_SMP
121 extern struct cpuinfo_um cpu_data[];
122 #define current_cpu_data cpu_data[smp_processor_id()]
123 #else
124 #define cpu_data (&boot_cpu_data)
125 #define current_cpu_data boot_cpu_data
126 #endif
127
128
129 #define KSTK_REG(tsk, reg) \
130         get_thread_reg(reg, &tsk->thread.mode.skas.switch_buf)
131 #define get_wchan(p) (0)
132
133 #endif