1 /* $Id: setup.c,v 1.126 2001/11/13 00:49:27 davem Exp $
2 * linux/arch/sparc/kernel/setup.c
4 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 2000 Anton Blanchard (anton@samba.org)
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>
16 #include <linux/initrd.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>
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>
35 #include <asm/segment.h>
36 #include <asm/system.h>
38 #include <asm/processor.h>
39 #include <asm/oplib.h>
41 #include <asm/pgtable.h>
42 #include <asm/traps.h>
43 #include <asm/vaddrs.h>
44 #include <asm/kdebug.h>
46 #include <asm/idprom.h>
47 #include <asm/machines.h>
48 #include <asm/cpudata.h>
49 #include <asm/setup.h>
51 struct screen_info screen_info
= {
52 0, 0, /* orig-x, orig-y */
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 */
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.
69 extern unsigned long trapbase
;
70 void (*prom_palette
)(int);
73 void prom_sync_me(void)
75 unsigned long prom_tbr
, flags
;
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"
83 "nop\n\t" : : "r" (&trapbase
));
87 prom_printf("PROM SYNC COMMAND...\n");
89 if(current
->pid
!= 0) {
94 prom_printf("Returning to prom\n");
96 __asm__
__volatile__("wr %0, 0x0, %%tbr\n\t"
99 "nop\n\t" : : "r" (prom_tbr
));
100 local_irq_restore(flags
);
105 unsigned int boot_flags __initdata
= 0;
106 #define BOOTME_DEBUG 0x1
107 #define BOOTME_SINGLE 0x2
109 /* Exported for mm/init.c:paging_init. */
110 unsigned long cmdline_memory_size __initdata
= 0;
113 prom_console_write(struct console
*con
, const char *s
, unsigned n
)
118 static struct console prom_debug_console
= {
120 .write
= prom_console_write
,
121 .flags
= CON_PRINTBUFFER
,
125 int obp_system_intr(void)
127 if (boot_flags
& BOOTME_DEBUG
) {
128 printk("OBP: system interrupted\n");
136 * Process kernel command line switches that are specific to the
137 * SPARC or that require special low-level processing.
139 static void __init
process_switch(char c
)
143 boot_flags
|= BOOTME_DEBUG
;
146 boot_flags
|= BOOTME_SINGLE
;
149 prom_printf("boot_flags_init: Halt!\n");
153 /* Use PROM debug console. */
154 register_console(&prom_debug_console
);
157 printk("Unknown boot switch (-%c)\n", c
);
162 static void __init
process_console(char *commands
)
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 */
176 #if defined(CONFIG_PROM_CONSOLE)
177 if (!strncmp(commands
, "prom", 4)) {
180 for (p
= commands
- 8; *p
&& *p
!= ' '; p
++)
182 conswitchp
= &prom_con
;
187 static void __init
boot_flags_init(char *commands
)
190 /* Move to the start of the next "argument". */
191 while (*commands
&& *commands
== ' ')
194 /* Process any command switches, otherwise skip it. */
195 if (*commands
== '\0')
197 if (*commands
== '-') {
199 while (*commands
&& *commands
!= ' ')
200 process_switch(*commands
++);
203 if (!strncmp(commands
, "console=", 8)) {
204 process_console(commands
);
205 } else if (!strncmp(commands
, "mem=", 4)) {
207 * "mem=XXX[kKmM] overrides the PROM-reported
210 cmdline_memory_size
= simple_strtoul(commands
+ 4,
212 if (*commands
== 'K' || *commands
== 'k') {
213 cmdline_memory_size
<<= 10;
215 } else if (*commands
=='M' || *commands
=='m') {
216 cmdline_memory_size
<<= 20;
220 while (*commands
&& *commands
!= ' ')
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.
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 *);
237 extern unsigned short root_flags
;
238 extern unsigned short root_dev
;
239 extern unsigned short ram_flags
;
240 #define RAMDISK_IMAGE_START_MASK 0x07FF
241 #define RAMDISK_PROMPT_FLAG 0x8000
242 #define RAMDISK_LOAD_FLAG 0x4000
244 extern int root_mountflags
;
246 char reboot_command
[COMMAND_LINE_SIZE
];
247 enum sparc_cpu sparc_cpu_model
;
249 struct tt_entry
*sparc_ttable
;
251 struct pt_regs fake_swapper_regs
;
253 extern void paging_init(void);
255 void __init
setup_arch(char **cmdline_p
)
258 unsigned long highest_paddr
;
260 sparc_ttable
= (struct tt_entry
*) &start
;
262 /* Initialize PROM console and command line. */
263 *cmdline_p
= prom_getbootargs();
264 strcpy(saved_command_line
, *cmdline_p
);
266 /* Set sparc_cpu_model */
267 sparc_cpu_model
= sun_unknown
;
268 if(!strcmp(&cputypval
,"sun4 ")) { sparc_cpu_model
=sun4
; }
269 if(!strcmp(&cputypval
,"sun4c")) { sparc_cpu_model
=sun4c
; }
270 if(!strcmp(&cputypval
,"sun4m")) { sparc_cpu_model
=sun4m
; }
271 if(!strcmp(&cputypval
,"sun4s")) { sparc_cpu_model
=sun4m
; } /* CP-1200 with PROM 2.30 -E */
272 if(!strcmp(&cputypval
,"sun4d")) { sparc_cpu_model
=sun4d
; }
273 if(!strcmp(&cputypval
,"sun4e")) { sparc_cpu_model
=sun4e
; }
274 if(!strcmp(&cputypval
,"sun4u")) { sparc_cpu_model
=sun4u
; }
277 if (sparc_cpu_model
!= sun4
) {
278 prom_printf("This kernel is for Sun4 architecture only.\n");
283 switch(sparc_cpu_model
) {
303 printk("UNKNOWN!\n");
307 #ifdef CONFIG_DUMMY_CONSOLE
308 conswitchp
= &dummy_con
;
309 #elif defined(CONFIG_PROM_CONSOLE)
310 conswitchp
= &prom_con
;
312 boot_flags_init(*cmdline_p
);
318 (void) prom_probe_memory();
320 phys_base
= 0xffffffffUL
;
322 for (i
= 0; sp_banks
[i
].num_bytes
!= 0; i
++) {
325 if (sp_banks
[i
].base_addr
< phys_base
)
326 phys_base
= sp_banks
[i
].base_addr
;
327 top
= sp_banks
[i
].base_addr
+
328 sp_banks
[i
].num_bytes
;
329 if (highest_paddr
< top
)
332 pfn_base
= phys_base
>> PAGE_SHIFT
;
335 root_mountflags
&= ~MS_RDONLY
;
336 ROOT_DEV
= old_decode_dev(root_dev
);
337 #ifdef CONFIG_BLK_DEV_INITRD
338 rd_image_start
= ram_flags
& RAMDISK_IMAGE_START_MASK
;
339 rd_prompt
= ((ram_flags
& RAMDISK_PROMPT_FLAG
) != 0);
340 rd_doload
= ((ram_flags
& RAMDISK_LOAD_FLAG
) != 0);
343 prom_setsync(prom_sync_me
);
345 if((boot_flags
&BOOTME_DEBUG
) && (linux_dbvec
!=0) &&
346 ((*(short *)linux_dbvec
) != -1)) {
347 printk("Booted under KADB. Syncing trap table.\n");
348 (*(linux_dbvec
->teach_debugger
))();
351 init_mm
.context
= (unsigned long) NO_CONTEXT
;
352 init_task
.thread
.kregs
= &fake_swapper_regs
;
357 static int __init
set_preferred_console(void)
361 /* The user has requested a console so this is already set up. */
362 if (serial_console
>= 0)
365 idev
= prom_query_input_device();
366 odev
= prom_query_output_device();
367 if (idev
== PROMDEV_IKBD
&& odev
== PROMDEV_OSCREEN
) {
369 } else if (idev
== PROMDEV_ITTYA
&& odev
== PROMDEV_OTTYA
) {
371 } else if (idev
== PROMDEV_ITTYB
&& odev
== PROMDEV_OTTYB
) {
373 } else if (idev
== PROMDEV_I_UNK
&& odev
== PROMDEV_OTTYA
) {
374 prom_printf("MrCoffee ttya\n");
376 } else if (idev
== PROMDEV_I_UNK
&& odev
== PROMDEV_OSCREEN
) {
378 prom_printf("MrCoffee keyboard\n");
380 prom_printf("Confusing console (idev %d, odev %d)\n",
386 return add_preferred_console("ttyS", serial_console
- 1, NULL
);
390 console_initcall(set_preferred_console
);
392 extern char *sparc_cpu_type
;
393 extern char *sparc_fpu_type
;
395 static int show_cpuinfo(struct seq_file
*m
, void *__unused
)
400 "promlib\t\t: Version %d Revision %d\n"
403 "ncpus probed\t: %d\n"
404 "ncpus active\t: %d\n"
406 "CPU0Bogo\t: %lu.%02lu\n"
407 "CPU0ClkTck\t: %ld\n"
410 sparc_cpu_type
? sparc_cpu_type
: "undetermined",
411 sparc_fpu_type
? sparc_fpu_type
: "undetermined",
414 romvec
->pv_printrev
>> 16,
415 romvec
->pv_printrev
& 0xffff,
420 , cpu_data(0).udelay_val
/(500000/HZ
),
421 (cpu_data(0).udelay_val
/(5000/HZ
)) % 100,
422 cpu_data(0).clock_tick
436 static void *c_start(struct seq_file
*m
, loff_t
*pos
)
438 /* The pointer we are returning is arbitrary,
439 * it just has to be non-NULL and not IS_ERR
440 * in the success case.
442 return *pos
== 0 ? &c_start
: NULL
;
445 static void *c_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
448 return c_start(m
, pos
);
451 static void c_stop(struct seq_file
*m
, void *v
)
455 struct seq_operations cpuinfo_op
= {
459 .show
= show_cpuinfo
,
462 extern int stop_a_enabled
;
464 void sun_do_break(void)
470 flush_user_windows();
475 int serial_console
= -1;
476 int stop_a_enabled
= 1;