]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/sparc64/kernel/setup.c
[PATCH] node hotplug: register cpu: remove node struct
[mirror_ubuntu-bionic-kernel.git] / arch / sparc64 / kernel / setup.c
CommitLineData
1da177e4
LT
1/* $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
1da177e4
LT
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/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
1da177e4
LT
67void (*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
1da177e4
LT
76unsigned 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;
816242da
DM
126 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
1da177e4
LT
137 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
1da177e4
LT
208extern 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
951bc82c 223void __init per_cpu_patch(void)
92704a1c 224{
92704a1c
DM
225 struct cpuid_patch_entry *p;
226 unsigned long ver;
227 int is_jbus;
228
229 if (tlb_type == spitfire && !this_is_starfire)
230 return;
231
d82ace7d
DM
232 is_jbus = 0;
233 if (tlb_type != hypervisor) {
234 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
ebd8c56c
DM
235 is_jbus = ((ver >> 32UL) == __JALAPENO_ID ||
236 (ver >> 32UL) == __SERRANO_ID);
d82ace7d 237 }
92704a1c
DM
238
239 p = &__cpuid_patch;
240 while (p < &__cpuid_patch_end) {
241 unsigned long addr = p->addr;
242 unsigned int *insns;
243
244 switch (tlb_type) {
245 case spitfire:
246 insns = &p->starfire[0];
247 break;
248 case cheetah:
249 case cheetah_plus:
250 if (is_jbus)
251 insns = &p->cheetah_jbus[0];
252 else
253 insns = &p->cheetah_safari[0];
254 break;
d96b8153
DM
255 case hypervisor:
256 insns = &p->sun4v[0];
257 break;
92704a1c
DM
258 default:
259 prom_printf("Unknown cpu type, halting.\n");
260 prom_halt();
261 };
262
263 *(unsigned int *) (addr + 0) = insns[0];
840aaef8 264 wmb();
92704a1c
DM
265 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
266
267 *(unsigned int *) (addr + 4) = insns[1];
840aaef8 268 wmb();
92704a1c
DM
269 __asm__ __volatile__("flush %0" : : "r" (addr + 4));
270
271 *(unsigned int *) (addr + 8) = insns[2];
840aaef8 272 wmb();
92704a1c
DM
273 __asm__ __volatile__("flush %0" : : "r" (addr + 8));
274
275 *(unsigned int *) (addr + 12) = insns[3];
840aaef8 276 wmb();
92704a1c
DM
277 __asm__ __volatile__("flush %0" : : "r" (addr + 12));
278
279 p++;
280 }
92704a1c
DM
281}
282
951bc82c 283void __init sun4v_patch(void)
936f482a 284{
df7d6aec
DM
285 struct sun4v_1insn_patch_entry *p1;
286 struct sun4v_2insn_patch_entry *p2;
936f482a
DM
287
288 if (tlb_type != hypervisor)
289 return;
290
df7d6aec
DM
291 p1 = &__sun4v_1insn_patch;
292 while (p1 < &__sun4v_1insn_patch_end) {
45fec05f 293 unsigned long addr = p1->addr;
936f482a 294
45fec05f 295 *(unsigned int *) (addr + 0) = p1->insn;
840aaef8 296 wmb();
936f482a
DM
297 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
298
45fec05f
DM
299 p1++;
300 }
301
df7d6aec
DM
302 p2 = &__sun4v_2insn_patch;
303 while (p2 < &__sun4v_2insn_patch_end) {
45fec05f
DM
304 unsigned long addr = p2->addr;
305
306 *(unsigned int *) (addr + 0) = p2->insns[0];
840aaef8 307 wmb();
45fec05f
DM
308 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
309
fd05068d 310 *(unsigned int *) (addr + 4) = p2->insns[1];
840aaef8 311 wmb();
45fec05f
DM
312 __asm__ __volatile__("flush %0" : : "r" (addr + 4));
313
314 p2++;
936f482a
DM
315 }
316}
317
951bc82c
DM
318#ifdef CONFIG_SMP
319void __init boot_cpu_id_too_large(int cpu)
320{
321 prom_printf("Serious problem, boot cpu id (%d) >= NR_CPUS (%d)\n",
322 cpu, NR_CPUS);
323 prom_halt();
324}
325#endif
326
1da177e4
LT
327void __init setup_arch(char **cmdline_p)
328{
1da177e4
LT
329 /* Initialize PROM console and command line. */
330 *cmdline_p = prom_getbootargs();
331 strcpy(saved_command_line, *cmdline_p);
332
3a8c069d
DM
333 if (tlb_type == hypervisor)
334 printk("ARCH: SUN4V\n");
335 else
336 printk("ARCH: SUN4U\n");
1da177e4
LT
337
338#ifdef CONFIG_DUMMY_CONSOLE
339 conswitchp = &dummy_con;
340#elif defined(CONFIG_PROM_CONSOLE)
341 conswitchp = &prom_con;
342#endif
343
1da177e4
LT
344 boot_flags_init(*cmdline_p);
345
346 idprom_init();
1da177e4
LT
347
348 if (!root_flags)
349 root_mountflags &= ~MS_RDONLY;
350 ROOT_DEV = old_decode_dev(root_dev);
467418f3 351#ifdef CONFIG_BLK_DEV_RAM
1da177e4
LT
352 rd_image_start = ram_flags & RAMDISK_IMAGE_START_MASK;
353 rd_prompt = ((ram_flags & RAMDISK_PROMPT_FLAG) != 0);
354 rd_doload = ((ram_flags & RAMDISK_LOAD_FLAG) != 0);
355#endif
356
f3169641 357 task_thread_info(&init_task)->kregs = &fake_swapper_regs;
1da177e4
LT
358
359#ifdef CONFIG_IP_PNP
360 if (!ic_set_manually) {
361 int chosen = prom_finddevice ("/chosen");
362 u32 cl, sv, gw;
363
364 cl = prom_getintdefault (chosen, "client-ip", 0);
365 sv = prom_getintdefault (chosen, "server-ip", 0);
366 gw = prom_getintdefault (chosen, "gateway-ip", 0);
367 if (cl && sv) {
368 ic_myaddr = cl;
369 ic_servaddr = sv;
370 if (gw)
371 ic_gateway = gw;
372#if defined(CONFIG_IP_PNP_BOOTP) || defined(CONFIG_IP_PNP_RARP)
373 ic_proto_enabled = 0;
374#endif
375 }
376 }
377#endif
378
56fb4df6 379 /* Get boot processor trap_block[] setup. */
72aff53f 380 init_cur_cpu_trap(current_thread_info());
52845cdb
DM
381
382 paging_init();
765b5f32
DM
383
384 smp_setup_cpu_possible_map();
1da177e4
LT
385}
386
387static int __init set_preferred_console(void)
388{
389 int idev, odev;
390
391 /* The user has requested a console so this is already set up. */
392 if (serial_console >= 0)
393 return -EBUSY;
394
395 idev = prom_query_input_device();
396 odev = prom_query_output_device();
397 if (idev == PROMDEV_IKBD && odev == PROMDEV_OSCREEN) {
398 serial_console = 0;
399 } else if (idev == PROMDEV_ITTYA && odev == PROMDEV_OTTYA) {
400 serial_console = 1;
401 } else if (idev == PROMDEV_ITTYB && odev == PROMDEV_OTTYB) {
402 serial_console = 2;
c126cf80
ED
403 } else if (idev == PROMDEV_IRSC && odev == PROMDEV_ORSC) {
404 serial_console = 3;
1a7a242c
DM
405 } else if (idev == PROMDEV_IVCONS && odev == PROMDEV_OVCONS) {
406 /* sunhv_console_init() doesn't check the serial_console
407 * value anyways...
408 */
409 serial_console = 4;
d5a2aa24 410 return add_preferred_console("ttyHV", 0, NULL);
1da177e4
LT
411 } else {
412 prom_printf("Inconsistent console: "
413 "input %d, output %d\n",
414 idev, odev);
415 prom_halt();
416 }
417
418 if (serial_console)
419 return add_preferred_console("ttyS", serial_console - 1, NULL);
420
421 return -ENODEV;
422}
423console_initcall(set_preferred_console);
424
425/* BUFFER is PAGE_SIZE bytes long. */
426
427extern char *sparc_cpu_type;
428extern char *sparc_fpu_type;
429
430extern void smp_info(struct seq_file *);
431extern void smp_bogo(struct seq_file *);
432extern void mmu_info(struct seq_file *);
433
80dc0d6b
DM
434unsigned int dcache_parity_tl1_occurred;
435unsigned int icache_parity_tl1_occurred;
436
4d45cbac
DM
437static int ncpus_probed;
438
1da177e4
LT
439static int show_cpuinfo(struct seq_file *m, void *__unused)
440{
441 seq_printf(m,
442 "cpu\t\t: %s\n"
443 "fpu\t\t: %s\n"
90a6646b
DM
444 "prom\t\t: %s\n"
445 "type\t\t: %s\n"
4d45cbac
DM
446 "ncpus probed\t: %d\n"
447 "ncpus active\t: %d\n"
80dc0d6b
DM
448 "D$ parity tl1\t: %u\n"
449 "I$ parity tl1\t: %u\n"
1da177e4
LT
450#ifndef CONFIG_SMP
451 "Cpu0Bogo\t: %lu.%02lu\n"
452 "Cpu0ClkTck\t: %016lx\n"
453#endif
454 ,
455 sparc_cpu_type,
456 sparc_fpu_type,
90a6646b
DM
457 prom_version,
458 ((tlb_type == hypervisor) ?
459 "sun4v" :
460 "sun4u"),
4d45cbac
DM
461 ncpus_probed,
462 num_online_cpus(),
80dc0d6b
DM
463 dcache_parity_tl1_occurred,
464 icache_parity_tl1_occurred
1da177e4
LT
465#ifndef CONFIG_SMP
466 , cpu_data(0).udelay_val/(500000/HZ),
467 (cpu_data(0).udelay_val/(5000/HZ)) % 100,
468 cpu_data(0).clock_tick
469#endif
470 );
471#ifdef CONFIG_SMP
472 smp_bogo(m);
473#endif
474 mmu_info(m);
475#ifdef CONFIG_SMP
476 smp_info(m);
477#endif
478 return 0;
479}
480
481static void *c_start(struct seq_file *m, loff_t *pos)
482{
483 /* The pointer we are returning is arbitrary,
484 * it just has to be non-NULL and not IS_ERR
485 * in the success case.
486 */
487 return *pos == 0 ? &c_start : NULL;
488}
489
490static void *c_next(struct seq_file *m, void *v, loff_t *pos)
491{
492 ++*pos;
493 return c_start(m, pos);
494}
495
496static void c_stop(struct seq_file *m, void *v)
497{
498}
499
500struct seq_operations cpuinfo_op = {
501 .start =c_start,
502 .next = c_next,
503 .stop = c_stop,
504 .show = show_cpuinfo,
505};
506
507extern int stop_a_enabled;
508
509void sun_do_break(void)
510{
511 if (!stop_a_enabled)
512 return;
513
514 prom_printf("\n");
515 flush_user_windows();
516
517 prom_cmdline();
518}
519
520int serial_console = -1;
521int stop_a_enabled = 1;
522
523static int __init topology_init(void)
524{
525 int i, err;
526
527 err = -ENOMEM;
4d45cbac
DM
528
529 /* Count the number of physically present processors in
530 * the machine, even on uniprocessor, so that /proc/cpuinfo
531 * output is consistent with 2.4.x
532 */
533 ncpus_probed = 0;
534 while (!cpu_find_by_instance(ncpus_probed, NULL, NULL))
535 ncpus_probed++;
536
a283a525 537 for_each_possible_cpu(i) {
9132983a
ES
538 struct cpu *p = kzalloc(sizeof(*p), GFP_KERNEL);
539 if (p) {
76b67ed9 540 register_cpu(p, i);
9132983a 541 err = 0;
1da177e4
LT
542 }
543 }
544
545 return err;
546}
547
548subsys_initcall(topology_init);