blob: 621acad8ea43c274b948c275c9de46177a42542e [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"
Linus Walleijbc581772009-09-15 17:30:37 +010048#include "tcm.h"
Ben Dooks0fc1c832006-03-15 23:17:30 +000049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#ifndef MEM_SIZE
51#define MEM_SIZE (16*1024*1024)
52#endif
53
54#if defined(CONFIG_FPE_NWFPE) || defined(CONFIG_FPE_FASTFPE)
55char fpe_type[8];
56
57static int __init fpe_setup(char *line)
58{
59 memcpy(fpe_type, line, 8);
60 return 1;
61}
62
63__setup("fpe=", fpe_setup);
64#endif
65
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040066extern void paging_init(struct machine_desc *desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067extern void reboot_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69unsigned int processor_id;
Krzysztof Halasac18f6582007-12-18 03:53:27 +010070EXPORT_SYMBOL(processor_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071unsigned int __machine_arch_type;
72EXPORT_SYMBOL(__machine_arch_type);
Russell Kingc0e95872008-09-25 15:35:28 +010073unsigned int cacheid;
74EXPORT_SYMBOL(cacheid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Bill Gatliff9d20fdd2007-05-31 22:02:22 +010076unsigned int __atags_pointer __initdata;
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078unsigned int system_rev;
79EXPORT_SYMBOL(system_rev);
80
81unsigned int system_serial_low;
82EXPORT_SYMBOL(system_serial_low);
83
84unsigned int system_serial_high;
85EXPORT_SYMBOL(system_serial_high);
86
87unsigned int elf_hwcap;
88EXPORT_SYMBOL(elf_hwcap);
89
90
91#ifdef MULTI_CPU
92struct processor processor;
93#endif
94#ifdef MULTI_TLB
95struct cpu_tlb_fns cpu_tlb;
96#endif
97#ifdef MULTI_USER
98struct cpu_user_fns cpu_user;
99#endif
100#ifdef MULTI_CACHE
101struct cpu_cache_fns cpu_cache;
102#endif
Catalin Marinas953233d2007-02-05 14:48:08 +0100103#ifdef CONFIG_OUTER_CACHE
104struct outer_cache_fns outer_cache;
Santosh Shilimkar6c09f092010-02-16 07:57:43 +0100105EXPORT_SYMBOL(outer_cache);
Catalin Marinas953233d2007-02-05 14:48:08 +0100106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Russell Kingccea7a12005-05-31 22:22:32 +0100108struct stack {
109 u32 irq[3];
110 u32 abt[3];
111 u32 und[3];
112} ____cacheline_aligned;
113
114static struct stack stacks[NR_CPUS];
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116char elf_platform[ELF_PLATFORM_SIZE];
117EXPORT_SYMBOL(elf_platform);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static const char *cpu_name;
120static const char *machine_name;
Alon Bar-Levcd818992007-02-12 00:54:06 -0800121static char __initdata command_line[COMMAND_LINE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE;
124static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } };
125#define ENDIANNESS ((char)endian_test.l)
126
127DEFINE_PER_CPU(struct cpuinfo_arm, cpu_data);
128
129/*
130 * Standard memory resources
131 */
132static struct resource mem_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700133 {
134 .name = "Video RAM",
135 .start = 0,
136 .end = 0,
137 .flags = IORESOURCE_MEM
138 },
139 {
140 .name = "Kernel text",
141 .start = 0,
142 .end = 0,
143 .flags = IORESOURCE_MEM
144 },
145 {
146 .name = "Kernel data",
147 .start = 0,
148 .end = 0,
149 .flags = IORESOURCE_MEM
150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
153#define video_ram mem_res[0]
154#define kernel_code mem_res[1]
155#define kernel_data mem_res[2]
156
157static struct resource io_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700158 {
159 .name = "reserved",
160 .start = 0x3bc,
161 .end = 0x3be,
162 .flags = IORESOURCE_IO | IORESOURCE_BUSY
163 },
164 {
165 .name = "reserved",
166 .start = 0x378,
167 .end = 0x37f,
168 .flags = IORESOURCE_IO | IORESOURCE_BUSY
169 },
170 {
171 .name = "reserved",
172 .start = 0x278,
173 .end = 0x27f,
174 .flags = IORESOURCE_IO | IORESOURCE_BUSY
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176};
177
178#define lp0 io_res[0]
179#define lp1 io_res[1]
180#define lp2 io_res[2]
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static const char *proc_arch[] = {
183 "undefined/unknown",
184 "3",
185 "4",
186 "4T",
187 "5",
188 "5T",
189 "5TE",
190 "5TEJ",
191 "6TEJ",
Catalin Marinas6b090a22006-01-12 16:28:16 +0000192 "7",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 "?(11)",
194 "?(12)",
195 "?(13)",
196 "?(14)",
197 "?(15)",
198 "?(16)",
199 "?(17)",
200};
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202int cpu_architecture(void)
203{
204 int cpu_arch;
205
Russell King0ba8b9b2008-08-10 18:08:10 +0100206 if ((read_cpuid_id() & 0x0008f000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 cpu_arch = CPU_ARCH_UNKNOWN;
Russell King0ba8b9b2008-08-10 18:08:10 +0100208 } else if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
209 cpu_arch = (read_cpuid_id() & (1 << 23)) ? CPU_ARCH_ARMv4T : CPU_ARCH_ARMv3;
210 } else if ((read_cpuid_id() & 0x00080000) == 0x00000000) {
211 cpu_arch = (read_cpuid_id() >> 16) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (cpu_arch)
213 cpu_arch += CPU_ARCH_ARMv3;
Russell King0ba8b9b2008-08-10 18:08:10 +0100214 } else if ((read_cpuid_id() & 0x000f0000) == 0x000f0000) {
Catalin Marinas180005c2007-09-25 16:49:45 +0100215 unsigned int mmfr0;
216
217 /* Revised CPUID format. Read the Memory Model Feature
218 * Register 0 and check for VMSAv7 or PMSAv7 */
219 asm("mrc p15, 0, %0, c0, c1, 4"
220 : "=r" (mmfr0));
221 if ((mmfr0 & 0x0000000f) == 0x00000003 ||
222 (mmfr0 & 0x000000f0) == 0x00000030)
223 cpu_arch = CPU_ARCH_ARMv7;
224 else if ((mmfr0 & 0x0000000f) == 0x00000002 ||
225 (mmfr0 & 0x000000f0) == 0x00000020)
226 cpu_arch = CPU_ARCH_ARMv6;
227 else
228 cpu_arch = CPU_ARCH_UNKNOWN;
229 } else
230 cpu_arch = CPU_ARCH_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 return cpu_arch;
233}
234
Russell Kingc0e95872008-09-25 15:35:28 +0100235static void __init cacheid_init(void)
236{
237 unsigned int cachetype = read_cpuid_cachetype();
238 unsigned int arch = cpu_architecture();
239
Catalin Marinasb57ee992009-03-03 11:44:12 +0100240 if (arch >= CPU_ARCH_ARMv6) {
241 if ((cachetype & (7 << 29)) == 4 << 29) {
242 /* ARMv7 register format */
243 cacheid = CACHEID_VIPT_NONALIASING;
244 if ((cachetype & (3 << 14)) == 1 << 14)
245 cacheid |= CACHEID_ASID_TAGGED;
246 } else if (cachetype & (1 << 23))
Russell Kingc0e95872008-09-25 15:35:28 +0100247 cacheid = CACHEID_VIPT_ALIASING;
248 else
249 cacheid = CACHEID_VIPT_NONALIASING;
250 } else {
251 cacheid = CACHEID_VIVT;
252 }
Russell King2b4ae1f2008-09-25 15:39:20 +0100253
254 printk("CPU: %s data cache, %s instruction cache\n",
255 cache_is_vivt() ? "VIVT" :
256 cache_is_vipt_aliasing() ? "VIPT aliasing" :
257 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown",
258 cache_is_vivt() ? "VIVT" :
259 icache_is_vivt_asid_tagged() ? "VIVT ASID tagged" :
260 cache_is_vipt_aliasing() ? "VIPT aliasing" :
261 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown");
Russell Kingc0e95872008-09-25 15:35:28 +0100262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/*
265 * These functions re-use the assembly code in head.S, which
266 * already provide the required functionality.
267 */
Russell King0f44ba12006-02-24 21:04:56 +0000268extern struct proc_info_list *lookup_processor_type(unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269extern struct machine_desc *lookup_machine_type(unsigned int);
270
271static void __init setup_processor(void)
272{
273 struct proc_info_list *list;
274
275 /*
276 * locate processor in the list of supported processor
277 * types. The linker builds this table for us from the
278 * entries in arch/arm/mm/proc-*.S
279 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100280 list = lookup_processor_type(read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (!list) {
282 printk("CPU configuration botched (ID %08x), unable "
Russell King0ba8b9b2008-08-10 18:08:10 +0100283 "to continue.\n", read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 while (1);
285 }
286
287 cpu_name = list->cpu_name;
288
289#ifdef MULTI_CPU
290 processor = *list->proc;
291#endif
292#ifdef MULTI_TLB
293 cpu_tlb = *list->tlb;
294#endif
295#ifdef MULTI_USER
296 cpu_user = *list->user;
297#endif
298#ifdef MULTI_CACHE
299 cpu_cache = *list->cache;
300#endif
301
Russell King4e190252006-07-03 13:29:38 +0100302 printk("CPU: %s [%08x] revision %d (ARMv%s), cr=%08lx\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100303 cpu_name, read_cpuid_id(), read_cpuid_id() & 15,
Russell King264edb32006-06-29 15:03:09 +0100304 proc_arch[cpu_architecture()], cr_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700306 sprintf(init_utsname()->machine, "%s%c", list->arch_name, ENDIANNESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 sprintf(elf_platform, "%s%c", list->elf_name, ENDIANNESS);
308 elf_hwcap = list->elf_hwcap;
Catalin Marinasadeff422006-04-10 21:32:35 +0100309#ifndef CONFIG_ARM_THUMB
310 elf_hwcap &= ~HWCAP_THUMB;
311#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Russell Kingc0e95872008-09-25 15:35:28 +0100313 cacheid_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 cpu_proc_init();
315}
316
Russell Kingccea7a12005-05-31 22:22:32 +0100317/*
318 * cpu_init - initialise one CPU.
319 *
Russell King90f1e082008-09-25 14:45:02 +0100320 * cpu_init sets up the per-CPU stacks.
Russell Kingccea7a12005-05-31 22:22:32 +0100321 */
Russell King36c5ed22005-06-19 18:39:33 +0100322void cpu_init(void)
Russell Kingccea7a12005-05-31 22:22:32 +0100323{
324 unsigned int cpu = smp_processor_id();
325 struct stack *stk = &stacks[cpu];
326
327 if (cpu >= NR_CPUS) {
328 printk(KERN_CRIT "CPU%u: bad primary CPU number\n", cpu);
329 BUG();
330 }
331
Russell Kingccea7a12005-05-31 22:22:32 +0100332 /*
Catalin Marinasb86040a2009-07-24 12:32:54 +0100333 * Define the placement constraint for the inline asm directive below.
334 * In Thumb-2, msr with an immediate value is not allowed.
335 */
336#ifdef CONFIG_THUMB2_KERNEL
337#define PLC "r"
338#else
339#define PLC "I"
340#endif
341
342 /*
Russell Kingccea7a12005-05-31 22:22:32 +0100343 * setup stacks for re-entrant exception handlers
344 */
345 __asm__ (
346 "msr cpsr_c, %1\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100347 "add r14, %0, %2\n\t"
348 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100349 "msr cpsr_c, %3\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100350 "add r14, %0, %4\n\t"
351 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100352 "msr cpsr_c, %5\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100353 "add r14, %0, %6\n\t"
354 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100355 "msr cpsr_c, %7"
356 :
357 : "r" (stk),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100358 PLC (PSR_F_BIT | PSR_I_BIT | IRQ_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100359 "I" (offsetof(struct stack, irq[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100360 PLC (PSR_F_BIT | PSR_I_BIT | ABT_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100361 "I" (offsetof(struct stack, abt[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100362 PLC (PSR_F_BIT | PSR_I_BIT | UND_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100363 "I" (offsetof(struct stack, und[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100364 PLC (PSR_F_BIT | PSR_I_BIT | SVC_MODE)
Catalin Marinasaaaa3f92005-06-29 15:34:39 +0100365 : "r14");
Russell Kingccea7a12005-05-31 22:22:32 +0100366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static struct machine_desc * __init setup_machine(unsigned int nr)
369{
370 struct machine_desc *list;
371
372 /*
373 * locate machine in the list of supported machines.
374 */
375 list = lookup_machine_type(nr);
376 if (!list) {
377 printk("Machine configuration botched (nr %d), unable "
378 "to continue.\n", nr);
379 while (1);
380 }
381
382 printk("Machine: %s\n", list->name);
383
384 return list;
385}
386
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400387static int __init arm_add_memory(unsigned long start, unsigned long size)
Russell King3a669412005-06-22 21:43:10 +0100388{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400389 struct membank *bank = &meminfo.bank[meminfo.nr_banks];
390
391 if (meminfo.nr_banks >= NR_BANKS) {
392 printk(KERN_CRIT "NR_BANKS too low, "
393 "ignoring memory at %#lx\n", start);
394 return -EINVAL;
395 }
Russell King05f96ef2006-11-30 20:44:49 +0000396
Russell King3a669412005-06-22 21:43:10 +0100397 /*
398 * Ensure that start/size are aligned to a page boundary.
399 * Size is appropriately rounded down, start is rounded up.
400 */
401 size -= start & ~PAGE_MASK;
Russell King05f96ef2006-11-30 20:44:49 +0000402 bank->start = PAGE_ALIGN(start);
403 bank->size = size & PAGE_MASK;
404 bank->node = PHYS_TO_NID(start);
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400405
406 /*
407 * Check whether this memory region has non-zero size or
408 * invalid node number.
409 */
410 if (bank->size == 0 || bank->node >= MAX_NUMNODES)
411 return -EINVAL;
412
413 meminfo.nr_banks++;
414 return 0;
Russell King3a669412005-06-22 21:43:10 +0100415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/*
418 * Pick out the memory size. We look for mem=size@start,
419 * where start and size are "size[KkMm]"
420 */
421static void __init early_mem(char **p)
422{
423 static int usermem __initdata = 0;
424 unsigned long size, start;
425
426 /*
427 * If the user specifies memory size, we
428 * blow away any automatically generated
429 * size.
430 */
431 if (usermem == 0) {
432 usermem = 1;
433 meminfo.nr_banks = 0;
434 }
435
436 start = PHYS_OFFSET;
437 size = memparse(*p, p);
438 if (**p == '@')
439 start = memparse(*p + 1, p);
440
Andrew Morton1c97b732006-04-20 21:41:18 +0100441 arm_add_memory(start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443__early_param("mem=", early_mem);
444
445/*
446 * Initial parsing of the command line.
447 */
448static void __init parse_cmdline(char **cmdline_p, char *from)
449{
450 char c = ' ', *to = command_line;
451 int len = 0;
452
453 for (;;) {
454 if (c == ' ') {
455 extern struct early_params __early_begin, __early_end;
456 struct early_params *p;
457
458 for (p = &__early_begin; p < &__early_end; p++) {
Russell King09d9bae2008-09-05 14:08:44 +0100459 int arglen = strlen(p->arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Russell King09d9bae2008-09-05 14:08:44 +0100461 if (memcmp(from, p->arg, arglen) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (to != command_line)
463 to -= 1;
Russell King09d9bae2008-09-05 14:08:44 +0100464 from += arglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 p->fn(&from);
466
467 while (*from != ' ' && *from != '\0')
468 from++;
469 break;
470 }
471 }
472 }
473 c = *from++;
474 if (!c)
475 break;
476 if (COMMAND_LINE_SIZE <= ++len)
477 break;
478 *to++ = c;
479 }
480 *to = '\0';
481 *cmdline_p = command_line;
482}
483
484static void __init
485setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
486{
487#ifdef CONFIG_BLK_DEV_RAM
488 extern int rd_size, rd_image_start, rd_prompt, rd_doload;
489
490 rd_image_start = image_start;
491 rd_prompt = prompt;
492 rd_doload = doload;
493
494 if (rd_sz)
495 rd_size = rd_sz;
496#endif
497}
498
499static void __init
500request_standard_resources(struct meminfo *mi, struct machine_desc *mdesc)
501{
502 struct resource *res;
503 int i;
504
Russell King37efe642008-12-01 11:53:07 +0000505 kernel_code.start = virt_to_phys(_text);
506 kernel_code.end = virt_to_phys(_etext - 1);
507 kernel_data.start = virt_to_phys(_data);
508 kernel_data.end = virt_to_phys(_end - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 for (i = 0; i < mi->nr_banks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (mi->bank[i].size == 0)
512 continue;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 res = alloc_bootmem_low(sizeof(*res));
515 res->name = "System RAM";
Nicolas Pitre3319f5e2008-10-02 03:29:22 +0100516 res->start = mi->bank[i].start;
517 res->end = mi->bank[i].start + mi->bank[i].size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
519
520 request_resource(&iomem_resource, res);
521
522 if (kernel_code.start >= res->start &&
523 kernel_code.end <= res->end)
524 request_resource(res, &kernel_code);
525 if (kernel_data.start >= res->start &&
526 kernel_data.end <= res->end)
527 request_resource(res, &kernel_data);
528 }
529
530 if (mdesc->video_start) {
531 video_ram.start = mdesc->video_start;
532 video_ram.end = mdesc->video_end;
533 request_resource(&iomem_resource, &video_ram);
534 }
535
536 /*
537 * Some machines don't have the possibility of ever
538 * possessing lp0, lp1 or lp2
539 */
540 if (mdesc->reserve_lp0)
541 request_resource(&ioport_resource, &lp0);
542 if (mdesc->reserve_lp1)
543 request_resource(&ioport_resource, &lp1);
544 if (mdesc->reserve_lp2)
545 request_resource(&ioport_resource, &lp2);
546}
547
548/*
549 * Tag parsing.
550 *
551 * This is the new way of passing data to the kernel at boot time. Rather
552 * than passing a fixed inflexible structure to the kernel, we pass a list
553 * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE
554 * tag for the list to be recognised (to distinguish the tagged list from
555 * a param_struct). The list is terminated with a zero-length tag (this tag
556 * is not parsed in any way).
557 */
558static int __init parse_tag_core(const struct tag *tag)
559{
560 if (tag->hdr.size > 2) {
561 if ((tag->u.core.flags & 1) == 0)
562 root_mountflags &= ~MS_RDONLY;
563 ROOT_DEV = old_decode_dev(tag->u.core.rootdev);
564 }
565 return 0;
566}
567
568__tagtable(ATAG_CORE, parse_tag_core);
569
570static int __init parse_tag_mem32(const struct tag *tag)
571{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400572 return arm_add_memory(tag->u.mem.start, tag->u.mem.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575__tagtable(ATAG_MEM, parse_tag_mem32);
576
577#if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
578struct screen_info screen_info = {
579 .orig_video_lines = 30,
580 .orig_video_cols = 80,
581 .orig_video_mode = 0,
582 .orig_video_ega_bx = 0,
583 .orig_video_isVGA = 1,
584 .orig_video_points = 8
585};
586
587static int __init parse_tag_videotext(const struct tag *tag)
588{
589 screen_info.orig_x = tag->u.videotext.x;
590 screen_info.orig_y = tag->u.videotext.y;
591 screen_info.orig_video_page = tag->u.videotext.video_page;
592 screen_info.orig_video_mode = tag->u.videotext.video_mode;
593 screen_info.orig_video_cols = tag->u.videotext.video_cols;
594 screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx;
595 screen_info.orig_video_lines = tag->u.videotext.video_lines;
596 screen_info.orig_video_isVGA = tag->u.videotext.video_isvga;
597 screen_info.orig_video_points = tag->u.videotext.video_points;
598 return 0;
599}
600
601__tagtable(ATAG_VIDEOTEXT, parse_tag_videotext);
602#endif
603
604static int __init parse_tag_ramdisk(const struct tag *tag)
605{
606 setup_ramdisk((tag->u.ramdisk.flags & 1) == 0,
607 (tag->u.ramdisk.flags & 2) == 0,
608 tag->u.ramdisk.start, tag->u.ramdisk.size);
609 return 0;
610}
611
612__tagtable(ATAG_RAMDISK, parse_tag_ramdisk);
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614static int __init parse_tag_serialnr(const struct tag *tag)
615{
616 system_serial_low = tag->u.serialnr.low;
617 system_serial_high = tag->u.serialnr.high;
618 return 0;
619}
620
621__tagtable(ATAG_SERIAL, parse_tag_serialnr);
622
623static int __init parse_tag_revision(const struct tag *tag)
624{
625 system_rev = tag->u.revision.rev;
626 return 0;
627}
628
629__tagtable(ATAG_REVISION, parse_tag_revision);
630
631static int __init parse_tag_cmdline(const struct tag *tag)
632{
633 strlcpy(default_command_line, tag->u.cmdline.cmdline, COMMAND_LINE_SIZE);
634 return 0;
635}
636
637__tagtable(ATAG_CMDLINE, parse_tag_cmdline);
638
639/*
640 * Scan the tag table for this tag, and call its parse function.
641 * The tag table is built by the linker from all the __tagtable
642 * declarations.
643 */
644static int __init parse_tag(const struct tag *tag)
645{
646 extern struct tagtable __tagtable_begin, __tagtable_end;
647 struct tagtable *t;
648
649 for (t = &__tagtable_begin; t < &__tagtable_end; t++)
650 if (tag->hdr.tag == t->tag) {
651 t->parse(tag);
652 break;
653 }
654
655 return t < &__tagtable_end;
656}
657
658/*
659 * Parse all tags in the list, checking both the global and architecture
660 * specific tag tables.
661 */
662static void __init parse_tags(const struct tag *t)
663{
664 for (; t->hdr.size; t = tag_next(t))
665 if (!parse_tag(t))
666 printk(KERN_WARNING
667 "Ignoring unrecognised tag 0x%08x\n",
668 t->hdr.tag);
669}
670
671/*
672 * This holds our defaults.
673 */
674static struct init_tags {
675 struct tag_header hdr1;
676 struct tag_core core;
677 struct tag_header hdr2;
678 struct tag_mem32 mem;
679 struct tag_header hdr3;
680} init_tags __initdata = {
681 { tag_size(tag_core), ATAG_CORE },
682 { 1, PAGE_SIZE, 0xff },
683 { tag_size(tag_mem32), ATAG_MEM },
684 { MEM_SIZE, PHYS_OFFSET },
685 { 0, ATAG_NONE }
686};
687
688static void (*init_machine)(void) __initdata;
689
690static int __init customize_machine(void)
691{
692 /* customizes platform devices, or adds new ones */
693 if (init_machine)
694 init_machine();
695 return 0;
696}
697arch_initcall(customize_machine);
698
699void __init setup_arch(char **cmdline_p)
700{
701 struct tag *tags = (struct tag *)&init_tags;
702 struct machine_desc *mdesc;
703 char *from = default_command_line;
704
Catalin Marinasbff595c2009-02-16 11:41:36 +0100705 unwind_init();
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 setup_processor();
708 mdesc = setup_machine(machine_arch_type);
709 machine_name = mdesc->name;
710
711 if (mdesc->soft_reboot)
712 reboot_setup("s");
713
Bill Gatliff9d20fdd2007-05-31 22:02:22 +0100714 if (__atags_pointer)
715 tags = phys_to_virt(__atags_pointer);
716 else if (mdesc->boot_params)
Russell Kingf9bd6ea2005-07-04 10:43:36 +0100717 tags = phys_to_virt(mdesc->boot_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 /*
720 * If we have the old style parameters, convert them to
721 * a tag list.
722 */
723 if (tags->hdr.tag != ATAG_CORE)
724 convert_to_tag_list(tags);
725 if (tags->hdr.tag != ATAG_CORE)
726 tags = (struct tag *)&init_tags;
727
728 if (mdesc->fixup)
729 mdesc->fixup(mdesc, tags, &from, &meminfo);
730
731 if (tags->hdr.tag == ATAG_CORE) {
732 if (meminfo.nr_banks != 0)
733 squash_mem_tags(tags);
Richard Purdie4cd9d6f2008-01-02 00:56:46 +0100734 save_atags(tags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 parse_tags(tags);
736 }
737
Russell King37efe642008-12-01 11:53:07 +0000738 init_mm.start_code = (unsigned long) _text;
739 init_mm.end_code = (unsigned long) _etext;
740 init_mm.end_data = (unsigned long) _edata;
741 init_mm.brk = (unsigned long) _end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Alon Bar-Levcd818992007-02-12 00:54:06 -0800743 memcpy(boot_command_line, from, COMMAND_LINE_SIZE);
744 boot_command_line[COMMAND_LINE_SIZE-1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 parse_cmdline(cmdline_p, from);
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400746 paging_init(mdesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 request_standard_resources(&meminfo, mdesc);
748
Russell King7bbb7942006-02-16 11:08:09 +0000749#ifdef CONFIG_SMP
750 smp_init_cpus();
751#endif
752
Russell Kingccea7a12005-05-31 22:22:32 +0100753 cpu_init();
Linus Walleijbc581772009-09-15 17:30:37 +0100754 tcm_init();
Russell Kingccea7a12005-05-31 22:22:32 +0100755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 /*
757 * Set up various architecture-specific pointers
758 */
759 init_arch_irq = mdesc->init_irq;
760 system_timer = mdesc->timer;
761 init_machine = mdesc->init_machine;
762
763#ifdef CONFIG_VT
764#if defined(CONFIG_VGA_CONSOLE)
765 conswitchp = &vga_con;
766#elif defined(CONFIG_DUMMY_CONSOLE)
767 conswitchp = &dummy_con;
768#endif
769#endif
Jason Wessel5cbad0e2008-02-20 13:33:40 -0600770 early_trap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773
774static int __init topology_init(void)
775{
776 int cpu;
777
Russell King66fb8bd2007-03-13 09:54:21 +0000778 for_each_possible_cpu(cpu) {
779 struct cpuinfo_arm *cpuinfo = &per_cpu(cpu_data, cpu);
780 cpuinfo->cpu.hotpluggable = 1;
781 register_cpu(&cpuinfo->cpu, cpu);
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 return 0;
785}
786
787subsys_initcall(topology_init);
788
789static const char *hwcap_str[] = {
790 "swp",
791 "half",
792 "thumb",
793 "26bit",
794 "fastmult",
795 "fpa",
796 "vfp",
797 "edsp",
798 "java",
Paul Gortmaker8f7f9432006-10-27 05:13:19 +0100799 "iwmmxt",
Lennert Buytenhek99e4a6d2006-12-18 00:59:10 +0100800 "crunch",
Catalin Marinas4369ae12008-11-06 13:23:06 +0000801 "thumbee",
Catalin Marinas2bedbdf2008-11-06 13:23:07 +0000802 "neon",
Catalin Marinas7279dc32009-02-11 13:13:56 +0100803 "vfpv3",
804 "vfpv3d16",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 NULL
806};
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808static int c_show(struct seq_file *m, void *v)
809{
810 int i;
811
812 seq_printf(m, "Processor\t: %s rev %d (%s)\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100813 cpu_name, read_cpuid_id() & 15, elf_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815#if defined(CONFIG_SMP)
816 for_each_online_cpu(i) {
Russell King15559722005-11-06 21:41:08 +0000817 /*
818 * glibc reads /proc/cpuinfo to determine the number of
819 * online processors, looking for lines beginning with
820 * "processor". Give glibc what it expects.
821 */
822 seq_printf(m, "processor\t: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n",
824 per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ),
825 (per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100);
826 }
827#else /* CONFIG_SMP */
828 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
829 loops_per_jiffy / (500000/HZ),
830 (loops_per_jiffy / (5000/HZ)) % 100);
831#endif
832
833 /* dump out the processor features */
834 seq_puts(m, "Features\t: ");
835
836 for (i = 0; hwcap_str[i]; i++)
837 if (elf_hwcap & (1 << i))
838 seq_printf(m, "%s ", hwcap_str[i]);
839
Russell King0ba8b9b2008-08-10 18:08:10 +0100840 seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 seq_printf(m, "CPU architecture: %s\n", proc_arch[cpu_architecture()]);
842
Russell King0ba8b9b2008-08-10 18:08:10 +0100843 if ((read_cpuid_id() & 0x0008f000) == 0x00000000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /* pre-ARM7 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100845 seq_printf(m, "CPU part\t: %07x\n", read_cpuid_id() >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 } else {
Russell King0ba8b9b2008-08-10 18:08:10 +0100847 if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /* ARM7 */
849 seq_printf(m, "CPU variant\t: 0x%02x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100850 (read_cpuid_id() >> 16) & 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 } else {
852 /* post-ARM7 */
853 seq_printf(m, "CPU variant\t: 0x%x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100854 (read_cpuid_id() >> 20) & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856 seq_printf(m, "CPU part\t: 0x%03x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100857 (read_cpuid_id() >> 4) & 0xfff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Russell King0ba8b9b2008-08-10 18:08:10 +0100859 seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 seq_puts(m, "\n");
862
863 seq_printf(m, "Hardware\t: %s\n", machine_name);
864 seq_printf(m, "Revision\t: %04x\n", system_rev);
865 seq_printf(m, "Serial\t\t: %08x%08x\n",
866 system_serial_high, system_serial_low);
867
868 return 0;
869}
870
871static void *c_start(struct seq_file *m, loff_t *pos)
872{
873 return *pos < 1 ? (void *)1 : NULL;
874}
875
876static void *c_next(struct seq_file *m, void *v, loff_t *pos)
877{
878 ++*pos;
879 return NULL;
880}
881
882static void c_stop(struct seq_file *m, void *v)
883{
884}
885
Jan Engelhardt2ffd6e12008-01-22 20:41:07 +0100886const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 .start = c_start,
888 .next = c_next,
889 .stop = c_stop,
890 .show = c_show
891};