blob: 6ce80106316e538fbec5e07258c4ff8b0a2a0294 [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>
Russell Kingf00ec482010-09-04 10:47:48 +010039#include <asm/smp_plat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/mach-types.h>
41#include <asm/cacheflush.h>
Russell King46097c72008-08-10 18:10:19 +010042#include <asm/cachetype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/tlbflush.h>
44
45#include <asm/mach/arch.h>
46#include <asm/mach/irq.h>
47#include <asm/mach/time.h>
Jason Wessel5cbad0e2008-02-20 13:33:40 -060048#include <asm/traps.h>
Catalin Marinasbff595c2009-02-16 11:41:36 +010049#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Uwe Kleine-König73a65b32010-01-19 10:13:14 +010051#if defined(CONFIG_DEPRECATED_PARAM_STRUCT)
Ben Dooks0fc1c832006-03-15 23:17:30 +000052#include "compat.h"
Uwe Kleine-König73a65b32010-01-19 10:13:14 +010053#endif
Richard Purdie4cd9d6f2008-01-02 00:56:46 +010054#include "atags.h"
Linus Walleijbc581772009-09-15 17:30:37 +010055#include "tcm.h"
Ben Dooks0fc1c832006-03-15 23:17:30 +000056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#ifndef MEM_SIZE
58#define MEM_SIZE (16*1024*1024)
59#endif
60
61#if defined(CONFIG_FPE_NWFPE) || defined(CONFIG_FPE_FASTFPE)
62char fpe_type[8];
63
64static int __init fpe_setup(char *line)
65{
66 memcpy(fpe_type, line, 8);
67 return 1;
68}
69
70__setup("fpe=", fpe_setup);
71#endif
72
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040073extern void paging_init(struct machine_desc *desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074extern void reboot_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76unsigned int processor_id;
Krzysztof Halasac18f6582007-12-18 03:53:27 +010077EXPORT_SYMBOL(processor_id);
Russell King0385ebc2010-12-04 17:45:55 +000078unsigned int __machine_arch_type __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079EXPORT_SYMBOL(__machine_arch_type);
Russell King0385ebc2010-12-04 17:45:55 +000080unsigned int cacheid __read_mostly;
Russell Kingc0e95872008-09-25 15:35:28 +010081EXPORT_SYMBOL(cacheid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Bill Gatliff9d20fdd2007-05-31 22:02:22 +010083unsigned int __atags_pointer __initdata;
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085unsigned int system_rev;
86EXPORT_SYMBOL(system_rev);
87
88unsigned int system_serial_low;
89EXPORT_SYMBOL(system_serial_low);
90
91unsigned int system_serial_high;
92EXPORT_SYMBOL(system_serial_high);
93
Russell King0385ebc2010-12-04 17:45:55 +000094unsigned int elf_hwcap __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095EXPORT_SYMBOL(elf_hwcap);
96
97
98#ifdef MULTI_CPU
Russell King0385ebc2010-12-04 17:45:55 +000099struct processor processor __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif
101#ifdef MULTI_TLB
Russell King0385ebc2010-12-04 17:45:55 +0000102struct cpu_tlb_fns cpu_tlb __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif
104#ifdef MULTI_USER
Russell King0385ebc2010-12-04 17:45:55 +0000105struct cpu_user_fns cpu_user __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#endif
107#ifdef MULTI_CACHE
Russell King0385ebc2010-12-04 17:45:55 +0000108struct cpu_cache_fns cpu_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif
Catalin Marinas953233d2007-02-05 14:48:08 +0100110#ifdef CONFIG_OUTER_CACHE
Russell King0385ebc2010-12-04 17:45:55 +0000111struct outer_cache_fns outer_cache __read_mostly;
Santosh Shilimkar6c09f092010-02-16 07:57:43 +0100112EXPORT_SYMBOL(outer_cache);
Catalin Marinas953233d2007-02-05 14:48:08 +0100113#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Russell Kingccea7a12005-05-31 22:22:32 +0100115struct stack {
116 u32 irq[3];
117 u32 abt[3];
118 u32 und[3];
119} ____cacheline_aligned;
120
121static struct stack stacks[NR_CPUS];
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123char elf_platform[ELF_PLATFORM_SIZE];
124EXPORT_SYMBOL(elf_platform);
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static const char *cpu_name;
127static const char *machine_name;
Jeremy Kerr48ab7e02010-01-27 01:13:31 +0100128static char __initdata cmd_line[COMMAND_LINE_SIZE];
Russell King8ff14432010-12-20 10:18:36 +0000129struct machine_desc *machine_desc __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE;
132static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } };
133#define ENDIANNESS ((char)endian_test.l)
134
135DEFINE_PER_CPU(struct cpuinfo_arm, cpu_data);
136
137/*
138 * Standard memory resources
139 */
140static struct resource mem_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700141 {
142 .name = "Video RAM",
143 .start = 0,
144 .end = 0,
145 .flags = IORESOURCE_MEM
146 },
147 {
148 .name = "Kernel text",
149 .start = 0,
150 .end = 0,
151 .flags = IORESOURCE_MEM
152 },
153 {
154 .name = "Kernel data",
155 .start = 0,
156 .end = 0,
157 .flags = IORESOURCE_MEM
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
161#define video_ram mem_res[0]
162#define kernel_code mem_res[1]
163#define kernel_data mem_res[2]
164
165static struct resource io_res[] = {
Greg Kroah-Hartman740e5182006-06-12 14:47:06 -0700166 {
167 .name = "reserved",
168 .start = 0x3bc,
169 .end = 0x3be,
170 .flags = IORESOURCE_IO | IORESOURCE_BUSY
171 },
172 {
173 .name = "reserved",
174 .start = 0x378,
175 .end = 0x37f,
176 .flags = IORESOURCE_IO | IORESOURCE_BUSY
177 },
178 {
179 .name = "reserved",
180 .start = 0x278,
181 .end = 0x27f,
182 .flags = IORESOURCE_IO | IORESOURCE_BUSY
183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
186#define lp0 io_res[0]
187#define lp1 io_res[1]
188#define lp2 io_res[2]
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static const char *proc_arch[] = {
191 "undefined/unknown",
192 "3",
193 "4",
194 "4T",
195 "5",
196 "5T",
197 "5TE",
198 "5TEJ",
199 "6TEJ",
Catalin Marinas6b090a22006-01-12 16:28:16 +0000200 "7",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 "?(11)",
202 "?(12)",
203 "?(13)",
204 "?(14)",
205 "?(15)",
206 "?(16)",
207 "?(17)",
208};
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210int cpu_architecture(void)
211{
212 int cpu_arch;
213
Russell King0ba8b9b2008-08-10 18:08:10 +0100214 if ((read_cpuid_id() & 0x0008f000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 cpu_arch = CPU_ARCH_UNKNOWN;
Russell King0ba8b9b2008-08-10 18:08:10 +0100216 } else if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
217 cpu_arch = (read_cpuid_id() & (1 << 23)) ? CPU_ARCH_ARMv4T : CPU_ARCH_ARMv3;
218 } else if ((read_cpuid_id() & 0x00080000) == 0x00000000) {
219 cpu_arch = (read_cpuid_id() >> 16) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (cpu_arch)
221 cpu_arch += CPU_ARCH_ARMv3;
Russell King0ba8b9b2008-08-10 18:08:10 +0100222 } else if ((read_cpuid_id() & 0x000f0000) == 0x000f0000) {
Catalin Marinas180005c2007-09-25 16:49:45 +0100223 unsigned int mmfr0;
224
225 /* Revised CPUID format. Read the Memory Model Feature
226 * Register 0 and check for VMSAv7 or PMSAv7 */
227 asm("mrc p15, 0, %0, c0, c1, 4"
228 : "=r" (mmfr0));
229 if ((mmfr0 & 0x0000000f) == 0x00000003 ||
230 (mmfr0 & 0x000000f0) == 0x00000030)
231 cpu_arch = CPU_ARCH_ARMv7;
232 else if ((mmfr0 & 0x0000000f) == 0x00000002 ||
233 (mmfr0 & 0x000000f0) == 0x00000020)
234 cpu_arch = CPU_ARCH_ARMv6;
235 else
236 cpu_arch = CPU_ARCH_UNKNOWN;
237 } else
238 cpu_arch = CPU_ARCH_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 return cpu_arch;
241}
242
Will Deacon8925ec42010-09-13 16:18:30 +0100243static int cpu_has_aliasing_icache(unsigned int arch)
244{
245 int aliasing_icache;
246 unsigned int id_reg, num_sets, line_size;
247
248 /* arch specifies the register format */
249 switch (arch) {
250 case CPU_ARCH_ARMv7:
Linus Walleij5fb31a92010-10-06 11:07:28 +0100251 asm("mcr p15, 2, %0, c0, c0, 0 @ set CSSELR"
252 : /* No output operands */
Will Deacon8925ec42010-09-13 16:18:30 +0100253 : "r" (1));
Linus Walleij5fb31a92010-10-06 11:07:28 +0100254 isb();
255 asm("mrc p15, 1, %0, c0, c0, 0 @ read CCSIDR"
256 : "=r" (id_reg));
Will Deacon8925ec42010-09-13 16:18:30 +0100257 line_size = 4 << ((id_reg & 0x7) + 2);
258 num_sets = ((id_reg >> 13) & 0x7fff) + 1;
259 aliasing_icache = (line_size * num_sets) > PAGE_SIZE;
260 break;
261 case CPU_ARCH_ARMv6:
262 aliasing_icache = read_cpuid_cachetype() & (1 << 11);
263 break;
264 default:
265 /* I-cache aliases will be handled by D-cache aliasing code */
266 aliasing_icache = 0;
267 }
268
269 return aliasing_icache;
270}
271
Russell Kingc0e95872008-09-25 15:35:28 +0100272static void __init cacheid_init(void)
273{
274 unsigned int cachetype = read_cpuid_cachetype();
275 unsigned int arch = cpu_architecture();
276
Catalin Marinasb57ee992009-03-03 11:44:12 +0100277 if (arch >= CPU_ARCH_ARMv6) {
278 if ((cachetype & (7 << 29)) == 4 << 29) {
279 /* ARMv7 register format */
280 cacheid = CACHEID_VIPT_NONALIASING;
281 if ((cachetype & (3 << 14)) == 1 << 14)
282 cacheid |= CACHEID_ASID_TAGGED;
Will Deacon8925ec42010-09-13 16:18:30 +0100283 else if (cpu_has_aliasing_icache(CPU_ARCH_ARMv7))
284 cacheid |= CACHEID_VIPT_I_ALIASING;
285 } else if (cachetype & (1 << 23)) {
Russell Kingc0e95872008-09-25 15:35:28 +0100286 cacheid = CACHEID_VIPT_ALIASING;
Will Deacon8925ec42010-09-13 16:18:30 +0100287 } else {
Russell Kingc0e95872008-09-25 15:35:28 +0100288 cacheid = CACHEID_VIPT_NONALIASING;
Will Deacon8925ec42010-09-13 16:18:30 +0100289 if (cpu_has_aliasing_icache(CPU_ARCH_ARMv6))
290 cacheid |= CACHEID_VIPT_I_ALIASING;
291 }
Russell Kingc0e95872008-09-25 15:35:28 +0100292 } else {
293 cacheid = CACHEID_VIVT;
294 }
Russell King2b4ae1f2008-09-25 15:39:20 +0100295
296 printk("CPU: %s data cache, %s instruction cache\n",
297 cache_is_vivt() ? "VIVT" :
298 cache_is_vipt_aliasing() ? "VIPT aliasing" :
299 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown",
300 cache_is_vivt() ? "VIVT" :
301 icache_is_vivt_asid_tagged() ? "VIVT ASID tagged" :
Will Deacon8925ec42010-09-13 16:18:30 +0100302 icache_is_vipt_aliasing() ? "VIPT aliasing" :
Russell King2b4ae1f2008-09-25 15:39:20 +0100303 cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown");
Russell Kingc0e95872008-09-25 15:35:28 +0100304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*
307 * These functions re-use the assembly code in head.S, which
308 * already provide the required functionality.
309 */
Russell King0f44ba12006-02-24 21:04:56 +0000310extern struct proc_info_list *lookup_processor_type(unsigned int);
Russell King6fc31d52011-01-12 17:50:42 +0000311
312static void __init early_print(const char *str, ...)
313{
314 extern void printascii(const char *);
315 char buf[256];
316 va_list ap;
317
318 va_start(ap, str);
319 vsnprintf(buf, sizeof(buf), str, ap);
320 va_end(ap);
321
322#ifdef CONFIG_DEBUG_LL
323 printascii(buf);
324#endif
325 printk("%s", buf);
326}
327
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100328static void __init feat_v6_fixup(void)
329{
330 int id = read_cpuid_id();
331
332 if ((id & 0xff0f0000) != 0x41070000)
333 return;
334
335 /*
336 * HWCAP_TLS is available only on 1136 r1p0 and later,
337 * see also kuser_get_tls_init.
338 */
339 if ((((id >> 4) & 0xfff) == 0xb36) && (((id >> 20) & 3) == 0))
340 elf_hwcap &= ~HWCAP_TLS;
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static void __init setup_processor(void)
344{
345 struct proc_info_list *list;
346
347 /*
348 * locate processor in the list of supported processor
349 * types. The linker builds this table for us from the
350 * entries in arch/arm/mm/proc-*.S
351 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100352 list = lookup_processor_type(read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (!list) {
354 printk("CPU configuration botched (ID %08x), unable "
Russell King0ba8b9b2008-08-10 18:08:10 +0100355 "to continue.\n", read_cpuid_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 while (1);
357 }
358
359 cpu_name = list->cpu_name;
360
361#ifdef MULTI_CPU
362 processor = *list->proc;
363#endif
364#ifdef MULTI_TLB
365 cpu_tlb = *list->tlb;
366#endif
367#ifdef MULTI_USER
368 cpu_user = *list->user;
369#endif
370#ifdef MULTI_CACHE
371 cpu_cache = *list->cache;
372#endif
373
Russell King4e190252006-07-03 13:29:38 +0100374 printk("CPU: %s [%08x] revision %d (ARMv%s), cr=%08lx\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100375 cpu_name, read_cpuid_id(), read_cpuid_id() & 15,
Russell King264edb32006-06-29 15:03:09 +0100376 proc_arch[cpu_architecture()], cr_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700378 sprintf(init_utsname()->machine, "%s%c", list->arch_name, ENDIANNESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 sprintf(elf_platform, "%s%c", list->elf_name, ENDIANNESS);
380 elf_hwcap = list->elf_hwcap;
Catalin Marinasadeff422006-04-10 21:32:35 +0100381#ifndef CONFIG_ARM_THUMB
382 elf_hwcap &= ~HWCAP_THUMB;
383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100385 feat_v6_fixup();
386
Russell Kingc0e95872008-09-25 15:35:28 +0100387 cacheid_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 cpu_proc_init();
389}
390
Russell Kingccea7a12005-05-31 22:22:32 +0100391/*
392 * cpu_init - initialise one CPU.
393 *
Russell King90f1e082008-09-25 14:45:02 +0100394 * cpu_init sets up the per-CPU stacks.
Russell Kingccea7a12005-05-31 22:22:32 +0100395 */
Russell King36c5ed22005-06-19 18:39:33 +0100396void cpu_init(void)
Russell Kingccea7a12005-05-31 22:22:32 +0100397{
398 unsigned int cpu = smp_processor_id();
399 struct stack *stk = &stacks[cpu];
400
401 if (cpu >= NR_CPUS) {
402 printk(KERN_CRIT "CPU%u: bad primary CPU number\n", cpu);
403 BUG();
404 }
405
Russell Kingccea7a12005-05-31 22:22:32 +0100406 /*
Catalin Marinasb86040a2009-07-24 12:32:54 +0100407 * Define the placement constraint for the inline asm directive below.
408 * In Thumb-2, msr with an immediate value is not allowed.
409 */
410#ifdef CONFIG_THUMB2_KERNEL
411#define PLC "r"
412#else
413#define PLC "I"
414#endif
415
416 /*
Russell Kingccea7a12005-05-31 22:22:32 +0100417 * setup stacks for re-entrant exception handlers
418 */
419 __asm__ (
420 "msr cpsr_c, %1\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100421 "add r14, %0, %2\n\t"
422 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100423 "msr cpsr_c, %3\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100424 "add r14, %0, %4\n\t"
425 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100426 "msr cpsr_c, %5\n\t"
Catalin Marinasb86040a2009-07-24 12:32:54 +0100427 "add r14, %0, %6\n\t"
428 "mov sp, r14\n\t"
Russell Kingccea7a12005-05-31 22:22:32 +0100429 "msr cpsr_c, %7"
430 :
431 : "r" (stk),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100432 PLC (PSR_F_BIT | PSR_I_BIT | IRQ_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100433 "I" (offsetof(struct stack, irq[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100434 PLC (PSR_F_BIT | PSR_I_BIT | ABT_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100435 "I" (offsetof(struct stack, abt[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100436 PLC (PSR_F_BIT | PSR_I_BIT | UND_MODE),
Russell Kingccea7a12005-05-31 22:22:32 +0100437 "I" (offsetof(struct stack, und[0])),
Catalin Marinasb86040a2009-07-24 12:32:54 +0100438 PLC (PSR_F_BIT | PSR_I_BIT | SVC_MODE)
Catalin Marinasaaaa3f92005-06-29 15:34:39 +0100439 : "r14");
Russell Kingccea7a12005-05-31 22:22:32 +0100440}
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442static struct machine_desc * __init setup_machine(unsigned int nr)
443{
Nicolas Pitredce72dd2011-02-21 07:00:32 +0100444 extern struct machine_desc __arch_info_begin[], __arch_info_end[];
445 struct machine_desc *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /*
448 * locate machine in the list of supported machines.
449 */
Nicolas Pitredce72dd2011-02-21 07:00:32 +0100450 for (p = __arch_info_begin; p < __arch_info_end; p++)
451 if (nr == p->nr) {
452 printk("Machine: %s\n", p->name);
453 return p;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Nicolas Pitredce72dd2011-02-21 07:00:32 +0100456 early_print("\n"
457 "Error: unrecognized/unsupported machine ID (r1 = 0x%08x).\n\n"
458 "Available machine support:\n\nID (hex)\tNAME\n", nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Nicolas Pitredce72dd2011-02-21 07:00:32 +0100460 for (p = __arch_info_begin; p < __arch_info_end; p++)
461 early_print("%08x\t%s\n", p->nr, p->name);
462
463 early_print("\nPlease check your kernel config and/or bootloader.\n");
464
465 while (true)
466 /* can't use cpu_relax() here as it may require MMU setup */;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400469static int __init arm_add_memory(unsigned long start, unsigned long size)
Russell King3a669412005-06-22 21:43:10 +0100470{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400471 struct membank *bank = &meminfo.bank[meminfo.nr_banks];
472
473 if (meminfo.nr_banks >= NR_BANKS) {
474 printk(KERN_CRIT "NR_BANKS too low, "
475 "ignoring memory at %#lx\n", start);
476 return -EINVAL;
477 }
Russell King05f96ef2006-11-30 20:44:49 +0000478
Russell King3a669412005-06-22 21:43:10 +0100479 /*
480 * Ensure that start/size are aligned to a page boundary.
481 * Size is appropriately rounded down, start is rounded up.
482 */
483 size -= start & ~PAGE_MASK;
Russell King05f96ef2006-11-30 20:44:49 +0000484 bank->start = PAGE_ALIGN(start);
485 bank->size = size & PAGE_MASK;
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400486
487 /*
488 * Check whether this memory region has non-zero size or
489 * invalid node number.
490 */
Russell Kingbe370302010-05-07 17:40:33 +0100491 if (bank->size == 0)
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400492 return -EINVAL;
493
494 meminfo.nr_banks++;
495 return 0;
Russell King3a669412005-06-22 21:43:10 +0100496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
499 * Pick out the memory size. We look for mem=size@start,
500 * where start and size are "size[KkMm]"
501 */
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100502static int __init early_mem(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 static int usermem __initdata = 0;
505 unsigned long size, start;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100506 char *endp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /*
509 * If the user specifies memory size, we
510 * blow away any automatically generated
511 * size.
512 */
513 if (usermem == 0) {
514 usermem = 1;
515 meminfo.nr_banks = 0;
516 }
517
518 start = PHYS_OFFSET;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100519 size = memparse(p, &endp);
520 if (*endp == '@')
521 start = memparse(endp + 1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Andrew Morton1c97b732006-04-20 21:41:18 +0100523 arm_add_memory(start, size);
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100524
525 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100527early_param("mem", early_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529static void __init
530setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
531{
532#ifdef CONFIG_BLK_DEV_RAM
533 extern int rd_size, rd_image_start, rd_prompt, rd_doload;
534
535 rd_image_start = image_start;
536 rd_prompt = prompt;
537 rd_doload = doload;
538
539 if (rd_sz)
540 rd_size = rd_sz;
541#endif
542}
543
Dima Zavin11b93692011-01-14 23:05:14 +0100544static void __init request_standard_resources(struct machine_desc *mdesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Dima Zavin11b93692011-01-14 23:05:14 +0100546 struct memblock_region *region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Russell King37efe642008-12-01 11:53:07 +0000549 kernel_code.start = virt_to_phys(_text);
550 kernel_code.end = virt_to_phys(_etext - 1);
Russell King842eab42010-10-01 14:12:22 +0100551 kernel_data.start = virt_to_phys(_sdata);
Russell King37efe642008-12-01 11:53:07 +0000552 kernel_data.end = virt_to_phys(_end - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Dima Zavin11b93692011-01-14 23:05:14 +0100554 for_each_memblock(memory, region) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 res = alloc_bootmem_low(sizeof(*res));
556 res->name = "System RAM";
Dima Zavin11b93692011-01-14 23:05:14 +0100557 res->start = __pfn_to_phys(memblock_region_memory_base_pfn(region));
558 res->end = __pfn_to_phys(memblock_region_memory_end_pfn(region)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
560
561 request_resource(&iomem_resource, res);
562
563 if (kernel_code.start >= res->start &&
564 kernel_code.end <= res->end)
565 request_resource(res, &kernel_code);
566 if (kernel_data.start >= res->start &&
567 kernel_data.end <= res->end)
568 request_resource(res, &kernel_data);
569 }
570
571 if (mdesc->video_start) {
572 video_ram.start = mdesc->video_start;
573 video_ram.end = mdesc->video_end;
574 request_resource(&iomem_resource, &video_ram);
575 }
576
577 /*
578 * Some machines don't have the possibility of ever
579 * possessing lp0, lp1 or lp2
580 */
581 if (mdesc->reserve_lp0)
582 request_resource(&ioport_resource, &lp0);
583 if (mdesc->reserve_lp1)
584 request_resource(&ioport_resource, &lp1);
585 if (mdesc->reserve_lp2)
586 request_resource(&ioport_resource, &lp2);
587}
588
589/*
590 * Tag parsing.
591 *
592 * This is the new way of passing data to the kernel at boot time. Rather
593 * than passing a fixed inflexible structure to the kernel, we pass a list
594 * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE
595 * tag for the list to be recognised (to distinguish the tagged list from
596 * a param_struct). The list is terminated with a zero-length tag (this tag
597 * is not parsed in any way).
598 */
599static int __init parse_tag_core(const struct tag *tag)
600{
601 if (tag->hdr.size > 2) {
602 if ((tag->u.core.flags & 1) == 0)
603 root_mountflags &= ~MS_RDONLY;
604 ROOT_DEV = old_decode_dev(tag->u.core.rootdev);
605 }
606 return 0;
607}
608
609__tagtable(ATAG_CORE, parse_tag_core);
610
611static int __init parse_tag_mem32(const struct tag *tag)
612{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400613 return arm_add_memory(tag->u.mem.start, tag->u.mem.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616__tagtable(ATAG_MEM, parse_tag_mem32);
617
618#if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
619struct screen_info screen_info = {
620 .orig_video_lines = 30,
621 .orig_video_cols = 80,
622 .orig_video_mode = 0,
623 .orig_video_ega_bx = 0,
624 .orig_video_isVGA = 1,
625 .orig_video_points = 8
626};
627
628static int __init parse_tag_videotext(const struct tag *tag)
629{
630 screen_info.orig_x = tag->u.videotext.x;
631 screen_info.orig_y = tag->u.videotext.y;
632 screen_info.orig_video_page = tag->u.videotext.video_page;
633 screen_info.orig_video_mode = tag->u.videotext.video_mode;
634 screen_info.orig_video_cols = tag->u.videotext.video_cols;
635 screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx;
636 screen_info.orig_video_lines = tag->u.videotext.video_lines;
637 screen_info.orig_video_isVGA = tag->u.videotext.video_isvga;
638 screen_info.orig_video_points = tag->u.videotext.video_points;
639 return 0;
640}
641
642__tagtable(ATAG_VIDEOTEXT, parse_tag_videotext);
643#endif
644
645static int __init parse_tag_ramdisk(const struct tag *tag)
646{
647 setup_ramdisk((tag->u.ramdisk.flags & 1) == 0,
648 (tag->u.ramdisk.flags & 2) == 0,
649 tag->u.ramdisk.start, tag->u.ramdisk.size);
650 return 0;
651}
652
653__tagtable(ATAG_RAMDISK, parse_tag_ramdisk);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655static int __init parse_tag_serialnr(const struct tag *tag)
656{
657 system_serial_low = tag->u.serialnr.low;
658 system_serial_high = tag->u.serialnr.high;
659 return 0;
660}
661
662__tagtable(ATAG_SERIAL, parse_tag_serialnr);
663
664static int __init parse_tag_revision(const struct tag *tag)
665{
666 system_rev = tag->u.revision.rev;
667 return 0;
668}
669
670__tagtable(ATAG_REVISION, parse_tag_revision);
671
672static int __init parse_tag_cmdline(const struct tag *tag)
673{
Alexander Holler22eeb8f2011-01-12 14:08:37 +0100674#ifndef CONFIG_CMDLINE_FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 strlcpy(default_command_line, tag->u.cmdline.cmdline, COMMAND_LINE_SIZE);
Alexander Holler22eeb8f2011-01-12 14:08:37 +0100676#else
677 pr_warning("Ignoring tag cmdline (using the default kernel command line)\n");
678#endif /* CONFIG_CMDLINE_FORCE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return 0;
680}
681
682__tagtable(ATAG_CMDLINE, parse_tag_cmdline);
683
684/*
685 * Scan the tag table for this tag, and call its parse function.
686 * The tag table is built by the linker from all the __tagtable
687 * declarations.
688 */
689static int __init parse_tag(const struct tag *tag)
690{
691 extern struct tagtable __tagtable_begin, __tagtable_end;
692 struct tagtable *t;
693
694 for (t = &__tagtable_begin; t < &__tagtable_end; t++)
695 if (tag->hdr.tag == t->tag) {
696 t->parse(tag);
697 break;
698 }
699
700 return t < &__tagtable_end;
701}
702
703/*
704 * Parse all tags in the list, checking both the global and architecture
705 * specific tag tables.
706 */
707static void __init parse_tags(const struct tag *t)
708{
709 for (; t->hdr.size; t = tag_next(t))
710 if (!parse_tag(t))
711 printk(KERN_WARNING
712 "Ignoring unrecognised tag 0x%08x\n",
713 t->hdr.tag);
714}
715
716/*
717 * This holds our defaults.
718 */
719static struct init_tags {
720 struct tag_header hdr1;
721 struct tag_core core;
722 struct tag_header hdr2;
723 struct tag_mem32 mem;
724 struct tag_header hdr3;
725} init_tags __initdata = {
726 { tag_size(tag_core), ATAG_CORE },
727 { 1, PAGE_SIZE, 0xff },
728 { tag_size(tag_mem32), ATAG_MEM },
Russell Kingb75c1782011-01-04 19:03:16 +0000729 { MEM_SIZE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 { 0, ATAG_NONE }
731};
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733static int __init customize_machine(void)
734{
735 /* customizes platform devices, or adds new ones */
Russell King8ff14432010-12-20 10:18:36 +0000736 if (machine_desc->init_machine)
737 machine_desc->init_machine();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return 0;
739}
740arch_initcall(customize_machine);
741
Mika Westerberg3c57fb42010-05-10 09:20:22 +0100742#ifdef CONFIG_KEXEC
743static inline unsigned long long get_total_mem(void)
744{
745 unsigned long total;
746
747 total = max_low_pfn - min_low_pfn;
748 return total << PAGE_SHIFT;
749}
750
751/**
752 * reserve_crashkernel() - reserves memory are for crash kernel
753 *
754 * This function reserves memory area given in "crashkernel=" kernel command
755 * line parameter. The memory reserved is used by a dump capture kernel when
756 * primary kernel is crashing.
757 */
758static void __init reserve_crashkernel(void)
759{
760 unsigned long long crash_size, crash_base;
761 unsigned long long total_mem;
762 int ret;
763
764 total_mem = get_total_mem();
765 ret = parse_crashkernel(boot_command_line, total_mem,
766 &crash_size, &crash_base);
767 if (ret)
768 return;
769
770 ret = reserve_bootmem(crash_base, crash_size, BOOTMEM_EXCLUSIVE);
771 if (ret < 0) {
772 printk(KERN_WARNING "crashkernel reservation failed - "
773 "memory is in use (0x%lx)\n", (unsigned long)crash_base);
774 return;
775 }
776
777 printk(KERN_INFO "Reserving %ldMB of memory at %ldMB "
778 "for crashkernel (System RAM: %ldMB)\n",
779 (unsigned long)(crash_size >> 20),
780 (unsigned long)(crash_base >> 20),
781 (unsigned long)(total_mem >> 20));
782
783 crashk_res.start = crash_base;
784 crashk_res.end = crash_base + crash_size - 1;
785 insert_resource(&iomem_resource, &crashk_res);
786}
787#else
788static inline void reserve_crashkernel(void) {}
789#endif /* CONFIG_KEXEC */
790
Mika Westerbergcea0bb12010-05-10 09:29:32 +0100791/*
792 * Note: elfcorehdr_addr is not just limited to vmcore. It is also used by
793 * is_kdump_kernel() to determine if we are booting after a panic. Hence
794 * ifdef it under CONFIG_CRASH_DUMP and not CONFIG_PROC_VMCORE.
795 */
796
797#ifdef CONFIG_CRASH_DUMP
798/*
799 * elfcorehdr= specifies the location of elf core header stored by the crashed
800 * kernel. This option will be passed by kexec loader to the capture kernel.
801 */
802static int __init setup_elfcorehdr(char *arg)
803{
804 char *end;
805
806 if (!arg)
807 return -EINVAL;
808
809 elfcorehdr_addr = memparse(arg, &end);
810 return end > arg ? 0 : -EINVAL;
811}
812early_param("elfcorehdr", setup_elfcorehdr);
813#endif /* CONFIG_CRASH_DUMP */
814
Uwe Kleine-König73a65b32010-01-19 10:13:14 +0100815static void __init squash_mem_tags(struct tag *tag)
816{
817 for (; tag->hdr.size; tag = tag_next(tag))
818 if (tag->hdr.tag == ATAG_MEM)
819 tag->hdr.tag = ATAG_NONE;
820}
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822void __init setup_arch(char **cmdline_p)
823{
824 struct tag *tags = (struct tag *)&init_tags;
825 struct machine_desc *mdesc;
826 char *from = default_command_line;
827
Russell Kingb75c1782011-01-04 19:03:16 +0000828 init_tags.mem.start = PHYS_OFFSET;
829
Catalin Marinasbff595c2009-02-16 11:41:36 +0100830 unwind_init();
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 setup_processor();
833 mdesc = setup_machine(machine_arch_type);
Russell King8ff14432010-12-20 10:18:36 +0000834 machine_desc = mdesc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 machine_name = mdesc->name;
836
837 if (mdesc->soft_reboot)
838 reboot_setup("s");
839
Bill Gatliff9d20fdd2007-05-31 22:02:22 +0100840 if (__atags_pointer)
841 tags = phys_to_virt(__atags_pointer);
842 else if (mdesc->boot_params)
Russell Kingf9bd6ea2005-07-04 10:43:36 +0100843 tags = phys_to_virt(mdesc->boot_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Uwe Kleine-König73a65b32010-01-19 10:13:14 +0100845#if defined(CONFIG_DEPRECATED_PARAM_STRUCT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /*
847 * If we have the old style parameters, convert them to
848 * a tag list.
849 */
850 if (tags->hdr.tag != ATAG_CORE)
851 convert_to_tag_list(tags);
Uwe Kleine-König73a65b32010-01-19 10:13:14 +0100852#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (tags->hdr.tag != ATAG_CORE)
854 tags = (struct tag *)&init_tags;
855
856 if (mdesc->fixup)
857 mdesc->fixup(mdesc, tags, &from, &meminfo);
858
859 if (tags->hdr.tag == ATAG_CORE) {
860 if (meminfo.nr_banks != 0)
861 squash_mem_tags(tags);
Richard Purdie4cd9d6f2008-01-02 00:56:46 +0100862 save_atags(tags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 parse_tags(tags);
864 }
865
Russell King37efe642008-12-01 11:53:07 +0000866 init_mm.start_code = (unsigned long) _text;
867 init_mm.end_code = (unsigned long) _etext;
868 init_mm.end_data = (unsigned long) _edata;
869 init_mm.brk = (unsigned long) _end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100871 /* parse_early_param needs a boot_command_line */
872 strlcpy(boot_command_line, from, COMMAND_LINE_SIZE);
873
Jeremy Kerr48ab7e02010-01-27 01:13:31 +0100874 /* populate cmd_line too for later use, preserving boot_command_line */
875 strlcpy(cmd_line, boot_command_line, COMMAND_LINE_SIZE);
876 *cmdline_p = cmd_line;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +0100877
878 parse_early_param();
879
Russell King8d717a52010-05-22 19:47:18 +0100880 arm_memblock_init(&meminfo, mdesc);
Russell King2778f622010-07-09 16:27:52 +0100881
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400882 paging_init(mdesc);
Dima Zavin11b93692011-01-14 23:05:14 +0100883 request_standard_resources(mdesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Russell King7bbb7942006-02-16 11:08:09 +0000885#ifdef CONFIG_SMP
Russell Kingf00ec482010-09-04 10:47:48 +0100886 if (is_smp())
887 smp_init_cpus();
Russell King7bbb7942006-02-16 11:08:09 +0000888#endif
Mika Westerberg3c57fb42010-05-10 09:20:22 +0100889 reserve_crashkernel();
Russell King7bbb7942006-02-16 11:08:09 +0000890
Russell Kingccea7a12005-05-31 22:22:32 +0100891 cpu_init();
Linus Walleijbc581772009-09-15 17:30:37 +0100892 tcm_init();
Russell Kingccea7a12005-05-31 22:22:32 +0100893
eric miao52108642010-12-13 09:42:34 +0100894#ifdef CONFIG_MULTI_IRQ_HANDLER
895 handle_arch_irq = mdesc->handle_irq;
896#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898#ifdef CONFIG_VT
899#if defined(CONFIG_VGA_CONSOLE)
900 conswitchp = &vga_con;
901#elif defined(CONFIG_DUMMY_CONSOLE)
902 conswitchp = &dummy_con;
903#endif
904#endif
Jason Wessel5cbad0e2008-02-20 13:33:40 -0600905 early_trap_init();
Russell Kingdec12e62010-12-16 13:49:34 +0000906
907 if (mdesc->init_early)
908 mdesc->init_early();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
911
912static int __init topology_init(void)
913{
914 int cpu;
915
Russell King66fb8bd2007-03-13 09:54:21 +0000916 for_each_possible_cpu(cpu) {
917 struct cpuinfo_arm *cpuinfo = &per_cpu(cpu_data, cpu);
918 cpuinfo->cpu.hotpluggable = 1;
919 register_cpu(&cpuinfo->cpu, cpu);
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 return 0;
923}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924subsys_initcall(topology_init);
925
Russell Kinge119bff2010-01-10 17:23:29 +0000926#ifdef CONFIG_HAVE_PROC_CPU
927static int __init proc_cpu_init(void)
928{
929 struct proc_dir_entry *res;
930
931 res = proc_mkdir("cpu", NULL);
932 if (!res)
933 return -ENOMEM;
934 return 0;
935}
936fs_initcall(proc_cpu_init);
937#endif
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939static const char *hwcap_str[] = {
940 "swp",
941 "half",
942 "thumb",
943 "26bit",
944 "fastmult",
945 "fpa",
946 "vfp",
947 "edsp",
948 "java",
Paul Gortmaker8f7f9432006-10-27 05:13:19 +0100949 "iwmmxt",
Lennert Buytenhek99e4a6d2006-12-18 00:59:10 +0100950 "crunch",
Catalin Marinas4369ae12008-11-06 13:23:06 +0000951 "thumbee",
Catalin Marinas2bedbdf2008-11-06 13:23:07 +0000952 "neon",
Catalin Marinas7279dc32009-02-11 13:13:56 +0100953 "vfpv3",
954 "vfpv3d16",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 NULL
956};
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958static int c_show(struct seq_file *m, void *v)
959{
960 int i;
961
962 seq_printf(m, "Processor\t: %s rev %d (%s)\n",
Russell King0ba8b9b2008-08-10 18:08:10 +0100963 cpu_name, read_cpuid_id() & 15, elf_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965#if defined(CONFIG_SMP)
966 for_each_online_cpu(i) {
Russell King15559722005-11-06 21:41:08 +0000967 /*
968 * glibc reads /proc/cpuinfo to determine the number of
969 * online processors, looking for lines beginning with
970 * "processor". Give glibc what it expects.
971 */
972 seq_printf(m, "processor\t: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n",
974 per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ),
975 (per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100);
976 }
977#else /* CONFIG_SMP */
978 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
979 loops_per_jiffy / (500000/HZ),
980 (loops_per_jiffy / (5000/HZ)) % 100);
981#endif
982
983 /* dump out the processor features */
984 seq_puts(m, "Features\t: ");
985
986 for (i = 0; hwcap_str[i]; i++)
987 if (elf_hwcap & (1 << i))
988 seq_printf(m, "%s ", hwcap_str[i]);
989
Russell King0ba8b9b2008-08-10 18:08:10 +0100990 seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 seq_printf(m, "CPU architecture: %s\n", proc_arch[cpu_architecture()]);
992
Russell King0ba8b9b2008-08-10 18:08:10 +0100993 if ((read_cpuid_id() & 0x0008f000) == 0x00000000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /* pre-ARM7 */
Russell King0ba8b9b2008-08-10 18:08:10 +0100995 seq_printf(m, "CPU part\t: %07x\n", read_cpuid_id() >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 } else {
Russell King0ba8b9b2008-08-10 18:08:10 +0100997 if ((read_cpuid_id() & 0x0008f000) == 0x00007000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /* ARM7 */
999 seq_printf(m, "CPU variant\t: 0x%02x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +01001000 (read_cpuid_id() >> 16) & 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 } else {
1002 /* post-ARM7 */
1003 seq_printf(m, "CPU variant\t: 0x%x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +01001004 (read_cpuid_id() >> 20) & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 seq_printf(m, "CPU part\t: 0x%03x\n",
Russell King0ba8b9b2008-08-10 18:08:10 +01001007 (read_cpuid_id() >> 4) & 0xfff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
Russell King0ba8b9b2008-08-10 18:08:10 +01001009 seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 seq_puts(m, "\n");
1012
1013 seq_printf(m, "Hardware\t: %s\n", machine_name);
1014 seq_printf(m, "Revision\t: %04x\n", system_rev);
1015 seq_printf(m, "Serial\t\t: %08x%08x\n",
1016 system_serial_high, system_serial_low);
1017
1018 return 0;
1019}
1020
1021static void *c_start(struct seq_file *m, loff_t *pos)
1022{
1023 return *pos < 1 ? (void *)1 : NULL;
1024}
1025
1026static void *c_next(struct seq_file *m, void *v, loff_t *pos)
1027{
1028 ++*pos;
1029 return NULL;
1030}
1031
1032static void c_stop(struct seq_file *m, void *v)
1033{
1034}
1035
Jan Engelhardt2ffd6e12008-01-22 20:41:07 +01001036const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 .start = c_start,
1038 .next = c_next,
1039 .stop = c_stop,
1040 .show = c_show
1041};