Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #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 Smirl | 894673e | 2006-07-10 04:44:13 -0700 | [diff] [blame] | 20 | #include <linux/screen_info.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/init.h> |
Mika Westerberg | 3c57fb4 | 2010-05-10 09:20:22 +0100 | [diff] [blame] | 22 | #include <linux/kexec.h> |
Mika Westerberg | cea0bb1 | 2010-05-10 09:29:32 +0100 | [diff] [blame] | 23 | #include <linux/crash_dump.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/root_dev.h> |
| 25 | #include <linux/cpu.h> |
| 26 | #include <linux/interrupt.h> |
Russell King | 7bbb794 | 2006-02-16 11:08:09 +0000 | [diff] [blame] | 27 | #include <linux/smp.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 28 | #include <linux/fs.h> |
Russell King | e119bff | 2010-01-10 17:23:29 +0000 | [diff] [blame] | 29 | #include <linux/proc_fs.h> |
Russell King | 2778f62 | 2010-07-09 16:27:52 +0100 | [diff] [blame] | 30 | #include <linux/memblock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 32 | #include <asm/unified.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <asm/cpu.h> |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 34 | #include <asm/cputype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/elf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/procinfo.h> |
Russell King | 37efe64 | 2008-12-01 11:53:07 +0000 | [diff] [blame] | 37 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/setup.h> |
| 39 | #include <asm/mach-types.h> |
| 40 | #include <asm/cacheflush.h> |
Russell King | 46097c7 | 2008-08-10 18:10:19 +0100 | [diff] [blame] | 41 | #include <asm/cachetype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/tlbflush.h> |
| 43 | |
| 44 | #include <asm/mach/arch.h> |
| 45 | #include <asm/mach/irq.h> |
| 46 | #include <asm/mach/time.h> |
Jason Wessel | 5cbad0e | 2008-02-20 13:33:40 -0600 | [diff] [blame] | 47 | #include <asm/traps.h> |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 48 | #include <asm/unwind.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Uwe Kleine-König | 73a65b3 | 2010-01-19 10:13:14 +0100 | [diff] [blame] | 50 | #if defined(CONFIG_DEPRECATED_PARAM_STRUCT) |
Ben Dooks | 0fc1c83 | 2006-03-15 23:17:30 +0000 | [diff] [blame] | 51 | #include "compat.h" |
Uwe Kleine-König | 73a65b3 | 2010-01-19 10:13:14 +0100 | [diff] [blame] | 52 | #endif |
Richard Purdie | 4cd9d6f | 2008-01-02 00:56:46 +0100 | [diff] [blame] | 53 | #include "atags.h" |
Linus Walleij | bc58177 | 2009-09-15 17:30:37 +0100 | [diff] [blame] | 54 | #include "tcm.h" |
Ben Dooks | 0fc1c83 | 2006-03-15 23:17:30 +0000 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #ifndef MEM_SIZE |
| 57 | #define MEM_SIZE (16*1024*1024) |
| 58 | #endif |
| 59 | |
| 60 | #if defined(CONFIG_FPE_NWFPE) || defined(CONFIG_FPE_FASTFPE) |
| 61 | char fpe_type[8]; |
| 62 | |
| 63 | static 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 Pitre | 4b5f32c | 2008-10-06 13:24:40 -0400 | [diff] [blame] | 72 | extern void paging_init(struct machine_desc *desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | extern void reboot_setup(char *str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | unsigned int processor_id; |
Krzysztof Halasa | c18f658 | 2007-12-18 03:53:27 +0100 | [diff] [blame] | 76 | EXPORT_SYMBOL(processor_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | unsigned int __machine_arch_type; |
| 78 | EXPORT_SYMBOL(__machine_arch_type); |
Russell King | c0e9587 | 2008-09-25 15:35:28 +0100 | [diff] [blame] | 79 | unsigned int cacheid; |
| 80 | EXPORT_SYMBOL(cacheid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Bill Gatliff | 9d20fdd | 2007-05-31 22:02:22 +0100 | [diff] [blame] | 82 | unsigned int __atags_pointer __initdata; |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | unsigned int system_rev; |
| 85 | EXPORT_SYMBOL(system_rev); |
| 86 | |
| 87 | unsigned int system_serial_low; |
| 88 | EXPORT_SYMBOL(system_serial_low); |
| 89 | |
| 90 | unsigned int system_serial_high; |
| 91 | EXPORT_SYMBOL(system_serial_high); |
| 92 | |
| 93 | unsigned int elf_hwcap; |
| 94 | EXPORT_SYMBOL(elf_hwcap); |
| 95 | |
| 96 | |
| 97 | #ifdef MULTI_CPU |
| 98 | struct processor processor; |
| 99 | #endif |
| 100 | #ifdef MULTI_TLB |
| 101 | struct cpu_tlb_fns cpu_tlb; |
| 102 | #endif |
| 103 | #ifdef MULTI_USER |
| 104 | struct cpu_user_fns cpu_user; |
| 105 | #endif |
| 106 | #ifdef MULTI_CACHE |
| 107 | struct cpu_cache_fns cpu_cache; |
| 108 | #endif |
Catalin Marinas | 953233d | 2007-02-05 14:48:08 +0100 | [diff] [blame] | 109 | #ifdef CONFIG_OUTER_CACHE |
| 110 | struct outer_cache_fns outer_cache; |
Santosh Shilimkar | 6c09f09 | 2010-02-16 07:57:43 +0100 | [diff] [blame] | 111 | EXPORT_SYMBOL(outer_cache); |
Catalin Marinas | 953233d | 2007-02-05 14:48:08 +0100 | [diff] [blame] | 112 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 114 | struct stack { |
| 115 | u32 irq[3]; |
| 116 | u32 abt[3]; |
| 117 | u32 und[3]; |
| 118 | } ____cacheline_aligned; |
| 119 | |
| 120 | static struct stack stacks[NR_CPUS]; |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | char elf_platform[ELF_PLATFORM_SIZE]; |
| 123 | EXPORT_SYMBOL(elf_platform); |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | static const char *cpu_name; |
| 126 | static const char *machine_name; |
Jeremy Kerr | 48ab7e0 | 2010-01-27 01:13:31 +0100 | [diff] [blame] | 127 | static char __initdata cmd_line[COMMAND_LINE_SIZE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
| 129 | static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE; |
| 130 | static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } }; |
| 131 | #define ENDIANNESS ((char)endian_test.l) |
| 132 | |
| 133 | DEFINE_PER_CPU(struct cpuinfo_arm, cpu_data); |
| 134 | |
| 135 | /* |
| 136 | * Standard memory resources |
| 137 | */ |
| 138 | static struct resource mem_res[] = { |
Greg Kroah-Hartman | 740e518 | 2006-06-12 14:47:06 -0700 | [diff] [blame] | 139 | { |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | #define video_ram mem_res[0] |
| 160 | #define kernel_code mem_res[1] |
| 161 | #define kernel_data mem_res[2] |
| 162 | |
| 163 | static struct resource io_res[] = { |
Greg Kroah-Hartman | 740e518 | 2006-06-12 14:47:06 -0700 | [diff] [blame] | 164 | { |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | }; |
| 183 | |
| 184 | #define lp0 io_res[0] |
| 185 | #define lp1 io_res[1] |
| 186 | #define lp2 io_res[2] |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | static const char *proc_arch[] = { |
| 189 | "undefined/unknown", |
| 190 | "3", |
| 191 | "4", |
| 192 | "4T", |
| 193 | "5", |
| 194 | "5T", |
| 195 | "5TE", |
| 196 | "5TEJ", |
| 197 | "6TEJ", |
Catalin Marinas | 6b090a2 | 2006-01-12 16:28:16 +0000 | [diff] [blame] | 198 | "7", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | "?(11)", |
| 200 | "?(12)", |
| 201 | "?(13)", |
| 202 | "?(14)", |
| 203 | "?(15)", |
| 204 | "?(16)", |
| 205 | "?(17)", |
| 206 | }; |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | int cpu_architecture(void) |
| 209 | { |
| 210 | int cpu_arch; |
| 211 | |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 212 | if ((read_cpuid_id() & 0x0008f000) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | cpu_arch = CPU_ARCH_UNKNOWN; |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 214 | } 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | if (cpu_arch) |
| 219 | cpu_arch += CPU_ARCH_ARMv3; |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 220 | } else if ((read_cpuid_id() & 0x000f0000) == 0x000f0000) { |
Catalin Marinas | 180005c | 2007-09-25 16:49:45 +0100 | [diff] [blame] | 221 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
| 238 | return cpu_arch; |
| 239 | } |
| 240 | |
Will Deacon | 8925ec4 | 2010-09-13 16:18:30 +0100 | [diff] [blame^] | 241 | static 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: |
| 249 | asm("mcr p15, 2, %1, c0, c0, 0 @ set CSSELR\n" |
| 250 | "isb\n" |
| 251 | "mrc p15, 1, %0, c0, c0, 0 @ read CCSIDR" |
| 252 | : "=r" (id_reg) |
| 253 | : "r" (1)); |
| 254 | line_size = 4 << ((id_reg & 0x7) + 2); |
| 255 | num_sets = ((id_reg >> 13) & 0x7fff) + 1; |
| 256 | aliasing_icache = (line_size * num_sets) > PAGE_SIZE; |
| 257 | break; |
| 258 | case CPU_ARCH_ARMv6: |
| 259 | aliasing_icache = read_cpuid_cachetype() & (1 << 11); |
| 260 | break; |
| 261 | default: |
| 262 | /* I-cache aliases will be handled by D-cache aliasing code */ |
| 263 | aliasing_icache = 0; |
| 264 | } |
| 265 | |
| 266 | return aliasing_icache; |
| 267 | } |
| 268 | |
Russell King | c0e9587 | 2008-09-25 15:35:28 +0100 | [diff] [blame] | 269 | static void __init cacheid_init(void) |
| 270 | { |
| 271 | unsigned int cachetype = read_cpuid_cachetype(); |
| 272 | unsigned int arch = cpu_architecture(); |
| 273 | |
Catalin Marinas | b57ee99 | 2009-03-03 11:44:12 +0100 | [diff] [blame] | 274 | if (arch >= CPU_ARCH_ARMv6) { |
| 275 | if ((cachetype & (7 << 29)) == 4 << 29) { |
| 276 | /* ARMv7 register format */ |
| 277 | cacheid = CACHEID_VIPT_NONALIASING; |
| 278 | if ((cachetype & (3 << 14)) == 1 << 14) |
| 279 | cacheid |= CACHEID_ASID_TAGGED; |
Will Deacon | 8925ec4 | 2010-09-13 16:18:30 +0100 | [diff] [blame^] | 280 | else if (cpu_has_aliasing_icache(CPU_ARCH_ARMv7)) |
| 281 | cacheid |= CACHEID_VIPT_I_ALIASING; |
| 282 | } else if (cachetype & (1 << 23)) { |
Russell King | c0e9587 | 2008-09-25 15:35:28 +0100 | [diff] [blame] | 283 | cacheid = CACHEID_VIPT_ALIASING; |
Will Deacon | 8925ec4 | 2010-09-13 16:18:30 +0100 | [diff] [blame^] | 284 | } else { |
Russell King | c0e9587 | 2008-09-25 15:35:28 +0100 | [diff] [blame] | 285 | cacheid = CACHEID_VIPT_NONALIASING; |
Will Deacon | 8925ec4 | 2010-09-13 16:18:30 +0100 | [diff] [blame^] | 286 | if (cpu_has_aliasing_icache(CPU_ARCH_ARMv6)) |
| 287 | cacheid |= CACHEID_VIPT_I_ALIASING; |
| 288 | } |
Russell King | c0e9587 | 2008-09-25 15:35:28 +0100 | [diff] [blame] | 289 | } else { |
| 290 | cacheid = CACHEID_VIVT; |
| 291 | } |
Russell King | 2b4ae1f | 2008-09-25 15:39:20 +0100 | [diff] [blame] | 292 | |
| 293 | printk("CPU: %s data cache, %s instruction cache\n", |
| 294 | cache_is_vivt() ? "VIVT" : |
| 295 | cache_is_vipt_aliasing() ? "VIPT aliasing" : |
| 296 | cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown", |
| 297 | cache_is_vivt() ? "VIVT" : |
| 298 | icache_is_vivt_asid_tagged() ? "VIVT ASID tagged" : |
Will Deacon | 8925ec4 | 2010-09-13 16:18:30 +0100 | [diff] [blame^] | 299 | icache_is_vipt_aliasing() ? "VIPT aliasing" : |
Russell King | 2b4ae1f | 2008-09-25 15:39:20 +0100 | [diff] [blame] | 300 | cache_is_vipt_nonaliasing() ? "VIPT nonaliasing" : "unknown"); |
Russell King | c0e9587 | 2008-09-25 15:35:28 +0100 | [diff] [blame] | 301 | } |
| 302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | /* |
| 304 | * These functions re-use the assembly code in head.S, which |
| 305 | * already provide the required functionality. |
| 306 | */ |
Russell King | 0f44ba1 | 2006-02-24 21:04:56 +0000 | [diff] [blame] | 307 | extern struct proc_info_list *lookup_processor_type(unsigned int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | extern struct machine_desc *lookup_machine_type(unsigned int); |
| 309 | |
Tony Lindgren | f159f4e | 2010-07-05 14:53:10 +0100 | [diff] [blame] | 310 | static void __init feat_v6_fixup(void) |
| 311 | { |
| 312 | int id = read_cpuid_id(); |
| 313 | |
| 314 | if ((id & 0xff0f0000) != 0x41070000) |
| 315 | return; |
| 316 | |
| 317 | /* |
| 318 | * HWCAP_TLS is available only on 1136 r1p0 and later, |
| 319 | * see also kuser_get_tls_init. |
| 320 | */ |
| 321 | if ((((id >> 4) & 0xfff) == 0xb36) && (((id >> 20) & 3) == 0)) |
| 322 | elf_hwcap &= ~HWCAP_TLS; |
| 323 | } |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | static void __init setup_processor(void) |
| 326 | { |
| 327 | struct proc_info_list *list; |
| 328 | |
| 329 | /* |
| 330 | * locate processor in the list of supported processor |
| 331 | * types. The linker builds this table for us from the |
| 332 | * entries in arch/arm/mm/proc-*.S |
| 333 | */ |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 334 | list = lookup_processor_type(read_cpuid_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | if (!list) { |
| 336 | printk("CPU configuration botched (ID %08x), unable " |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 337 | "to continue.\n", read_cpuid_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | while (1); |
| 339 | } |
| 340 | |
| 341 | cpu_name = list->cpu_name; |
| 342 | |
| 343 | #ifdef MULTI_CPU |
| 344 | processor = *list->proc; |
| 345 | #endif |
| 346 | #ifdef MULTI_TLB |
| 347 | cpu_tlb = *list->tlb; |
| 348 | #endif |
| 349 | #ifdef MULTI_USER |
| 350 | cpu_user = *list->user; |
| 351 | #endif |
| 352 | #ifdef MULTI_CACHE |
| 353 | cpu_cache = *list->cache; |
| 354 | #endif |
| 355 | |
Russell King | 4e19025 | 2006-07-03 13:29:38 +0100 | [diff] [blame] | 356 | printk("CPU: %s [%08x] revision %d (ARMv%s), cr=%08lx\n", |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 357 | cpu_name, read_cpuid_id(), read_cpuid_id() & 15, |
Russell King | 264edb3 | 2006-06-29 15:03:09 +0100 | [diff] [blame] | 358 | proc_arch[cpu_architecture()], cr_alignment); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 360 | sprintf(init_utsname()->machine, "%s%c", list->arch_name, ENDIANNESS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | sprintf(elf_platform, "%s%c", list->elf_name, ENDIANNESS); |
| 362 | elf_hwcap = list->elf_hwcap; |
Catalin Marinas | adeff42 | 2006-04-10 21:32:35 +0100 | [diff] [blame] | 363 | #ifndef CONFIG_ARM_THUMB |
| 364 | elf_hwcap &= ~HWCAP_THUMB; |
| 365 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Tony Lindgren | f159f4e | 2010-07-05 14:53:10 +0100 | [diff] [blame] | 367 | feat_v6_fixup(); |
| 368 | |
Russell King | c0e9587 | 2008-09-25 15:35:28 +0100 | [diff] [blame] | 369 | cacheid_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | cpu_proc_init(); |
| 371 | } |
| 372 | |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 373 | /* |
| 374 | * cpu_init - initialise one CPU. |
| 375 | * |
Russell King | 90f1e08 | 2008-09-25 14:45:02 +0100 | [diff] [blame] | 376 | * cpu_init sets up the per-CPU stacks. |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 377 | */ |
Russell King | 36c5ed2 | 2005-06-19 18:39:33 +0100 | [diff] [blame] | 378 | void cpu_init(void) |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 379 | { |
| 380 | unsigned int cpu = smp_processor_id(); |
| 381 | struct stack *stk = &stacks[cpu]; |
| 382 | |
| 383 | if (cpu >= NR_CPUS) { |
| 384 | printk(KERN_CRIT "CPU%u: bad primary CPU number\n", cpu); |
| 385 | BUG(); |
| 386 | } |
| 387 | |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 388 | /* |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 389 | * Define the placement constraint for the inline asm directive below. |
| 390 | * In Thumb-2, msr with an immediate value is not allowed. |
| 391 | */ |
| 392 | #ifdef CONFIG_THUMB2_KERNEL |
| 393 | #define PLC "r" |
| 394 | #else |
| 395 | #define PLC "I" |
| 396 | #endif |
| 397 | |
| 398 | /* |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 399 | * setup stacks for re-entrant exception handlers |
| 400 | */ |
| 401 | __asm__ ( |
| 402 | "msr cpsr_c, %1\n\t" |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 403 | "add r14, %0, %2\n\t" |
| 404 | "mov sp, r14\n\t" |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 405 | "msr cpsr_c, %3\n\t" |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 406 | "add r14, %0, %4\n\t" |
| 407 | "mov sp, r14\n\t" |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 408 | "msr cpsr_c, %5\n\t" |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 409 | "add r14, %0, %6\n\t" |
| 410 | "mov sp, r14\n\t" |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 411 | "msr cpsr_c, %7" |
| 412 | : |
| 413 | : "r" (stk), |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 414 | PLC (PSR_F_BIT | PSR_I_BIT | IRQ_MODE), |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 415 | "I" (offsetof(struct stack, irq[0])), |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 416 | PLC (PSR_F_BIT | PSR_I_BIT | ABT_MODE), |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 417 | "I" (offsetof(struct stack, abt[0])), |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 418 | PLC (PSR_F_BIT | PSR_I_BIT | UND_MODE), |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 419 | "I" (offsetof(struct stack, und[0])), |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 420 | PLC (PSR_F_BIT | PSR_I_BIT | SVC_MODE) |
Catalin Marinas | aaaa3f9 | 2005-06-29 15:34:39 +0100 | [diff] [blame] | 421 | : "r14"); |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 422 | } |
| 423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | static struct machine_desc * __init setup_machine(unsigned int nr) |
| 425 | { |
| 426 | struct machine_desc *list; |
| 427 | |
| 428 | /* |
| 429 | * locate machine in the list of supported machines. |
| 430 | */ |
| 431 | list = lookup_machine_type(nr); |
| 432 | if (!list) { |
| 433 | printk("Machine configuration botched (nr %d), unable " |
| 434 | "to continue.\n", nr); |
| 435 | while (1); |
| 436 | } |
| 437 | |
| 438 | printk("Machine: %s\n", list->name); |
| 439 | |
| 440 | return list; |
| 441 | } |
| 442 | |
Nicolas Pitre | 4b5f32c | 2008-10-06 13:24:40 -0400 | [diff] [blame] | 443 | static int __init arm_add_memory(unsigned long start, unsigned long size) |
Russell King | 3a66941 | 2005-06-22 21:43:10 +0100 | [diff] [blame] | 444 | { |
Nicolas Pitre | 4b5f32c | 2008-10-06 13:24:40 -0400 | [diff] [blame] | 445 | struct membank *bank = &meminfo.bank[meminfo.nr_banks]; |
| 446 | |
| 447 | if (meminfo.nr_banks >= NR_BANKS) { |
| 448 | printk(KERN_CRIT "NR_BANKS too low, " |
| 449 | "ignoring memory at %#lx\n", start); |
| 450 | return -EINVAL; |
| 451 | } |
Russell King | 05f96ef | 2006-11-30 20:44:49 +0000 | [diff] [blame] | 452 | |
Russell King | 3a66941 | 2005-06-22 21:43:10 +0100 | [diff] [blame] | 453 | /* |
| 454 | * Ensure that start/size are aligned to a page boundary. |
| 455 | * Size is appropriately rounded down, start is rounded up. |
| 456 | */ |
| 457 | size -= start & ~PAGE_MASK; |
Russell King | 05f96ef | 2006-11-30 20:44:49 +0000 | [diff] [blame] | 458 | bank->start = PAGE_ALIGN(start); |
| 459 | bank->size = size & PAGE_MASK; |
Nicolas Pitre | 4b5f32c | 2008-10-06 13:24:40 -0400 | [diff] [blame] | 460 | |
| 461 | /* |
| 462 | * Check whether this memory region has non-zero size or |
| 463 | * invalid node number. |
| 464 | */ |
Russell King | be37030 | 2010-05-07 17:40:33 +0100 | [diff] [blame] | 465 | if (bank->size == 0) |
Nicolas Pitre | 4b5f32c | 2008-10-06 13:24:40 -0400 | [diff] [blame] | 466 | return -EINVAL; |
| 467 | |
| 468 | meminfo.nr_banks++; |
| 469 | return 0; |
Russell King | 3a66941 | 2005-06-22 21:43:10 +0100 | [diff] [blame] | 470 | } |
| 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | /* |
| 473 | * Pick out the memory size. We look for mem=size@start, |
| 474 | * where start and size are "size[KkMm]" |
| 475 | */ |
Jeremy Kerr | 2b0d8c2 | 2010-01-11 23:17:34 +0100 | [diff] [blame] | 476 | static int __init early_mem(char *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | { |
| 478 | static int usermem __initdata = 0; |
| 479 | unsigned long size, start; |
Jeremy Kerr | 2b0d8c2 | 2010-01-11 23:17:34 +0100 | [diff] [blame] | 480 | char *endp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | |
| 482 | /* |
| 483 | * If the user specifies memory size, we |
| 484 | * blow away any automatically generated |
| 485 | * size. |
| 486 | */ |
| 487 | if (usermem == 0) { |
| 488 | usermem = 1; |
| 489 | meminfo.nr_banks = 0; |
| 490 | } |
| 491 | |
| 492 | start = PHYS_OFFSET; |
Jeremy Kerr | 2b0d8c2 | 2010-01-11 23:17:34 +0100 | [diff] [blame] | 493 | size = memparse(p, &endp); |
| 494 | if (*endp == '@') |
| 495 | start = memparse(endp + 1, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Andrew Morton | 1c97b73 | 2006-04-20 21:41:18 +0100 | [diff] [blame] | 497 | arm_add_memory(start, size); |
Jeremy Kerr | 2b0d8c2 | 2010-01-11 23:17:34 +0100 | [diff] [blame] | 498 | |
| 499 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
Jeremy Kerr | 2b0d8c2 | 2010-01-11 23:17:34 +0100 | [diff] [blame] | 501 | early_param("mem", early_mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
| 503 | static void __init |
| 504 | setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz) |
| 505 | { |
| 506 | #ifdef CONFIG_BLK_DEV_RAM |
| 507 | extern int rd_size, rd_image_start, rd_prompt, rd_doload; |
| 508 | |
| 509 | rd_image_start = image_start; |
| 510 | rd_prompt = prompt; |
| 511 | rd_doload = doload; |
| 512 | |
| 513 | if (rd_sz) |
| 514 | rd_size = rd_sz; |
| 515 | #endif |
| 516 | } |
| 517 | |
| 518 | static void __init |
| 519 | request_standard_resources(struct meminfo *mi, struct machine_desc *mdesc) |
| 520 | { |
| 521 | struct resource *res; |
| 522 | int i; |
| 523 | |
Russell King | 37efe64 | 2008-12-01 11:53:07 +0000 | [diff] [blame] | 524 | kernel_code.start = virt_to_phys(_text); |
| 525 | kernel_code.end = virt_to_phys(_etext - 1); |
| 526 | kernel_data.start = virt_to_phys(_data); |
| 527 | kernel_data.end = virt_to_phys(_end - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
| 529 | for (i = 0; i < mi->nr_banks; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | if (mi->bank[i].size == 0) |
| 531 | continue; |
| 532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | res = alloc_bootmem_low(sizeof(*res)); |
| 534 | res->name = "System RAM"; |
Nicolas Pitre | 3319f5e | 2008-10-02 03:29:22 +0100 | [diff] [blame] | 535 | res->start = mi->bank[i].start; |
| 536 | res->end = mi->bank[i].start + mi->bank[i].size - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
| 538 | |
| 539 | request_resource(&iomem_resource, res); |
| 540 | |
| 541 | if (kernel_code.start >= res->start && |
| 542 | kernel_code.end <= res->end) |
| 543 | request_resource(res, &kernel_code); |
| 544 | if (kernel_data.start >= res->start && |
| 545 | kernel_data.end <= res->end) |
| 546 | request_resource(res, &kernel_data); |
| 547 | } |
| 548 | |
| 549 | if (mdesc->video_start) { |
| 550 | video_ram.start = mdesc->video_start; |
| 551 | video_ram.end = mdesc->video_end; |
| 552 | request_resource(&iomem_resource, &video_ram); |
| 553 | } |
| 554 | |
| 555 | /* |
| 556 | * Some machines don't have the possibility of ever |
| 557 | * possessing lp0, lp1 or lp2 |
| 558 | */ |
| 559 | if (mdesc->reserve_lp0) |
| 560 | request_resource(&ioport_resource, &lp0); |
| 561 | if (mdesc->reserve_lp1) |
| 562 | request_resource(&ioport_resource, &lp1); |
| 563 | if (mdesc->reserve_lp2) |
| 564 | request_resource(&ioport_resource, &lp2); |
| 565 | } |
| 566 | |
| 567 | /* |
| 568 | * Tag parsing. |
| 569 | * |
| 570 | * This is the new way of passing data to the kernel at boot time. Rather |
| 571 | * than passing a fixed inflexible structure to the kernel, we pass a list |
| 572 | * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE |
| 573 | * tag for the list to be recognised (to distinguish the tagged list from |
| 574 | * a param_struct). The list is terminated with a zero-length tag (this tag |
| 575 | * is not parsed in any way). |
| 576 | */ |
| 577 | static int __init parse_tag_core(const struct tag *tag) |
| 578 | { |
| 579 | if (tag->hdr.size > 2) { |
| 580 | if ((tag->u.core.flags & 1) == 0) |
| 581 | root_mountflags &= ~MS_RDONLY; |
| 582 | ROOT_DEV = old_decode_dev(tag->u.core.rootdev); |
| 583 | } |
| 584 | return 0; |
| 585 | } |
| 586 | |
| 587 | __tagtable(ATAG_CORE, parse_tag_core); |
| 588 | |
| 589 | static int __init parse_tag_mem32(const struct tag *tag) |
| 590 | { |
Nicolas Pitre | 4b5f32c | 2008-10-06 13:24:40 -0400 | [diff] [blame] | 591 | return arm_add_memory(tag->u.mem.start, tag->u.mem.size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | __tagtable(ATAG_MEM, parse_tag_mem32); |
| 595 | |
| 596 | #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE) |
| 597 | struct screen_info screen_info = { |
| 598 | .orig_video_lines = 30, |
| 599 | .orig_video_cols = 80, |
| 600 | .orig_video_mode = 0, |
| 601 | .orig_video_ega_bx = 0, |
| 602 | .orig_video_isVGA = 1, |
| 603 | .orig_video_points = 8 |
| 604 | }; |
| 605 | |
| 606 | static int __init parse_tag_videotext(const struct tag *tag) |
| 607 | { |
| 608 | screen_info.orig_x = tag->u.videotext.x; |
| 609 | screen_info.orig_y = tag->u.videotext.y; |
| 610 | screen_info.orig_video_page = tag->u.videotext.video_page; |
| 611 | screen_info.orig_video_mode = tag->u.videotext.video_mode; |
| 612 | screen_info.orig_video_cols = tag->u.videotext.video_cols; |
| 613 | screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx; |
| 614 | screen_info.orig_video_lines = tag->u.videotext.video_lines; |
| 615 | screen_info.orig_video_isVGA = tag->u.videotext.video_isvga; |
| 616 | screen_info.orig_video_points = tag->u.videotext.video_points; |
| 617 | return 0; |
| 618 | } |
| 619 | |
| 620 | __tagtable(ATAG_VIDEOTEXT, parse_tag_videotext); |
| 621 | #endif |
| 622 | |
| 623 | static int __init parse_tag_ramdisk(const struct tag *tag) |
| 624 | { |
| 625 | setup_ramdisk((tag->u.ramdisk.flags & 1) == 0, |
| 626 | (tag->u.ramdisk.flags & 2) == 0, |
| 627 | tag->u.ramdisk.start, tag->u.ramdisk.size); |
| 628 | return 0; |
| 629 | } |
| 630 | |
| 631 | __tagtable(ATAG_RAMDISK, parse_tag_ramdisk); |
| 632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | static int __init parse_tag_serialnr(const struct tag *tag) |
| 634 | { |
| 635 | system_serial_low = tag->u.serialnr.low; |
| 636 | system_serial_high = tag->u.serialnr.high; |
| 637 | return 0; |
| 638 | } |
| 639 | |
| 640 | __tagtable(ATAG_SERIAL, parse_tag_serialnr); |
| 641 | |
| 642 | static int __init parse_tag_revision(const struct tag *tag) |
| 643 | { |
| 644 | system_rev = tag->u.revision.rev; |
| 645 | return 0; |
| 646 | } |
| 647 | |
| 648 | __tagtable(ATAG_REVISION, parse_tag_revision); |
| 649 | |
Alexander Holler | 92d2040 | 2010-02-16 19:04:53 +0100 | [diff] [blame] | 650 | #ifndef CONFIG_CMDLINE_FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | static int __init parse_tag_cmdline(const struct tag *tag) |
| 652 | { |
| 653 | strlcpy(default_command_line, tag->u.cmdline.cmdline, COMMAND_LINE_SIZE); |
| 654 | return 0; |
| 655 | } |
| 656 | |
| 657 | __tagtable(ATAG_CMDLINE, parse_tag_cmdline); |
Alexander Holler | 92d2040 | 2010-02-16 19:04:53 +0100 | [diff] [blame] | 658 | #endif /* CONFIG_CMDLINE_FORCE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
| 660 | /* |
| 661 | * Scan the tag table for this tag, and call its parse function. |
| 662 | * The tag table is built by the linker from all the __tagtable |
| 663 | * declarations. |
| 664 | */ |
| 665 | static int __init parse_tag(const struct tag *tag) |
| 666 | { |
| 667 | extern struct tagtable __tagtable_begin, __tagtable_end; |
| 668 | struct tagtable *t; |
| 669 | |
| 670 | for (t = &__tagtable_begin; t < &__tagtable_end; t++) |
| 671 | if (tag->hdr.tag == t->tag) { |
| 672 | t->parse(tag); |
| 673 | break; |
| 674 | } |
| 675 | |
| 676 | return t < &__tagtable_end; |
| 677 | } |
| 678 | |
| 679 | /* |
| 680 | * Parse all tags in the list, checking both the global and architecture |
| 681 | * specific tag tables. |
| 682 | */ |
| 683 | static void __init parse_tags(const struct tag *t) |
| 684 | { |
| 685 | for (; t->hdr.size; t = tag_next(t)) |
| 686 | if (!parse_tag(t)) |
| 687 | printk(KERN_WARNING |
| 688 | "Ignoring unrecognised tag 0x%08x\n", |
| 689 | t->hdr.tag); |
| 690 | } |
| 691 | |
| 692 | /* |
| 693 | * This holds our defaults. |
| 694 | */ |
| 695 | static struct init_tags { |
| 696 | struct tag_header hdr1; |
| 697 | struct tag_core core; |
| 698 | struct tag_header hdr2; |
| 699 | struct tag_mem32 mem; |
| 700 | struct tag_header hdr3; |
| 701 | } init_tags __initdata = { |
| 702 | { tag_size(tag_core), ATAG_CORE }, |
| 703 | { 1, PAGE_SIZE, 0xff }, |
| 704 | { tag_size(tag_mem32), ATAG_MEM }, |
| 705 | { MEM_SIZE, PHYS_OFFSET }, |
| 706 | { 0, ATAG_NONE } |
| 707 | }; |
| 708 | |
| 709 | static void (*init_machine)(void) __initdata; |
| 710 | |
| 711 | static int __init customize_machine(void) |
| 712 | { |
| 713 | /* customizes platform devices, or adds new ones */ |
| 714 | if (init_machine) |
| 715 | init_machine(); |
| 716 | return 0; |
| 717 | } |
| 718 | arch_initcall(customize_machine); |
| 719 | |
Mika Westerberg | 3c57fb4 | 2010-05-10 09:20:22 +0100 | [diff] [blame] | 720 | #ifdef CONFIG_KEXEC |
| 721 | static inline unsigned long long get_total_mem(void) |
| 722 | { |
| 723 | unsigned long total; |
| 724 | |
| 725 | total = max_low_pfn - min_low_pfn; |
| 726 | return total << PAGE_SHIFT; |
| 727 | } |
| 728 | |
| 729 | /** |
| 730 | * reserve_crashkernel() - reserves memory are for crash kernel |
| 731 | * |
| 732 | * This function reserves memory area given in "crashkernel=" kernel command |
| 733 | * line parameter. The memory reserved is used by a dump capture kernel when |
| 734 | * primary kernel is crashing. |
| 735 | */ |
| 736 | static void __init reserve_crashkernel(void) |
| 737 | { |
| 738 | unsigned long long crash_size, crash_base; |
| 739 | unsigned long long total_mem; |
| 740 | int ret; |
| 741 | |
| 742 | total_mem = get_total_mem(); |
| 743 | ret = parse_crashkernel(boot_command_line, total_mem, |
| 744 | &crash_size, &crash_base); |
| 745 | if (ret) |
| 746 | return; |
| 747 | |
| 748 | ret = reserve_bootmem(crash_base, crash_size, BOOTMEM_EXCLUSIVE); |
| 749 | if (ret < 0) { |
| 750 | printk(KERN_WARNING "crashkernel reservation failed - " |
| 751 | "memory is in use (0x%lx)\n", (unsigned long)crash_base); |
| 752 | return; |
| 753 | } |
| 754 | |
| 755 | printk(KERN_INFO "Reserving %ldMB of memory at %ldMB " |
| 756 | "for crashkernel (System RAM: %ldMB)\n", |
| 757 | (unsigned long)(crash_size >> 20), |
| 758 | (unsigned long)(crash_base >> 20), |
| 759 | (unsigned long)(total_mem >> 20)); |
| 760 | |
| 761 | crashk_res.start = crash_base; |
| 762 | crashk_res.end = crash_base + crash_size - 1; |
| 763 | insert_resource(&iomem_resource, &crashk_res); |
| 764 | } |
| 765 | #else |
| 766 | static inline void reserve_crashkernel(void) {} |
| 767 | #endif /* CONFIG_KEXEC */ |
| 768 | |
Mika Westerberg | cea0bb1 | 2010-05-10 09:29:32 +0100 | [diff] [blame] | 769 | /* |
| 770 | * Note: elfcorehdr_addr is not just limited to vmcore. It is also used by |
| 771 | * is_kdump_kernel() to determine if we are booting after a panic. Hence |
| 772 | * ifdef it under CONFIG_CRASH_DUMP and not CONFIG_PROC_VMCORE. |
| 773 | */ |
| 774 | |
| 775 | #ifdef CONFIG_CRASH_DUMP |
| 776 | /* |
| 777 | * elfcorehdr= specifies the location of elf core header stored by the crashed |
| 778 | * kernel. This option will be passed by kexec loader to the capture kernel. |
| 779 | */ |
| 780 | static int __init setup_elfcorehdr(char *arg) |
| 781 | { |
| 782 | char *end; |
| 783 | |
| 784 | if (!arg) |
| 785 | return -EINVAL; |
| 786 | |
| 787 | elfcorehdr_addr = memparse(arg, &end); |
| 788 | return end > arg ? 0 : -EINVAL; |
| 789 | } |
| 790 | early_param("elfcorehdr", setup_elfcorehdr); |
| 791 | #endif /* CONFIG_CRASH_DUMP */ |
| 792 | |
Uwe Kleine-König | 73a65b3 | 2010-01-19 10:13:14 +0100 | [diff] [blame] | 793 | static void __init squash_mem_tags(struct tag *tag) |
| 794 | { |
| 795 | for (; tag->hdr.size; tag = tag_next(tag)) |
| 796 | if (tag->hdr.tag == ATAG_MEM) |
| 797 | tag->hdr.tag = ATAG_NONE; |
| 798 | } |
| 799 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | void __init setup_arch(char **cmdline_p) |
| 801 | { |
| 802 | struct tag *tags = (struct tag *)&init_tags; |
| 803 | struct machine_desc *mdesc; |
| 804 | char *from = default_command_line; |
| 805 | |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 806 | unwind_init(); |
| 807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | setup_processor(); |
| 809 | mdesc = setup_machine(machine_arch_type); |
| 810 | machine_name = mdesc->name; |
| 811 | |
| 812 | if (mdesc->soft_reboot) |
| 813 | reboot_setup("s"); |
| 814 | |
Bill Gatliff | 9d20fdd | 2007-05-31 22:02:22 +0100 | [diff] [blame] | 815 | if (__atags_pointer) |
| 816 | tags = phys_to_virt(__atags_pointer); |
| 817 | else if (mdesc->boot_params) |
Russell King | f9bd6ea | 2005-07-04 10:43:36 +0100 | [diff] [blame] | 818 | tags = phys_to_virt(mdesc->boot_params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Uwe Kleine-König | 73a65b3 | 2010-01-19 10:13:14 +0100 | [diff] [blame] | 820 | #if defined(CONFIG_DEPRECATED_PARAM_STRUCT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | /* |
| 822 | * If we have the old style parameters, convert them to |
| 823 | * a tag list. |
| 824 | */ |
| 825 | if (tags->hdr.tag != ATAG_CORE) |
| 826 | convert_to_tag_list(tags); |
Uwe Kleine-König | 73a65b3 | 2010-01-19 10:13:14 +0100 | [diff] [blame] | 827 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | if (tags->hdr.tag != ATAG_CORE) |
| 829 | tags = (struct tag *)&init_tags; |
| 830 | |
| 831 | if (mdesc->fixup) |
| 832 | mdesc->fixup(mdesc, tags, &from, &meminfo); |
| 833 | |
| 834 | if (tags->hdr.tag == ATAG_CORE) { |
| 835 | if (meminfo.nr_banks != 0) |
| 836 | squash_mem_tags(tags); |
Richard Purdie | 4cd9d6f | 2008-01-02 00:56:46 +0100 | [diff] [blame] | 837 | save_atags(tags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | parse_tags(tags); |
| 839 | } |
| 840 | |
Russell King | 37efe64 | 2008-12-01 11:53:07 +0000 | [diff] [blame] | 841 | init_mm.start_code = (unsigned long) _text; |
| 842 | init_mm.end_code = (unsigned long) _etext; |
| 843 | init_mm.end_data = (unsigned long) _edata; |
| 844 | init_mm.brk = (unsigned long) _end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
Jeremy Kerr | 2b0d8c2 | 2010-01-11 23:17:34 +0100 | [diff] [blame] | 846 | /* parse_early_param needs a boot_command_line */ |
| 847 | strlcpy(boot_command_line, from, COMMAND_LINE_SIZE); |
| 848 | |
Jeremy Kerr | 48ab7e0 | 2010-01-27 01:13:31 +0100 | [diff] [blame] | 849 | /* populate cmd_line too for later use, preserving boot_command_line */ |
| 850 | strlcpy(cmd_line, boot_command_line, COMMAND_LINE_SIZE); |
| 851 | *cmdline_p = cmd_line; |
Jeremy Kerr | 2b0d8c2 | 2010-01-11 23:17:34 +0100 | [diff] [blame] | 852 | |
| 853 | parse_early_param(); |
| 854 | |
Russell King | 8d717a5 | 2010-05-22 19:47:18 +0100 | [diff] [blame] | 855 | arm_memblock_init(&meminfo, mdesc); |
Russell King | 2778f62 | 2010-07-09 16:27:52 +0100 | [diff] [blame] | 856 | |
Nicolas Pitre | 4b5f32c | 2008-10-06 13:24:40 -0400 | [diff] [blame] | 857 | paging_init(mdesc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | request_standard_resources(&meminfo, mdesc); |
| 859 | |
Russell King | 7bbb794 | 2006-02-16 11:08:09 +0000 | [diff] [blame] | 860 | #ifdef CONFIG_SMP |
| 861 | smp_init_cpus(); |
| 862 | #endif |
Mika Westerberg | 3c57fb4 | 2010-05-10 09:20:22 +0100 | [diff] [blame] | 863 | reserve_crashkernel(); |
Russell King | 7bbb794 | 2006-02-16 11:08:09 +0000 | [diff] [blame] | 864 | |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 865 | cpu_init(); |
Linus Walleij | bc58177 | 2009-09-15 17:30:37 +0100 | [diff] [blame] | 866 | tcm_init(); |
Russell King | ccea7a1 | 2005-05-31 22:22:32 +0100 | [diff] [blame] | 867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | /* |
| 869 | * Set up various architecture-specific pointers |
| 870 | */ |
eric miao | 354e6f7 | 2010-06-25 09:46:09 +0100 | [diff] [blame] | 871 | arch_nr_irqs = mdesc->nr_irqs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | init_arch_irq = mdesc->init_irq; |
| 873 | system_timer = mdesc->timer; |
| 874 | init_machine = mdesc->init_machine; |
| 875 | |
| 876 | #ifdef CONFIG_VT |
| 877 | #if defined(CONFIG_VGA_CONSOLE) |
| 878 | conswitchp = &vga_con; |
| 879 | #elif defined(CONFIG_DUMMY_CONSOLE) |
| 880 | conswitchp = &dummy_con; |
| 881 | #endif |
| 882 | #endif |
Jason Wessel | 5cbad0e | 2008-02-20 13:33:40 -0600 | [diff] [blame] | 883 | early_trap_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | |
| 887 | static int __init topology_init(void) |
| 888 | { |
| 889 | int cpu; |
| 890 | |
Russell King | 66fb8bd | 2007-03-13 09:54:21 +0000 | [diff] [blame] | 891 | for_each_possible_cpu(cpu) { |
| 892 | struct cpuinfo_arm *cpuinfo = &per_cpu(cpu_data, cpu); |
| 893 | cpuinfo->cpu.hotpluggable = 1; |
| 894 | register_cpu(&cpuinfo->cpu, cpu); |
| 895 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
| 897 | return 0; |
| 898 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | subsys_initcall(topology_init); |
| 900 | |
Russell King | e119bff | 2010-01-10 17:23:29 +0000 | [diff] [blame] | 901 | #ifdef CONFIG_HAVE_PROC_CPU |
| 902 | static int __init proc_cpu_init(void) |
| 903 | { |
| 904 | struct proc_dir_entry *res; |
| 905 | |
| 906 | res = proc_mkdir("cpu", NULL); |
| 907 | if (!res) |
| 908 | return -ENOMEM; |
| 909 | return 0; |
| 910 | } |
| 911 | fs_initcall(proc_cpu_init); |
| 912 | #endif |
| 913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | static const char *hwcap_str[] = { |
| 915 | "swp", |
| 916 | "half", |
| 917 | "thumb", |
| 918 | "26bit", |
| 919 | "fastmult", |
| 920 | "fpa", |
| 921 | "vfp", |
| 922 | "edsp", |
| 923 | "java", |
Paul Gortmaker | 8f7f943 | 2006-10-27 05:13:19 +0100 | [diff] [blame] | 924 | "iwmmxt", |
Lennert Buytenhek | 99e4a6d | 2006-12-18 00:59:10 +0100 | [diff] [blame] | 925 | "crunch", |
Catalin Marinas | 4369ae1 | 2008-11-06 13:23:06 +0000 | [diff] [blame] | 926 | "thumbee", |
Catalin Marinas | 2bedbdf | 2008-11-06 13:23:07 +0000 | [diff] [blame] | 927 | "neon", |
Catalin Marinas | 7279dc3 | 2009-02-11 13:13:56 +0100 | [diff] [blame] | 928 | "vfpv3", |
| 929 | "vfpv3d16", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | NULL |
| 931 | }; |
| 932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | static int c_show(struct seq_file *m, void *v) |
| 934 | { |
| 935 | int i; |
| 936 | |
| 937 | seq_printf(m, "Processor\t: %s rev %d (%s)\n", |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 938 | cpu_name, read_cpuid_id() & 15, elf_platform); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
| 940 | #if defined(CONFIG_SMP) |
| 941 | for_each_online_cpu(i) { |
Russell King | 1555972 | 2005-11-06 21:41:08 +0000 | [diff] [blame] | 942 | /* |
| 943 | * glibc reads /proc/cpuinfo to determine the number of |
| 944 | * online processors, looking for lines beginning with |
| 945 | * "processor". Give glibc what it expects. |
| 946 | */ |
| 947 | seq_printf(m, "processor\t: %d\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n", |
| 949 | per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ), |
| 950 | (per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100); |
| 951 | } |
| 952 | #else /* CONFIG_SMP */ |
| 953 | seq_printf(m, "BogoMIPS\t: %lu.%02lu\n", |
| 954 | loops_per_jiffy / (500000/HZ), |
| 955 | (loops_per_jiffy / (5000/HZ)) % 100); |
| 956 | #endif |
| 957 | |
| 958 | /* dump out the processor features */ |
| 959 | seq_puts(m, "Features\t: "); |
| 960 | |
| 961 | for (i = 0; hwcap_str[i]; i++) |
| 962 | if (elf_hwcap & (1 << i)) |
| 963 | seq_printf(m, "%s ", hwcap_str[i]); |
| 964 | |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 965 | seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | seq_printf(m, "CPU architecture: %s\n", proc_arch[cpu_architecture()]); |
| 967 | |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 968 | if ((read_cpuid_id() & 0x0008f000) == 0x00000000) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | /* pre-ARM7 */ |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 970 | seq_printf(m, "CPU part\t: %07x\n", read_cpuid_id() >> 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } else { |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 972 | if ((read_cpuid_id() & 0x0008f000) == 0x00007000) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | /* ARM7 */ |
| 974 | seq_printf(m, "CPU variant\t: 0x%02x\n", |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 975 | (read_cpuid_id() >> 16) & 127); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } else { |
| 977 | /* post-ARM7 */ |
| 978 | seq_printf(m, "CPU variant\t: 0x%x\n", |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 979 | (read_cpuid_id() >> 20) & 15); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | } |
| 981 | seq_printf(m, "CPU part\t: 0x%03x\n", |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 982 | (read_cpuid_id() >> 4) & 0xfff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | } |
Russell King | 0ba8b9b | 2008-08-10 18:08:10 +0100 | [diff] [blame] | 984 | seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | seq_puts(m, "\n"); |
| 987 | |
| 988 | seq_printf(m, "Hardware\t: %s\n", machine_name); |
| 989 | seq_printf(m, "Revision\t: %04x\n", system_rev); |
| 990 | seq_printf(m, "Serial\t\t: %08x%08x\n", |
| 991 | system_serial_high, system_serial_low); |
| 992 | |
| 993 | return 0; |
| 994 | } |
| 995 | |
| 996 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 997 | { |
| 998 | return *pos < 1 ? (void *)1 : NULL; |
| 999 | } |
| 1000 | |
| 1001 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 1002 | { |
| 1003 | ++*pos; |
| 1004 | return NULL; |
| 1005 | } |
| 1006 | |
| 1007 | static void c_stop(struct seq_file *m, void *v) |
| 1008 | { |
| 1009 | } |
| 1010 | |
Jan Engelhardt | 2ffd6e1 | 2008-01-22 20:41:07 +0100 | [diff] [blame] | 1011 | const struct seq_operations cpuinfo_op = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | .start = c_start, |
| 1013 | .next = c_next, |
| 1014 | .stop = c_stop, |
| 1015 | .show = c_show |
| 1016 | }; |