Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/arch/m68k/kernel/setup.c
4 *
5 * Copyright (C) 1995 Hamish Macdonald
6 */
7
8/*
9 * This file handles the architecture-dependent parts of system setup
10 */
11
12#include <linux/kernel.h>
13#include <linux/cpu.h>
14#include <linux/mm.h>
15#include <linux/sched.h>
16#include <linux/delay.h>
17#include <linux/interrupt.h>
18#include <linux/fs.h>
19#include <linux/console.h>
20#include <linux/errno.h>
21#include <linux/string.h>
22#include <linux/init.h>
23#include <linux/memblock.h>
24#include <linux/proc_fs.h>
25#include <linux/seq_file.h>
26#include <linux/module.h>
27#include <linux/nvram.h>
28#include <linux/initrd.h>
29#include <linux/random.h>
30
31#include <asm/bootinfo.h>
32#include <asm/byteorder.h>
33#include <asm/sections.h>
34#include <asm/setup.h>
35#include <asm/fpu.h>
36#include <asm/irq.h>
37#include <asm/io.h>
38#include <asm/machdep.h>
39#ifdef CONFIG_AMIGA
40#include <asm/amigahw.h>
41#endif
42#include <asm/atarihw.h>
43#ifdef CONFIG_ATARI
44#include <asm/atari_stram.h>
45#endif
46#ifdef CONFIG_SUN3X
47#include <asm/dvma.h>
48#endif
49#include <asm/macintosh.h>
50#include <asm/natfeat.h>
51#include <asm/config.h>
52
53#if !FPSTATESIZE || !NR_IRQS
54#warning No CPU/platform type selected, your kernel will not work!
55#warning Are you building an allnoconfig kernel?
56#endif
57
58unsigned long m68k_machtype;
59EXPORT_SYMBOL(m68k_machtype);
60unsigned long m68k_cputype;
61EXPORT_SYMBOL(m68k_cputype);
62unsigned long m68k_fputype;
63unsigned long m68k_mmutype;
64EXPORT_SYMBOL(m68k_mmutype);
65#ifdef CONFIG_VME
66unsigned long vme_brdtype;
67EXPORT_SYMBOL(vme_brdtype);
68#endif
69
70int m68k_is040or060;
71EXPORT_SYMBOL(m68k_is040or060);
72
73extern unsigned long availmem;
74
75int m68k_num_memory;
76EXPORT_SYMBOL(m68k_num_memory);
77int m68k_realnum_memory;
78EXPORT_SYMBOL(m68k_realnum_memory);
79unsigned long m68k_memoffset;
80struct m68k_mem_info m68k_memory[NUM_MEMINFO];
81EXPORT_SYMBOL(m68k_memory);
82
83static struct m68k_mem_info m68k_ramdisk __initdata;
84
85static char m68k_command_line[CL_SIZE] __initdata;
86
87void (*mach_sched_init) (void) __initdata = NULL;
88/* machine dependent irq functions */
89void (*mach_init_IRQ) (void) __initdata = NULL;
90void (*mach_get_model) (char *model);
91void (*mach_get_hardware_list) (struct seq_file *m);
92void (*mach_reset)( void );
93void (*mach_halt)( void );
94#ifdef CONFIG_HEARTBEAT
95void (*mach_heartbeat) (int);
96EXPORT_SYMBOL(mach_heartbeat);
97#endif
98#ifdef CONFIG_M68K_L2_CACHE
99void (*mach_l2_flush) (int);
100#endif
101#if defined(CONFIG_ISA) && defined(MULTI_ISA)
102int isa_type;
103int isa_sex;
104EXPORT_SYMBOL(isa_type);
105EXPORT_SYMBOL(isa_sex);
106#endif
107
108#define MASK_256K 0xfffc0000
109
110static void __init m68k_parse_bootinfo(const struct bi_record *record)
111{
112 const struct bi_record *first_record = record;
113 uint16_t tag;
114
115 while ((tag = be16_to_cpu(record->tag)) != BI_LAST) {
116 int unknown = 0;
117 const void *data = record->data;
118 uint16_t size = be16_to_cpu(record->size);
119
120 switch (tag) {
121 case BI_MACHTYPE:
122 case BI_CPUTYPE:
123 case BI_FPUTYPE:
124 case BI_MMUTYPE:
125 /* Already set up by head.S */
126 break;
127
128 case BI_MEMCHUNK:
129 if (m68k_num_memory < NUM_MEMINFO) {
130 const struct mem_info *m = data;
131 m68k_memory[m68k_num_memory].addr =
132 be32_to_cpu(m->addr);
133 m68k_memory[m68k_num_memory].size =
134 be32_to_cpu(m->size);
135 m68k_num_memory++;
136 } else
137 pr_warn("%s: too many memory chunks\n",
138 __func__);
139 break;
140
141 case BI_RAMDISK:
142 {
143 const struct mem_info *m = data;
144 m68k_ramdisk.addr = be32_to_cpu(m->addr);
145 m68k_ramdisk.size = be32_to_cpu(m->size);
146 }
147 break;
148
149 case BI_COMMAND_LINE:
150 strscpy(m68k_command_line, data,
151 sizeof(m68k_command_line));
152 break;
153
154 case BI_RNG_SEED: {
155 u16 len = be16_to_cpup(data);
156 add_bootloader_randomness(data + 2, len);
157 /*
158 * Zero the data to preserve forward secrecy, and zero the
159 * length to prevent kexec from using it.
160 */
161 memzero_explicit((void *)data, len + 2);
162 break;
163 }
164
165 default:
166 if (MACH_IS_AMIGA)
167 unknown = amiga_parse_bootinfo(record);
168 else if (MACH_IS_ATARI)
169 unknown = atari_parse_bootinfo(record);
170 else if (MACH_IS_MAC)
171 unknown = mac_parse_bootinfo(record);
172 else if (MACH_IS_Q40)
173 unknown = q40_parse_bootinfo(record);
174 else if (MACH_IS_BVME6000)
175 unknown = bvme6000_parse_bootinfo(record);
176 else if (MACH_IS_MVME16x)
177 unknown = mvme16x_parse_bootinfo(record);
178 else if (MACH_IS_MVME147)
179 unknown = mvme147_parse_bootinfo(record);
180 else if (MACH_IS_HP300)
181 unknown = hp300_parse_bootinfo(record);
182 else if (MACH_IS_APOLLO)
183 unknown = apollo_parse_bootinfo(record);
184 else if (MACH_IS_VIRT)
185 unknown = virt_parse_bootinfo(record);
186 else
187 unknown = 1;
188 }
189 if (unknown)
190 pr_warn("%s: unknown tag 0x%04x ignored\n", __func__,
191 tag);
192 record = (struct bi_record *)((unsigned long)record + size);
193 }
194
195 save_bootinfo(first_record);
196
197 m68k_realnum_memory = m68k_num_memory;
198#ifdef CONFIG_SINGLE_MEMORY_CHUNK
199 if (m68k_num_memory > 1) {
200 pr_warn("%s: ignoring last %i chunks of physical memory\n",
201 __func__, (m68k_num_memory - 1));
202 m68k_num_memory = 1;
203 }
204#endif
205}
206
207void __init setup_arch(char **cmdline_p)
208{
209 /* The bootinfo is located right after the kernel */
210 if (!CPU_IS_COLDFIRE)
211 m68k_parse_bootinfo((const struct bi_record *)_end);
212
213 if (CPU_IS_040)
214 m68k_is040or060 = 4;
215 else if (CPU_IS_060)
216 m68k_is040or060 = 6;
217
218 /* FIXME: m68k_fputype is passed in by Penguin booter, which can
219 * be confused by software FPU emulation. BEWARE.
220 * We should really do our own FPU check at startup.
221 * [what do we do with buggy 68LC040s? if we have problems
222 * with them, we should add a test to check_bugs() below] */
223#if defined(CONFIG_FPU) && !defined(CONFIG_M68KFPU_EMU_ONLY)
224 /* clear the fpu if we have one */
225 if (m68k_fputype & (FPU_68881|FPU_68882|FPU_68040|FPU_68060|FPU_COLDFIRE)) {
226 volatile int zero = 0;
227 asm volatile ("frestore %0" : : "m" (zero));
228 }
229#endif
230
231 if (CPU_IS_060) {
232 u32 pcr;
233
234 asm (".chip 68060; movec %%pcr,%0; .chip 68k"
235 : "=d" (pcr));
236 if (((pcr >> 8) & 0xff) <= 5) {
237 pr_warn("Enabling workaround for errata I14\n");
238 asm (".chip 68060; movec %0,%%pcr; .chip 68k"
239 : : "d" (pcr | 0x20));
240 }
241 }
242
243 setup_initial_init_mm((void *)PAGE_OFFSET, _etext, _edata, _end);
244
245#if defined(CONFIG_BOOTPARAM)
246 strncpy(m68k_command_line, CONFIG_BOOTPARAM_STRING, CL_SIZE);
247 m68k_command_line[CL_SIZE - 1] = 0;
248#endif /* CONFIG_BOOTPARAM */
249 process_uboot_commandline(&m68k_command_line[0], CL_SIZE);
250 *cmdline_p = m68k_command_line;
251 memcpy(boot_command_line, *cmdline_p, CL_SIZE);
252
253 parse_early_param();
254
255 switch (m68k_machtype) {
256#ifdef CONFIG_AMIGA
257 case MACH_AMIGA:
258 config_amiga();
259 break;
260#endif
261#ifdef CONFIG_ATARI
262 case MACH_ATARI:
263 config_atari();
264 break;
265#endif
266#ifdef CONFIG_MAC
267 case MACH_MAC:
268 config_mac();
269 break;
270#endif
271#ifdef CONFIG_SUN3
272 case MACH_SUN3:
273 config_sun3();
274 break;
275#endif
276#ifdef CONFIG_APOLLO
277 case MACH_APOLLO:
278 config_apollo();
279 break;
280#endif
281#ifdef CONFIG_MVME147
282 case MACH_MVME147:
283 config_mvme147();
284 break;
285#endif
286#ifdef CONFIG_MVME16x
287 case MACH_MVME16x:
288 config_mvme16x();
289 break;
290#endif
291#ifdef CONFIG_BVME6000
292 case MACH_BVME6000:
293 config_bvme6000();
294 break;
295#endif
296#ifdef CONFIG_HP300
297 case MACH_HP300:
298 config_hp300();
299 break;
300#endif
301#ifdef CONFIG_Q40
302 case MACH_Q40:
303 config_q40();
304 break;
305#endif
306#ifdef CONFIG_SUN3X
307 case MACH_SUN3X:
308 config_sun3x();
309 break;
310#endif
311#ifdef CONFIG_COLDFIRE
312 case MACH_M54XX:
313 case MACH_M5441X:
314 cf_bootmem_alloc();
315 cf_mmu_context_init();
316 config_BSP(NULL, 0);
317 break;
318#endif
319#ifdef CONFIG_VIRT
320 case MACH_VIRT:
321 config_virt();
322 break;
323#endif
324 default:
325 panic("No configuration setup");
326 }
327
328 if (IS_ENABLED(CONFIG_BLK_DEV_INITRD) && m68k_ramdisk.size)
329 memblock_reserve(m68k_ramdisk.addr, m68k_ramdisk.size);
330
331 paging_init();
332
333 if (IS_ENABLED(CONFIG_BLK_DEV_INITRD) && m68k_ramdisk.size) {
334 initrd_start = (unsigned long)phys_to_virt(m68k_ramdisk.addr);
335 initrd_end = initrd_start + m68k_ramdisk.size;
336 pr_info("initrd: %08lx - %08lx\n", initrd_start, initrd_end);
337 }
338
339#ifdef CONFIG_NATFEAT
340 nf_init();
341#endif
342
343#ifdef CONFIG_ATARI
344 if (MACH_IS_ATARI)
345 atari_stram_reserve_pages((void *)availmem);
346#endif
347#ifdef CONFIG_SUN3X
348 if (MACH_IS_SUN3X) {
349 dvma_init();
350 }
351#endif
352
353/* set ISA defs early as possible */
354#if defined(CONFIG_ISA) && defined(MULTI_ISA)
355 if (MACH_IS_Q40) {
356 isa_type = ISA_TYPE_Q40;
357 isa_sex = 0;
358 }
359#ifdef CONFIG_AMIGA_PCMCIA
360 if (MACH_IS_AMIGA && AMIGAHW_PRESENT(PCMCIA)) {
361 isa_type = ISA_TYPE_AG;
362 isa_sex = 1;
363 }
364#endif
365#ifdef CONFIG_ATARI_ROM_ISA
366 if (MACH_IS_ATARI) {
367 isa_type = ISA_TYPE_ENEC;
368 isa_sex = 0;
369 }
370#endif
371#endif
372}
373
374static int show_cpuinfo(struct seq_file *m, void *v)
375{
376 const char *cpu, *mmu, *fpu;
377 unsigned long clockfreq, clockfactor;
378
379#define LOOP_CYCLES_68020 (8)
380#define LOOP_CYCLES_68030 (8)
381#define LOOP_CYCLES_68040 (3)
382#define LOOP_CYCLES_68060 (1)
383#define LOOP_CYCLES_COLDFIRE (2)
384
385 if (CPU_IS_020) {
386 cpu = "68020";
387 clockfactor = LOOP_CYCLES_68020;
388 } else if (CPU_IS_030) {
389 cpu = "68030";
390 clockfactor = LOOP_CYCLES_68030;
391 } else if (CPU_IS_040) {
392 cpu = "68040";
393 clockfactor = LOOP_CYCLES_68040;
394 } else if (CPU_IS_060) {
395 cpu = "68060";
396 clockfactor = LOOP_CYCLES_68060;
397 } else if (CPU_IS_COLDFIRE) {
398 cpu = "ColdFire";
399 clockfactor = LOOP_CYCLES_COLDFIRE;
400 } else {
401 cpu = "680x0";
402 clockfactor = 0;
403 }
404
405#ifdef CONFIG_M68KFPU_EMU_ONLY
406 fpu = "none(soft float)";
407#else
408 if (m68k_fputype & FPU_68881)
409 fpu = "68881";
410 else if (m68k_fputype & FPU_68882)
411 fpu = "68882";
412 else if (m68k_fputype & FPU_68040)
413 fpu = "68040";
414 else if (m68k_fputype & FPU_68060)
415 fpu = "68060";
416 else if (m68k_fputype & FPU_SUNFPA)
417 fpu = "Sun FPA";
418 else if (m68k_fputype & FPU_COLDFIRE)
419 fpu = "ColdFire";
420 else
421 fpu = "none";
422#endif
423
424 if (m68k_mmutype & MMU_68851)
425 mmu = "68851";
426 else if (m68k_mmutype & MMU_68030)
427 mmu = "68030";
428 else if (m68k_mmutype & MMU_68040)
429 mmu = "68040";
430 else if (m68k_mmutype & MMU_68060)
431 mmu = "68060";
432 else if (m68k_mmutype & MMU_SUN3)
433 mmu = "Sun-3";
434 else if (m68k_mmutype & MMU_APOLLO)
435 mmu = "Apollo";
436 else if (m68k_mmutype & MMU_COLDFIRE)
437 mmu = "ColdFire";
438 else
439 mmu = "unknown";
440
441 clockfreq = loops_per_jiffy * HZ * clockfactor;
442
443 seq_printf(m, "CPU:\t\t%s\n"
444 "MMU:\t\t%s\n"
445 "FPU:\t\t%s\n"
446 "Clocking:\t%lu.%1luMHz\n"
447 "BogoMips:\t%lu.%02lu\n"
448 "Calibration:\t%lu loops\n",
449 cpu, mmu, fpu,
450 clockfreq/1000000,(clockfreq/100000)%10,
451 loops_per_jiffy/(500000/HZ),(loops_per_jiffy/(5000/HZ))%100,
452 loops_per_jiffy);
453 return 0;
454}
455
456static void *c_start(struct seq_file *m, loff_t *pos)
457{
458 return *pos < 1 ? (void *)1 : NULL;
459}
460static void *c_next(struct seq_file *m, void *v, loff_t *pos)
461{
462 ++*pos;
463 return NULL;
464}
465static void c_stop(struct seq_file *m, void *v)
466{
467}
468const struct seq_operations cpuinfo_op = {
469 .start = c_start,
470 .next = c_next,
471 .stop = c_stop,
472 .show = show_cpuinfo,
473};
474
475#ifdef CONFIG_PROC_HARDWARE
476static int hardware_proc_show(struct seq_file *m, void *v)
477{
478 char model[80];
479 unsigned long mem;
480 int i;
481
482 if (mach_get_model)
483 mach_get_model(model);
484 else
485 strcpy(model, "Unknown m68k");
486
487 seq_printf(m, "Model:\t\t%s\n", model);
488 for (mem = 0, i = 0; i < m68k_num_memory; i++)
489 mem += m68k_memory[i].size;
490 seq_printf(m, "System Memory:\t%ldK\n", mem >> 10);
491
492 if (mach_get_hardware_list)
493 mach_get_hardware_list(m);
494
495 return 0;
496}
497
498static int __init proc_hardware_init(void)
499{
500 proc_create_single("hardware", 0, NULL, hardware_proc_show);
501 return 0;
502}
503module_init(proc_hardware_init);
504#endif
505
506void __init arch_cpu_finalize_init(void)
507{
508#if defined(CONFIG_FPU) && !defined(CONFIG_M68KFPU_EMU)
509 if (m68k_fputype == 0) {
510 pr_emerg("*** YOU DO NOT HAVE A FLOATING POINT UNIT, "
511 "WHICH IS REQUIRED BY LINUX/M68K ***\n");
512 pr_emerg("Upgrade your hardware or join the FPU "
513 "emulation project\n");
514 panic("no FPU");
515 }
516#endif /* !CONFIG_M68KFPU_EMU */
517}
518
519#ifdef CONFIG_ADB
520static int __init adb_probe_sync_enable (char *str) {
521 extern int __adb_probe_sync;
522 __adb_probe_sync = 1;
523 return 1;
524}
525
526__setup("adb_sync", adb_probe_sync_enable);
527#endif /* CONFIG_ADB */
528
529#if IS_ENABLED(CONFIG_NVRAM)
530#ifdef CONFIG_MAC
531static unsigned char m68k_nvram_read_byte(int addr)
532{
533 if (MACH_IS_MAC)
534 return mac_pram_read_byte(addr);
535 return 0xff;
536}
537
538static void m68k_nvram_write_byte(unsigned char val, int addr)
539{
540 if (MACH_IS_MAC)
541 mac_pram_write_byte(val, addr);
542}
543#endif /* CONFIG_MAC */
544
545#ifdef CONFIG_ATARI
546static ssize_t m68k_nvram_read(char *buf, size_t count, loff_t *ppos)
547{
548 if (MACH_IS_ATARI)
549 return atari_nvram_read(buf, count, ppos);
550 else if (MACH_IS_MAC)
551 return nvram_read_bytes(buf, count, ppos);
552 return -EINVAL;
553}
554
555static ssize_t m68k_nvram_write(char *buf, size_t count, loff_t *ppos)
556{
557 if (MACH_IS_ATARI)
558 return atari_nvram_write(buf, count, ppos);
559 else if (MACH_IS_MAC)
560 return nvram_write_bytes(buf, count, ppos);
561 return -EINVAL;
562}
563
564static long m68k_nvram_set_checksum(void)
565{
566 if (MACH_IS_ATARI)
567 return atari_nvram_set_checksum();
568 return -EINVAL;
569}
570
571static long m68k_nvram_initialize(void)
572{
573 if (MACH_IS_ATARI)
574 return atari_nvram_initialize();
575 return -EINVAL;
576}
577#endif /* CONFIG_ATARI */
578
579static ssize_t m68k_nvram_get_size(void)
580{
581 if (MACH_IS_ATARI)
582 return atari_nvram_get_size();
583 else if (MACH_IS_MAC)
584 return mac_pram_get_size();
585 return -ENODEV;
586}
587
588/* Atari device drivers call .read (to get checksum validation) whereas
589 * Mac and PowerMac device drivers just use .read_byte.
590 */
591const struct nvram_ops arch_nvram_ops = {
592#ifdef CONFIG_MAC
593 .read_byte = m68k_nvram_read_byte,
594 .write_byte = m68k_nvram_write_byte,
595#endif
596#ifdef CONFIG_ATARI
597 .read = m68k_nvram_read,
598 .write = m68k_nvram_write,
599 .set_checksum = m68k_nvram_set_checksum,
600 .initialize = m68k_nvram_initialize,
601#endif
602 .get_size = m68k_nvram_get_size,
603};
604EXPORT_SYMBOL(arch_nvram_ops);
605#endif /* CONFIG_NVRAM */
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/arch/m68k/kernel/setup.c
4 *
5 * Copyright (C) 1995 Hamish Macdonald
6 */
7
8/*
9 * This file handles the architecture-dependent parts of system setup
10 */
11
12#include <linux/kernel.h>
13#include <linux/mm.h>
14#include <linux/sched.h>
15#include <linux/delay.h>
16#include <linux/interrupt.h>
17#include <linux/fs.h>
18#include <linux/console.h>
19#include <linux/errno.h>
20#include <linux/string.h>
21#include <linux/init.h>
22#include <linux/memblock.h>
23#include <linux/proc_fs.h>
24#include <linux/seq_file.h>
25#include <linux/module.h>
26#include <linux/nvram.h>
27#include <linux/initrd.h>
28#include <linux/random.h>
29
30#include <asm/bootinfo.h>
31#include <asm/byteorder.h>
32#include <asm/sections.h>
33#include <asm/setup.h>
34#include <asm/fpu.h>
35#include <asm/irq.h>
36#include <asm/io.h>
37#include <asm/machdep.h>
38#ifdef CONFIG_AMIGA
39#include <asm/amigahw.h>
40#endif
41#include <asm/atarihw.h>
42#ifdef CONFIG_ATARI
43#include <asm/atari_stram.h>
44#endif
45#ifdef CONFIG_SUN3X
46#include <asm/dvma.h>
47#endif
48#include <asm/macintosh.h>
49#include <asm/natfeat.h>
50#include <asm/config.h>
51
52#if !FPSTATESIZE || !NR_IRQS
53#warning No CPU/platform type selected, your kernel will not work!
54#warning Are you building an allnoconfig kernel?
55#endif
56
57unsigned long m68k_machtype;
58EXPORT_SYMBOL(m68k_machtype);
59unsigned long m68k_cputype;
60EXPORT_SYMBOL(m68k_cputype);
61unsigned long m68k_fputype;
62unsigned long m68k_mmutype;
63EXPORT_SYMBOL(m68k_mmutype);
64#ifdef CONFIG_VME
65unsigned long vme_brdtype;
66EXPORT_SYMBOL(vme_brdtype);
67#endif
68
69int m68k_is040or060;
70EXPORT_SYMBOL(m68k_is040or060);
71
72extern unsigned long availmem;
73
74int m68k_num_memory;
75EXPORT_SYMBOL(m68k_num_memory);
76int m68k_realnum_memory;
77EXPORT_SYMBOL(m68k_realnum_memory);
78unsigned long m68k_memoffset;
79struct m68k_mem_info m68k_memory[NUM_MEMINFO];
80EXPORT_SYMBOL(m68k_memory);
81
82static struct m68k_mem_info m68k_ramdisk __initdata;
83
84static char m68k_command_line[CL_SIZE] __initdata;
85
86void (*mach_sched_init) (void) __initdata = NULL;
87/* machine dependent irq functions */
88void (*mach_init_IRQ) (void) __initdata = NULL;
89void (*mach_get_model) (char *model);
90void (*mach_get_hardware_list) (struct seq_file *m);
91void (*mach_reset)( void );
92void (*mach_halt)( void );
93#ifdef CONFIG_HEARTBEAT
94void (*mach_heartbeat) (int);
95EXPORT_SYMBOL(mach_heartbeat);
96#endif
97#ifdef CONFIG_M68K_L2_CACHE
98void (*mach_l2_flush) (int);
99#endif
100#if defined(CONFIG_ISA) && defined(MULTI_ISA)
101int isa_type;
102int isa_sex;
103EXPORT_SYMBOL(isa_type);
104EXPORT_SYMBOL(isa_sex);
105#endif
106
107#define MASK_256K 0xfffc0000
108
109extern void paging_init(void);
110
111static void __init m68k_parse_bootinfo(const struct bi_record *record)
112{
113 const struct bi_record *first_record = record;
114 uint16_t tag;
115
116 while ((tag = be16_to_cpu(record->tag)) != BI_LAST) {
117 int unknown = 0;
118 const void *data = record->data;
119 uint16_t size = be16_to_cpu(record->size);
120
121 switch (tag) {
122 case BI_MACHTYPE:
123 case BI_CPUTYPE:
124 case BI_FPUTYPE:
125 case BI_MMUTYPE:
126 /* Already set up by head.S */
127 break;
128
129 case BI_MEMCHUNK:
130 if (m68k_num_memory < NUM_MEMINFO) {
131 const struct mem_info *m = data;
132 m68k_memory[m68k_num_memory].addr =
133 be32_to_cpu(m->addr);
134 m68k_memory[m68k_num_memory].size =
135 be32_to_cpu(m->size);
136 m68k_num_memory++;
137 } else
138 pr_warn("%s: too many memory chunks\n",
139 __func__);
140 break;
141
142 case BI_RAMDISK:
143 {
144 const struct mem_info *m = data;
145 m68k_ramdisk.addr = be32_to_cpu(m->addr);
146 m68k_ramdisk.size = be32_to_cpu(m->size);
147 }
148 break;
149
150 case BI_COMMAND_LINE:
151 strscpy(m68k_command_line, data,
152 sizeof(m68k_command_line));
153 break;
154
155 case BI_RNG_SEED: {
156 u16 len = be16_to_cpup(data);
157 add_bootloader_randomness(data + 2, len);
158 /*
159 * Zero the data to preserve forward secrecy, and zero the
160 * length to prevent kexec from using it.
161 */
162 memzero_explicit((void *)data, len + 2);
163 break;
164 }
165
166 default:
167 if (MACH_IS_AMIGA)
168 unknown = amiga_parse_bootinfo(record);
169 else if (MACH_IS_ATARI)
170 unknown = atari_parse_bootinfo(record);
171 else if (MACH_IS_MAC)
172 unknown = mac_parse_bootinfo(record);
173 else if (MACH_IS_Q40)
174 unknown = q40_parse_bootinfo(record);
175 else if (MACH_IS_BVME6000)
176 unknown = bvme6000_parse_bootinfo(record);
177 else if (MACH_IS_MVME16x)
178 unknown = mvme16x_parse_bootinfo(record);
179 else if (MACH_IS_MVME147)
180 unknown = mvme147_parse_bootinfo(record);
181 else if (MACH_IS_HP300)
182 unknown = hp300_parse_bootinfo(record);
183 else if (MACH_IS_APOLLO)
184 unknown = apollo_parse_bootinfo(record);
185 else if (MACH_IS_VIRT)
186 unknown = virt_parse_bootinfo(record);
187 else
188 unknown = 1;
189 }
190 if (unknown)
191 pr_warn("%s: unknown tag 0x%04x ignored\n", __func__,
192 tag);
193 record = (struct bi_record *)((unsigned long)record + size);
194 }
195
196 save_bootinfo(first_record);
197
198 m68k_realnum_memory = m68k_num_memory;
199#ifdef CONFIG_SINGLE_MEMORY_CHUNK
200 if (m68k_num_memory > 1) {
201 pr_warn("%s: ignoring last %i chunks of physical memory\n",
202 __func__, (m68k_num_memory - 1));
203 m68k_num_memory = 1;
204 }
205#endif
206}
207
208void __init setup_arch(char **cmdline_p)
209{
210 /* The bootinfo is located right after the kernel */
211 if (!CPU_IS_COLDFIRE)
212 m68k_parse_bootinfo((const struct bi_record *)_end);
213
214 if (CPU_IS_040)
215 m68k_is040or060 = 4;
216 else if (CPU_IS_060)
217 m68k_is040or060 = 6;
218
219 /* FIXME: m68k_fputype is passed in by Penguin booter, which can
220 * be confused by software FPU emulation. BEWARE.
221 * We should really do our own FPU check at startup.
222 * [what do we do with buggy 68LC040s? if we have problems
223 * with them, we should add a test to check_bugs() below] */
224#if defined(CONFIG_FPU) && !defined(CONFIG_M68KFPU_EMU_ONLY)
225 /* clear the fpu if we have one */
226 if (m68k_fputype & (FPU_68881|FPU_68882|FPU_68040|FPU_68060|FPU_COLDFIRE)) {
227 volatile int zero = 0;
228 asm volatile ("frestore %0" : : "m" (zero));
229 }
230#endif
231
232 if (CPU_IS_060) {
233 u32 pcr;
234
235 asm (".chip 68060; movec %%pcr,%0; .chip 68k"
236 : "=d" (pcr));
237 if (((pcr >> 8) & 0xff) <= 5) {
238 pr_warn("Enabling workaround for errata I14\n");
239 asm (".chip 68060; movec %0,%%pcr; .chip 68k"
240 : : "d" (pcr | 0x20));
241 }
242 }
243
244 setup_initial_init_mm((void *)PAGE_OFFSET, _etext, _edata, _end);
245
246#if defined(CONFIG_BOOTPARAM)
247 strncpy(m68k_command_line, CONFIG_BOOTPARAM_STRING, CL_SIZE);
248 m68k_command_line[CL_SIZE - 1] = 0;
249#endif /* CONFIG_BOOTPARAM */
250 process_uboot_commandline(&m68k_command_line[0], CL_SIZE);
251 *cmdline_p = m68k_command_line;
252 memcpy(boot_command_line, *cmdline_p, CL_SIZE);
253
254 parse_early_param();
255
256 switch (m68k_machtype) {
257#ifdef CONFIG_AMIGA
258 case MACH_AMIGA:
259 config_amiga();
260 break;
261#endif
262#ifdef CONFIG_ATARI
263 case MACH_ATARI:
264 config_atari();
265 break;
266#endif
267#ifdef CONFIG_MAC
268 case MACH_MAC:
269 config_mac();
270 break;
271#endif
272#ifdef CONFIG_SUN3
273 case MACH_SUN3:
274 config_sun3();
275 break;
276#endif
277#ifdef CONFIG_APOLLO
278 case MACH_APOLLO:
279 config_apollo();
280 break;
281#endif
282#ifdef CONFIG_MVME147
283 case MACH_MVME147:
284 config_mvme147();
285 break;
286#endif
287#ifdef CONFIG_MVME16x
288 case MACH_MVME16x:
289 config_mvme16x();
290 break;
291#endif
292#ifdef CONFIG_BVME6000
293 case MACH_BVME6000:
294 config_bvme6000();
295 break;
296#endif
297#ifdef CONFIG_HP300
298 case MACH_HP300:
299 config_hp300();
300 break;
301#endif
302#ifdef CONFIG_Q40
303 case MACH_Q40:
304 config_q40();
305 break;
306#endif
307#ifdef CONFIG_SUN3X
308 case MACH_SUN3X:
309 config_sun3x();
310 break;
311#endif
312#ifdef CONFIG_COLDFIRE
313 case MACH_M54XX:
314 case MACH_M5441X:
315 cf_bootmem_alloc();
316 cf_mmu_context_init();
317 config_BSP(NULL, 0);
318 break;
319#endif
320#ifdef CONFIG_VIRT
321 case MACH_VIRT:
322 config_virt();
323 break;
324#endif
325 default:
326 panic("No configuration setup");
327 }
328
329#ifdef CONFIG_BLK_DEV_INITRD
330 if (m68k_ramdisk.size) {
331 memblock_reserve(m68k_ramdisk.addr, m68k_ramdisk.size);
332 initrd_start = (unsigned long)phys_to_virt(m68k_ramdisk.addr);
333 initrd_end = initrd_start + m68k_ramdisk.size;
334 pr_info("initrd: %08lx - %08lx\n", initrd_start, initrd_end);
335 }
336#endif
337
338 paging_init();
339
340#ifdef CONFIG_NATFEAT
341 nf_init();
342#endif
343
344#ifdef CONFIG_ATARI
345 if (MACH_IS_ATARI)
346 atari_stram_reserve_pages((void *)availmem);
347#endif
348#ifdef CONFIG_SUN3X
349 if (MACH_IS_SUN3X) {
350 dvma_init();
351 }
352#endif
353
354/* set ISA defs early as possible */
355#if defined(CONFIG_ISA) && defined(MULTI_ISA)
356 if (MACH_IS_Q40) {
357 isa_type = ISA_TYPE_Q40;
358 isa_sex = 0;
359 }
360#ifdef CONFIG_AMIGA_PCMCIA
361 if (MACH_IS_AMIGA && AMIGAHW_PRESENT(PCMCIA)) {
362 isa_type = ISA_TYPE_AG;
363 isa_sex = 1;
364 }
365#endif
366#ifdef CONFIG_ATARI_ROM_ISA
367 if (MACH_IS_ATARI) {
368 isa_type = ISA_TYPE_ENEC;
369 isa_sex = 0;
370 }
371#endif
372#endif
373}
374
375static int show_cpuinfo(struct seq_file *m, void *v)
376{
377 const char *cpu, *mmu, *fpu;
378 unsigned long clockfreq, clockfactor;
379
380#define LOOP_CYCLES_68020 (8)
381#define LOOP_CYCLES_68030 (8)
382#define LOOP_CYCLES_68040 (3)
383#define LOOP_CYCLES_68060 (1)
384#define LOOP_CYCLES_COLDFIRE (2)
385
386 if (CPU_IS_020) {
387 cpu = "68020";
388 clockfactor = LOOP_CYCLES_68020;
389 } else if (CPU_IS_030) {
390 cpu = "68030";
391 clockfactor = LOOP_CYCLES_68030;
392 } else if (CPU_IS_040) {
393 cpu = "68040";
394 clockfactor = LOOP_CYCLES_68040;
395 } else if (CPU_IS_060) {
396 cpu = "68060";
397 clockfactor = LOOP_CYCLES_68060;
398 } else if (CPU_IS_COLDFIRE) {
399 cpu = "ColdFire";
400 clockfactor = LOOP_CYCLES_COLDFIRE;
401 } else {
402 cpu = "680x0";
403 clockfactor = 0;
404 }
405
406#ifdef CONFIG_M68KFPU_EMU_ONLY
407 fpu = "none(soft float)";
408#else
409 if (m68k_fputype & FPU_68881)
410 fpu = "68881";
411 else if (m68k_fputype & FPU_68882)
412 fpu = "68882";
413 else if (m68k_fputype & FPU_68040)
414 fpu = "68040";
415 else if (m68k_fputype & FPU_68060)
416 fpu = "68060";
417 else if (m68k_fputype & FPU_SUNFPA)
418 fpu = "Sun FPA";
419 else if (m68k_fputype & FPU_COLDFIRE)
420 fpu = "ColdFire";
421 else
422 fpu = "none";
423#endif
424
425 if (m68k_mmutype & MMU_68851)
426 mmu = "68851";
427 else if (m68k_mmutype & MMU_68030)
428 mmu = "68030";
429 else if (m68k_mmutype & MMU_68040)
430 mmu = "68040";
431 else if (m68k_mmutype & MMU_68060)
432 mmu = "68060";
433 else if (m68k_mmutype & MMU_SUN3)
434 mmu = "Sun-3";
435 else if (m68k_mmutype & MMU_APOLLO)
436 mmu = "Apollo";
437 else if (m68k_mmutype & MMU_COLDFIRE)
438 mmu = "ColdFire";
439 else
440 mmu = "unknown";
441
442 clockfreq = loops_per_jiffy * HZ * clockfactor;
443
444 seq_printf(m, "CPU:\t\t%s\n"
445 "MMU:\t\t%s\n"
446 "FPU:\t\t%s\n"
447 "Clocking:\t%lu.%1luMHz\n"
448 "BogoMips:\t%lu.%02lu\n"
449 "Calibration:\t%lu loops\n",
450 cpu, mmu, fpu,
451 clockfreq/1000000,(clockfreq/100000)%10,
452 loops_per_jiffy/(500000/HZ),(loops_per_jiffy/(5000/HZ))%100,
453 loops_per_jiffy);
454 return 0;
455}
456
457static void *c_start(struct seq_file *m, loff_t *pos)
458{
459 return *pos < 1 ? (void *)1 : NULL;
460}
461static void *c_next(struct seq_file *m, void *v, loff_t *pos)
462{
463 ++*pos;
464 return NULL;
465}
466static void c_stop(struct seq_file *m, void *v)
467{
468}
469const struct seq_operations cpuinfo_op = {
470 .start = c_start,
471 .next = c_next,
472 .stop = c_stop,
473 .show = show_cpuinfo,
474};
475
476#ifdef CONFIG_PROC_HARDWARE
477static int hardware_proc_show(struct seq_file *m, void *v)
478{
479 char model[80];
480 unsigned long mem;
481 int i;
482
483 if (mach_get_model)
484 mach_get_model(model);
485 else
486 strcpy(model, "Unknown m68k");
487
488 seq_printf(m, "Model:\t\t%s\n", model);
489 for (mem = 0, i = 0; i < m68k_num_memory; i++)
490 mem += m68k_memory[i].size;
491 seq_printf(m, "System Memory:\t%ldK\n", mem >> 10);
492
493 if (mach_get_hardware_list)
494 mach_get_hardware_list(m);
495
496 return 0;
497}
498
499static int __init proc_hardware_init(void)
500{
501 proc_create_single("hardware", 0, NULL, hardware_proc_show);
502 return 0;
503}
504module_init(proc_hardware_init);
505#endif
506
507void check_bugs(void)
508{
509#if defined(CONFIG_FPU) && !defined(CONFIG_M68KFPU_EMU)
510 if (m68k_fputype == 0) {
511 pr_emerg("*** YOU DO NOT HAVE A FLOATING POINT UNIT, "
512 "WHICH IS REQUIRED BY LINUX/M68K ***\n");
513 pr_emerg("Upgrade your hardware or join the FPU "
514 "emulation project\n");
515 panic("no FPU");
516 }
517#endif /* !CONFIG_M68KFPU_EMU */
518}
519
520#ifdef CONFIG_ADB
521static int __init adb_probe_sync_enable (char *str) {
522 extern int __adb_probe_sync;
523 __adb_probe_sync = 1;
524 return 1;
525}
526
527__setup("adb_sync", adb_probe_sync_enable);
528#endif /* CONFIG_ADB */
529
530#if IS_ENABLED(CONFIG_NVRAM)
531#ifdef CONFIG_MAC
532static unsigned char m68k_nvram_read_byte(int addr)
533{
534 if (MACH_IS_MAC)
535 return mac_pram_read_byte(addr);
536 return 0xff;
537}
538
539static void m68k_nvram_write_byte(unsigned char val, int addr)
540{
541 if (MACH_IS_MAC)
542 mac_pram_write_byte(val, addr);
543}
544#endif /* CONFIG_MAC */
545
546#ifdef CONFIG_ATARI
547static ssize_t m68k_nvram_read(char *buf, size_t count, loff_t *ppos)
548{
549 if (MACH_IS_ATARI)
550 return atari_nvram_read(buf, count, ppos);
551 else if (MACH_IS_MAC)
552 return nvram_read_bytes(buf, count, ppos);
553 return -EINVAL;
554}
555
556static ssize_t m68k_nvram_write(char *buf, size_t count, loff_t *ppos)
557{
558 if (MACH_IS_ATARI)
559 return atari_nvram_write(buf, count, ppos);
560 else if (MACH_IS_MAC)
561 return nvram_write_bytes(buf, count, ppos);
562 return -EINVAL;
563}
564
565static long m68k_nvram_set_checksum(void)
566{
567 if (MACH_IS_ATARI)
568 return atari_nvram_set_checksum();
569 return -EINVAL;
570}
571
572static long m68k_nvram_initialize(void)
573{
574 if (MACH_IS_ATARI)
575 return atari_nvram_initialize();
576 return -EINVAL;
577}
578#endif /* CONFIG_ATARI */
579
580static ssize_t m68k_nvram_get_size(void)
581{
582 if (MACH_IS_ATARI)
583 return atari_nvram_get_size();
584 else if (MACH_IS_MAC)
585 return mac_pram_get_size();
586 return -ENODEV;
587}
588
589/* Atari device drivers call .read (to get checksum validation) whereas
590 * Mac and PowerMac device drivers just use .read_byte.
591 */
592const struct nvram_ops arch_nvram_ops = {
593#ifdef CONFIG_MAC
594 .read_byte = m68k_nvram_read_byte,
595 .write_byte = m68k_nvram_write_byte,
596#endif
597#ifdef CONFIG_ATARI
598 .read = m68k_nvram_read,
599 .write = m68k_nvram_write,
600 .set_checksum = m68k_nvram_set_checksum,
601 .initialize = m68k_nvram_initialize,
602#endif
603 .get_size = m68k_nvram_get_size,
604};
605EXPORT_SYMBOL(arch_nvram_ops);
606#endif /* CONFIG_NVRAM */