2 * linux/arch/arm/kernel/setup.c
4 * Copyright (C) 1995-2001 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/config.h>
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/stddef.h>
14 #include <linux/ioport.h>
15 #include <linux/delay.h>
16 #include <linux/utsname.h>
17 #include <linux/initrd.h>
18 #include <linux/console.h>
19 #include <linux/bootmem.h>
20 #include <linux/seq_file.h>
21 #include <linux/tty.h>
22 #include <linux/init.h>
23 #include <linux/root_dev.h>
24 #include <linux/cpu.h>
25 #include <linux/interrupt.h>
26 #include <linux/smp.h>
30 #include <asm/procinfo.h>
31 #include <asm/setup.h>
32 #include <asm/mach-types.h>
33 #include <asm/cacheflush.h>
34 #include <asm/tlbflush.h>
36 #include <asm/mach/arch.h>
37 #include <asm/mach/irq.h>
38 #include <asm/mach/time.h>
41 #define MEM_SIZE (16*1024*1024)
44 #if defined(CONFIG_FPE_NWFPE) || defined(CONFIG_FPE_FASTFPE)
47 static int __init fpe_setup(char *line)
49 memcpy(fpe_type, line, 8);
53 __setup("fpe=", fpe_setup);
56 extern unsigned int mem_fclk_21285;
57 extern void paging_init(struct meminfo *, struct machine_desc *desc);
58 extern void convert_to_tag_list(struct tag *tags);
59 extern void squash_mem_tags(struct tag *tag);
60 extern void reboot_setup(char *str);
61 extern int root_mountflags;
62 extern void _stext, _text, _etext, __data_start, _edata, _end;
64 unsigned int processor_id;
65 unsigned int __machine_arch_type;
66 EXPORT_SYMBOL(__machine_arch_type);
68 unsigned int system_rev;
69 EXPORT_SYMBOL(system_rev);
71 unsigned int system_serial_low;
72 EXPORT_SYMBOL(system_serial_low);
74 unsigned int system_serial_high;
75 EXPORT_SYMBOL(system_serial_high);
77 unsigned int elf_hwcap;
78 EXPORT_SYMBOL(elf_hwcap);
82 struct processor processor;
85 struct cpu_tlb_fns cpu_tlb;
88 struct cpu_user_fns cpu_user;
91 struct cpu_cache_fns cpu_cache;
98 } ____cacheline_aligned;
100 static struct stack stacks[NR_CPUS];
102 char elf_platform[ELF_PLATFORM_SIZE];
103 EXPORT_SYMBOL(elf_platform);
105 unsigned long phys_initrd_start __initdata = 0;
106 unsigned long phys_initrd_size __initdata = 0;
108 static struct meminfo meminfo __initdata = { 0, };
109 static const char *cpu_name;
110 static const char *machine_name;
111 static char command_line[COMMAND_LINE_SIZE];
113 static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE;
114 static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } };
115 #define ENDIANNESS ((char)endian_test.l)
117 DEFINE_PER_CPU(struct cpuinfo_arm, cpu_data);
120 * Standard memory resources
122 static struct resource mem_res[] = {
123 { "Video RAM", 0, 0, IORESOURCE_MEM },
124 { "Kernel text", 0, 0, IORESOURCE_MEM },
125 { "Kernel data", 0, 0, IORESOURCE_MEM }
128 #define video_ram mem_res[0]
129 #define kernel_code mem_res[1]
130 #define kernel_data mem_res[2]
132 static struct resource io_res[] = {
133 { "reserved", 0x3bc, 0x3be, IORESOURCE_IO | IORESOURCE_BUSY },
134 { "reserved", 0x378, 0x37f, IORESOURCE_IO | IORESOURCE_BUSY },
135 { "reserved", 0x278, 0x27f, IORESOURCE_IO | IORESOURCE_BUSY }
138 #define lp0 io_res[0]
139 #define lp1 io_res[1]
140 #define lp2 io_res[2]
142 static const char *cache_types[16] = {
161 static const char *cache_clean[16] = {
180 static const char *cache_lockdown[16] = {
199 static const char *proc_arch[] = {
219 #define CACHE_TYPE(x) (((x) >> 25) & 15)
220 #define CACHE_S(x) ((x) & (1 << 24))
221 #define CACHE_DSIZE(x) (((x) >> 12) & 4095) /* only if S=1 */
222 #define CACHE_ISIZE(x) ((x) & 4095)
224 #define CACHE_SIZE(y) (((y) >> 6) & 7)
225 #define CACHE_ASSOC(y) (((y) >> 3) & 7)
226 #define CACHE_M(y) ((y) & (1 << 2))
227 #define CACHE_LINE(y) ((y) & 3)
229 static inline void dump_cache(const char *prefix, int cpu, unsigned int cache)
231 unsigned int mult = 2 + (CACHE_M(cache) ? 1 : 0);
233 printk("CPU%u: %s: %d bytes, associativity %d, %d byte lines, %d sets\n",
235 mult << (8 + CACHE_SIZE(cache)),
236 (mult << CACHE_ASSOC(cache)) >> 1,
237 8 << CACHE_LINE(cache),
238 1 << (6 + CACHE_SIZE(cache) - CACHE_ASSOC(cache) -
242 static void __init dump_cpu_info(int cpu)
244 unsigned int info = read_cpuid(CPUID_CACHETYPE);
246 if (info != processor_id) {
247 printk("CPU%u: D %s %s cache\n", cpu, cache_is_vivt() ? "VIVT" : "VIPT",
248 cache_types[CACHE_TYPE(info)]);
250 dump_cache("I cache", cpu, CACHE_ISIZE(info));
251 dump_cache("D cache", cpu, CACHE_DSIZE(info));
253 dump_cache("cache", cpu, CACHE_ISIZE(info));
258 int cpu_architecture(void)
262 if ((processor_id & 0x0008f000) == 0) {
263 cpu_arch = CPU_ARCH_UNKNOWN;
264 } else if ((processor_id & 0x0008f000) == 0x00007000) {
265 cpu_arch = (processor_id & (1 << 23)) ? CPU_ARCH_ARMv4T : CPU_ARCH_ARMv3;
266 } else if ((processor_id & 0x00080000) == 0x00000000) {
267 cpu_arch = (processor_id >> 16) & 7;
269 cpu_arch += CPU_ARCH_ARMv3;
271 /* the revised CPUID */
272 cpu_arch = ((processor_id >> 12) & 0xf) - 0xb + CPU_ARCH_ARMv6;
279 * These functions re-use the assembly code in head.S, which
280 * already provide the required functionality.
282 extern struct proc_info_list *lookup_processor_type(void);
283 extern struct machine_desc *lookup_machine_type(unsigned int);
285 static void __init setup_processor(void)
287 struct proc_info_list *list;
290 * locate processor in the list of supported processor
291 * types. The linker builds this table for us from the
292 * entries in arch/arm/mm/proc-*.S
294 list = lookup_processor_type();
296 printk("CPU configuration botched (ID %08x), unable "
297 "to continue.\n", processor_id);
301 cpu_name = list->cpu_name;
304 processor = *list->proc;
307 cpu_tlb = *list->tlb;
310 cpu_user = *list->user;
313 cpu_cache = *list->cache;
316 printk("CPU: %s [%08x] revision %d (ARMv%s)\n",
317 cpu_name, processor_id, (int)processor_id & 15,
318 proc_arch[cpu_architecture()]);
320 sprintf(system_utsname.machine, "%s%c", list->arch_name, ENDIANNESS);
321 sprintf(elf_platform, "%s%c", list->elf_name, ENDIANNESS);
322 elf_hwcap = list->elf_hwcap;
328 * cpu_init - initialise one CPU.
330 * cpu_init dumps the cache information, initialises SMP specific
331 * information, and sets up the per-CPU stacks.
335 unsigned int cpu = smp_processor_id();
336 struct stack *stk = &stacks[cpu];
338 if (cpu >= NR_CPUS) {
339 printk(KERN_CRIT "CPU%u: bad primary CPU number\n", cpu);
343 if (system_state == SYSTEM_BOOTING)
347 * setup stacks for re-entrant exception handlers
359 "I" (PSR_F_BIT | PSR_I_BIT | IRQ_MODE),
360 "I" (offsetof(struct stack, irq[0])),
361 "I" (PSR_F_BIT | PSR_I_BIT | ABT_MODE),
362 "I" (offsetof(struct stack, abt[0])),
363 "I" (PSR_F_BIT | PSR_I_BIT | UND_MODE),
364 "I" (offsetof(struct stack, und[0])),
365 "I" (PSR_F_BIT | PSR_I_BIT | SVC_MODE)
369 static struct machine_desc * __init setup_machine(unsigned int nr)
371 struct machine_desc *list;
374 * locate machine in the list of supported machines.
376 list = lookup_machine_type(nr);
378 printk("Machine configuration botched (nr %d), unable "
379 "to continue.\n", nr);
383 printk("Machine: %s\n", list->name);
388 static void __init early_initrd(char **p)
390 unsigned long start, size;
392 start = memparse(*p, p);
394 size = memparse((*p) + 1, p);
396 phys_initrd_start = start;
397 phys_initrd_size = size;
400 __early_param("initrd=", early_initrd);
402 static void __init add_memory(unsigned long start, unsigned long size)
405 * Ensure that start/size are aligned to a page boundary.
406 * Size is appropriately rounded down, start is rounded up.
408 size -= start & ~PAGE_MASK;
410 meminfo.bank[meminfo.nr_banks].start = PAGE_ALIGN(start);
411 meminfo.bank[meminfo.nr_banks].size = size & PAGE_MASK;
412 meminfo.bank[meminfo.nr_banks].node = PHYS_TO_NID(start);
413 meminfo.nr_banks += 1;
417 * Pick out the memory size. We look for mem=size@start,
418 * where start and size are "size[KkMm]"
420 static void __init early_mem(char **p)
422 static int usermem __initdata = 0;
423 unsigned long size, start;
426 * If the user specifies memory size, we
427 * blow away any automatically generated
432 meminfo.nr_banks = 0;
436 size = memparse(*p, p);
438 start = memparse(*p + 1, p);
440 add_memory(start, size);
442 __early_param("mem=", early_mem);
445 * Initial parsing of the command line.
447 static void __init parse_cmdline(char **cmdline_p, char *from)
449 char c = ' ', *to = command_line;
454 extern struct early_params __early_begin, __early_end;
455 struct early_params *p;
457 for (p = &__early_begin; p < &__early_end; p++) {
458 int len = strlen(p->arg);
460 if (memcmp(from, p->arg, len) == 0) {
461 if (to != command_line)
466 while (*from != ' ' && *from != '\0')
475 if (COMMAND_LINE_SIZE <= ++len)
480 *cmdline_p = command_line;
484 setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
486 #ifdef CONFIG_BLK_DEV_RAM
487 extern int rd_size, rd_image_start, rd_prompt, rd_doload;
489 rd_image_start = image_start;
499 request_standard_resources(struct meminfo *mi, struct machine_desc *mdesc)
501 struct resource *res;
504 kernel_code.start = virt_to_phys(&_text);
505 kernel_code.end = virt_to_phys(&_etext - 1);
506 kernel_data.start = virt_to_phys(&__data_start);
507 kernel_data.end = virt_to_phys(&_end - 1);
509 for (i = 0; i < mi->nr_banks; i++) {
510 unsigned long virt_start, virt_end;
512 if (mi->bank[i].size == 0)
515 virt_start = __phys_to_virt(mi->bank[i].start);
516 virt_end = virt_start + mi->bank[i].size - 1;
518 res = alloc_bootmem_low(sizeof(*res));
519 res->name = "System RAM";
520 res->start = __virt_to_phys(virt_start);
521 res->end = __virt_to_phys(virt_end);
522 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
524 request_resource(&iomem_resource, res);
526 if (kernel_code.start >= res->start &&
527 kernel_code.end <= res->end)
528 request_resource(res, &kernel_code);
529 if (kernel_data.start >= res->start &&
530 kernel_data.end <= res->end)
531 request_resource(res, &kernel_data);
534 if (mdesc->video_start) {
535 video_ram.start = mdesc->video_start;
536 video_ram.end = mdesc->video_end;
537 request_resource(&iomem_resource, &video_ram);
541 * Some machines don't have the possibility of ever
542 * possessing lp0, lp1 or lp2
544 if (mdesc->reserve_lp0)
545 request_resource(&ioport_resource, &lp0);
546 if (mdesc->reserve_lp1)
547 request_resource(&ioport_resource, &lp1);
548 if (mdesc->reserve_lp2)
549 request_resource(&ioport_resource, &lp2);
555 * This is the new way of passing data to the kernel at boot time. Rather
556 * than passing a fixed inflexible structure to the kernel, we pass a list
557 * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE
558 * tag for the list to be recognised (to distinguish the tagged list from
559 * a param_struct). The list is terminated with a zero-length tag (this tag
560 * is not parsed in any way).
562 static int __init parse_tag_core(const struct tag *tag)
564 if (tag->hdr.size > 2) {
565 if ((tag->u.core.flags & 1) == 0)
566 root_mountflags &= ~MS_RDONLY;
567 ROOT_DEV = old_decode_dev(tag->u.core.rootdev);
572 __tagtable(ATAG_CORE, parse_tag_core);
574 static int __init parse_tag_mem32(const struct tag *tag)
576 if (meminfo.nr_banks >= NR_BANKS) {
578 "Ignoring memory bank 0x%08x size %dKB\n",
579 tag->u.mem.start, tag->u.mem.size / 1024);
582 add_memory(tag->u.mem.start, tag->u.mem.size);
586 __tagtable(ATAG_MEM, parse_tag_mem32);
588 #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
589 struct screen_info screen_info = {
590 .orig_video_lines = 30,
591 .orig_video_cols = 80,
592 .orig_video_mode = 0,
593 .orig_video_ega_bx = 0,
594 .orig_video_isVGA = 1,
595 .orig_video_points = 8
598 static int __init parse_tag_videotext(const struct tag *tag)
600 screen_info.orig_x = tag->u.videotext.x;
601 screen_info.orig_y = tag->u.videotext.y;
602 screen_info.orig_video_page = tag->u.videotext.video_page;
603 screen_info.orig_video_mode = tag->u.videotext.video_mode;
604 screen_info.orig_video_cols = tag->u.videotext.video_cols;
605 screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx;
606 screen_info.orig_video_lines = tag->u.videotext.video_lines;
607 screen_info.orig_video_isVGA = tag->u.videotext.video_isvga;
608 screen_info.orig_video_points = tag->u.videotext.video_points;
612 __tagtable(ATAG_VIDEOTEXT, parse_tag_videotext);
615 static int __init parse_tag_ramdisk(const struct tag *tag)
617 setup_ramdisk((tag->u.ramdisk.flags & 1) == 0,
618 (tag->u.ramdisk.flags & 2) == 0,
619 tag->u.ramdisk.start, tag->u.ramdisk.size);
623 __tagtable(ATAG_RAMDISK, parse_tag_ramdisk);
625 static int __init parse_tag_initrd(const struct tag *tag)
627 printk(KERN_WARNING "ATAG_INITRD is deprecated; "
628 "please update your bootloader.\n");
629 phys_initrd_start = __virt_to_phys(tag->u.initrd.start);
630 phys_initrd_size = tag->u.initrd.size;
634 __tagtable(ATAG_INITRD, parse_tag_initrd);
636 static int __init parse_tag_initrd2(const struct tag *tag)
638 phys_initrd_start = tag->u.initrd.start;
639 phys_initrd_size = tag->u.initrd.size;
643 __tagtable(ATAG_INITRD2, parse_tag_initrd2);
645 static int __init parse_tag_serialnr(const struct tag *tag)
647 system_serial_low = tag->u.serialnr.low;
648 system_serial_high = tag->u.serialnr.high;
652 __tagtable(ATAG_SERIAL, parse_tag_serialnr);
654 static int __init parse_tag_revision(const struct tag *tag)
656 system_rev = tag->u.revision.rev;
660 __tagtable(ATAG_REVISION, parse_tag_revision);
662 static int __init parse_tag_cmdline(const struct tag *tag)
664 strlcpy(default_command_line, tag->u.cmdline.cmdline, COMMAND_LINE_SIZE);
668 __tagtable(ATAG_CMDLINE, parse_tag_cmdline);
671 * Scan the tag table for this tag, and call its parse function.
672 * The tag table is built by the linker from all the __tagtable
675 static int __init parse_tag(const struct tag *tag)
677 extern struct tagtable __tagtable_begin, __tagtable_end;
680 for (t = &__tagtable_begin; t < &__tagtable_end; t++)
681 if (tag->hdr.tag == t->tag) {
686 return t < &__tagtable_end;
690 * Parse all tags in the list, checking both the global and architecture
691 * specific tag tables.
693 static void __init parse_tags(const struct tag *t)
695 for (; t->hdr.size; t = tag_next(t))
698 "Ignoring unrecognised tag 0x%08x\n",
703 * This holds our defaults.
705 static struct init_tags {
706 struct tag_header hdr1;
707 struct tag_core core;
708 struct tag_header hdr2;
709 struct tag_mem32 mem;
710 struct tag_header hdr3;
711 } init_tags __initdata = {
712 { tag_size(tag_core), ATAG_CORE },
713 { 1, PAGE_SIZE, 0xff },
714 { tag_size(tag_mem32), ATAG_MEM },
715 { MEM_SIZE, PHYS_OFFSET },
719 static void (*init_machine)(void) __initdata;
721 static int __init customize_machine(void)
723 /* customizes platform devices, or adds new ones */
728 arch_initcall(customize_machine);
730 void __init setup_arch(char **cmdline_p)
732 struct tag *tags = (struct tag *)&init_tags;
733 struct machine_desc *mdesc;
734 char *from = default_command_line;
737 mdesc = setup_machine(machine_arch_type);
738 machine_name = mdesc->name;
740 if (mdesc->soft_reboot)
743 if (mdesc->boot_params)
744 tags = phys_to_virt(mdesc->boot_params);
747 * If we have the old style parameters, convert them to
750 if (tags->hdr.tag != ATAG_CORE)
751 convert_to_tag_list(tags);
752 if (tags->hdr.tag != ATAG_CORE)
753 tags = (struct tag *)&init_tags;
756 mdesc->fixup(mdesc, tags, &from, &meminfo);
758 if (tags->hdr.tag == ATAG_CORE) {
759 if (meminfo.nr_banks != 0)
760 squash_mem_tags(tags);
764 init_mm.start_code = (unsigned long) &_text;
765 init_mm.end_code = (unsigned long) &_etext;
766 init_mm.end_data = (unsigned long) &_edata;
767 init_mm.brk = (unsigned long) &_end;
769 memcpy(saved_command_line, from, COMMAND_LINE_SIZE);
770 saved_command_line[COMMAND_LINE_SIZE-1] = '\0';
771 parse_cmdline(cmdline_p, from);
772 paging_init(&meminfo, mdesc);
773 request_standard_resources(&meminfo, mdesc);
782 * Set up various architecture-specific pointers
784 init_arch_irq = mdesc->init_irq;
785 system_timer = mdesc->timer;
786 init_machine = mdesc->init_machine;
789 #if defined(CONFIG_VGA_CONSOLE)
790 conswitchp = &vga_con;
791 #elif defined(CONFIG_DUMMY_CONSOLE)
792 conswitchp = &dummy_con;
798 static int __init topology_init(void)
803 register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu, NULL);
808 subsys_initcall(topology_init);
810 static const char *hwcap_str[] = {
824 c_show_cache(struct seq_file *m, const char *type, unsigned int cache)
826 unsigned int mult = 2 + (CACHE_M(cache) ? 1 : 0);
828 seq_printf(m, "%s size\t\t: %d\n"
830 "%s line length\t: %d\n"
832 type, mult << (8 + CACHE_SIZE(cache)),
833 type, (mult << CACHE_ASSOC(cache)) >> 1,
834 type, 8 << CACHE_LINE(cache),
835 type, 1 << (6 + CACHE_SIZE(cache) - CACHE_ASSOC(cache) -
839 static int c_show(struct seq_file *m, void *v)
843 seq_printf(m, "Processor\t: %s rev %d (%s)\n",
844 cpu_name, (int)processor_id & 15, elf_platform);
846 #if defined(CONFIG_SMP)
847 for_each_online_cpu(i) {
849 * glibc reads /proc/cpuinfo to determine the number of
850 * online processors, looking for lines beginning with
851 * "processor". Give glibc what it expects.
853 seq_printf(m, "processor\t: %d\n", i);
854 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n",
855 per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ),
856 (per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100);
858 #else /* CONFIG_SMP */
859 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
860 loops_per_jiffy / (500000/HZ),
861 (loops_per_jiffy / (5000/HZ)) % 100);
864 /* dump out the processor features */
865 seq_puts(m, "Features\t: ");
867 for (i = 0; hwcap_str[i]; i++)
868 if (elf_hwcap & (1 << i))
869 seq_printf(m, "%s ", hwcap_str[i]);
871 seq_printf(m, "\nCPU implementer\t: 0x%02x\n", processor_id >> 24);
872 seq_printf(m, "CPU architecture: %s\n", proc_arch[cpu_architecture()]);
874 if ((processor_id & 0x0008f000) == 0x00000000) {
876 seq_printf(m, "CPU part\t\t: %07x\n", processor_id >> 4);
878 if ((processor_id & 0x0008f000) == 0x00007000) {
880 seq_printf(m, "CPU variant\t: 0x%02x\n",
881 (processor_id >> 16) & 127);
884 seq_printf(m, "CPU variant\t: 0x%x\n",
885 (processor_id >> 20) & 15);
887 seq_printf(m, "CPU part\t: 0x%03x\n",
888 (processor_id >> 4) & 0xfff);
890 seq_printf(m, "CPU revision\t: %d\n", processor_id & 15);
893 unsigned int cache_info = read_cpuid(CPUID_CACHETYPE);
894 if (cache_info != processor_id) {
895 seq_printf(m, "Cache type\t: %s\n"
896 "Cache clean\t: %s\n"
897 "Cache lockdown\t: %s\n"
898 "Cache format\t: %s\n",
899 cache_types[CACHE_TYPE(cache_info)],
900 cache_clean[CACHE_TYPE(cache_info)],
901 cache_lockdown[CACHE_TYPE(cache_info)],
902 CACHE_S(cache_info) ? "Harvard" : "Unified");
904 if (CACHE_S(cache_info)) {
905 c_show_cache(m, "I", CACHE_ISIZE(cache_info));
906 c_show_cache(m, "D", CACHE_DSIZE(cache_info));
908 c_show_cache(m, "Cache", CACHE_ISIZE(cache_info));
915 seq_printf(m, "Hardware\t: %s\n", machine_name);
916 seq_printf(m, "Revision\t: %04x\n", system_rev);
917 seq_printf(m, "Serial\t\t: %08x%08x\n",
918 system_serial_high, system_serial_low);
923 static void *c_start(struct seq_file *m, loff_t *pos)
925 return *pos < 1 ? (void *)1 : NULL;
928 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
934 static void c_stop(struct seq_file *m, void *v)
938 struct seq_operations cpuinfo_op = {