uml: throw out CONFIG_MODE_TT
[linux-2.6-block.git] / arch / um / kernel / um_arch.c
CommitLineData
ea2ba7dc 1/*
1da177e4
LT
2 * Copyright (C) 2000, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
1da177e4
LT
6#include "linux/kernel.h"
7#include "linux/sched.h"
8#include "linux/notifier.h"
9#include "linux/mm.h"
10#include "linux/types.h"
11#include "linux/tty.h"
12#include "linux/init.h"
13#include "linux/bootmem.h"
14#include "linux/spinlock.h"
15#include "linux/utsname.h"
16#include "linux/sysrq.h"
17#include "linux/seq_file.h"
18#include "linux/delay.h"
19#include "linux/module.h"
b4ffb6ad 20#include "linux/utsname.h"
1da177e4
LT
21#include "asm/page.h"
22#include "asm/pgtable.h"
23#include "asm/ptrace.h"
24#include "asm/elf.h"
25#include "asm/user.h"
16c11163 26#include "asm/setup.h"
1da177e4
LT
27#include "ubd_user.h"
28#include "asm/current.h"
1da177e4 29#include "kern_util.h"
4ff83ce1 30#include "as-layout.h"
eb830759 31#include "arch.h"
1da177e4
LT
32#include "kern.h"
33#include "mem_user.h"
34#include "mem.h"
1da177e4
LT
35#include "initrd.h"
36#include "init.h"
37#include "os.h"
38#include "choose-mode.h"
39#include "mode_kern.h"
40#include "mode.h"
cb66504d 41#include "skas.h"
1da177e4
LT
42
43#define DEFAULT_COMMAND_LINE "root=98:0"
44
1d1497e1 45/* Changed in add_arg and setup_arch, which run before SMP is started */
7a3a06d0 46static char __initdata command_line[COMMAND_LINE_SIZE] = { 0 };
1da177e4 47
7a3a06d0 48static void __init add_arg(char *arg)
1da177e4
LT
49{
50 if (strlen(command_line) + strlen(arg) + 1 > COMMAND_LINE_SIZE) {
51 printf("add_arg: Too many command line arguments!\n");
52 exit(1);
53 }
54 if(strlen(command_line) > 0)
55 strcat(command_line, " ");
56 strcat(command_line, arg);
57}
58
1d1497e1
JD
59/*
60 * These fields are initialized at boot time and not changed.
61 * XXX This structure is used only in the non-SMP case. Maybe this
62 * should be moved to smp.c.
63 */
64struct cpuinfo_um boot_cpu_data = {
1da177e4
LT
65 .loops_per_jiffy = 0,
66 .ipi_pipe = { -1, -1 }
67};
68
69unsigned long thread_saved_pc(struct task_struct *task)
70{
a5ed1ffa
JD
71 return os_process_pc(CHOOSE_MODE_PROC(thread_pid_tt, thread_pid_skas,
72 task));
1da177e4
LT
73}
74
b4ffb6ad
JD
75/* Changed in setup_arch, which is called in early boot */
76static char host_info[(__NEW_UTS_LEN + 1) * 5];
77
1da177e4
LT
78static int show_cpuinfo(struct seq_file *m, void *v)
79{
80 int index = 0;
81
82#ifdef CONFIG_SMP
83 index = (struct cpuinfo_um *) v - cpu_data;
84 if (!cpu_online(index))
85 return 0;
86#endif
87
88 seq_printf(m, "processor\t: %d\n", index);
89 seq_printf(m, "vendor_id\t: User Mode Linux\n");
90 seq_printf(m, "model name\t: UML\n");
91 seq_printf(m, "mode\t\t: %s\n", CHOOSE_MODE("tt", "skas"));
92 seq_printf(m, "host\t\t: %s\n", host_info);
93 seq_printf(m, "bogomips\t: %lu.%02lu\n\n",
94 loops_per_jiffy/(500000/HZ),
95 (loops_per_jiffy/(5000/HZ)) % 100);
96
a5ed1ffa 97 return 0;
1da177e4
LT
98}
99
100static void *c_start(struct seq_file *m, loff_t *pos)
101{
102 return *pos < NR_CPUS ? cpu_data + *pos : NULL;
103}
104
105static void *c_next(struct seq_file *m, void *v, loff_t *pos)
106{
107 ++*pos;
108 return c_start(m, pos);
109}
110
111static void c_stop(struct seq_file *m, void *v)
112{
113}
114
5e7672ec 115const struct seq_operations cpuinfo_op = {
1da177e4
LT
116 .start = c_start,
117 .next = c_next,
118 .stop = c_stop,
119 .show = show_cpuinfo,
120};
121
1da177e4
LT
122/* Set in linux_main */
123unsigned long host_task_size;
124unsigned long task_size;
1da177e4 125unsigned long uml_physmem;
1d1497e1 126unsigned long uml_reserved; /* Also modified in mem_init */
1da177e4
LT
127unsigned long start_vm;
128unsigned long end_vm;
1d1497e1
JD
129
130/* Set in uml_ncpus_setup */
1da177e4
LT
131int ncpus = 1;
132
1da177e4
LT
133/* Set in early boot */
134static int have_root __initdata = 0;
1d1497e1
JD
135
136/* Set in uml_mem_setup and modified in linux_main */
ae173816 137long long physmem_size = 32 * 1024 * 1024;
1da177e4 138
1da177e4
LT
139static char *usage_string =
140"User Mode Linux v%s\n"
141" available at http://user-mode-linux.sourceforge.net/\n\n";
142
143static int __init uml_version_setup(char *line, int *add)
144{
96b644bd 145 printf("%s\n", init_utsname()->release);
1da177e4
LT
146 exit(0);
147
148 return 0;
149}
150
151__uml_setup("--version", uml_version_setup,
152"--version\n"
153" Prints the version number of the kernel.\n\n"
154);
155
156static int __init uml_root_setup(char *line, int *add)
157{
158 have_root = 1;
159 return 0;
160}
161
162__uml_setup("root=", uml_root_setup,
163"root=<file containing the root fs>\n"
164" This is actually used by the generic kernel in exactly the same\n"
165" way as in any other kernel. If you configure a number of block\n"
166" devices and want to boot off something other than ubd0, you \n"
167" would use something like:\n"
168" root=/dev/ubd5\n\n"
169);
170
fbd55779
JD
171static int __init no_skas_debug_setup(char *line, int *add)
172{
173 printf("'debug' is not necessary to gdb UML in skas mode - run \n");
42fda663 174 printf("'gdb linux'");
fbd55779
JD
175
176 return 0;
177}
178
179__uml_setup("debug", no_skas_debug_setup,
180"debug\n"
181" this flag is not needed to run gdb on UML in skas mode\n\n"
182);
183
1da177e4
LT
184#ifdef CONFIG_SMP
185static int __init uml_ncpus_setup(char *line, int *add)
186{
a5ed1ffa
JD
187 if (!sscanf(line, "%d", &ncpus)) {
188 printf("Couldn't parse [%s]\n", line);
189 return -1;
190 }
1da177e4 191
a5ed1ffa 192 return 0;
1da177e4
LT
193}
194
195__uml_setup("ncpus=", uml_ncpus_setup,
196"ncpus=<# of desired CPUs>\n"
197" This tells an SMP kernel how many virtual processors to start.\n\n"
198);
199#endif
200
1da177e4
LT
201static int __init Usage(char *line, int *add)
202{
a5ed1ffa 203 const char **p;
1da177e4 204
96b644bd 205 printf(usage_string, init_utsname()->release);
a5ed1ffa
JD
206 p = &__uml_help_start;
207 while (p < &__uml_help_end) {
208 printf("%s", *p);
209 p++;
210 }
1da177e4 211 exit(0);
1da177e4
LT
212 return 0;
213}
214
215__uml_setup("--help", Usage,
216"--help\n"
217" Prints this message.\n\n"
218);
219
220static int __init uml_checksetup(char *line, int *add)
221{
222 struct uml_param *p;
223
224 p = &__uml_setup_start;
225 while(p < &__uml_setup_end) {
226 int n;
227
228 n = strlen(p->str);
229 if(!strncmp(line, p->str, n)){
230 if (p->setup_func(line + n, add)) return 1;
231 }
232 p++;
233 }
234 return 0;
235}
236
237static void __init uml_postsetup(void)
238{
239 initcall_t *p;
240
241 p = &__uml_postsetup_start;
242 while(p < &__uml_postsetup_end){
243 (*p)();
244 p++;
245 }
246 return;
247}
248
249/* Set during early boot */
250unsigned long brk_start;
251unsigned long end_iomem;
252EXPORT_SYMBOL(end_iomem);
253
254#define MIN_VMALLOC (32 * 1024 * 1024)
255
23bbd586
JD
256extern char __binary_start;
257
7a3a06d0 258int __init linux_main(int argc, char **argv)
1da177e4
LT
259{
260 unsigned long avail, diff;
261 unsigned long virtmem_size, max_physmem;
262 unsigned int i, add;
cb66504d 263 char * mode;
1da177e4
LT
264
265 for (i = 1; i < argc; i++){
266 if((i == 1) && (argv[i][0] == ' ')) continue;
267 add = 1;
268 uml_checksetup(argv[i], &add);
269 if (add)
270 add_arg(argv[i]);
271 }
272 if(have_root == 0)
273 add_arg(DEFAULT_COMMAND_LINE);
274
60d339f6 275 os_early_checks();
cb66504d 276
42fda663
JD
277 can_do_skas();
278
279 if (proc_mm && ptrace_faultinfo)
cb66504d
PBG
280 mode = "SKAS3";
281 else
282 mode = "SKAS0";
cb66504d
PBG
283
284 printf("UML running in %s mode\n", mode);
285
23bbd586
JD
286 host_task_size = CHOOSE_MODE_PROC(set_task_sizes_tt,
287 set_task_sizes_skas, &task_size);
1da177e4 288
ea2ba7dc 289 /*
a5ed1ffa
JD
290 * Setting up handlers to 'sig_info' struct
291 */
ea2ba7dc
GS
292 os_fill_handlinfo(handlinfo_kern);
293
1da177e4
LT
294 brk_start = (unsigned long) sbrk(0);
295 CHOOSE_MODE_PROC(before_mem_tt, before_mem_skas, brk_start);
296 /* Increase physical memory size for exec-shield users
297 so they actually get what they asked for. This should
298 add zero for non-exec shield users */
299
300 diff = UML_ROUND_UP(brk_start) - UML_ROUND_UP(&_end);
301 if(diff > 1024 * 1024){
302 printf("Adding %ld bytes to physical memory to account for "
303 "exec-shield gap\n", diff);
304 physmem_size += UML_ROUND_UP(brk_start) - UML_ROUND_UP(&_end);
305 }
306
1d1497e1 307 uml_physmem = (unsigned long) &__binary_start & PAGE_MASK;
1da177e4
LT
308
309 /* Reserve up to 4M after the current brk */
310 uml_reserved = ROUND_4M(brk_start) + (1 << 22);
311
96b644bd 312 setup_machinename(init_utsname()->machine);
1da177e4 313
1da177e4
LT
314 highmem = 0;
315 iomem_size = (iomem_size + PAGE_SIZE - 1) & PAGE_MASK;
316 max_physmem = get_kmem_end() - uml_physmem - iomem_size - MIN_VMALLOC;
317
318 /* Zones have to begin on a 1 << MAX_ORDER page boundary,
319 * so this makes sure that's true for highmem
320 */
321 max_physmem &= ~((1 << (PAGE_SHIFT + MAX_ORDER)) - 1);
322 if(physmem_size + iomem_size > max_physmem){
323 highmem = physmem_size + iomem_size - max_physmem;
324 physmem_size -= highmem;
325#ifndef CONFIG_HIGHMEM
326 highmem = 0;
327 printf("CONFIG_HIGHMEM not enabled - physical memory shrunk "
d9f8b62a 328 "to %Lu bytes\n", physmem_size);
1da177e4
LT
329#endif
330 }
331
332 high_physmem = uml_physmem + physmem_size;
333 end_iomem = high_physmem + iomem_size;
334 high_memory = (void *) end_iomem;
335
336 start_vm = VMALLOC_START;
337
338 setup_physmem(uml_physmem, uml_reserved, physmem_size, highmem);
339 if(init_maps(physmem_size, iomem_size, highmem)){
d9f8b62a
JD
340 printf("Failed to allocate mem_map for %Lu bytes of physical "
341 "memory and %Lu bytes of highmem\n", physmem_size,
1da177e4
LT
342 highmem);
343 exit(1);
344 }
345
346 virtmem_size = physmem_size;
347 avail = get_kmem_end() - start_vm;
348 if(physmem_size > avail) virtmem_size = avail;
349 end_vm = start_vm + virtmem_size;
350
351 if(virtmem_size < physmem_size)
ae173816 352 printf("Kernel virtual memory size shrunk to %lu bytes\n",
1da177e4
LT
353 virtmem_size);
354
a5ed1ffa 355 uml_postsetup();
1da177e4 356
57598fd7 357 stack_protections((unsigned long) &init_thread_info);
1da177e4
LT
358 os_flush_stdout();
359
a5ed1ffa 360 return CHOOSE_MODE(start_uml_tt(), start_uml_skas());
1da177e4
LT
361}
362
363extern int uml_exitcode;
364
365static int panic_exit(struct notifier_block *self, unsigned long unused1,
366 void *unused2)
367{
368 bust_spinlocks(1);
369 show_regs(&(current->thread.regs));
370 bust_spinlocks(0);
371 uml_exitcode = 1;
63843c26 372 os_dump_core();
a5ed1ffa 373 return 0;
1da177e4
LT
374}
375
376static struct notifier_block panic_exit_notifier = {
377 .notifier_call = panic_exit,
378 .next = NULL,
379 .priority = 0
380};
381
382void __init setup_arch(char **cmdline_p)
383{
e041c683
AS
384 atomic_notifier_chain_register(&panic_notifier_list,
385 &panic_exit_notifier);
1da177e4 386 paging_init();
19bf7e7a 387 strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
a5ed1ffa 388 *cmdline_p = command_line;
b4ffb6ad 389 setup_hostinfo(host_info, sizeof host_info);
1da177e4
LT
390}
391
392void __init check_bugs(void)
393{
394 arch_check_bugs();
a5ed1ffa 395 os_check_bugs();
1da177e4
LT
396}
397
9a0b5817
GH
398void apply_alternatives(struct alt_instr *start, struct alt_instr *end)
399{
400}
401
c61a8416 402#ifdef CONFIG_SMP
9a0b5817
GH
403void alternatives_smp_module_add(struct module *mod, char *name,
404 void *locks, void *locks_end,
405 void *text, void *text_end)
406{
407}
408
409void alternatives_smp_module_del(struct module *mod)
1da177e4
LT
410{
411}
c61a8416 412#endif