1 // SPDX-License-Identifier: GPL-2.0
3 * linux/arch/sparc/kernel/setup.c
9 #include <linux/errno.h>
10 #include <linux/sched.h>
11 #include <linux/kernel.h>
13 #include <linux/stddef.h>
14 #include <linux/unistd.h>
15 #include <linux/ptrace.h>
16 #include <linux/slab.h>
17 #include <linux/initrd.h>
19 #include <linux/user.h>
20 #include <linux/delay.h>
22 #include <linux/seq_file.h>
23 #include <linux/syscalls.h>
24 #include <linux/kdev_t.h>
25 #include <linux/major.h>
26 #include <linux/string.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/console.h>
30 #include <linux/spinlock.h>
31 #include <linux/root_dev.h>
32 #include <linux/cpu.h>
33 #include <linux/kdebug.h>
34 #include <linux/export.h>
35 #include <linux/start_kernel.h>
36 #include <uapi/linux/mount.h>
39 #include <asm/processor.h>
40 #include <asm/oplib.h>
42 #include <asm/traps.h>
43 #include <asm/vaddrs.h>
45 #include <asm/idprom.h>
46 #include <asm/cpudata.h>
47 #include <asm/setup.h>
48 #include <asm/cacheflush.h>
49 #include <asm/sections.h>
53 /* Typing sync at the prom prompt calls the function pointed to by
54 * romvec->pv_synchook which I set to the following function.
55 * This should sync all filesystems and return, for now it just
56 * prints out pretty messages and returns.
60 static void prom_sync_me(void)
62 unsigned long prom_tbr, flags;
64 /* XXX Badly broken. FIX! - Anton */
65 local_irq_save(flags);
66 __asm__ __volatile__("rd %%tbr, %0\n\t" : "=r" (prom_tbr));
67 __asm__ __volatile__("wr %0, 0x0, %%tbr\n\t"
70 "nop\n\t" : : "r" (&trapbase[0]));
72 prom_printf("PROM SYNC COMMAND...\n");
74 if (!is_idle_task(current)) {
79 prom_printf("Returning to prom\n");
81 __asm__ __volatile__("wr %0, 0x0, %%tbr\n\t"
84 "nop\n\t" : : "r" (prom_tbr));
85 local_irq_restore(flags);
88 static unsigned int boot_flags __initdata = 0;
89 #define BOOTME_DEBUG 0x1
91 /* Exported for mm/init.c:paging_init. */
92 unsigned long cmdline_memory_size __initdata = 0;
94 /* which CPU booted us (0xff = not set) */
95 unsigned char boot_cpu_id = 0xff; /* 0xff will make it into DATA section... */
98 prom_console_write(struct console *con, const char *s, unsigned int n)
103 static struct console prom_early_console = {
105 .write = prom_console_write,
106 .flags = CON_PRINTBUFFER | CON_BOOT,
111 * Process kernel command line switches that are specific to the
112 * SPARC or that require special low-level processing.
114 static void __init process_switch(char c)
118 boot_flags |= BOOTME_DEBUG;
123 prom_printf("boot_flags_init: Halt!\n");
127 prom_early_console.flags &= ~CON_BOOT;
130 printk("Unknown boot switch (-%c)\n", c);
135 static void __init boot_flags_init(char *commands)
138 /* Move to the start of the next "argument". */
139 while (*commands == ' ')
142 /* Process any command switches, otherwise skip it. */
143 if (*commands == '\0')
145 if (*commands == '-') {
147 while (*commands && *commands != ' ')
148 process_switch(*commands++);
151 if (!strncmp(commands, "mem=", 4)) {
153 * "mem=XXX[kKmM] overrides the PROM-reported
156 cmdline_memory_size = simple_strtoul(commands + 4,
158 if (*commands == 'K' || *commands == 'k') {
159 cmdline_memory_size <<= 10;
161 } else if (*commands=='M' || *commands=='m') {
162 cmdline_memory_size <<= 20;
166 while (*commands && *commands != ' ')
171 extern unsigned short root_flags;
172 extern unsigned short root_dev;
173 extern unsigned short ram_flags;
174 #define RAMDISK_IMAGE_START_MASK 0x07FF
175 #define RAMDISK_PROMPT_FLAG 0x8000
176 #define RAMDISK_LOAD_FLAG 0x4000
178 extern int root_mountflags;
180 char reboot_command[COMMAND_LINE_SIZE];
182 struct cpuid_patch_entry {
184 unsigned int sun4d[3];
185 unsigned int leon[3];
187 extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end;
189 static void __init per_cpu_patch(void)
191 struct cpuid_patch_entry *p;
193 if (sparc_cpu_model == sun4m) {
194 /* Nothing to do, this is what the unpatched code
201 while (p < &__cpuid_patch_end) {
202 unsigned long addr = p->addr;
205 switch (sparc_cpu_model) {
207 insns = &p->sun4d[0];
214 prom_printf("Unknown cpu type, halting.\n");
217 *(unsigned int *) (addr + 0) = insns[0];
219 *(unsigned int *) (addr + 4) = insns[1];
221 *(unsigned int *) (addr + 8) = insns[2];
228 struct leon_1insn_patch_entry {
233 enum sparc_cpu sparc_cpu_model;
234 EXPORT_SYMBOL(sparc_cpu_model);
236 static __init void leon_patch(void)
238 struct leon_1insn_patch_entry *start = (void *)__leon_1insn_patch;
239 struct leon_1insn_patch_entry *end = (void *)__leon_1insn_patch_end;
241 /* Default instruction is leon - no patching */
242 if (sparc_cpu_model == sparc_leon)
245 while (start < end) {
246 unsigned long addr = start->addr;
248 *(unsigned int *)(addr) = start->insn;
255 struct tt_entry *sparc_ttable;
257 /* Called from head_32.S - before we have setup anything
258 * in the kernel. Be very careful with what you do here.
260 void __init sparc32_start_kernel(struct linux_romvec *rp)
264 /* Set sparc_cpu_model */
265 sparc_cpu_model = sun_unknown;
266 if (!strcmp(&cputypval[0], "sun4m"))
267 sparc_cpu_model = sun4m;
268 if (!strcmp(&cputypval[0], "sun4s"))
269 sparc_cpu_model = sun4m; /* CP-1200 with PROM 2.30 -E */
270 if (!strcmp(&cputypval[0], "sun4d"))
271 sparc_cpu_model = sun4d;
272 if (!strcmp(&cputypval[0], "sun4e"))
273 sparc_cpu_model = sun4e;
274 if (!strcmp(&cputypval[0], "sun4u"))
275 sparc_cpu_model = sun4u;
276 if (!strncmp(&cputypval[0], "leon" , 4))
277 sparc_cpu_model = sparc_leon;
283 void __init setup_arch(char **cmdline_p)
286 unsigned long highest_paddr;
288 sparc_ttable = &trapbase[0];
290 /* Initialize PROM console and command line. */
291 *cmdline_p = prom_getbootargs();
292 strscpy(boot_command_line, *cmdline_p, COMMAND_LINE_SIZE);
295 boot_flags_init(*cmdline_p);
297 register_console(&prom_early_console);
299 switch(sparc_cpu_model) {
301 pr_info("ARCH: SUN4M\n");
304 pr_info("ARCH: SUN4D\n");
307 pr_info("ARCH: SUN4E\n");
310 pr_info("ARCH: SUN4U\n");
313 pr_info("ARCH: LEON\n");
316 pr_info("ARCH: UNKNOWN!\n");
323 phys_base = 0xffffffffUL;
325 for (i = 0; sp_banks[i].num_bytes != 0; i++) {
328 if (sp_banks[i].base_addr < phys_base)
329 phys_base = sp_banks[i].base_addr;
330 top = sp_banks[i].base_addr +
331 sp_banks[i].num_bytes;
332 if (highest_paddr < top)
335 pfn_base = phys_base >> PAGE_SHIFT;
338 root_mountflags &= ~MS_RDONLY;
339 ROOT_DEV = old_decode_dev(root_dev);
340 #ifdef CONFIG_BLK_DEV_RAM
341 rd_image_start = ram_flags & RAMDISK_IMAGE_START_MASK;
344 prom_setsync(prom_sync_me);
346 if((boot_flags & BOOTME_DEBUG) && (linux_dbvec != NULL) &&
347 ((*(short *)linux_dbvec) != -1)) {
348 printk("Booted under KADB. Syncing trap table.\n");
349 (*(linux_dbvec->teach_debugger))();
352 /* Run-time patch instructions to match the cpu model */
357 smp_setup_cpu_possible_map();
360 extern int stop_a_enabled;
362 void sun_do_break(void)
368 flush_user_windows();
372 EXPORT_SYMBOL(sun_do_break);
374 int stop_a_enabled = 1;
376 static int __init topology_init(void)
380 /* Count the number of physically present processors in
381 * the machine, even on uniprocessor, so that /proc/cpuinfo
382 * output is consistent with 2.4.x
385 while (!cpu_find_by_instance(ncpus, NULL, NULL))
387 ncpus_probed = ncpus;
390 for_each_online_cpu(i) {
391 struct cpu *p = kzalloc(sizeof(*p), GFP_KERNEL);
401 subsys_initcall(topology_init);
403 #if defined(CONFIG_SPARC32) && !defined(CONFIG_SMP)
404 void __init arch_cpu_finalize_init(void)
406 cpu_data(0).udelay_val = loops_per_jiffy;