blob: d4d4f77c91b292409fd7a467eadbd0b5f7602919 [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
Catalin Marinasb86040a2009-07-24 12:32:54 +010028#include <asm/unified.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/cpu.h>
Russell King0ba8b9b2008-08-10 18:08:10 +010030#include <asm/cputype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/procinfo.h>
Russell King37efe642008-12-01 11:53:07 +000033#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/setup.h>
35#include <asm/mach-types.h>
36#include <asm/cacheflush.h>
Russell King46097c72008-08-10 18:10:19 +010037#include <asm/cachetype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/tlbflush.h>
39
40#include <asm/mach/arch.h>
41#include <asm/mach/irq.h>
42#include <asm/mach/time.h>
Jason Wessel5cbad0e2008-02-20 13:33:40 -060043#include <asm/traps.h>
Catalin Marinasbff595c2009-02-16 11:41:36 +010044#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Ben Dooks0fc1c832006-03-15 23:17:30 +000046#include "compat.h"
Richard Purdie4cd9d6f2008-01-02 00:56:46 +010047#include "atags.h"
Ben Dooks0fc1c832006-03-15 23:17:30 +000048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifndef MEM_SIZE
50#define MEM_SIZE (16*1024*1024)
51#endif
52
53#if defined(CONFIG_FPE_NWFPE) || defined(CONFIG_FPE_FASTFPE)
54char fpe_type[8];
55
56static int __init fpe_setup(char *line)
57{
58 memcpy(fpe_type, line, 8);
59 return 1;
60}
61
62__setup("fpe=", fpe_setup);
63#endif
64
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040065extern void paging_init(struct machine_desc *desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066extern void reboot_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68unsigned int processor_id;
Krzysztof Halasac18f6582007-12-18 03:53:27 +010069EXPORT_SYMBOL(processor_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070unsigned int __machine_arch_type;
71EXPORT_SYMBOL(__machine_arch_type);
Russell Kingc0e95872008-09-25 15:35:28 +010072unsigned int cacheid;
73EXPORT_SYMBOL(cacheid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Bill Gatliff9d20fdd2007-05-31 22:02:22 +010075unsigned int __atags_pointer __initdata;
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077unsigned int system_rev;
78EXPORT_SYMBOL(system_rev);
79
80unsigned int system_serial_low;
81EXPORT_SYMBOL(system_serial_low);
82
83unsigned int system_serial_high;
84EXPORT_SYMBOL(system_serial_high);
85
86unsigned int elf_hwcap;
87EXPORT_SYMBOL(elf_hwcap);
88
89
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 const char *cpu_name;
118static const char *machine_name;
Alon Bar-Levcd818992007-02-12 00:54:06 -0800119static char __initdata command_line[COMMAND_LINE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE;
122static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } };
123#define ENDIANNESS ((char)endian_test.l)
124
125DEFINE_PER_CPU(struct cpuinfo_arm, cpu_data);
126
127/*
128 * Standard memory resources
129 */
130static struct resource mem_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700131 {
132 .name = "Video RAM",
133 .start = 0,
134 .end = 0,
135 .flags = IORESOURCE_MEM
136 },
137 {
138 .name = "Kernel text",
139 .start = 0,
140 .end = 0,
141 .flags = IORESOURCE_MEM
142 },
143 {
144 .name = "Kernel data",
145 .start = 0,
146 .end = 0,
147 .flags = IORESOURCE_MEM
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
151#define video_ram mem_res[0]
152#define kernel_code mem_res[1]
153#define kernel_data mem_res[2]
154
155static struct resource io_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700156 {
157 .name = "reserved",
158 .start = 0x3bc,
159 .end = 0x3be,
160 .flags = IORESOURCE_IO | IORESOURCE_BUSY
161 },
162 {
163 .name = "reserved",
164 .start = 0x378,
165 .end = 0x37f,
166 .flags = IORESOURCE_IO | IORESOURCE_BUSY
167 },
168 {
169 .name = "reserved",
170 .start = 0x278,
171 .end = 0x27f,
172 .flags = IORESOURCE_IO | IORESOURCE_BUSY
173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
176#define lp0 io_res[0]
177#define lp1 io_res[1]
178#define lp2 io_res[2]
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static const char *proc_arch[] = {
181 "undefined/unknown",
182 "3",
183 "4",
184 "4T",
185 "5",
186 "5T",
187 "5TE",
188 "5TEJ",
189 "6TEJ",
Catalin Marinas6b090a22006-01-12 16:28:16 +0000190 "7",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 "?(11)",
192 "?(12)",
193 "?(13)",
194 "?(14)",
195 "?(15)",
196 "?(16)",
197 "?(17)",
198};
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200int cpu_architecture(void)
201{
202 int cpu_arch;
203
Russell King0ba8b9b2008-08-10 18:08:10 +0100204 if ((read_cpuid_id() & 0x0008f000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 cpu_arch = CPU_ARCH_UNKNOWN;
Russell King0ba8b9b2008-08-10 18:08:10 +0100206 } else if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
207 cpu_arch = (read_cpuid_id() & (1 << 23)) ? CPU_ARCH_ARMv4T : CPU_ARCH_ARMv3;
208 } else if ((read_cpuid_id() & 0x00080000) == 0x00000000) {
209 cpu_arch = (read_cpuid_id() >> 16) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (cpu_arch)
211 cpu_arch += CPU_ARCH_ARMv3;
Russell King0ba8b9b2008-08-10 18:08:10 +0100212 } else if ((read_cpuid_id() & 0x000f0000) == 0x000f0000) {
Catalin Marinas180005c2007-09-25 16:49:45 +0100213 unsigned int mmfr0;
214
215 /* Revised CPUID format. Read the Memory Model Feature
216 * Register 0 and check for VMSAv7 or PMSAv7 */
217 asm("mrc p15, 0, %0, c0, c1, 4"
218 : "=r" (mmfr0));
219 if ((mmfr0 & 0x0000000f) == 0x00000003 ||
220 (mmfr0 & 0x000000f0) == 0x00000030)
221 cpu_arch = CPU_ARCH_ARMv7;
222 else if ((mmfr0 & 0x0000000f) == 0x00000002 ||
223 (mmfr0 & 0x000000f0) == 0x00000020)
224 cpu_arch = CPU_ARCH_ARMv6;
225 else
226 cpu_arch = CPU_ARCH_UNKNOWN;
227 } else
228 cpu_arch = CPU_ARCH_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 return cpu_arch;
231}
232
Russell Kingc0e95872008-09-25 15:35:28 +0100233static void __init cacheid_init(void)
234{
235 unsigned int cachetype = read_cpuid_cachetype();
236 unsigned int arch = cpu_architecture();
237
Catalin Marinasb57ee992009-03-03 11:44:12 +0100238 if (arch >= CPU_ARCH_ARMv6) {
239 if ((cachetype & (7 << 29)) == 4 << 29) {
240 /* ARMv7 register format */
241 cacheid = CACHEID_VIPT_NONALIASING;
242 if ((cachetype & (3 << 14)) == 1 << 14)
243 cacheid |= CACHEID_ASID_TAGGED;
244 } else if (cachetype & (1 << 23))
Russell Kingc0e95872008-09-25 15:35:28 +0100245 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 /*
Catalin Marinasb86040a2009-07-24 12:32:54 +0100331 * Define the placement constraint for the inline asm directive below.
332 * In Thumb-2, msr with an immediate value is not allowed.
333 */
334#ifdef CONFIG_THUMB2_KERNEL
335#define PLC "r"
336#else
337#define PLC "I"
338#endif
339
340 /*
Russell Kingccea7a12005-05-31 22:22:32 +0100341 * setup stacks for re-entrant exception handlers
342 */
343 __asm__ (
344 "msr cpsr_c, %1\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100345 "add r14, %0, %2\n\t"
346 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100347 "msr cpsr_c, %3\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100348 "add r14, %0, %4\n\t"
349 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100350 "msr cpsr_c, %5\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100351 "add r14, %0, %6\n\t"
352 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100353 "msr cpsr_c, %7"
354 :
355 : "r" (stk),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100356 PLC (PSR_F_BIT | PSR_I_BIT | IRQ_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100357 "I" (offsetof(struct stack, irq[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100358 PLC (PSR_F_BIT | PSR_I_BIT | ABT_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100359 "I" (offsetof(struct stack, abt[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100360 PLC (PSR_F_BIT | PSR_I_BIT | UND_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100361 "I" (offsetof(struct stack, und[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100362 PLC (PSR_F_BIT | PSR_I_BIT | SVC_MODE)
Catalin Marinasaaaa3f92005-06-29 15:34:39 +0100363 : "r14");
Russell Kingccea7a12005-05-31 22:22:32 +0100364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366static struct machine_desc * __init setup_machine(unsigned int nr)
367{
368 struct machine_desc *list;
369
370 /*
371 * locate machine in the list of supported machines.
372 */
373 list = lookup_machine_type(nr);
374 if (!list) {
375 printk("Machine configuration botched (nr %d), unable "
376 "to continue.\n", nr);
377 while (1);
378 }
379
380 printk("Machine: %s\n", list->name);
381
382 return list;
383}
384
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400385static int __init arm_add_memory(unsigned long start, unsigned long size)
Russell King3a669412005-06-22 21:43:10 +0100386{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400387 struct membank *bank = &meminfo.bank[meminfo.nr_banks];
388
389 if (meminfo.nr_banks >= NR_BANKS) {
390 printk(KERN_CRIT "NR_BANKS too low, "
391 "ignoring memory at %#lx\n", start);
392 return -EINVAL;
393 }
Russell King05f96ef2006-11-30 20:44:49 +0000394
Russell King3a669412005-06-22 21:43:10 +0100395 /*
396 * Ensure that start/size are aligned to a page boundary.
397 * Size is appropriately rounded down, start is rounded up.
398 */
399 size -= start & ~PAGE_MASK;
Russell King05f96ef2006-11-30 20:44:49 +0000400 bank->start = PAGE_ALIGN(start);
401 bank->size = size & PAGE_MASK;
402 bank->node = PHYS_TO_NID(start);
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400403
404 /*
405 * Check whether this memory region has non-zero size or
406 * invalid node number.
407 */
408 if (bank->size == 0 || bank->node >= MAX_NUMNODES)
409 return -EINVAL;
410
411 meminfo.nr_banks++;
412 return 0;
Russell King3a669412005-06-22 21:43:10 +0100413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
416 * Pick out the memory size. We look for mem=size@start,
417 * where start and size are "size[KkMm]"
418 */
419static void __init early_mem(char **p)
420{
421 static int usermem __initdata = 0;
422 unsigned long size, start;
423
424 /*
425 * If the user specifies memory size, we
426 * blow away any automatically generated
427 * size.
428 */
429 if (usermem == 0) {
430 usermem = 1;
431 meminfo.nr_banks = 0;
432 }
433
434 start = PHYS_OFFSET;
435 size = memparse(*p, p);
436 if (**p == '@')
437 start = memparse(*p + 1, p);
438
Andrew Morton1c97b732006-04-20 21:41:18 +0100439 arm_add_memory(start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441__early_param("mem=", early_mem);
442
443/*
444 * Initial parsing of the command line.
445 */
446static void __init parse_cmdline(char **cmdline_p, char *from)
447{
448 char c = ' ', *to = command_line;
449 int len = 0;
450
451 for (;;) {
452 if (c == ' ') {
453 extern struct early_params __early_begin, __early_end;
454 struct early_params *p;
455
456 for (p = &__early_begin; p < &__early_end; p++) {
Russell King09d9bae2008-09-05 14:08:44 +0100457 int arglen = strlen(p->arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Russell King09d9bae2008-09-05 14:08:44 +0100459 if (memcmp(from, p->arg, arglen) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (to != command_line)
461 to -= 1;
Russell King09d9bae2008-09-05 14:08:44 +0100462 from += arglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 p->fn(&from);
464
465 while (*from != ' ' && *from != '\0')
466 from++;
467 break;
468 }
469 }
470 }
471 c = *from++;
472 if (!c)
473 break;
474 if (COMMAND_LINE_SIZE <= ++len)
475 break;
476 *to++ = c;
477 }
478 *to = '\0';
479 *cmdline_p = command_line;
480}
481
482static void __init
483setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
484{
485#ifdef CONFIG_BLK_DEV_RAM
486 extern int rd_size, rd_image_start, rd_prompt, rd_doload;
487
488 rd_image_start = image_start;
489 rd_prompt = prompt;
490 rd_doload = doload;
491
492 if (rd_sz)
493 rd_size = rd_sz;
494#endif
495}
496
497static void __init
498request_standard_resources(struct meminfo *mi, struct machine_desc *mdesc)
499{
500 struct resource *res;
501 int i;
502
Russell King37efe642008-12-01 11:53:07 +0000503 kernel_code.start = virt_to_phys(_text);
504 kernel_code.end = virt_to_phys(_etext - 1);
505 kernel_data.start = virt_to_phys(_data);
506 kernel_data.end = virt_to_phys(_end - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 for (i = 0; i < mi->nr_banks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (mi->bank[i].size == 0)
510 continue;
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 res = alloc_bootmem_low(sizeof(*res));
513 res->name = "System RAM";
Nicolas Pitre3319f5e2008-10-02 03:29:22 +0100514 res->start = mi->bank[i].start;
515 res->end = mi->bank[i].start + mi->bank[i].size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
517
518 request_resource(&iomem_resource, res);
519
520 if (kernel_code.start >= res->start &&
521 kernel_code.end <= res->end)
522 request_resource(res, &kernel_code);
523 if (kernel_data.start >= res->start &&
524 kernel_data.end <= res->end)
525 request_resource(res, &kernel_data);
526 }
527
528 if (mdesc->video_start) {
529 video_ram.start = mdesc->video_start;
530 video_ram.end = mdesc->video_end;
531 request_resource(&iomem_resource, &video_ram);
532 }
533
534 /*
535 * Some machines don't have the possibility of ever
536 * possessing lp0, lp1 or lp2
537 */
538 if (mdesc->reserve_lp0)
539 request_resource(&ioport_resource, &lp0);
540 if (mdesc->reserve_lp1)
541 request_resource(&ioport_resource, &lp1);
542 if (mdesc->reserve_lp2)
543 request_resource(&ioport_resource, &lp2);
544}
545
546/*
547 * Tag parsing.
548 *
549 * This is the new way of passing data to the kernel at boot time. Rather
550 * than passing a fixed inflexible structure to the kernel, we pass a list
551 * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE
552 * tag for the list to be recognised (to distinguish the tagged list from
553 * a param_struct). The list is terminated with a zero-length tag (this tag
554 * is not parsed in any way).
555 */
556static int __init parse_tag_core(const struct tag *tag)
557{
558 if (tag->hdr.size > 2) {
559 if ((tag->u.core.flags & 1) == 0)
560 root_mountflags &= ~MS_RDONLY;
561 ROOT_DEV = old_decode_dev(tag->u.core.rootdev);
562 }
563 return 0;
564}
565
566__tagtable(ATAG_CORE, parse_tag_core);
567
568static int __init parse_tag_mem32(const struct tag *tag)
569{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400570 return arm_add_memory(tag->u.mem.start, tag->u.mem.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573__tagtable(ATAG_MEM, parse_tag_mem32);
574
575#if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
576struct screen_info screen_info = {
577 .orig_video_lines = 30,
578 .orig_video_cols = 80,
579 .orig_video_mode = 0,
580 .orig_video_ega_bx = 0,
581 .orig_video_isVGA = 1,
582 .orig_video_points = 8
583};
584
585static int __init parse_tag_videotext(const struct tag *tag)
586{
587 screen_info.orig_x = tag->u.videotext.x;
588 screen_info.orig_y = tag->u.videotext.y;
589 screen_info.orig_video_page = tag->u.videotext.video_page;
590 screen_info.orig_video_mode = tag->u.videotext.video_mode;
591 screen_info.orig_video_cols = tag->u.videotext.video_cols;
592 screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx;
593 screen_info.orig_video_lines = tag->u.videotext.video_lines;
594 screen_info.orig_video_isVGA = tag->u.videotext.video_isvga;
595 screen_info.orig_video_points = tag->u.videotext.video_points;
596 return 0;
597}
598
599__tagtable(ATAG_VIDEOTEXT, parse_tag_videotext);
600#endif
601
602static int __init parse_tag_ramdisk(const struct tag *tag)
603{
604 setup_ramdisk((tag->u.ramdisk.flags & 1) == 0,
605 (tag->u.ramdisk.flags & 2) == 0,
606 tag->u.ramdisk.start, tag->u.ramdisk.size);
607 return 0;
608}
609
610__tagtable(ATAG_RAMDISK, parse_tag_ramdisk);
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612static int __init parse_tag_serialnr(const struct tag *tag)
613{
614 system_serial_low = tag->u.serialnr.low;
615 system_serial_high = tag->u.serialnr.high;
616 return 0;
617}
618
619__tagtable(ATAG_SERIAL, parse_tag_serialnr);
620
621static int __init parse_tag_revision(const struct tag *tag)
622{
623 system_rev = tag->u.revision.rev;
624 return 0;
625}
626
627__tagtable(ATAG_REVISION, parse_tag_revision);
628
629static int __init parse_tag_cmdline(const struct tag *tag)
630{
631 strlcpy(default_command_line, tag->u.cmdline.cmdline, COMMAND_LINE_SIZE);
632 return 0;
633}
634
635__tagtable(ATAG_CMDLINE, parse_tag_cmdline);
636
637/*
638 * Scan the tag table for this tag, and call its parse function.
639 * The tag table is built by the linker from all the __tagtable
640 * declarations.
641 */
642static int __init parse_tag(const struct tag *tag)
643{
644 extern struct tagtable __tagtable_begin, __tagtable_end;
645 struct tagtable *t;
646
647 for (t = &__tagtable_begin; t < &__tagtable_end; t++)
648 if (tag->hdr.tag == t->tag) {
649 t->parse(tag);
650 break;
651 }
652
653 return t < &__tagtable_end;
654}
655
656/*
657 * Parse all tags in the list, checking both the global and architecture
658 * specific tag tables.
659 */
660static void __init parse_tags(const struct tag *t)
661{
662 for (; t->hdr.size; t = tag_next(t))
663 if (!parse_tag(t))
664 printk(KERN_WARNING
665 "Ignoring unrecognised tag 0x%08x\n",
666 t->hdr.tag);
667}
668
669/*
670 * This holds our defaults.
671 */
672static struct init_tags {
673 struct tag_header hdr1;
674 struct tag_core core;
675 struct tag_header hdr2;
676 struct tag_mem32 mem;
677 struct tag_header hdr3;
678} init_tags __initdata = {
679 { tag_size(tag_core), ATAG_CORE },
680 { 1, PAGE_SIZE, 0xff },
681 { tag_size(tag_mem32), ATAG_MEM },
682 { MEM_SIZE, PHYS_OFFSET },
683 { 0, ATAG_NONE }
684};
685
686static void (*init_machine)(void) __initdata;
687
688static int __init customize_machine(void)
689{
690 /* customizes platform devices, or adds new ones */
691 if (init_machine)
692 init_machine();
693 return 0;
694}
695arch_initcall(customize_machine);
696
697void __init setup_arch(char **cmdline_p)
698{
699 struct tag *tags = (struct tag *)&init_tags;
700 struct machine_desc *mdesc;
701 char *from = default_command_line;
702
Catalin Marinasbff595c2009-02-16 11:41:36 +0100703 unwind_init();
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 setup_processor();
706 mdesc = setup_machine(machine_arch_type);
707 machine_name = mdesc->name;
708
709 if (mdesc->soft_reboot)
710 reboot_setup("s");
711
Bill Gatliff9d20fdd2007-05-31 22:02:22 +0100712 if (__atags_pointer)
713 tags = phys_to_virt(__atags_pointer);
714 else if (mdesc->boot_params)
Russell Kingf9bd6ea2005-07-04 10:43:36 +0100715 tags = phys_to_virt(mdesc->boot_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /*
718 * If we have the old style parameters, convert them to
719 * a tag list.
720 */
721 if (tags->hdr.tag != ATAG_CORE)
722 convert_to_tag_list(tags);
723 if (tags->hdr.tag != ATAG_CORE)
724 tags = (struct tag *)&init_tags;
725
726 if (mdesc->fixup)
727 mdesc->fixup(mdesc, tags, &from, &meminfo);
728
729 if (tags->hdr.tag == ATAG_CORE) {
730 if (meminfo.nr_banks != 0)
731 squash_mem_tags(tags);
Richard Purdie4cd9d6f2008-01-02 00:56:46 +0100732 save_atags(tags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 parse_tags(tags);
734 }
735
Russell King37efe642008-12-01 11:53:07 +0000736 init_mm.start_code = (unsigned long) _text;
737 init_mm.end_code = (unsigned long) _etext;
738 init_mm.end_data = (unsigned long) _edata;
739 init_mm.brk = (unsigned long) _end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Alon Bar-Levcd818992007-02-12 00:54:06 -0800741 memcpy(boot_command_line, from, COMMAND_LINE_SIZE);
742 boot_command_line[COMMAND_LINE_SIZE-1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 parse_cmdline(cmdline_p, from);
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400744 paging_init(mdesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 request_standard_resources(&meminfo, mdesc);
746
Russell King7bbb7942006-02-16 11:08:09 +0000747#ifdef CONFIG_SMP
748 smp_init_cpus();
749#endif
750
Russell Kingccea7a12005-05-31 22:22:32 +0100751 cpu_init();
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * Set up various architecture-specific pointers
755 */
756 init_arch_irq = mdesc->init_irq;
757 system_timer = mdesc->timer;
758 init_machine = mdesc->init_machine;
759
760#ifdef CONFIG_VT
761#if defined(CONFIG_VGA_CONSOLE)
762 conswitchp = &vga_con;
763#elif defined(CONFIG_DUMMY_CONSOLE)
764 conswitchp = &dummy_con;
765#endif
766#endif
Jason Wessel5cbad0e2008-02-20 13:33:40 -0600767 early_trap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770
771static int __init topology_init(void)
772{
773 int cpu;
774
Russell King66fb8bd2007-03-13 09:54:21 +0000775 for_each_possible_cpu(cpu) {
776 struct cpuinfo_arm *cpuinfo = &per_cpu(cpu_data, cpu);
777 cpuinfo->cpu.hotpluggable = 1;
778 register_cpu(&cpuinfo->cpu, cpu);
779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 return 0;
782}
783
784subsys_initcall(topology_init);
785
786static const char *hwcap_str[] = {
787 "swp",
788 "half",
789 "thumb",
790 "26bit",
791 "fastmult",
792 "fpa",
793 "vfp",
794 "edsp",
795 "java",
Paul Gortmaker8f7f9432006-10-27 05:13:19 +0100796 "iwmmxt",
Lennert Buytenhek99e4a6d2006-12-18 00:59:10 +0100797 "crunch",
Catalin Marinas4369ae12008-11-06 13:23:06 +0000798 "thumbee",
Catalin Marinas2bedbdf2008-11-06 13:23:07 +0000799 "neon",
Catalin Marinas7279dc32009-02-11 13:13:56 +0100800 "vfpv3",
801 "vfpv3d16",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 NULL
803};
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805static int c_show(struct seq_file *m, void *v)
806{
807 int i;
808
809 seq_printf(m, "Processor\t: %s rev %d (%s)\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100810 cpu_name, read_cpuid_id() & 15, elf_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812#if defined(CONFIG_SMP)
813 for_each_online_cpu(i) {
Russell King15559722005-11-06 21:41:08 +0000814 /*
815 * glibc reads /proc/cpuinfo to determine the number of
816 * online processors, looking for lines beginning with
817 * "processor". Give glibc what it expects.
818 */
819 seq_printf(m, "processor\t: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n",
821 per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ),
822 (per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100);
823 }
824#else /* CONFIG_SMP */
825 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
826 loops_per_jiffy / (500000/HZ),
827 (loops_per_jiffy / (5000/HZ)) % 100);
828#endif
829
830 /* dump out the processor features */
831 seq_puts(m, "Features\t: ");
832
833 for (i = 0; hwcap_str[i]; i++)
834 if (elf_hwcap & (1 << i))
835 seq_printf(m, "%s ", hwcap_str[i]);
836
Russell King0ba8b9b2008-08-10 18:08:10 +0100837 seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 seq_printf(m, "CPU architecture: %s\n", proc_arch[cpu_architecture()]);
839
Russell King0ba8b9b2008-08-10 18:08:10 +0100840 if ((read_cpuid_id() & 0x0008f000) == 0x00000000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* pre-ARM7 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100842 seq_printf(m, "CPU part\t: %07x\n", read_cpuid_id() >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 } else {
Russell King0ba8b9b2008-08-10 18:08:10 +0100844 if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /* ARM7 */
846 seq_printf(m, "CPU variant\t: 0x%02x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100847 (read_cpuid_id() >> 16) & 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 } else {
849 /* post-ARM7 */
850 seq_printf(m, "CPU variant\t: 0x%x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100851 (read_cpuid_id() >> 20) & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 seq_printf(m, "CPU part\t: 0x%03x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100854 (read_cpuid_id() >> 4) & 0xfff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
Russell King0ba8b9b2008-08-10 18:08:10 +0100856 seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 seq_puts(m, "\n");
859
860 seq_printf(m, "Hardware\t: %s\n", machine_name);
861 seq_printf(m, "Revision\t: %04x\n", system_rev);
862 seq_printf(m, "Serial\t\t: %08x%08x\n",
863 system_serial_high, system_serial_low);
864
865 return 0;
866}
867
868static void *c_start(struct seq_file *m, loff_t *pos)
869{
870 return *pos < 1 ? (void *)1 : NULL;
871}
872
873static void *c_next(struct seq_file *m, void *v, loff_t *pos)
874{
875 ++*pos;
876 return NULL;
877}
878
879static void c_stop(struct seq_file *m, void *v)
880{
881}
882
Jan Engelhardt2ffd6e12008-01-22 20:41:07 +0100883const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 .start = c_start,
885 .next = c_next,
886 .stop = c_stop,
887 .show = c_show
888};