blob: 9b0c409d5b6a786f69bc7a0943fb518f9c1a828b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: setup.c,v 1.72 2002/02/09 19:49:30 davem Exp $
2 * linux/arch/sparc64/kernel/setup.c
3 *
4 * Copyright (C) 1995,1996 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
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 <asm/smp.h>
17#include <linux/user.h>
18#include <linux/a.out.h>
19#include <linux/tty.h>
20#include <linux/delay.h>
21#include <linux/config.h>
22#include <linux/fs.h>
23#include <linux/seq_file.h>
24#include <linux/syscalls.h>
25#include <linux/kdev_t.h>
26#include <linux/major.h>
27#include <linux/string.h>
28#include <linux/init.h>
29#include <linux/inet.h>
30#include <linux/console.h>
31#include <linux/root_dev.h>
32#include <linux/interrupt.h>
33#include <linux/cpu.h>
34#include <linux/initrd.h>
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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/idprom.h>
43#include <asm/head.h>
44#include <asm/starfire.h>
45#include <asm/mmu_context.h>
46#include <asm/timer.h>
47#include <asm/sections.h>
48#include <asm/setup.h>
49#include <asm/mmu.h>
50
51#ifdef CONFIG_IP_PNP
52#include <net/ipconfig.h>
53#endif
54
55struct screen_info screen_info = {
56 0, 0, /* orig-x, orig-y */
57 0, /* unused */
58 0, /* orig-video-page */
59 0, /* orig-video-mode */
60 128, /* orig-video-cols */
61 0, 0, 0, /* unused, ega_bx, unused */
62 54, /* orig-video-lines */
63 0, /* orig-video-isVGA */
64 16 /* orig-video-points */
65};
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067void (*prom_palette)(int);
68void (*prom_keyboard)(void);
69
70static void
71prom_console_write(struct console *con, const char *s, unsigned n)
72{
73 prom_write(s, n);
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076unsigned int boot_flags = 0;
77#define BOOTME_DEBUG 0x1
78#define BOOTME_SINGLE 0x2
79
80/* Exported for mm/init.c:paging_init. */
81unsigned long cmdline_memory_size = 0;
82
83static struct console prom_debug_console = {
84 .name = "debug",
85 .write = prom_console_write,
86 .flags = CON_PRINTBUFFER,
87 .index = -1,
88};
89
90/* XXX Implement this at some point... */
91void kernel_enter_debugger(void)
92{
93}
94
95int obp_system_intr(void)
96{
97 if (boot_flags & BOOTME_DEBUG) {
98 printk("OBP: system interrupted\n");
99 prom_halt();
100 return 1;
101 }
102 return 0;
103}
104
105/*
106 * Process kernel command line switches that are specific to the
107 * SPARC or that require special low-level processing.
108 */
109static void __init process_switch(char c)
110{
111 switch (c) {
112 case 'd':
113 boot_flags |= BOOTME_DEBUG;
114 break;
115 case 's':
116 boot_flags |= BOOTME_SINGLE;
117 break;
118 case 'h':
119 prom_printf("boot_flags_init: Halt!\n");
120 prom_halt();
121 break;
122 case 'p':
123 /* Use PROM debug console. */
124 register_console(&prom_debug_console);
125 break;
David S. Miller816242d2005-05-23 15:52:08 -0700126 case 'P':
127 /* Force UltraSPARC-III P-Cache on. */
128 if (tlb_type != cheetah) {
129 printk("BOOT: Ignoring P-Cache force option.\n");
130 break;
131 }
132 cheetah_pcache_forced_on = 1;
133 add_taint(TAINT_MACHINE_CHECK);
134 cheetah_enable_pcache();
135 break;
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 default:
138 printk("Unknown boot switch (-%c)\n", c);
139 break;
140 }
141}
142
143static void __init process_console(char *commands)
144{
145 serial_console = 0;
146 commands += 8;
147 /* Linux-style serial */
148 if (!strncmp(commands, "ttyS", 4))
149 serial_console = simple_strtoul(commands + 4, NULL, 10) + 1;
150 else if (!strncmp(commands, "tty", 3)) {
151 char c = *(commands + 3);
152 /* Solaris-style serial */
153 if (c == 'a' || c == 'b') {
154 serial_console = c - 'a' + 1;
155 prom_printf ("Using /dev/tty%c as console.\n", c);
156 }
157 /* else Linux-style fbcon, not serial */
158 }
159#if defined(CONFIG_PROM_CONSOLE)
160 if (!strncmp(commands, "prom", 4)) {
161 char *p;
162
163 for (p = commands - 8; *p && *p != ' '; p++)
164 *p = ' ';
165 conswitchp = &prom_con;
166 }
167#endif
168}
169
170static void __init boot_flags_init(char *commands)
171{
172 while (*commands) {
173 /* Move to the start of the next "argument". */
174 while (*commands && *commands == ' ')
175 commands++;
176
177 /* Process any command switches, otherwise skip it. */
178 if (*commands == '\0')
179 break;
180 if (*commands == '-') {
181 commands++;
182 while (*commands && *commands != ' ')
183 process_switch(*commands++);
184 continue;
185 }
186 if (!strncmp(commands, "console=", 8)) {
187 process_console(commands);
188 } else if (!strncmp(commands, "mem=", 4)) {
189 /*
190 * "mem=XXX[kKmM]" overrides the PROM-reported
191 * memory size.
192 */
193 cmdline_memory_size = simple_strtoul(commands + 4,
194 &commands, 0);
195 if (*commands == 'K' || *commands == 'k') {
196 cmdline_memory_size <<= 10;
197 commands++;
198 } else if (*commands=='M' || *commands=='m') {
199 cmdline_memory_size <<= 20;
200 commands++;
201 }
202 }
203 while (*commands && *commands != ' ')
204 commands++;
205 }
206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208extern void panic_setup(char *, int *);
209
210extern unsigned short root_flags;
211extern unsigned short root_dev;
212extern unsigned short ram_flags;
213#define RAMDISK_IMAGE_START_MASK 0x07FF
214#define RAMDISK_PROMPT_FLAG 0x8000
215#define RAMDISK_LOAD_FLAG 0x4000
216
217extern int root_mountflags;
218
219char reboot_command[COMMAND_LINE_SIZE];
220
221static struct pt_regs fake_swapper_regs = { { 0, }, 0, 0, 0, 0 };
222
David S. Miller92704a12006-02-26 23:27:19 -0800223static void __init per_cpu_patch(void)
224{
225#ifdef CONFIG_SMP
226 struct cpuid_patch_entry *p;
227 unsigned long ver;
228 int is_jbus;
229
230 if (tlb_type == spitfire && !this_is_starfire)
231 return;
232
David S. Millerd82ace72006-02-09 02:52:44 -0800233 is_jbus = 0;
234 if (tlb_type != hypervisor) {
235 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
236 is_jbus = ((ver >> 32) == __JALAPENO_ID ||
237 (ver >> 32) == __SERRANO_ID);
238 }
David S. Miller92704a12006-02-26 23:27:19 -0800239
240 p = &__cpuid_patch;
241 while (p < &__cpuid_patch_end) {
242 unsigned long addr = p->addr;
243 unsigned int *insns;
244
245 switch (tlb_type) {
246 case spitfire:
247 insns = &p->starfire[0];
248 break;
249 case cheetah:
250 case cheetah_plus:
251 if (is_jbus)
252 insns = &p->cheetah_jbus[0];
253 else
254 insns = &p->cheetah_safari[0];
255 break;
David S. Millerd96b8152006-02-04 15:40:53 -0800256 case hypervisor:
257 insns = &p->sun4v[0];
258 break;
David S. Miller92704a12006-02-26 23:27:19 -0800259 default:
260 prom_printf("Unknown cpu type, halting.\n");
261 prom_halt();
262 };
263
264 *(unsigned int *) (addr + 0) = insns[0];
David S. Miller840aaef2006-02-06 15:52:05 -0800265 wmb();
David S. Miller92704a12006-02-26 23:27:19 -0800266 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
267
268 *(unsigned int *) (addr + 4) = insns[1];
David S. Miller840aaef2006-02-06 15:52:05 -0800269 wmb();
David S. Miller92704a12006-02-26 23:27:19 -0800270 __asm__ __volatile__("flush %0" : : "r" (addr + 4));
271
272 *(unsigned int *) (addr + 8) = insns[2];
David S. Miller840aaef2006-02-06 15:52:05 -0800273 wmb();
David S. Miller92704a12006-02-26 23:27:19 -0800274 __asm__ __volatile__("flush %0" : : "r" (addr + 8));
275
276 *(unsigned int *) (addr + 12) = insns[3];
David S. Miller840aaef2006-02-06 15:52:05 -0800277 wmb();
David S. Miller92704a12006-02-26 23:27:19 -0800278 __asm__ __volatile__("flush %0" : : "r" (addr + 12));
279
280 p++;
281 }
282#endif
283}
284
David S. Millerdf7d6ae2006-02-07 00:00:16 -0800285static void __init sun4v_patch(void)
David S. Miller936f4822006-02-05 21:29:28 -0800286{
David S. Millerdf7d6ae2006-02-07 00:00:16 -0800287 struct sun4v_1insn_patch_entry *p1;
288 struct sun4v_2insn_patch_entry *p2;
David S. Miller936f4822006-02-05 21:29:28 -0800289
290 if (tlb_type != hypervisor)
291 return;
292
David S. Millerdf7d6ae2006-02-07 00:00:16 -0800293 p1 = &__sun4v_1insn_patch;
294 while (p1 < &__sun4v_1insn_patch_end) {
David S. Miller45fec052006-02-05 22:27:28 -0800295 unsigned long addr = p1->addr;
David S. Miller936f4822006-02-05 21:29:28 -0800296
David S. Miller45fec052006-02-05 22:27:28 -0800297 *(unsigned int *) (addr + 0) = p1->insn;
David S. Miller840aaef2006-02-06 15:52:05 -0800298 wmb();
David S. Miller936f4822006-02-05 21:29:28 -0800299 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
300
David S. Miller45fec052006-02-05 22:27:28 -0800301 p1++;
302 }
303
David S. Millerdf7d6ae2006-02-07 00:00:16 -0800304 p2 = &__sun4v_2insn_patch;
305 while (p2 < &__sun4v_2insn_patch_end) {
David S. Miller45fec052006-02-05 22:27:28 -0800306 unsigned long addr = p2->addr;
307
308 *(unsigned int *) (addr + 0) = p2->insns[0];
David S. Miller840aaef2006-02-06 15:52:05 -0800309 wmb();
David S. Miller45fec052006-02-05 22:27:28 -0800310 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
311
David S. Millerfd050682006-02-11 11:05:52 -0800312 *(unsigned int *) (addr + 4) = p2->insns[1];
David S. Miller840aaef2006-02-06 15:52:05 -0800313 wmb();
David S. Miller45fec052006-02-05 22:27:28 -0800314 __asm__ __volatile__("flush %0" : : "r" (addr + 4));
315
316 p2++;
David S. Miller936f4822006-02-05 21:29:28 -0800317 }
318}
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320void __init setup_arch(char **cmdline_p)
321{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* Initialize PROM console and command line. */
323 *cmdline_p = prom_getbootargs();
324 strcpy(saved_command_line, *cmdline_p);
325
David S. Miller3a8c0692006-02-09 02:54:54 -0800326 if (tlb_type == hypervisor)
327 printk("ARCH: SUN4V\n");
328 else
329 printk("ARCH: SUN4U\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331#ifdef CONFIG_DUMMY_CONSOLE
332 conswitchp = &dummy_con;
333#elif defined(CONFIG_PROM_CONSOLE)
334 conswitchp = &prom_con;
335#endif
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Work out if we are starfire early on */
338 check_if_starfire();
339
David S. Miller92704a12006-02-26 23:27:19 -0800340 /* Now we know enough to patch the get_cpuid sequences
341 * used by trap code.
David S. Miller56fb4df2006-02-26 23:24:22 -0800342 */
343 per_cpu_patch();
344
David S. Millerdf7d6ae2006-02-07 00:00:16 -0800345 sun4v_patch();
David S. Miller936f4822006-02-05 21:29:28 -0800346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 boot_flags_init(*cmdline_p);
348
349 idprom_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 if (!root_flags)
352 root_mountflags &= ~MS_RDONLY;
353 ROOT_DEV = old_decode_dev(root_dev);
354#ifdef CONFIG_BLK_DEV_INITRD
355 rd_image_start = ram_flags & RAMDISK_IMAGE_START_MASK;
356 rd_prompt = ((ram_flags & RAMDISK_PROMPT_FLAG) != 0);
357 rd_doload = ((ram_flags & RAMDISK_LOAD_FLAG) != 0);
358#endif
359
Al Virof3169642006-01-12 01:05:42 -0800360 task_thread_info(&init_task)->kregs = &fake_swapper_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362#ifdef CONFIG_IP_PNP
363 if (!ic_set_manually) {
364 int chosen = prom_finddevice ("/chosen");
365 u32 cl, sv, gw;
366
367 cl = prom_getintdefault (chosen, "client-ip", 0);
368 sv = prom_getintdefault (chosen, "server-ip", 0);
369 gw = prom_getintdefault (chosen, "gateway-ip", 0);
370 if (cl && sv) {
371 ic_myaddr = cl;
372 ic_servaddr = sv;
373 if (gw)
374 ic_gateway = gw;
375#if defined(CONFIG_IP_PNP_BOOTP) || defined(CONFIG_IP_PNP_RARP)
376 ic_proto_enabled = 0;
377#endif
378 }
379 }
380#endif
381
David S. Miller7abea922006-02-25 13:39:56 -0800382 smp_setup_cpu_possible_map();
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 paging_init();
David S. Miller56fb4df2006-02-26 23:24:22 -0800385
386 /* Get boot processor trap_block[] setup. */
David S. Miller72aff532006-02-17 01:29:17 -0800387 init_cur_cpu_trap(current_thread_info());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390static int __init set_preferred_console(void)
391{
392 int idev, odev;
393
394 /* The user has requested a console so this is already set up. */
395 if (serial_console >= 0)
396 return -EBUSY;
397
398 idev = prom_query_input_device();
399 odev = prom_query_output_device();
400 if (idev == PROMDEV_IKBD && odev == PROMDEV_OSCREEN) {
401 serial_console = 0;
402 } else if (idev == PROMDEV_ITTYA && odev == PROMDEV_OTTYA) {
403 serial_console = 1;
404 } else if (idev == PROMDEV_ITTYB && odev == PROMDEV_OTTYB) {
405 serial_console = 2;
Eddie C. Dostc126cf82006-01-18 14:54:31 -0800406 } else if (idev == PROMDEV_IRSC && odev == PROMDEV_ORSC) {
407 serial_console = 3;
David S. Miller1a7a2422006-02-11 23:24:30 -0800408 } else if (idev == PROMDEV_IVCONS && odev == PROMDEV_OVCONS) {
409 /* sunhv_console_init() doesn't check the serial_console
410 * value anyways...
411 */
412 serial_console = 4;
David S. Millerd5a2aa22006-02-13 21:28:40 -0800413 return add_preferred_console("ttyHV", 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } else {
415 prom_printf("Inconsistent console: "
416 "input %d, output %d\n",
417 idev, odev);
418 prom_halt();
419 }
420
421 if (serial_console)
422 return add_preferred_console("ttyS", serial_console - 1, NULL);
423
424 return -ENODEV;
425}
426console_initcall(set_preferred_console);
427
428/* BUFFER is PAGE_SIZE bytes long. */
429
430extern char *sparc_cpu_type;
431extern char *sparc_fpu_type;
432
433extern void smp_info(struct seq_file *);
434extern void smp_bogo(struct seq_file *);
435extern void mmu_info(struct seq_file *);
436
David S. Miller80dc0d62005-09-26 00:32:17 -0700437unsigned int dcache_parity_tl1_occurred;
438unsigned int icache_parity_tl1_occurred;
439
David S. Miller4d45cba2005-11-11 12:48:56 -0800440static int ncpus_probed;
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442static int show_cpuinfo(struct seq_file *m, void *__unused)
443{
444 seq_printf(m,
445 "cpu\t\t: %s\n"
446 "fpu\t\t: %s\n"
447 "promlib\t\t: Version 3 Revision %d\n"
448 "prom\t\t: %d.%d.%d\n"
449 "type\t\t: sun4u\n"
David S. Miller4d45cba2005-11-11 12:48:56 -0800450 "ncpus probed\t: %d\n"
451 "ncpus active\t: %d\n"
David S. Miller80dc0d62005-09-26 00:32:17 -0700452 "D$ parity tl1\t: %u\n"
453 "I$ parity tl1\t: %u\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454#ifndef CONFIG_SMP
455 "Cpu0Bogo\t: %lu.%02lu\n"
456 "Cpu0ClkTck\t: %016lx\n"
457#endif
458 ,
459 sparc_cpu_type,
460 sparc_fpu_type,
461 prom_rev,
462 prom_prev >> 16,
463 (prom_prev >> 8) & 0xff,
464 prom_prev & 0xff,
David S. Miller4d45cba2005-11-11 12:48:56 -0800465 ncpus_probed,
466 num_online_cpus(),
David S. Miller80dc0d62005-09-26 00:32:17 -0700467 dcache_parity_tl1_occurred,
468 icache_parity_tl1_occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#ifndef CONFIG_SMP
470 , cpu_data(0).udelay_val/(500000/HZ),
471 (cpu_data(0).udelay_val/(5000/HZ)) % 100,
472 cpu_data(0).clock_tick
473#endif
474 );
475#ifdef CONFIG_SMP
476 smp_bogo(m);
477#endif
478 mmu_info(m);
479#ifdef CONFIG_SMP
480 smp_info(m);
481#endif
482 return 0;
483}
484
485static void *c_start(struct seq_file *m, loff_t *pos)
486{
487 /* The pointer we are returning is arbitrary,
488 * it just has to be non-NULL and not IS_ERR
489 * in the success case.
490 */
491 return *pos == 0 ? &c_start : NULL;
492}
493
494static void *c_next(struct seq_file *m, void *v, loff_t *pos)
495{
496 ++*pos;
497 return c_start(m, pos);
498}
499
500static void c_stop(struct seq_file *m, void *v)
501{
502}
503
504struct seq_operations cpuinfo_op = {
505 .start =c_start,
506 .next = c_next,
507 .stop = c_stop,
508 .show = show_cpuinfo,
509};
510
511extern int stop_a_enabled;
512
513void sun_do_break(void)
514{
515 if (!stop_a_enabled)
516 return;
517
518 prom_printf("\n");
519 flush_user_windows();
520
521 prom_cmdline();
522}
523
524int serial_console = -1;
525int stop_a_enabled = 1;
526
527static int __init topology_init(void)
528{
529 int i, err;
530
531 err = -ENOMEM;
David S. Miller4d45cba2005-11-11 12:48:56 -0800532
533 /* Count the number of physically present processors in
534 * the machine, even on uniprocessor, so that /proc/cpuinfo
535 * output is consistent with 2.4.x
536 */
537 ncpus_probed = 0;
538 while (!cpu_find_by_instance(ncpus_probed, NULL, NULL))
539 ncpus_probed++;
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 for (i = 0; i < NR_CPUS; i++) {
542 if (cpu_possible(i)) {
543 struct cpu *p = kmalloc(sizeof(*p), GFP_KERNEL);
544
545 if (p) {
546 memset(p, 0, sizeof(*p));
547 register_cpu(p, i, NULL);
548 err = 0;
549 }
550 }
551 }
552
553 return err;
554}
555
556subsys_initcall(topology_init);