blob: e0430d036cea0d8699364bedd013ba7400f34606 [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>
Mika Westerberg3c57fb42010-05-10 09:20:22 +010022#include <linux/kexec.h>
Mika Westerbergcea0bb12010-05-10 09:29:32 +010023#include <linux/crash_dump.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/root_dev.h>
25#include <linux/cpu.h>
26#include <linux/interrupt.h>
Russell King7bbb7942006-02-16 11:08:09 +000027#include <linux/smp.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040028#include <linux/fs.h>
Russell Kinge119bff2010-01-10 17:23:29 +000029#include <linux/proc_fs.h>
Russell King2778f622010-07-09 16:27:52 +010030#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Catalin Marinasb86040a2009-07-24 12:32:54 +010032#include <asm/unified.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/cpu.h>
Russell King0ba8b9b2008-08-10 18:08:10 +010034#include <asm/cputype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/procinfo.h>
Russell King37efe642008-12-01 11:53:07 +000037#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/setup.h>
39#include <asm/mach-types.h>
40#include <asm/cacheflush.h>
Russell King46097c72008-08-10 18:10:19 +010041#include <asm/cachetype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/tlbflush.h>
43
44#include <asm/mach/arch.h>
45#include <asm/mach/irq.h>
46#include <asm/mach/time.h>
Jason Wessel5cbad0e2008-02-20 13:33:40 -060047#include <asm/traps.h>
Catalin Marinasbff595c2009-02-16 11:41:36 +010048#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Uwe Kleine-König73a65b32010-01-19 10:13:14 +010050#if defined(CONFIG_DEPRECATED_PARAM_STRUCT)
Ben Dooks0fc1c832006-03-15 23:17:30 +000051#include "compat.h"
Uwe Kleine-König73a65b32010-01-19 10:13:14 +010052#endif
Richard Purdie4cd9d6f2008-01-02 00:56:46 +010053#include "atags.h"
Linus Walleijbc581772009-09-15 17:30:37 +010054#include "tcm.h"
Ben Dooks0fc1c832006-03-15 23:17:30 +000055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#ifndef MEM_SIZE
57#define MEM_SIZE (16*1024*1024)
58#endif
59
60#if defined(CONFIG_FPE_NWFPE) || defined(CONFIG_FPE_FASTFPE)
61char fpe_type[8];
62
63static int __init fpe_setup(char *line)
64{
65 memcpy(fpe_type, line, 8);
66 return 1;
67}
68
69__setup("fpe=", fpe_setup);
70#endif
71
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040072extern void paging_init(struct machine_desc *desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073extern void reboot_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75unsigned int processor_id;
Krzysztof Halasac18f6582007-12-18 03:53:27 +010076EXPORT_SYMBOL(processor_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077unsigned int __machine_arch_type;
78EXPORT_SYMBOL(__machine_arch_type);
Russell Kingc0e95872008-09-25 15:35:28 +010079unsigned int cacheid;
80EXPORT_SYMBOL(cacheid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Bill Gatliff9d20fdd2007-05-31 22:02:22 +010082unsigned int __atags_pointer __initdata;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084unsigned int system_rev;
85EXPORT_SYMBOL(system_rev);
86
87unsigned int system_serial_low;
88EXPORT_SYMBOL(system_serial_low);
89
90unsigned int system_serial_high;
91EXPORT_SYMBOL(system_serial_high);
92
93unsigned int elf_hwcap;
94EXPORT_SYMBOL(elf_hwcap);
95
96
97#ifdef MULTI_CPU
98struct processor processor;
99#endif
100#ifdef MULTI_TLB
101struct cpu_tlb_fns cpu_tlb;
102#endif
103#ifdef MULTI_USER
104struct cpu_user_fns cpu_user;
105#endif
106#ifdef MULTI_CACHE
107struct cpu_cache_fns cpu_cache;
108#endif
Catalin Marinas953233d2007-02-05 14:48:08 +0100109#ifdef CONFIG_OUTER_CACHE
110struct outer_cache_fns outer_cache;
Santosh Shilimkar6c09f092010-02-16 07:57:43 +0100111EXPORT_SYMBOL(outer_cache);
Catalin Marinas953233d2007-02-05 14:48:08 +0100112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Russell Kingccea7a12005-05-31 22:22:32 +0100114struct stack {
115 u32 irq[3];
116 u32 abt[3];
117 u32 und[3];
118} ____cacheline_aligned;
119
120static struct stack stacks[NR_CPUS];
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122char elf_platform[ELF_PLATFORM_SIZE];
123EXPORT_SYMBOL(elf_platform);
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static const char *cpu_name;
126static const char *machine_name;
Jeremy Kerr48ab7e02010-01-27 01:13:31 +0100127static char __initdata cmd_line[COMMAND_LINE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE;
130static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } };
131#define ENDIANNESS ((char)endian_test.l)
132
133DEFINE_PER_CPU(struct cpuinfo_arm, cpu_data);
134
135/*
136 * Standard memory resources
137 */
138static struct resource mem_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700139 {
140 .name = "Video RAM",
141 .start = 0,
142 .end = 0,
143 .flags = IORESOURCE_MEM
144 },
145 {
146 .name = "Kernel text",
147 .start = 0,
148 .end = 0,
149 .flags = IORESOURCE_MEM
150 },
151 {
152 .name = "Kernel data",
153 .start = 0,
154 .end = 0,
155 .flags = IORESOURCE_MEM
156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159#define video_ram mem_res[0]
160#define kernel_code mem_res[1]
161#define kernel_data mem_res[2]
162
163static struct resource io_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700164 {
165 .name = "reserved",
166 .start = 0x3bc,
167 .end = 0x3be,
168 .flags = IORESOURCE_IO | IORESOURCE_BUSY
169 },
170 {
171 .name = "reserved",
172 .start = 0x378,
173 .end = 0x37f,
174 .flags = IORESOURCE_IO | IORESOURCE_BUSY
175 },
176 {
177 .name = "reserved",
178 .start = 0x278,
179 .end = 0x27f,
180 .flags = IORESOURCE_IO | IORESOURCE_BUSY
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
184#define lp0 io_res[0]
185#define lp1 io_res[1]
186#define lp2 io_res[2]
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static const char *proc_arch[] = {
189 "undefined/unknown",
190 "3",
191 "4",
192 "4T",
193 "5",
194 "5T",
195 "5TE",
196 "5TEJ",
197 "6TEJ",
Catalin Marinas6b090a22006-01-12 16:28:16 +0000198 "7",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 "?(11)",
200 "?(12)",
201 "?(13)",
202 "?(14)",
203 "?(15)",
204 "?(16)",
205 "?(17)",
206};
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208int cpu_architecture(void)
209{
210 int cpu_arch;
211
Russell King0ba8b9b2008-08-10 18:08:10 +0100212 if ((read_cpuid_id() & 0x0008f000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 cpu_arch = CPU_ARCH_UNKNOWN;
Russell King0ba8b9b2008-08-10 18:08:10 +0100214 } else if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
215 cpu_arch = (read_cpuid_id() & (1 << 23)) ? CPU_ARCH_ARMv4T : CPU_ARCH_ARMv3;
216 } else if ((read_cpuid_id() & 0x00080000) == 0x00000000) {
217 cpu_arch = (read_cpuid_id() >> 16) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (cpu_arch)
219 cpu_arch += CPU_ARCH_ARMv3;
Russell King0ba8b9b2008-08-10 18:08:10 +0100220 } else if ((read_cpuid_id() & 0x000f0000) == 0x000f0000) {
Catalin Marinas180005c2007-09-25 16:49:45 +0100221 unsigned int mmfr0;
222
223 /* Revised CPUID format. Read the Memory Model Feature
224 * Register 0 and check for VMSAv7 or PMSAv7 */
225 asm("mrc p15, 0, %0, c0, c1, 4"
226 : "=r" (mmfr0));
227 if ((mmfr0 & 0x0000000f) == 0x00000003 ||
228 (mmfr0 & 0x000000f0) == 0x00000030)
229 cpu_arch = CPU_ARCH_ARMv7;
230 else if ((mmfr0 & 0x0000000f) == 0x00000002 ||
231 (mmfr0 & 0x000000f0) == 0x00000020)
232 cpu_arch = CPU_ARCH_ARMv6;
233 else
234 cpu_arch = CPU_ARCH_UNKNOWN;
235 } else
236 cpu_arch = CPU_ARCH_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 return cpu_arch;
239}
240
Will Deacon8925ec42010-09-13 16:18:30 +0100241static int cpu_has_aliasing_icache(unsigned int arch)
242{
243 int aliasing_icache;
244 unsigned int id_reg, num_sets, line_size;
245
246 /* arch specifies the register format */
247 switch (arch) {
248 case CPU_ARCH_ARMv7:
Linus Walleij5fb31a92010-10-06 11:07:28 +0100249 asm("mcr p15, 2, %0, c0, c0, 0 @ set CSSELR"
250 : /* No output operands */
Will Deacon8925ec42010-09-13 16:18:30 +0100251 : "r" (1));
Linus Walleij5fb31a92010-10-06 11:07:28 +0100252 isb();
253 asm("mrc p15, 1, %0, c0, c0, 0 @ read CCSIDR"
254 : "=r" (id_reg));
Will Deacon8925ec42010-09-13 16:18:30 +0100255 line_size = 4 << ((id_reg & 0x7) + 2);
256 num_sets = ((id_reg >> 13) & 0x7fff) + 1;
257 aliasing_icache = (line_size * num_sets) > PAGE_SIZE;
258 break;
259 case CPU_ARCH_ARMv6:
260 aliasing_icache = read_cpuid_cachetype() & (1 << 11);
261 break;
262 default:
263 /* I-cache aliases will be handled by D-cache aliasing code */
264 aliasing_icache = 0;
265 }
266
267 return aliasing_icache;
268}
269
Russell Kingc0e95872008-09-25 15:35:28 +0100270static void __init cacheid_init(void)
271{
272 unsigned int cachetype = read_cpuid_cachetype();
273 unsigned int arch = cpu_architecture();
274
Catalin Marinasb57ee992009-03-03 11:44:12 +0100275 if (arch >= CPU_ARCH_ARMv6) {
276 if ((cachetype & (7 << 29)) == 4 << 29) {
277 /* ARMv7 register format */
278 cacheid = CACHEID_VIPT_NONALIASING;
279 if ((cachetype & (3 << 14)) == 1 << 14)
280 cacheid |= CACHEID_ASID_TAGGED;
Will Deacon8925ec42010-09-13 16:18:30 +0100281 else if (cpu_has_aliasing_icache(CPU_ARCH_ARMv7))
282 cacheid |= CACHEID_VIPT_I_ALIASING;
283 } else if (cachetype & (1 << 23)) {
Russell Kingc0e95872008-09-25 15:35:28 +0100284 cacheid = CACHEID_VIPT_ALIASING;
Will Deacon8925ec42010-09-13 16:18:30 +0100285 } else {
Russell Kingc0e95872008-09-25 15:35:28 +0100286 cacheid = CACHEID_VIPT_NONALIASING;
Will Deacon8925ec42010-09-13 16:18:30 +0100287 if (cpu_has_aliasing_icache(CPU_ARCH_ARMv6))
288 cacheid |= CACHEID_VIPT_I_ALIASING;
289 }
Russell Kingc0e95872008-09-25 15:35:28 +0100290 } else {
291 cacheid = CACHEID_VIVT;
292 }
Russell King2b4ae1f2008-09-25 15:39:20 +0100293
294 printk("CPU: %s data cache, %s instruction cache\n",
295 cache_is_vivt() ? "VIVT" :
296 cache_is_vipt_aliasing() ? "VIPT aliasing" :
297 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown",
298 cache_is_vivt() ? "VIVT" :
299 icache_is_vivt_asid_tagged() ? "VIVT ASID tagged" :
Will Deacon8925ec42010-09-13 16:18:30 +0100300 icache_is_vipt_aliasing() ? "VIPT aliasing" :
Russell King2b4ae1f2008-09-25 15:39:20 +0100301 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown");
Russell Kingc0e95872008-09-25 15:35:28 +0100302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*
305 * These functions re-use the assembly code in head.S, which
306 * already provide the required functionality.
307 */
Russell King0f44ba12006-02-24 21:04:56 +0000308extern struct proc_info_list *lookup_processor_type(unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309extern struct machine_desc *lookup_machine_type(unsigned int);
310
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100311static void __init feat_v6_fixup(void)
312{
313 int id = read_cpuid_id();
314
315 if ((id & 0xff0f0000) != 0x41070000)
316 return;
317
318 /*
319 * HWCAP_TLS is available only on 1136 r1p0 and later,
320 * see also kuser_get_tls_init.
321 */
322 if ((((id >> 4) & 0xfff) == 0xb36) && (((id >> 20) & 3) == 0))
323 elf_hwcap &= ~HWCAP_TLS;
324}
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326static void __init setup_processor(void)
327{
328 struct proc_info_list *list;
329
330 /*
331 * locate processor in the list of supported processor
332 * types. The linker builds this table for us from the
333 * entries in arch/arm/mm/proc-*.S
334 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100335 list = lookup_processor_type(read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (!list) {
337 printk("CPU configuration botched (ID %08x), unable "
Russell King0ba8b9b2008-08-10 18:08:10 +0100338 "to continue.\n", read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 while (1);
340 }
341
342 cpu_name = list->cpu_name;
343
344#ifdef MULTI_CPU
345 processor = *list->proc;
346#endif
347#ifdef MULTI_TLB
348 cpu_tlb = *list->tlb;
349#endif
350#ifdef MULTI_USER
351 cpu_user = *list->user;
352#endif
353#ifdef MULTI_CACHE
354 cpu_cache = *list->cache;
355#endif
356
Russell King4e190252006-07-03 13:29:38 +0100357 printk("CPU: %s [%08x] revision %d (ARMv%s), cr=%08lx\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100358 cpu_name, read_cpuid_id(), read_cpuid_id() & 15,
Russell King264edb32006-06-29 15:03:09 +0100359 proc_arch[cpu_architecture()], cr_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700361 sprintf(init_utsname()->machine, "%s%c", list->arch_name, ENDIANNESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 sprintf(elf_platform, "%s%c", list->elf_name, ENDIANNESS);
363 elf_hwcap = list->elf_hwcap;
Catalin Marinasadeff422006-04-10 21:32:35 +0100364#ifndef CONFIG_ARM_THUMB
365 elf_hwcap &= ~HWCAP_THUMB;
366#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100368 feat_v6_fixup();
369
Russell Kingc0e95872008-09-25 15:35:28 +0100370 cacheid_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 cpu_proc_init();
372}
373
Russell Kingccea7a12005-05-31 22:22:32 +0100374/*
375 * cpu_init - initialise one CPU.
376 *
Russell King90f1e082008-09-25 14:45:02 +0100377 * cpu_init sets up the per-CPU stacks.
Russell Kingccea7a12005-05-31 22:22:32 +0100378 */
Russell King36c5ed22005-06-19 18:39:33 +0100379void cpu_init(void)
Russell Kingccea7a12005-05-31 22:22:32 +0100380{
381 unsigned int cpu = smp_processor_id();
382 struct stack *stk = &stacks[cpu];
383
384 if (cpu >= NR_CPUS) {
385 printk(KERN_CRIT "CPU%u: bad primary CPU number\n", cpu);
386 BUG();
387 }
388
Russell Kingccea7a12005-05-31 22:22:32 +0100389 /*
Catalin Marinasb86040a2009-07-24 12:32:54 +0100390 * Define the placement constraint for the inline asm directive below.
391 * In Thumb-2, msr with an immediate value is not allowed.
392 */
393#ifdef CONFIG_THUMB2_KERNEL
394#define PLC "r"
395#else
396#define PLC "I"
397#endif
398
399 /*
Russell Kingccea7a12005-05-31 22:22:32 +0100400 * setup stacks for re-entrant exception handlers
401 */
402 __asm__ (
403 "msr cpsr_c, %1\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100404 "add r14, %0, %2\n\t"
405 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100406 "msr cpsr_c, %3\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100407 "add r14, %0, %4\n\t"
408 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100409 "msr cpsr_c, %5\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100410 "add r14, %0, %6\n\t"
411 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100412 "msr cpsr_c, %7"
413 :
414 : "r" (stk),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100415 PLC (PSR_F_BIT | PSR_I_BIT | IRQ_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100416 "I" (offsetof(struct stack, irq[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100417 PLC (PSR_F_BIT | PSR_I_BIT | ABT_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100418 "I" (offsetof(struct stack, abt[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100419 PLC (PSR_F_BIT | PSR_I_BIT | UND_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100420 "I" (offsetof(struct stack, und[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100421 PLC (PSR_F_BIT | PSR_I_BIT | SVC_MODE)
Catalin Marinasaaaa3f92005-06-29 15:34:39 +0100422 : "r14");
Russell Kingccea7a12005-05-31 22:22:32 +0100423}
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425static struct machine_desc * __init setup_machine(unsigned int nr)
426{
427 struct machine_desc *list;
428
429 /*
430 * locate machine in the list of supported machines.
431 */
432 list = lookup_machine_type(nr);
433 if (!list) {
434 printk("Machine configuration botched (nr %d), unable "
435 "to continue.\n", nr);
436 while (1);
437 }
438
439 printk("Machine: %s\n", list->name);
440
441 return list;
442}
443
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400444static int __init arm_add_memory(unsigned long start, unsigned long size)
Russell King3a669412005-06-22 21:43:10 +0100445{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400446 struct membank *bank = &meminfo.bank[meminfo.nr_banks];
447
448 if (meminfo.nr_banks >= NR_BANKS) {
449 printk(KERN_CRIT "NR_BANKS too low, "
450 "ignoring memory at %#lx\n", start);
451 return -EINVAL;
452 }
Russell King05f96ef2006-11-30 20:44:49 +0000453
Russell King3a669412005-06-22 21:43:10 +0100454 /*
455 * Ensure that start/size are aligned to a page boundary.
456 * Size is appropriately rounded down, start is rounded up.
457 */
458 size -= start & ~PAGE_MASK;
Russell King05f96ef2006-11-30 20:44:49 +0000459 bank->start = PAGE_ALIGN(start);
460 bank->size = size & PAGE_MASK;
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400461
462 /*
463 * Check whether this memory region has non-zero size or
464 * invalid node number.
465 */
Russell Kingbe370302010-05-07 17:40:33 +0100466 if (bank->size == 0)
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400467 return -EINVAL;
468
469 meminfo.nr_banks++;
470 return 0;
Russell King3a669412005-06-22 21:43:10 +0100471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
474 * Pick out the memory size. We look for mem=size@start,
475 * where start and size are "size[KkMm]"
476 */
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100477static int __init early_mem(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 static int usermem __initdata = 0;
480 unsigned long size, start;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100481 char *endp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /*
484 * If the user specifies memory size, we
485 * blow away any automatically generated
486 * size.
487 */
488 if (usermem == 0) {
489 usermem = 1;
490 meminfo.nr_banks = 0;
491 }
492
493 start = PHYS_OFFSET;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100494 size = memparse(p, &endp);
495 if (*endp == '@')
496 start = memparse(endp + 1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Andrew Morton1c97b732006-04-20 21:41:18 +0100498 arm_add_memory(start, size);
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100499
500 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100502early_param("mem", early_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504static void __init
505setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
506{
507#ifdef CONFIG_BLK_DEV_RAM
508 extern int rd_size, rd_image_start, rd_prompt, rd_doload;
509
510 rd_image_start = image_start;
511 rd_prompt = prompt;
512 rd_doload = doload;
513
514 if (rd_sz)
515 rd_size = rd_sz;
516#endif
517}
518
519static void __init
520request_standard_resources(struct meminfo *mi, struct machine_desc *mdesc)
521{
522 struct resource *res;
523 int i;
524
Russell King37efe642008-12-01 11:53:07 +0000525 kernel_code.start = virt_to_phys(_text);
526 kernel_code.end = virt_to_phys(_etext - 1);
527 kernel_data.start = virt_to_phys(_data);
528 kernel_data.end = virt_to_phys(_end - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 for (i = 0; i < mi->nr_banks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (mi->bank[i].size == 0)
532 continue;
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 res = alloc_bootmem_low(sizeof(*res));
535 res->name = "System RAM";
Nicolas Pitre3319f5e2008-10-02 03:29:22 +0100536 res->start = mi->bank[i].start;
537 res->end = mi->bank[i].start + mi->bank[i].size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
539
540 request_resource(&iomem_resource, res);
541
542 if (kernel_code.start >= res->start &&
543 kernel_code.end <= res->end)
544 request_resource(res, &kernel_code);
545 if (kernel_data.start >= res->start &&
546 kernel_data.end <= res->end)
547 request_resource(res, &kernel_data);
548 }
549
550 if (mdesc->video_start) {
551 video_ram.start = mdesc->video_start;
552 video_ram.end = mdesc->video_end;
553 request_resource(&iomem_resource, &video_ram);
554 }
555
556 /*
557 * Some machines don't have the possibility of ever
558 * possessing lp0, lp1 or lp2
559 */
560 if (mdesc->reserve_lp0)
561 request_resource(&ioport_resource, &lp0);
562 if (mdesc->reserve_lp1)
563 request_resource(&ioport_resource, &lp1);
564 if (mdesc->reserve_lp2)
565 request_resource(&ioport_resource, &lp2);
566}
567
568/*
569 * Tag parsing.
570 *
571 * This is the new way of passing data to the kernel at boot time. Rather
572 * than passing a fixed inflexible structure to the kernel, we pass a list
573 * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE
574 * tag for the list to be recognised (to distinguish the tagged list from
575 * a param_struct). The list is terminated with a zero-length tag (this tag
576 * is not parsed in any way).
577 */
578static int __init parse_tag_core(const struct tag *tag)
579{
580 if (tag->hdr.size > 2) {
581 if ((tag->u.core.flags & 1) == 0)
582 root_mountflags &= ~MS_RDONLY;
583 ROOT_DEV = old_decode_dev(tag->u.core.rootdev);
584 }
585 return 0;
586}
587
588__tagtable(ATAG_CORE, parse_tag_core);
589
590static int __init parse_tag_mem32(const struct tag *tag)
591{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400592 return arm_add_memory(tag->u.mem.start, tag->u.mem.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
595__tagtable(ATAG_MEM, parse_tag_mem32);
596
597#if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
598struct screen_info screen_info = {
599 .orig_video_lines = 30,
600 .orig_video_cols = 80,
601 .orig_video_mode = 0,
602 .orig_video_ega_bx = 0,
603 .orig_video_isVGA = 1,
604 .orig_video_points = 8
605};
606
607static int __init parse_tag_videotext(const struct tag *tag)
608{
609 screen_info.orig_x = tag->u.videotext.x;
610 screen_info.orig_y = tag->u.videotext.y;
611 screen_info.orig_video_page = tag->u.videotext.video_page;
612 screen_info.orig_video_mode = tag->u.videotext.video_mode;
613 screen_info.orig_video_cols = tag->u.videotext.video_cols;
614 screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx;
615 screen_info.orig_video_lines = tag->u.videotext.video_lines;
616 screen_info.orig_video_isVGA = tag->u.videotext.video_isvga;
617 screen_info.orig_video_points = tag->u.videotext.video_points;
618 return 0;
619}
620
621__tagtable(ATAG_VIDEOTEXT, parse_tag_videotext);
622#endif
623
624static int __init parse_tag_ramdisk(const struct tag *tag)
625{
626 setup_ramdisk((tag->u.ramdisk.flags & 1) == 0,
627 (tag->u.ramdisk.flags & 2) == 0,
628 tag->u.ramdisk.start, tag->u.ramdisk.size);
629 return 0;
630}
631
632__tagtable(ATAG_RAMDISK, parse_tag_ramdisk);
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static int __init parse_tag_serialnr(const struct tag *tag)
635{
636 system_serial_low = tag->u.serialnr.low;
637 system_serial_high = tag->u.serialnr.high;
638 return 0;
639}
640
641__tagtable(ATAG_SERIAL, parse_tag_serialnr);
642
643static int __init parse_tag_revision(const struct tag *tag)
644{
645 system_rev = tag->u.revision.rev;
646 return 0;
647}
648
649__tagtable(ATAG_REVISION, parse_tag_revision);
650
Alexander Holler92d20402010-02-16 19:04:53 +0100651#ifndef CONFIG_CMDLINE_FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652static int __init parse_tag_cmdline(const struct tag *tag)
653{
654 strlcpy(default_command_line, tag->u.cmdline.cmdline, COMMAND_LINE_SIZE);
655 return 0;
656}
657
658__tagtable(ATAG_CMDLINE, parse_tag_cmdline);
Alexander Holler92d20402010-02-16 19:04:53 +0100659#endif /* CONFIG_CMDLINE_FORCE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661/*
662 * Scan the tag table for this tag, and call its parse function.
663 * The tag table is built by the linker from all the __tagtable
664 * declarations.
665 */
666static int __init parse_tag(const struct tag *tag)
667{
668 extern struct tagtable __tagtable_begin, __tagtable_end;
669 struct tagtable *t;
670
671 for (t = &__tagtable_begin; t < &__tagtable_end; t++)
672 if (tag->hdr.tag == t->tag) {
673 t->parse(tag);
674 break;
675 }
676
677 return t < &__tagtable_end;
678}
679
680/*
681 * Parse all tags in the list, checking both the global and architecture
682 * specific tag tables.
683 */
684static void __init parse_tags(const struct tag *t)
685{
686 for (; t->hdr.size; t = tag_next(t))
687 if (!parse_tag(t))
688 printk(KERN_WARNING
689 "Ignoring unrecognised tag 0x%08x\n",
690 t->hdr.tag);
691}
692
693/*
694 * This holds our defaults.
695 */
696static struct init_tags {
697 struct tag_header hdr1;
698 struct tag_core core;
699 struct tag_header hdr2;
700 struct tag_mem32 mem;
701 struct tag_header hdr3;
702} init_tags __initdata = {
703 { tag_size(tag_core), ATAG_CORE },
704 { 1, PAGE_SIZE, 0xff },
705 { tag_size(tag_mem32), ATAG_MEM },
706 { MEM_SIZE, PHYS_OFFSET },
707 { 0, ATAG_NONE }
708};
709
710static void (*init_machine)(void) __initdata;
711
712static int __init customize_machine(void)
713{
714 /* customizes platform devices, or adds new ones */
715 if (init_machine)
716 init_machine();
717 return 0;
718}
719arch_initcall(customize_machine);
720
Mika Westerberg3c57fb42010-05-10 09:20:22 +0100721#ifdef CONFIG_KEXEC
722static inline unsigned long long get_total_mem(void)
723{
724 unsigned long total;
725
726 total = max_low_pfn - min_low_pfn;
727 return total << PAGE_SHIFT;
728}
729
730/**
731 * reserve_crashkernel() - reserves memory are for crash kernel
732 *
733 * This function reserves memory area given in "crashkernel=" kernel command
734 * line parameter. The memory reserved is used by a dump capture kernel when
735 * primary kernel is crashing.
736 */
737static void __init reserve_crashkernel(void)
738{
739 unsigned long long crash_size, crash_base;
740 unsigned long long total_mem;
741 int ret;
742
743 total_mem = get_total_mem();
744 ret = parse_crashkernel(boot_command_line, total_mem,
745 &crash_size, &crash_base);
746 if (ret)
747 return;
748
749 ret = reserve_bootmem(crash_base, crash_size, BOOTMEM_EXCLUSIVE);
750 if (ret < 0) {
751 printk(KERN_WARNING "crashkernel reservation failed - "
752 "memory is in use (0x%lx)\n", (unsigned long)crash_base);
753 return;
754 }
755
756 printk(KERN_INFO "Reserving %ldMB of memory at %ldMB "
757 "for crashkernel (System RAM: %ldMB)\n",
758 (unsigned long)(crash_size >> 20),
759 (unsigned long)(crash_base >> 20),
760 (unsigned long)(total_mem >> 20));
761
762 crashk_res.start = crash_base;
763 crashk_res.end = crash_base + crash_size - 1;
764 insert_resource(&iomem_resource, &crashk_res);
765}
766#else
767static inline void reserve_crashkernel(void) {}
768#endif /* CONFIG_KEXEC */
769
Mika Westerbergcea0bb12010-05-10 09:29:32 +0100770/*
771 * Note: elfcorehdr_addr is not just limited to vmcore. It is also used by
772 * is_kdump_kernel() to determine if we are booting after a panic. Hence
773 * ifdef it under CONFIG_CRASH_DUMP and not CONFIG_PROC_VMCORE.
774 */
775
776#ifdef CONFIG_CRASH_DUMP
777/*
778 * elfcorehdr= specifies the location of elf core header stored by the crashed
779 * kernel. This option will be passed by kexec loader to the capture kernel.
780 */
781static int __init setup_elfcorehdr(char *arg)
782{
783 char *end;
784
785 if (!arg)
786 return -EINVAL;
787
788 elfcorehdr_addr = memparse(arg, &end);
789 return end > arg ? 0 : -EINVAL;
790}
791early_param("elfcorehdr", setup_elfcorehdr);
792#endif /* CONFIG_CRASH_DUMP */
793
Uwe Kleine-König73a65b32010-01-19 10:13:14 +0100794static void __init squash_mem_tags(struct tag *tag)
795{
796 for (; tag->hdr.size; tag = tag_next(tag))
797 if (tag->hdr.tag == ATAG_MEM)
798 tag->hdr.tag = ATAG_NONE;
799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801void __init setup_arch(char **cmdline_p)
802{
803 struct tag *tags = (struct tag *)&init_tags;
804 struct machine_desc *mdesc;
805 char *from = default_command_line;
806
Catalin Marinasbff595c2009-02-16 11:41:36 +0100807 unwind_init();
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 setup_processor();
810 mdesc = setup_machine(machine_arch_type);
811 machine_name = mdesc->name;
812
813 if (mdesc->soft_reboot)
814 reboot_setup("s");
815
Bill Gatliff9d20fdd2007-05-31 22:02:22 +0100816 if (__atags_pointer)
817 tags = phys_to_virt(__atags_pointer);
818 else if (mdesc->boot_params)
Russell Kingf9bd6ea2005-07-04 10:43:36 +0100819 tags = phys_to_virt(mdesc->boot_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Uwe Kleine-König73a65b32010-01-19 10:13:14 +0100821#if defined(CONFIG_DEPRECATED_PARAM_STRUCT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /*
823 * If we have the old style parameters, convert them to
824 * a tag list.
825 */
826 if (tags->hdr.tag != ATAG_CORE)
827 convert_to_tag_list(tags);
Uwe Kleine-König73a65b32010-01-19 10:13:14 +0100828#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (tags->hdr.tag != ATAG_CORE)
830 tags = (struct tag *)&init_tags;
831
832 if (mdesc->fixup)
833 mdesc->fixup(mdesc, tags, &from, &meminfo);
834
835 if (tags->hdr.tag == ATAG_CORE) {
836 if (meminfo.nr_banks != 0)
837 squash_mem_tags(tags);
Richard Purdie4cd9d6f2008-01-02 00:56:46 +0100838 save_atags(tags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 parse_tags(tags);
840 }
841
Russell King37efe642008-12-01 11:53:07 +0000842 init_mm.start_code = (unsigned long) _text;
843 init_mm.end_code = (unsigned long) _etext;
844 init_mm.end_data = (unsigned long) _edata;
845 init_mm.brk = (unsigned long) _end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100847 /* parse_early_param needs a boot_command_line */
848 strlcpy(boot_command_line, from, COMMAND_LINE_SIZE);
849
Jeremy Kerr48ab7e02010-01-27 01:13:31 +0100850 /* populate cmd_line too for later use, preserving boot_command_line */
851 strlcpy(cmd_line, boot_command_line, COMMAND_LINE_SIZE);
852 *cmdline_p = cmd_line;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100853
854 parse_early_param();
855
Russell King8d717a52010-05-22 19:47:18 +0100856 arm_memblock_init(&meminfo, mdesc);
Russell King2778f622010-07-09 16:27:52 +0100857
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400858 paging_init(mdesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 request_standard_resources(&meminfo, mdesc);
860
Russell King7bbb7942006-02-16 11:08:09 +0000861#ifdef CONFIG_SMP
862 smp_init_cpus();
863#endif
Mika Westerberg3c57fb42010-05-10 09:20:22 +0100864 reserve_crashkernel();
Russell King7bbb7942006-02-16 11:08:09 +0000865
Russell Kingccea7a12005-05-31 22:22:32 +0100866 cpu_init();
Linus Walleijbc581772009-09-15 17:30:37 +0100867 tcm_init();
Russell Kingccea7a12005-05-31 22:22:32 +0100868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * Set up various architecture-specific pointers
871 */
eric miao354e6f72010-06-25 09:46:09 +0100872 arch_nr_irqs = mdesc->nr_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 init_arch_irq = mdesc->init_irq;
874 system_timer = mdesc->timer;
875 init_machine = mdesc->init_machine;
876
877#ifdef CONFIG_VT
878#if defined(CONFIG_VGA_CONSOLE)
879 conswitchp = &vga_con;
880#elif defined(CONFIG_DUMMY_CONSOLE)
881 conswitchp = &dummy_con;
882#endif
883#endif
Jason Wessel5cbad0e2008-02-20 13:33:40 -0600884 early_trap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887
888static int __init topology_init(void)
889{
890 int cpu;
891
Russell King66fb8bd2007-03-13 09:54:21 +0000892 for_each_possible_cpu(cpu) {
893 struct cpuinfo_arm *cpuinfo = &per_cpu(cpu_data, cpu);
894 cpuinfo->cpu.hotpluggable = 1;
895 register_cpu(&cpuinfo->cpu, cpu);
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 return 0;
899}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900subsys_initcall(topology_init);
901
Russell Kinge119bff2010-01-10 17:23:29 +0000902#ifdef CONFIG_HAVE_PROC_CPU
903static int __init proc_cpu_init(void)
904{
905 struct proc_dir_entry *res;
906
907 res = proc_mkdir("cpu", NULL);
908 if (!res)
909 return -ENOMEM;
910 return 0;
911}
912fs_initcall(proc_cpu_init);
913#endif
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915static const char *hwcap_str[] = {
916 "swp",
917 "half",
918 "thumb",
919 "26bit",
920 "fastmult",
921 "fpa",
922 "vfp",
923 "edsp",
924 "java",
Paul Gortmaker8f7f9432006-10-27 05:13:19 +0100925 "iwmmxt",
Lennert Buytenhek99e4a6d2006-12-18 00:59:10 +0100926 "crunch",
Catalin Marinas4369ae12008-11-06 13:23:06 +0000927 "thumbee",
Catalin Marinas2bedbdf2008-11-06 13:23:07 +0000928 "neon",
Catalin Marinas7279dc32009-02-11 13:13:56 +0100929 "vfpv3",
930 "vfpv3d16",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 NULL
932};
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934static int c_show(struct seq_file *m, void *v)
935{
936 int i;
937
938 seq_printf(m, "Processor\t: %s rev %d (%s)\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100939 cpu_name, read_cpuid_id() & 15, elf_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941#if defined(CONFIG_SMP)
942 for_each_online_cpu(i) {
Russell King15559722005-11-06 21:41:08 +0000943 /*
944 * glibc reads /proc/cpuinfo to determine the number of
945 * online processors, looking for lines beginning with
946 * "processor". Give glibc what it expects.
947 */
948 seq_printf(m, "processor\t: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n",
950 per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ),
951 (per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100);
952 }
953#else /* CONFIG_SMP */
954 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
955 loops_per_jiffy / (500000/HZ),
956 (loops_per_jiffy / (5000/HZ)) % 100);
957#endif
958
959 /* dump out the processor features */
960 seq_puts(m, "Features\t: ");
961
962 for (i = 0; hwcap_str[i]; i++)
963 if (elf_hwcap & (1 << i))
964 seq_printf(m, "%s ", hwcap_str[i]);
965
Russell King0ba8b9b2008-08-10 18:08:10 +0100966 seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 seq_printf(m, "CPU architecture: %s\n", proc_arch[cpu_architecture()]);
968
Russell King0ba8b9b2008-08-10 18:08:10 +0100969 if ((read_cpuid_id() & 0x0008f000) == 0x00000000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /* pre-ARM7 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100971 seq_printf(m, "CPU part\t: %07x\n", read_cpuid_id() >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 } else {
Russell King0ba8b9b2008-08-10 18:08:10 +0100973 if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* ARM7 */
975 seq_printf(m, "CPU variant\t: 0x%02x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100976 (read_cpuid_id() >> 16) & 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 } else {
978 /* post-ARM7 */
979 seq_printf(m, "CPU variant\t: 0x%x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100980 (read_cpuid_id() >> 20) & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982 seq_printf(m, "CPU part\t: 0x%03x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100983 (read_cpuid_id() >> 4) & 0xfff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
Russell King0ba8b9b2008-08-10 18:08:10 +0100985 seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 seq_puts(m, "\n");
988
989 seq_printf(m, "Hardware\t: %s\n", machine_name);
990 seq_printf(m, "Revision\t: %04x\n", system_rev);
991 seq_printf(m, "Serial\t\t: %08x%08x\n",
992 system_serial_high, system_serial_low);
993
994 return 0;
995}
996
997static void *c_start(struct seq_file *m, loff_t *pos)
998{
999 return *pos < 1 ? (void *)1 : NULL;
1000}
1001
1002static void *c_next(struct seq_file *m, void *v, loff_t *pos)
1003{
1004 ++*pos;
1005 return NULL;
1006}
1007
1008static void c_stop(struct seq_file *m, void *v)
1009{
1010}
1011
Jan Engelhardt2ffd6e12008-01-22 20:41:07 +01001012const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 .start = c_start,
1014 .next = c_next,
1015 .stop = c_stop,
1016 .show = c_show
1017};