ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / sparc / kernel / setup.c
1 /*  $Id: setup.c,v 1.126 2001/11/13 00:49:27 davem Exp $
2  *  linux/arch/sparc/kernel/setup.c
3  *
4  *  Copyright (C) 1995  David S. Miller (davem@caip.rutgers.edu)
5  *  Copyright (C) 2000  Anton Blanchard (anton@samba.org)
6  */
7
8 #include <linux/errno.h>
9 #include <linux/sched.h>
10 #include <linux/kernel.h>
11 #include <linux/mm.h>
12 #include <linux/stddef.h>
13 #include <linux/unistd.h>
14 #include <linux/ptrace.h>
15 #include <linux/slab.h>
16 #include <linux/initrd.h>
17 #include <asm/smp.h>
18 #include <linux/user.h>
19 #include <linux/a.out.h>
20 #include <linux/tty.h>
21 #include <linux/delay.h>
22 #include <linux/config.h>
23 #include <linux/fs.h>
24 #include <linux/seq_file.h>
25 #include <linux/syscalls.h>
26 #include <linux/kdev_t.h>
27 #include <linux/major.h>
28 #include <linux/string.h>
29 #include <linux/init.h>
30 #include <linux/interrupt.h>
31 #include <linux/console.h>
32 #include <linux/spinlock.h>
33 #include <linux/root_dev.h>
34
35 #include <asm/segment.h>
36 #include <asm/system.h>
37 #include <asm/io.h>
38 #include <asm/processor.h>
39 #include <asm/oplib.h>
40 #include <asm/page.h>
41 #include <asm/pgtable.h>
42 #include <asm/traps.h>
43 #include <asm/vaddrs.h>
44 #include <asm/kdebug.h>
45 #include <asm/mbus.h>
46 #include <asm/idprom.h>
47 #include <asm/hardirq.h>
48 #include <asm/machines.h>
49 #include <asm/cpudata.h>
50
51 struct screen_info screen_info = {
52         0, 0,                   /* orig-x, orig-y */
53         0,                      /* unused */
54         0,                      /* orig-video-page */
55         0,                      /* orig-video-mode */
56         128,                    /* orig-video-cols */
57         0,0,0,                  /* ega_ax, ega_bx, ega_cx */
58         54,                     /* orig-video-lines */
59         0,                      /* orig-video-isVGA */
60         16                      /* orig-video-points */
61 };
62
63 /* Typing sync at the prom prompt calls the function pointed to by
64  * romvec->pv_synchook which I set to the following function.
65  * This should sync all filesystems and return, for now it just
66  * prints out pretty messages and returns.
67  */
68
69 extern unsigned long trapbase;
70 void (*prom_palette)(int);
71
72 /* Pretty sick eh? */
73 void prom_sync_me(void)
74 {
75         unsigned long prom_tbr, flags;
76
77         /* XXX Badly broken. FIX! - Anton */
78         local_irq_save(flags);
79         __asm__ __volatile__("rd %%tbr, %0\n\t" : "=r" (prom_tbr));
80         __asm__ __volatile__("wr %0, 0x0, %%tbr\n\t"
81                              "nop\n\t"
82                              "nop\n\t"
83                              "nop\n\t" : : "r" (&trapbase));
84
85         if (prom_palette)
86                 prom_palette(1);
87         prom_printf("PROM SYNC COMMAND...\n");
88         show_free_areas();
89         if(current->pid != 0) {
90                 local_irq_enable();
91                 sys_sync();
92                 local_irq_disable();
93         }
94         prom_printf("Returning to prom\n");
95
96         __asm__ __volatile__("wr %0, 0x0, %%tbr\n\t"
97                              "nop\n\t"
98                              "nop\n\t"
99                              "nop\n\t" : : "r" (prom_tbr));
100         local_irq_restore(flags);
101
102         return;
103 }
104
105 unsigned int boot_flags __initdata = 0;
106 #define BOOTME_DEBUG  0x1
107 #define BOOTME_SINGLE 0x2
108
109 /* Exported for mm/init.c:paging_init. */
110 unsigned long cmdline_memory_size __initdata = 0;
111
112 static void
113 prom_console_write(struct console *con, const char *s, unsigned n)
114 {
115         prom_write(s, n);
116 }
117
118 static struct console prom_debug_console = {
119         .name =         "debug",
120         .write =        prom_console_write,
121         .flags =        CON_PRINTBUFFER,
122         .index =        -1,
123 };
124
125 int obp_system_intr(void)
126 {
127         if (boot_flags & BOOTME_DEBUG) {
128                 printk("OBP: system interrupted\n");
129                 prom_halt();
130                 return 1;
131         }
132         return 0;
133 }
134
135 /* 
136  * Process kernel command line switches that are specific to the
137  * SPARC or that require special low-level processing.
138  */
139 static void __init process_switch(char c)
140 {
141         switch (c) {
142         case 'd':
143                 boot_flags |= BOOTME_DEBUG;
144                 break;
145         case 's':
146                 boot_flags |= BOOTME_SINGLE;
147                 break;
148         case 'h':
149                 prom_printf("boot_flags_init: Halt!\n");
150                 prom_halt();
151                 break;
152         case 'p':
153                 /* Use PROM debug console. */
154                 register_console(&prom_debug_console);
155                 break;
156         default:
157                 printk("Unknown boot switch (-%c)\n", c);
158                 break;
159         }
160 }
161
162 static void __init process_console(char *commands)
163 {
164         serial_console = 0;
165         commands += 8;
166         /* Linux-style serial */
167         if (!strncmp(commands, "ttyS", 4))
168                 serial_console = simple_strtoul(commands + 4, NULL, 10) + 1;
169         else if (!strncmp(commands, "tty", 3)) {
170                 char c = *(commands + 3);
171                 /* Solaris-style serial */
172                 if (c == 'a' || c == 'b')
173                         serial_console = c - 'a' + 1;
174                 /* else Linux-style fbcon, not serial */
175         }
176 #if defined(CONFIG_PROM_CONSOLE)
177         if (!strncmp(commands, "prom", 4)) {
178                 char *p;
179
180                 for (p = commands - 8; *p && *p != ' '; p++)
181                         *p = ' ';
182                 conswitchp = &prom_con;
183         }
184 #endif
185 }
186
187 static void __init boot_flags_init(char *commands)
188 {
189         while (*commands) {
190                 /* Move to the start of the next "argument". */
191                 while (*commands && *commands == ' ')
192                         commands++;
193
194                 /* Process any command switches, otherwise skip it. */
195                 if (*commands == '\0')
196                         break;
197                 if (*commands == '-') {
198                         commands++;
199                         while (*commands && *commands != ' ')
200                                 process_switch(*commands++);
201                         continue;
202                 }
203                 if (!strncmp(commands, "console=", 8)) {
204                         process_console(commands);
205                 } else if (!strncmp(commands, "mem=", 4)) {
206                         /*
207                          * "mem=XXX[kKmM] overrides the PROM-reported
208                          * memory size.
209                          */
210                         cmdline_memory_size = simple_strtoul(commands + 4,
211                                                      &commands, 0);
212                         if (*commands == 'K' || *commands == 'k') {
213                                 cmdline_memory_size <<= 10;
214                                 commands++;
215                         } else if (*commands=='M' || *commands=='m') {
216                                 cmdline_memory_size <<= 20;
217                                 commands++;
218                         }
219                 }
220                 while (*commands && *commands != ' ')
221                         commands++;
222         }
223 }
224
225 /* This routine will in the future do all the nasty prom stuff
226  * to probe for the mmu type and its parameters, etc. This will
227  * also be where SMP things happen plus the Sparc specific memory
228  * physical memory probe as on the alpha.
229  */
230
231 extern int prom_probe_memory(void);
232 extern void sun4c_probe_vac(void);
233 extern char cputypval;
234 extern unsigned long start, end;
235 extern void panic_setup(char *, int *);
236 extern void srmmu_end_memory(unsigned long, unsigned long *);
237
238 extern unsigned short root_flags;
239 extern unsigned short root_dev;
240 extern unsigned short ram_flags;
241 #define RAMDISK_IMAGE_START_MASK        0x07FF
242 #define RAMDISK_PROMPT_FLAG             0x8000
243 #define RAMDISK_LOAD_FLAG               0x4000
244
245 extern int root_mountflags;
246
247 char saved_command_line[256];
248 char reboot_command[256];
249 enum sparc_cpu sparc_cpu_model;
250
251 struct tt_entry *sparc_ttable;
252
253 struct pt_regs fake_swapper_regs;
254
255 extern void paging_init(void);
256
257 void __init setup_arch(char **cmdline_p)
258 {
259         int i;
260         unsigned long highest_paddr;
261
262         sparc_ttable = (struct tt_entry *) &start;
263
264         /* Initialize PROM console and command line. */
265         *cmdline_p = prom_getbootargs();
266         strcpy(saved_command_line, *cmdline_p);
267
268         /* Set sparc_cpu_model */
269         sparc_cpu_model = sun_unknown;
270         if(!strcmp(&cputypval,"sun4 ")) { sparc_cpu_model=sun4; }
271         if(!strcmp(&cputypval,"sun4c")) { sparc_cpu_model=sun4c; }
272         if(!strcmp(&cputypval,"sun4m")) { sparc_cpu_model=sun4m; }
273         if(!strcmp(&cputypval,"sun4s")) { sparc_cpu_model=sun4m; }  /* CP-1200 with PROM 2.30 -E */
274         if(!strcmp(&cputypval,"sun4d")) { sparc_cpu_model=sun4d; }
275         if(!strcmp(&cputypval,"sun4e")) { sparc_cpu_model=sun4e; }
276         if(!strcmp(&cputypval,"sun4u")) { sparc_cpu_model=sun4u; }
277
278 #ifdef CONFIG_SUN4
279         if (sparc_cpu_model != sun4) {
280                 prom_printf("This kernel is for Sun4 architecture only.\n");
281                 prom_halt();
282         }
283 #endif
284         printk("ARCH: ");
285         switch(sparc_cpu_model) {
286         case sun4:
287                 printk("SUN4\n");
288                 break;
289         case sun4c:
290                 printk("SUN4C\n");
291                 break;
292         case sun4m:
293                 printk("SUN4M\n");
294                 break;
295         case sun4d:
296                 printk("SUN4D\n");
297                 break;
298         case sun4e:
299                 printk("SUN4E\n");
300                 break;
301         case sun4u:
302                 printk("SUN4U\n");
303                 break;
304         default:
305                 printk("UNKNOWN!\n");
306                 break;
307         };
308
309 #ifdef CONFIG_DUMMY_CONSOLE
310         conswitchp = &dummy_con;
311 #elif defined(CONFIG_PROM_CONSOLE)
312         conswitchp = &prom_con;
313 #endif
314         boot_flags_init(*cmdline_p);
315
316         idprom_init();
317         if (ARCH_SUN4C_SUN4)
318                 sun4c_probe_vac();
319         load_mmu();
320         (void) prom_probe_memory();
321
322         phys_base = 0xffffffffUL;
323         highest_paddr = 0UL;
324         for (i = 0; sp_banks[i].num_bytes != 0; i++) {
325                 unsigned long top;
326
327                 if (sp_banks[i].base_addr < phys_base)
328                         phys_base = sp_banks[i].base_addr;
329                 top = sp_banks[i].base_addr +
330                         sp_banks[i].num_bytes;
331                 if (highest_paddr < top)
332                         highest_paddr = top;
333         }
334         pfn_base = phys_base >> PAGE_SHIFT;
335
336         if (!root_flags)
337                 root_mountflags &= ~MS_RDONLY;
338         ROOT_DEV = old_decode_dev(root_dev);
339 #ifdef CONFIG_BLK_DEV_INITRD
340         rd_image_start = ram_flags & RAMDISK_IMAGE_START_MASK;
341         rd_prompt = ((ram_flags & RAMDISK_PROMPT_FLAG) != 0);
342         rd_doload = ((ram_flags & RAMDISK_LOAD_FLAG) != 0);     
343 #endif
344
345         prom_setsync(prom_sync_me);
346
347         if((boot_flags&BOOTME_DEBUG) && (linux_dbvec!=0) && 
348            ((*(short *)linux_dbvec) != -1)) {
349                 printk("Booted under KADB. Syncing trap table.\n");
350                 (*(linux_dbvec->teach_debugger))();
351         }
352
353         init_mm.context = (unsigned long) NO_CONTEXT;
354         init_task.thread.kregs = &fake_swapper_regs;
355
356         paging_init();
357 }
358
359 static int __init set_preferred_console(void)
360 {
361         int idev, odev;
362
363         /* The user has requested a console so this is already set up. */
364         if (serial_console >= 0)
365                 return -EBUSY;
366
367         idev = prom_query_input_device();
368         odev = prom_query_output_device();
369         if (idev == PROMDEV_IKBD && odev == PROMDEV_OSCREEN) {
370                 serial_console = 0;
371         } else if (idev == PROMDEV_ITTYA && odev == PROMDEV_OTTYA) {
372                 serial_console = 1;
373         } else if (idev == PROMDEV_ITTYB && odev == PROMDEV_OTTYB) {
374                 serial_console = 2;
375         } else if (idev == PROMDEV_I_UNK && odev == PROMDEV_OTTYA) {
376                 prom_printf("MrCoffee ttya\n");
377                 serial_console = 1;
378         } else if (idev == PROMDEV_I_UNK && odev == PROMDEV_OSCREEN) {
379                 serial_console = 0;
380                 prom_printf("MrCoffee keyboard\n");
381         } else {
382                 prom_printf("Confusing console (idev %d, odev %d)\n",
383                     idev, odev);
384                 serial_console = 1;
385         }
386
387         if (serial_console)
388                 return add_preferred_console("ttyS", serial_console - 1, NULL);
389
390         return -ENODEV;
391 }
392 console_initcall(set_preferred_console);
393
394 extern char *sparc_cpu_type;
395 extern char *sparc_fpu_type;
396
397 static int show_cpuinfo(struct seq_file *m, void *__unused)
398 {
399         seq_printf(m,
400                    "cpu\t\t: %s\n"
401                    "fpu\t\t: %s\n"
402                    "promlib\t\t: Version %d Revision %d\n"
403                    "prom\t\t: %d.%d\n"
404                    "type\t\t: %s\n"
405                    "ncpus probed\t: %d\n"
406                    "ncpus active\t: %d\n"
407 #ifndef CONFIG_SMP
408                    "CPU0Bogo\t: %lu.%02lu\n"
409                    "CPU0ClkTck\t: %ld\n"
410 #endif
411                    ,
412                    sparc_cpu_type ? sparc_cpu_type : "undetermined",
413                    sparc_fpu_type ? sparc_fpu_type : "undetermined",
414                    romvec->pv_romvers,
415                    prom_rev,
416                    romvec->pv_printrev >> 16,
417                    romvec->pv_printrev & 0xffff,
418                    &cputypval,
419                    num_possible_cpus(),
420                    num_online_cpus()
421 #ifndef CONFIG_SMP
422                    , cpu_data(0).udelay_val/(500000/HZ),
423                    (cpu_data(0).udelay_val/(5000/HZ)) % 100,
424                    cpu_data(0).clock_tick
425 #endif
426                 );
427
428 #ifdef CONFIG_SMP
429         smp_bogo(m);
430 #endif
431         mmu_info(m);
432 #ifdef CONFIG_SMP
433         smp_info(m);
434 #endif
435         return 0;
436 }
437
438 static void *c_start(struct seq_file *m, loff_t *pos)
439 {
440         /* The pointer we are returning is arbitrary,
441          * it just has to be non-NULL and not IS_ERR
442          * in the success case.
443          */
444         return *pos == 0 ? &c_start : NULL;
445 }
446
447 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
448 {
449         ++*pos;
450         return c_start(m, pos);
451 }
452
453 static void c_stop(struct seq_file *m, void *v)
454 {
455 }
456
457 struct seq_operations cpuinfo_op = {
458         .start =c_start,
459         .next = c_next,
460         .stop = c_stop,
461         .show = show_cpuinfo,
462 };
463
464 extern int stop_a_enabled;
465
466 void sun_do_break(void)
467 {
468         if (!stop_a_enabled)
469                 return;
470
471         printk("\n");
472         flush_user_windows();
473
474         prom_cmdline();
475 }
476
477 int serial_console = -1;
478 int stop_a_enabled = 1;