blob: 2f5d3641f2ed304fb0cb74698f78d95b641ec5d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/setup.c
3 *
4 * Copyright (C) 1995-2001 Russell King
5 *
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.
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/kernel.h>
12#include <linux/stddef.h>
13#include <linux/ioport.h>
14#include <linux/delay.h>
15#include <linux/utsname.h>
16#include <linux/initrd.h>
17#include <linux/console.h>
18#include <linux/bootmem.h>
19#include <linux/seq_file.h>
Jon Smirl894673e2006-07-10 04:44:13 -070020#include <linux/screen_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
22#include <linux/root_dev.h>
23#include <linux/cpu.h>
24#include <linux/interrupt.h>
Russell King7bbb7942006-02-16 11:08:09 +000025#include <linux/smp.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040026#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/cpu.h>
Russell King0ba8b9b2008-08-10 18:08:10 +010029#include <asm/cputype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/procinfo.h>
32#include <asm/setup.h>
33#include <asm/mach-types.h>
34#include <asm/cacheflush.h>
Russell King46097c72008-08-10 18:10:19 +010035#include <asm/cachetype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/tlbflush.h>
37
38#include <asm/mach/arch.h>
39#include <asm/mach/irq.h>
40#include <asm/mach/time.h>
Jason Wessel5cbad0e2008-02-20 13:33:40 -060041#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Ben Dooks0fc1c832006-03-15 23:17:30 +000043#include "compat.h"
Richard Purdie4cd9d6f2008-01-02 00:56:46 +010044#include "atags.h"
Ben Dooks0fc1c832006-03-15 23:17:30 +000045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#ifndef MEM_SIZE
47#define MEM_SIZE (16*1024*1024)
48#endif
49
50#if defined(CONFIG_FPE_NWFPE) || defined(CONFIG_FPE_FASTFPE)
51char fpe_type[8];
52
53static int __init fpe_setup(char *line)
54{
55 memcpy(fpe_type, line, 8);
56 return 1;
57}
58
59__setup("fpe=", fpe_setup);
60#endif
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062extern void paging_init(struct meminfo *, struct machine_desc *desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063extern void reboot_setup(char *str);
Russell King5ed5fdf2008-09-06 11:23:30 +010064extern void _text, _etext, __data_start, _edata, _end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66unsigned int processor_id;
Krzysztof Halasac18f6582007-12-18 03:53:27 +010067EXPORT_SYMBOL(processor_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068unsigned int __machine_arch_type;
69EXPORT_SYMBOL(__machine_arch_type);
Russell Kingc0e95872008-09-25 15:35:28 +010070unsigned int cacheid;
71EXPORT_SYMBOL(cacheid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Bill Gatliff9d20fdd2007-05-31 22:02:22 +010073unsigned int __atags_pointer __initdata;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075unsigned int system_rev;
76EXPORT_SYMBOL(system_rev);
77
78unsigned int system_serial_low;
79EXPORT_SYMBOL(system_serial_low);
80
81unsigned int system_serial_high;
82EXPORT_SYMBOL(system_serial_high);
83
84unsigned int elf_hwcap;
85EXPORT_SYMBOL(elf_hwcap);
86
Lennert Buytenhek60296c72008-08-05 01:56:13 +020087unsigned long __initdata vmalloc_reserve = 128 << 20;
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90#ifdef MULTI_CPU
91struct processor processor;
92#endif
93#ifdef MULTI_TLB
94struct cpu_tlb_fns cpu_tlb;
95#endif
96#ifdef MULTI_USER
97struct cpu_user_fns cpu_user;
98#endif
99#ifdef MULTI_CACHE
100struct cpu_cache_fns cpu_cache;
101#endif
Catalin Marinas953233d2007-02-05 14:48:08 +0100102#ifdef CONFIG_OUTER_CACHE
103struct outer_cache_fns outer_cache;
104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Russell Kingccea7a12005-05-31 22:22:32 +0100106struct stack {
107 u32 irq[3];
108 u32 abt[3];
109 u32 und[3];
110} ____cacheline_aligned;
111
112static struct stack stacks[NR_CPUS];
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114char elf_platform[ELF_PLATFORM_SIZE];
115EXPORT_SYMBOL(elf_platform);
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct meminfo meminfo __initdata = { 0, };
118static const char *cpu_name;
119static const char *machine_name;
Alon Bar-Levcd818992007-02-12 00:54:06 -0800120static char __initdata command_line[COMMAND_LINE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE;
123static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } };
124#define ENDIANNESS ((char)endian_test.l)
125
126DEFINE_PER_CPU(struct cpuinfo_arm, cpu_data);
127
128/*
129 * Standard memory resources
130 */
131static struct resource mem_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700132 {
133 .name = "Video RAM",
134 .start = 0,
135 .end = 0,
136 .flags = IORESOURCE_MEM
137 },
138 {
139 .name = "Kernel text",
140 .start = 0,
141 .end = 0,
142 .flags = IORESOURCE_MEM
143 },
144 {
145 .name = "Kernel data",
146 .start = 0,
147 .end = 0,
148 .flags = IORESOURCE_MEM
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150};
151
152#define video_ram mem_res[0]
153#define kernel_code mem_res[1]
154#define kernel_data mem_res[2]
155
156static struct resource io_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700157 {
158 .name = "reserved",
159 .start = 0x3bc,
160 .end = 0x3be,
161 .flags = IORESOURCE_IO | IORESOURCE_BUSY
162 },
163 {
164 .name = "reserved",
165 .start = 0x378,
166 .end = 0x37f,
167 .flags = IORESOURCE_IO | IORESOURCE_BUSY
168 },
169 {
170 .name = "reserved",
171 .start = 0x278,
172 .end = 0x27f,
173 .flags = IORESOURCE_IO | IORESOURCE_BUSY
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
176
177#define lp0 io_res[0]
178#define lp1 io_res[1]
179#define lp2 io_res[2]
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static const char *proc_arch[] = {
182 "undefined/unknown",
183 "3",
184 "4",
185 "4T",
186 "5",
187 "5T",
188 "5TE",
189 "5TEJ",
190 "6TEJ",
Catalin Marinas6b090a22006-01-12 16:28:16 +0000191 "7",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 "?(11)",
193 "?(12)",
194 "?(13)",
195 "?(14)",
196 "?(15)",
197 "?(16)",
198 "?(17)",
199};
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201int cpu_architecture(void)
202{
203 int cpu_arch;
204
Russell King0ba8b9b2008-08-10 18:08:10 +0100205 if ((read_cpuid_id() & 0x0008f000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 cpu_arch = CPU_ARCH_UNKNOWN;
Russell King0ba8b9b2008-08-10 18:08:10 +0100207 } else if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
208 cpu_arch = (read_cpuid_id() & (1 << 23)) ? CPU_ARCH_ARMv4T : CPU_ARCH_ARMv3;
209 } else if ((read_cpuid_id() & 0x00080000) == 0x00000000) {
210 cpu_arch = (read_cpuid_id() >> 16) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (cpu_arch)
212 cpu_arch += CPU_ARCH_ARMv3;
Russell King0ba8b9b2008-08-10 18:08:10 +0100213 } else if ((read_cpuid_id() & 0x000f0000) == 0x000f0000) {
Catalin Marinas180005c2007-09-25 16:49:45 +0100214 unsigned int mmfr0;
215
216 /* Revised CPUID format. Read the Memory Model Feature
217 * Register 0 and check for VMSAv7 or PMSAv7 */
218 asm("mrc p15, 0, %0, c0, c1, 4"
219 : "=r" (mmfr0));
220 if ((mmfr0 & 0x0000000f) == 0x00000003 ||
221 (mmfr0 & 0x000000f0) == 0x00000030)
222 cpu_arch = CPU_ARCH_ARMv7;
223 else if ((mmfr0 & 0x0000000f) == 0x00000002 ||
224 (mmfr0 & 0x000000f0) == 0x00000020)
225 cpu_arch = CPU_ARCH_ARMv6;
226 else
227 cpu_arch = CPU_ARCH_UNKNOWN;
228 } else
229 cpu_arch = CPU_ARCH_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 return cpu_arch;
232}
233
Russell Kingc0e95872008-09-25 15:35:28 +0100234static void __init cacheid_init(void)
235{
236 unsigned int cachetype = read_cpuid_cachetype();
237 unsigned int arch = cpu_architecture();
238
239 if (arch >= CPU_ARCH_ARMv7) {
240 cacheid = CACHEID_VIPT_NONALIASING;
241 if ((cachetype & (3 << 14)) == 1 << 14)
242 cacheid |= CACHEID_ASID_TAGGED;
243 } else if (arch >= CPU_ARCH_ARMv6) {
244 if (cachetype & (1 << 23))
245 cacheid = CACHEID_VIPT_ALIASING;
246 else
247 cacheid = CACHEID_VIPT_NONALIASING;
248 } else {
249 cacheid = CACHEID_VIVT;
250 }
Russell King2b4ae1f2008-09-25 15:39:20 +0100251
252 printk("CPU: %s data cache, %s instruction cache\n",
253 cache_is_vivt() ? "VIVT" :
254 cache_is_vipt_aliasing() ? "VIPT aliasing" :
255 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown",
256 cache_is_vivt() ? "VIVT" :
257 icache_is_vivt_asid_tagged() ? "VIVT ASID tagged" :
258 cache_is_vipt_aliasing() ? "VIPT aliasing" :
259 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown");
Russell Kingc0e95872008-09-25 15:35:28 +0100260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/*
263 * These functions re-use the assembly code in head.S, which
264 * already provide the required functionality.
265 */
Russell King0f44ba12006-02-24 21:04:56 +0000266extern struct proc_info_list *lookup_processor_type(unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267extern struct machine_desc *lookup_machine_type(unsigned int);
268
269static void __init setup_processor(void)
270{
271 struct proc_info_list *list;
272
273 /*
274 * locate processor in the list of supported processor
275 * types. The linker builds this table for us from the
276 * entries in arch/arm/mm/proc-*.S
277 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100278 list = lookup_processor_type(read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!list) {
280 printk("CPU configuration botched (ID %08x), unable "
Russell King0ba8b9b2008-08-10 18:08:10 +0100281 "to continue.\n", read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 while (1);
283 }
284
285 cpu_name = list->cpu_name;
286
287#ifdef MULTI_CPU
288 processor = *list->proc;
289#endif
290#ifdef MULTI_TLB
291 cpu_tlb = *list->tlb;
292#endif
293#ifdef MULTI_USER
294 cpu_user = *list->user;
295#endif
296#ifdef MULTI_CACHE
297 cpu_cache = *list->cache;
298#endif
299
Russell King4e190252006-07-03 13:29:38 +0100300 printk("CPU: %s [%08x] revision %d (ARMv%s), cr=%08lx\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100301 cpu_name, read_cpuid_id(), read_cpuid_id() & 15,
Russell King264edb32006-06-29 15:03:09 +0100302 proc_arch[cpu_architecture()], cr_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700304 sprintf(init_utsname()->machine, "%s%c", list->arch_name, ENDIANNESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 sprintf(elf_platform, "%s%c", list->elf_name, ENDIANNESS);
306 elf_hwcap = list->elf_hwcap;
Catalin Marinasadeff422006-04-10 21:32:35 +0100307#ifndef CONFIG_ARM_THUMB
308 elf_hwcap &= ~HWCAP_THUMB;
309#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Russell Kingc0e95872008-09-25 15:35:28 +0100311 cacheid_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 cpu_proc_init();
313}
314
Russell Kingccea7a12005-05-31 22:22:32 +0100315/*
316 * cpu_init - initialise one CPU.
317 *
Russell King90f1e082008-09-25 14:45:02 +0100318 * cpu_init sets up the per-CPU stacks.
Russell Kingccea7a12005-05-31 22:22:32 +0100319 */
Russell King36c5ed22005-06-19 18:39:33 +0100320void cpu_init(void)
Russell Kingccea7a12005-05-31 22:22:32 +0100321{
322 unsigned int cpu = smp_processor_id();
323 struct stack *stk = &stacks[cpu];
324
325 if (cpu >= NR_CPUS) {
326 printk(KERN_CRIT "CPU%u: bad primary CPU number\n", cpu);
327 BUG();
328 }
329
Russell Kingccea7a12005-05-31 22:22:32 +0100330 /*
331 * setup stacks for re-entrant exception handlers
332 */
333 __asm__ (
334 "msr cpsr_c, %1\n\t"
335 "add sp, %0, %2\n\t"
336 "msr cpsr_c, %3\n\t"
337 "add sp, %0, %4\n\t"
338 "msr cpsr_c, %5\n\t"
339 "add sp, %0, %6\n\t"
340 "msr cpsr_c, %7"
341 :
342 : "r" (stk),
343 "I" (PSR_F_BIT | PSR_I_BIT | IRQ_MODE),
344 "I" (offsetof(struct stack, irq[0])),
345 "I" (PSR_F_BIT | PSR_I_BIT | ABT_MODE),
346 "I" (offsetof(struct stack, abt[0])),
347 "I" (PSR_F_BIT | PSR_I_BIT | UND_MODE),
348 "I" (offsetof(struct stack, und[0])),
Catalin Marinasaaaa3f92005-06-29 15:34:39 +0100349 "I" (PSR_F_BIT | PSR_I_BIT | SVC_MODE)
350 : "r14");
Russell Kingccea7a12005-05-31 22:22:32 +0100351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353static struct machine_desc * __init setup_machine(unsigned int nr)
354{
355 struct machine_desc *list;
356
357 /*
358 * locate machine in the list of supported machines.
359 */
360 list = lookup_machine_type(nr);
361 if (!list) {
362 printk("Machine configuration botched (nr %d), unable "
363 "to continue.\n", nr);
364 while (1);
365 }
366
367 printk("Machine: %s\n", list->name);
368
369 return list;
370}
371
Andrew Morton1c97b732006-04-20 21:41:18 +0100372static void __init arm_add_memory(unsigned long start, unsigned long size)
Russell King3a669412005-06-22 21:43:10 +0100373{
Russell King05f96ef2006-11-30 20:44:49 +0000374 struct membank *bank;
375
Russell King3a669412005-06-22 21:43:10 +0100376 /*
377 * Ensure that start/size are aligned to a page boundary.
378 * Size is appropriately rounded down, start is rounded up.
379 */
380 size -= start & ~PAGE_MASK;
381
Russell King05f96ef2006-11-30 20:44:49 +0000382 bank = &meminfo.bank[meminfo.nr_banks++];
383
384 bank->start = PAGE_ALIGN(start);
385 bank->size = size & PAGE_MASK;
386 bank->node = PHYS_TO_NID(start);
Russell King3a669412005-06-22 21:43:10 +0100387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/*
390 * Pick out the memory size. We look for mem=size@start,
391 * where start and size are "size[KkMm]"
392 */
393static void __init early_mem(char **p)
394{
395 static int usermem __initdata = 0;
396 unsigned long size, start;
397
398 /*
399 * If the user specifies memory size, we
400 * blow away any automatically generated
401 * size.
402 */
403 if (usermem == 0) {
404 usermem = 1;
405 meminfo.nr_banks = 0;
406 }
407
408 start = PHYS_OFFSET;
409 size = memparse(*p, p);
410 if (**p == '@')
411 start = memparse(*p + 1, p);
412
Andrew Morton1c97b732006-04-20 21:41:18 +0100413 arm_add_memory(start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415__early_param("mem=", early_mem);
416
417/*
Lennert Buytenhek60296c72008-08-05 01:56:13 +0200418 * vmalloc=size forces the vmalloc area to be exactly 'size'
419 * bytes. This can be used to increase (or decrease) the vmalloc
420 * area - the default is 128m.
421 */
422static void __init early_vmalloc(char **arg)
423{
424 vmalloc_reserve = memparse(*arg, arg);
425}
426__early_param("vmalloc=", early_vmalloc);
427
428/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * Initial parsing of the command line.
430 */
431static void __init parse_cmdline(char **cmdline_p, char *from)
432{
433 char c = ' ', *to = command_line;
434 int len = 0;
435
436 for (;;) {
437 if (c == ' ') {
438 extern struct early_params __early_begin, __early_end;
439 struct early_params *p;
440
441 for (p = &__early_begin; p < &__early_end; p++) {
Russell King09d9bae2008-09-05 14:08:44 +0100442 int arglen = strlen(p->arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Russell King09d9bae2008-09-05 14:08:44 +0100444 if (memcmp(from, p->arg, arglen) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (to != command_line)
446 to -= 1;
Russell King09d9bae2008-09-05 14:08:44 +0100447 from += arglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 p->fn(&from);
449
450 while (*from != ' ' && *from != '\0')
451 from++;
452 break;
453 }
454 }
455 }
456 c = *from++;
457 if (!c)
458 break;
459 if (COMMAND_LINE_SIZE <= ++len)
460 break;
461 *to++ = c;
462 }
463 *to = '\0';
464 *cmdline_p = command_line;
465}
466
467static void __init
468setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
469{
470#ifdef CONFIG_BLK_DEV_RAM
471 extern int rd_size, rd_image_start, rd_prompt, rd_doload;
472
473 rd_image_start = image_start;
474 rd_prompt = prompt;
475 rd_doload = doload;
476
477 if (rd_sz)
478 rd_size = rd_sz;
479#endif
480}
481
482static void __init
483request_standard_resources(struct meminfo *mi, struct machine_desc *mdesc)
484{
485 struct resource *res;
486 int i;
487
488 kernel_code.start = virt_to_phys(&_text);
489 kernel_code.end = virt_to_phys(&_etext - 1);
490 kernel_data.start = virt_to_phys(&__data_start);
491 kernel_data.end = virt_to_phys(&_end - 1);
492
493 for (i = 0; i < mi->nr_banks; i++) {
494 unsigned long virt_start, virt_end;
495
496 if (mi->bank[i].size == 0)
497 continue;
498
499 virt_start = __phys_to_virt(mi->bank[i].start);
500 virt_end = virt_start + mi->bank[i].size - 1;
501
502 res = alloc_bootmem_low(sizeof(*res));
503 res->name = "System RAM";
504 res->start = __virt_to_phys(virt_start);
505 res->end = __virt_to_phys(virt_end);
506 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
507
508 request_resource(&iomem_resource, res);
509
510 if (kernel_code.start >= res->start &&
511 kernel_code.end <= res->end)
512 request_resource(res, &kernel_code);
513 if (kernel_data.start >= res->start &&
514 kernel_data.end <= res->end)
515 request_resource(res, &kernel_data);
516 }
517
518 if (mdesc->video_start) {
519 video_ram.start = mdesc->video_start;
520 video_ram.end = mdesc->video_end;
521 request_resource(&iomem_resource, &video_ram);
522 }
523
524 /*
525 * Some machines don't have the possibility of ever
526 * possessing lp0, lp1 or lp2
527 */
528 if (mdesc->reserve_lp0)
529 request_resource(&ioport_resource, &lp0);
530 if (mdesc->reserve_lp1)
531 request_resource(&ioport_resource, &lp1);
532 if (mdesc->reserve_lp2)
533 request_resource(&ioport_resource, &lp2);
534}
535
536/*
537 * Tag parsing.
538 *
539 * This is the new way of passing data to the kernel at boot time. Rather
540 * than passing a fixed inflexible structure to the kernel, we pass a list
541 * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE
542 * tag for the list to be recognised (to distinguish the tagged list from
543 * a param_struct). The list is terminated with a zero-length tag (this tag
544 * is not parsed in any way).
545 */
546static int __init parse_tag_core(const struct tag *tag)
547{
548 if (tag->hdr.size > 2) {
549 if ((tag->u.core.flags & 1) == 0)
550 root_mountflags &= ~MS_RDONLY;
551 ROOT_DEV = old_decode_dev(tag->u.core.rootdev);
552 }
553 return 0;
554}
555
556__tagtable(ATAG_CORE, parse_tag_core);
557
558static int __init parse_tag_mem32(const struct tag *tag)
559{
560 if (meminfo.nr_banks >= NR_BANKS) {
561 printk(KERN_WARNING
562 "Ignoring memory bank 0x%08x size %dKB\n",
563 tag->u.mem.start, tag->u.mem.size / 1024);
564 return -EINVAL;
565 }
Andrew Morton1c97b732006-04-20 21:41:18 +0100566 arm_add_memory(tag->u.mem.start, tag->u.mem.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return 0;
568}
569
570__tagtable(ATAG_MEM, parse_tag_mem32);
571
572#if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
573struct screen_info screen_info = {
574 .orig_video_lines = 30,
575 .orig_video_cols = 80,
576 .orig_video_mode = 0,
577 .orig_video_ega_bx = 0,
578 .orig_video_isVGA = 1,
579 .orig_video_points = 8
580};
581
582static int __init parse_tag_videotext(const struct tag *tag)
583{
584 screen_info.orig_x = tag->u.videotext.x;
585 screen_info.orig_y = tag->u.videotext.y;
586 screen_info.orig_video_page = tag->u.videotext.video_page;
587 screen_info.orig_video_mode = tag->u.videotext.video_mode;
588 screen_info.orig_video_cols = tag->u.videotext.video_cols;
589 screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx;
590 screen_info.orig_video_lines = tag->u.videotext.video_lines;
591 screen_info.orig_video_isVGA = tag->u.videotext.video_isvga;
592 screen_info.orig_video_points = tag->u.videotext.video_points;
593 return 0;
594}
595
596__tagtable(ATAG_VIDEOTEXT, parse_tag_videotext);
597#endif
598
599static int __init parse_tag_ramdisk(const struct tag *tag)
600{
601 setup_ramdisk((tag->u.ramdisk.flags & 1) == 0,
602 (tag->u.ramdisk.flags & 2) == 0,
603 tag->u.ramdisk.start, tag->u.ramdisk.size);
604 return 0;
605}
606
607__tagtable(ATAG_RAMDISK, parse_tag_ramdisk);
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static int __init parse_tag_serialnr(const struct tag *tag)
610{
611 system_serial_low = tag->u.serialnr.low;
612 system_serial_high = tag->u.serialnr.high;
613 return 0;
614}
615
616__tagtable(ATAG_SERIAL, parse_tag_serialnr);
617
618static int __init parse_tag_revision(const struct tag *tag)
619{
620 system_rev = tag->u.revision.rev;
621 return 0;
622}
623
624__tagtable(ATAG_REVISION, parse_tag_revision);
625
626static int __init parse_tag_cmdline(const struct tag *tag)
627{
628 strlcpy(default_command_line, tag->u.cmdline.cmdline, COMMAND_LINE_SIZE);
629 return 0;
630}
631
632__tagtable(ATAG_CMDLINE, parse_tag_cmdline);
633
634/*
635 * Scan the tag table for this tag, and call its parse function.
636 * The tag table is built by the linker from all the __tagtable
637 * declarations.
638 */
639static int __init parse_tag(const struct tag *tag)
640{
641 extern struct tagtable __tagtable_begin, __tagtable_end;
642 struct tagtable *t;
643
644 for (t = &__tagtable_begin; t < &__tagtable_end; t++)
645 if (tag->hdr.tag == t->tag) {
646 t->parse(tag);
647 break;
648 }
649
650 return t < &__tagtable_end;
651}
652
653/*
654 * Parse all tags in the list, checking both the global and architecture
655 * specific tag tables.
656 */
657static void __init parse_tags(const struct tag *t)
658{
659 for (; t->hdr.size; t = tag_next(t))
660 if (!parse_tag(t))
661 printk(KERN_WARNING
662 "Ignoring unrecognised tag 0x%08x\n",
663 t->hdr.tag);
664}
665
666/*
667 * This holds our defaults.
668 */
669static struct init_tags {
670 struct tag_header hdr1;
671 struct tag_core core;
672 struct tag_header hdr2;
673 struct tag_mem32 mem;
674 struct tag_header hdr3;
675} init_tags __initdata = {
676 { tag_size(tag_core), ATAG_CORE },
677 { 1, PAGE_SIZE, 0xff },
678 { tag_size(tag_mem32), ATAG_MEM },
679 { MEM_SIZE, PHYS_OFFSET },
680 { 0, ATAG_NONE }
681};
682
683static void (*init_machine)(void) __initdata;
684
685static int __init customize_machine(void)
686{
687 /* customizes platform devices, or adds new ones */
688 if (init_machine)
689 init_machine();
690 return 0;
691}
692arch_initcall(customize_machine);
693
694void __init setup_arch(char **cmdline_p)
695{
696 struct tag *tags = (struct tag *)&init_tags;
697 struct machine_desc *mdesc;
698 char *from = default_command_line;
699
700 setup_processor();
701 mdesc = setup_machine(machine_arch_type);
702 machine_name = mdesc->name;
703
704 if (mdesc->soft_reboot)
705 reboot_setup("s");
706
Bill Gatliff9d20fdd2007-05-31 22:02:22 +0100707 if (__atags_pointer)
708 tags = phys_to_virt(__atags_pointer);
709 else if (mdesc->boot_params)
Russell Kingf9bd6ea2005-07-04 10:43:36 +0100710 tags = phys_to_virt(mdesc->boot_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /*
713 * If we have the old style parameters, convert them to
714 * a tag list.
715 */
716 if (tags->hdr.tag != ATAG_CORE)
717 convert_to_tag_list(tags);
718 if (tags->hdr.tag != ATAG_CORE)
719 tags = (struct tag *)&init_tags;
720
721 if (mdesc->fixup)
722 mdesc->fixup(mdesc, tags, &from, &meminfo);
723
724 if (tags->hdr.tag == ATAG_CORE) {
725 if (meminfo.nr_banks != 0)
726 squash_mem_tags(tags);
Richard Purdie4cd9d6f2008-01-02 00:56:46 +0100727 save_atags(tags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 parse_tags(tags);
729 }
730
731 init_mm.start_code = (unsigned long) &_text;
732 init_mm.end_code = (unsigned long) &_etext;
733 init_mm.end_data = (unsigned long) &_edata;
734 init_mm.brk = (unsigned long) &_end;
735
Alon Bar-Levcd818992007-02-12 00:54:06 -0800736 memcpy(boot_command_line, from, COMMAND_LINE_SIZE);
737 boot_command_line[COMMAND_LINE_SIZE-1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 parse_cmdline(cmdline_p, from);
739 paging_init(&meminfo, mdesc);
740 request_standard_resources(&meminfo, mdesc);
741
Russell King7bbb7942006-02-16 11:08:09 +0000742#ifdef CONFIG_SMP
743 smp_init_cpus();
744#endif
745
Russell Kingccea7a12005-05-31 22:22:32 +0100746 cpu_init();
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /*
749 * Set up various architecture-specific pointers
750 */
751 init_arch_irq = mdesc->init_irq;
752 system_timer = mdesc->timer;
753 init_machine = mdesc->init_machine;
754
755#ifdef CONFIG_VT
756#if defined(CONFIG_VGA_CONSOLE)
757 conswitchp = &vga_con;
758#elif defined(CONFIG_DUMMY_CONSOLE)
759 conswitchp = &dummy_con;
760#endif
761#endif
Jason Wessel5cbad0e2008-02-20 13:33:40 -0600762 early_trap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765
766static int __init topology_init(void)
767{
768 int cpu;
769
Russell King66fb8bd2007-03-13 09:54:21 +0000770 for_each_possible_cpu(cpu) {
771 struct cpuinfo_arm *cpuinfo = &per_cpu(cpu_data, cpu);
772 cpuinfo->cpu.hotpluggable = 1;
773 register_cpu(&cpuinfo->cpu, cpu);
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 return 0;
777}
778
779subsys_initcall(topology_init);
780
781static const char *hwcap_str[] = {
782 "swp",
783 "half",
784 "thumb",
785 "26bit",
786 "fastmult",
787 "fpa",
788 "vfp",
789 "edsp",
790 "java",
Paul Gortmaker8f7f9432006-10-27 05:13:19 +0100791 "iwmmxt",
Lennert Buytenhek99e4a6d2006-12-18 00:59:10 +0100792 "crunch",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 NULL
794};
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796static int c_show(struct seq_file *m, void *v)
797{
798 int i;
799
800 seq_printf(m, "Processor\t: %s rev %d (%s)\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100801 cpu_name, read_cpuid_id() & 15, elf_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803#if defined(CONFIG_SMP)
804 for_each_online_cpu(i) {
Russell King15559722005-11-06 21:41:08 +0000805 /*
806 * glibc reads /proc/cpuinfo to determine the number of
807 * online processors, looking for lines beginning with
808 * "processor". Give glibc what it expects.
809 */
810 seq_printf(m, "processor\t: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n",
812 per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ),
813 (per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100);
814 }
815#else /* CONFIG_SMP */
816 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
817 loops_per_jiffy / (500000/HZ),
818 (loops_per_jiffy / (5000/HZ)) % 100);
819#endif
820
821 /* dump out the processor features */
822 seq_puts(m, "Features\t: ");
823
824 for (i = 0; hwcap_str[i]; i++)
825 if (elf_hwcap & (1 << i))
826 seq_printf(m, "%s ", hwcap_str[i]);
827
Russell King0ba8b9b2008-08-10 18:08:10 +0100828 seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 seq_printf(m, "CPU architecture: %s\n", proc_arch[cpu_architecture()]);
830
Russell King0ba8b9b2008-08-10 18:08:10 +0100831 if ((read_cpuid_id() & 0x0008f000) == 0x00000000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /* pre-ARM7 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100833 seq_printf(m, "CPU part\t: %07x\n", read_cpuid_id() >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 } else {
Russell King0ba8b9b2008-08-10 18:08:10 +0100835 if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* ARM7 */
837 seq_printf(m, "CPU variant\t: 0x%02x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100838 (read_cpuid_id() >> 16) & 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 } else {
840 /* post-ARM7 */
841 seq_printf(m, "CPU variant\t: 0x%x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100842 (read_cpuid_id() >> 20) & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 seq_printf(m, "CPU part\t: 0x%03x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100845 (read_cpuid_id() >> 4) & 0xfff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Russell King0ba8b9b2008-08-10 18:08:10 +0100847 seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 seq_puts(m, "\n");
850
851 seq_printf(m, "Hardware\t: %s\n", machine_name);
852 seq_printf(m, "Revision\t: %04x\n", system_rev);
853 seq_printf(m, "Serial\t\t: %08x%08x\n",
854 system_serial_high, system_serial_low);
855
856 return 0;
857}
858
859static void *c_start(struct seq_file *m, loff_t *pos)
860{
861 return *pos < 1 ? (void *)1 : NULL;
862}
863
864static void *c_next(struct seq_file *m, void *v, loff_t *pos)
865{
866 ++*pos;
867 return NULL;
868}
869
870static void c_stop(struct seq_file *m, void *v)
871{
872}
873
Jan Engelhardt2ffd6e12008-01-22 20:41:07 +0100874const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 .start = c_start,
876 .next = c_next,
877 .stop = c_stop,
878 .show = c_show
879};