1 /* $Id: setup.c,v 1.72 2002/02/09 19:49:30 davem Exp $
2 * linux/arch/sparc64/kernel/setup.c
4 * Copyright (C) 1995,1996 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
8 #include <linux/errno.h>
9 #include <linux/sched.h>
10 #include <linux/kernel.h>
12 #include <linux/stddef.h>
13 #include <linux/unistd.h>
14 #include <linux/ptrace.h>
15 #include <linux/slab.h>
17 #include <linux/user.h>
18 #include <linux/screen_info.h>
19 #include <linux/delay.h>
21 #include <linux/seq_file.h>
22 #include <linux/syscalls.h>
23 #include <linux/kdev_t.h>
24 #include <linux/major.h>
25 #include <linux/string.h>
26 #include <linux/init.h>
27 #include <linux/inet.h>
28 #include <linux/console.h>
29 #include <linux/root_dev.h>
30 #include <linux/interrupt.h>
31 #include <linux/cpu.h>
32 #include <linux/initrd.h>
34 #include <asm/system.h>
36 #include <asm/processor.h>
37 #include <asm/oplib.h>
39 #include <asm/pgtable.h>
40 #include <asm/idprom.h>
42 #include <asm/starfire.h>
43 #include <asm/mmu_context.h>
44 #include <asm/timer.h>
45 #include <asm/sections.h>
46 #include <asm/setup.h>
48 #include <asm/ns87303.h>
51 #include <net/ipconfig.h>
54 /* Used to synchronize accesses to NatSemi SUPER I/O chip configure
55 * operations in asm/ns87303.h
57 DEFINE_SPINLOCK(ns87303_lock);
59 struct screen_info screen_info = {
60 0, 0, /* orig-x, orig-y */
62 0, /* orig-video-page */
63 0, /* orig-video-mode */
64 128, /* orig-video-cols */
65 0, 0, 0, /* unused, ega_bx, unused */
66 54, /* orig-video-lines */
67 0, /* orig-video-isVGA */
68 16 /* orig-video-points */
72 prom_console_write(struct console *con, const char *s, unsigned n)
77 /* Exported for mm/init.c:paging_init. */
78 unsigned long cmdline_memory_size = 0;
80 static struct console prom_early_console = {
82 .write = prom_console_write,
83 .flags = CON_PRINTBUFFER | CON_BOOT,
88 * Process kernel command line switches that are specific to the
89 * SPARC or that require special low-level processing.
91 static void __init process_switch(char c)
98 prom_printf("boot_flags_init: Halt!\n");
102 /* Just ignore, this behavior is now the default. */
105 /* Force UltraSPARC-III P-Cache on. */
106 if (tlb_type != cheetah) {
107 printk("BOOT: Ignoring P-Cache force option.\n");
110 cheetah_pcache_forced_on = 1;
111 add_taint(TAINT_MACHINE_CHECK);
112 cheetah_enable_pcache();
116 printk("Unknown boot switch (-%c)\n", c);
121 static void __init boot_flags_init(char *commands)
124 /* Move to the start of the next "argument". */
125 while (*commands && *commands == ' ')
128 /* Process any command switches, otherwise skip it. */
129 if (*commands == '\0')
131 if (*commands == '-') {
133 while (*commands && *commands != ' ')
134 process_switch(*commands++);
137 if (!strncmp(commands, "mem=", 4)) {
139 * "mem=XXX[kKmM]" overrides the PROM-reported
142 cmdline_memory_size = simple_strtoul(commands + 4,
144 if (*commands == 'K' || *commands == 'k') {
145 cmdline_memory_size <<= 10;
147 } else if (*commands=='M' || *commands=='m') {
148 cmdline_memory_size <<= 20;
152 while (*commands && *commands != ' ')
157 extern unsigned short root_flags;
158 extern unsigned short root_dev;
159 extern unsigned short ram_flags;
160 #define RAMDISK_IMAGE_START_MASK 0x07FF
161 #define RAMDISK_PROMPT_FLAG 0x8000
162 #define RAMDISK_LOAD_FLAG 0x4000
164 extern int root_mountflags;
166 char reboot_command[COMMAND_LINE_SIZE];
168 static struct pt_regs fake_swapper_regs = { { 0, }, 0, 0, 0, 0 };
170 void __init per_cpu_patch(void)
172 struct cpuid_patch_entry *p;
176 if (tlb_type == spitfire && !this_is_starfire)
180 if (tlb_type != hypervisor) {
181 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
182 is_jbus = ((ver >> 32UL) == __JALAPENO_ID ||
183 (ver >> 32UL) == __SERRANO_ID);
187 while (p < &__cpuid_patch_end) {
188 unsigned long addr = p->addr;
193 insns = &p->starfire[0];
198 insns = &p->cheetah_jbus[0];
200 insns = &p->cheetah_safari[0];
203 insns = &p->sun4v[0];
206 prom_printf("Unknown cpu type, halting.\n");
210 *(unsigned int *) (addr + 0) = insns[0];
212 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
214 *(unsigned int *) (addr + 4) = insns[1];
216 __asm__ __volatile__("flush %0" : : "r" (addr + 4));
218 *(unsigned int *) (addr + 8) = insns[2];
220 __asm__ __volatile__("flush %0" : : "r" (addr + 8));
222 *(unsigned int *) (addr + 12) = insns[3];
224 __asm__ __volatile__("flush %0" : : "r" (addr + 12));
230 void __init sun4v_patch(void)
232 extern void sun4v_hvapi_init(void);
233 struct sun4v_1insn_patch_entry *p1;
234 struct sun4v_2insn_patch_entry *p2;
236 if (tlb_type != hypervisor)
239 p1 = &__sun4v_1insn_patch;
240 while (p1 < &__sun4v_1insn_patch_end) {
241 unsigned long addr = p1->addr;
243 *(unsigned int *) (addr + 0) = p1->insn;
245 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
250 p2 = &__sun4v_2insn_patch;
251 while (p2 < &__sun4v_2insn_patch_end) {
252 unsigned long addr = p2->addr;
254 *(unsigned int *) (addr + 0) = p2->insns[0];
256 __asm__ __volatile__("flush %0" : : "r" (addr + 0));
258 *(unsigned int *) (addr + 4) = p2->insns[1];
260 __asm__ __volatile__("flush %0" : : "r" (addr + 4));
269 void __init boot_cpu_id_too_large(int cpu)
271 prom_printf("Serious problem, boot cpu id (%d) >= NR_CPUS (%d)\n",
277 void __init setup_arch(char **cmdline_p)
279 /* Initialize PROM console and command line. */
280 *cmdline_p = prom_getbootargs();
281 strcpy(boot_command_line, *cmdline_p);
283 boot_flags_init(*cmdline_p);
284 register_console(&prom_early_console);
286 if (tlb_type == hypervisor)
287 printk("ARCH: SUN4V\n");
289 printk("ARCH: SUN4U\n");
291 #ifdef CONFIG_DUMMY_CONSOLE
292 conswitchp = &dummy_con;
293 #elif defined(CONFIG_PROM_CONSOLE)
294 conswitchp = &prom_con;
300 root_mountflags &= ~MS_RDONLY;
301 ROOT_DEV = old_decode_dev(root_dev);
302 #ifdef CONFIG_BLK_DEV_RAM
303 rd_image_start = ram_flags & RAMDISK_IMAGE_START_MASK;
304 rd_prompt = ((ram_flags & RAMDISK_PROMPT_FLAG) != 0);
305 rd_doload = ((ram_flags & RAMDISK_LOAD_FLAG) != 0);
308 task_thread_info(&init_task)->kregs = &fake_swapper_regs;
311 if (!ic_set_manually) {
312 int chosen = prom_finddevice ("/chosen");
315 cl = prom_getintdefault (chosen, "client-ip", 0);
316 sv = prom_getintdefault (chosen, "server-ip", 0);
317 gw = prom_getintdefault (chosen, "gateway-ip", 0);
323 #if defined(CONFIG_IP_PNP_BOOTP) || defined(CONFIG_IP_PNP_RARP)
324 ic_proto_enabled = 0;
330 /* Get boot processor trap_block[] setup. */
331 init_cur_cpu_trap(current_thread_info());
336 /* BUFFER is PAGE_SIZE bytes long. */
338 extern char *sparc_cpu_type;
339 extern char *sparc_fpu_type;
341 extern void smp_info(struct seq_file *);
342 extern void smp_bogo(struct seq_file *);
343 extern void mmu_info(struct seq_file *);
345 unsigned int dcache_parity_tl1_occurred;
346 unsigned int icache_parity_tl1_occurred;
350 static int show_cpuinfo(struct seq_file *m, void *__unused)
357 "ncpus probed\t: %d\n"
358 "ncpus active\t: %d\n"
359 "D$ parity tl1\t: %u\n"
360 "I$ parity tl1\t: %u\n"
362 "Cpu0ClkTck\t: %016lx\n"
368 ((tlb_type == hypervisor) ?
373 dcache_parity_tl1_occurred,
374 icache_parity_tl1_occurred
376 , cpu_data(0).clock_tick
389 static void *c_start(struct seq_file *m, loff_t *pos)
391 /* The pointer we are returning is arbitrary,
392 * it just has to be non-NULL and not IS_ERR
393 * in the success case.
395 return *pos == 0 ? &c_start : NULL;
398 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
401 return c_start(m, pos);
404 static void c_stop(struct seq_file *m, void *v)
408 const struct seq_operations cpuinfo_op = {
412 .show = show_cpuinfo,
415 extern int stop_a_enabled;
417 void sun_do_break(void)
423 flush_user_windows();
428 int stop_a_enabled = 1;