Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Based on arch/arm/kernel/setup.c |
| 3 | * |
| 4 | * Copyright (C) 1995-2001 Russell King |
| 5 | * Copyright (C) 2012 ARM Ltd. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | */ |
| 19 | |
| 20 | #include <linux/export.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/stddef.h> |
| 23 | #include <linux/ioport.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/utsname.h> |
| 26 | #include <linux/initrd.h> |
| 27 | #include <linux/console.h> |
| 28 | #include <linux/bootmem.h> |
| 29 | #include <linux/seq_file.h> |
| 30 | #include <linux/screen_info.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/kexec.h> |
| 33 | #include <linux/crash_dump.h> |
| 34 | #include <linux/root_dev.h> |
Catalin Marinas | de79a64 | 2013-02-08 12:18:15 +0000 | [diff] [blame] | 35 | #include <linux/clk-provider.h> |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 36 | #include <linux/cpu.h> |
| 37 | #include <linux/interrupt.h> |
| 38 | #include <linux/smp.h> |
| 39 | #include <linux/fs.h> |
| 40 | #include <linux/proc_fs.h> |
| 41 | #include <linux/memblock.h> |
| 42 | #include <linux/of_fdt.h> |
Catalin Marinas | d6bafb9 | 2012-12-07 17:47:17 +0000 | [diff] [blame] | 43 | #include <linux/of_platform.h> |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 44 | |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 45 | #include <asm/fixmap.h> |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 46 | #include <asm/cputype.h> |
| 47 | #include <asm/elf.h> |
| 48 | #include <asm/cputable.h> |
Mark Rutland | e8765b2 | 2013-10-24 20:30:17 +0100 | [diff] [blame] | 49 | #include <asm/cpu_ops.h> |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 50 | #include <asm/sections.h> |
| 51 | #include <asm/setup.h> |
Javi Merino | 4c7aa00 | 2012-08-29 09:47:19 +0100 | [diff] [blame] | 52 | #include <asm/smp_plat.h> |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 53 | #include <asm/cacheflush.h> |
| 54 | #include <asm/tlbflush.h> |
| 55 | #include <asm/traps.h> |
| 56 | #include <asm/memblock.h> |
Will Deacon | e790f1d | 2012-12-18 17:53:14 +0000 | [diff] [blame] | 57 | #include <asm/psci.h> |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 58 | |
| 59 | unsigned int processor_id; |
| 60 | EXPORT_SYMBOL(processor_id); |
| 61 | |
Steve Capper | 25804e6 | 2013-09-18 16:14:28 +0100 | [diff] [blame] | 62 | unsigned long elf_hwcap __read_mostly; |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 63 | EXPORT_SYMBOL_GPL(elf_hwcap); |
| 64 | |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 65 | #ifdef CONFIG_COMPAT |
| 66 | #define COMPAT_ELF_HWCAP_DEFAULT \ |
| 67 | (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\ |
| 68 | COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\ |
| 69 | COMPAT_HWCAP_TLS|COMPAT_HWCAP_VFP|\ |
| 70 | COMPAT_HWCAP_VFPv3|COMPAT_HWCAP_VFPv4|\ |
| 71 | COMPAT_HWCAP_NEON|COMPAT_HWCAP_IDIV) |
| 72 | unsigned int compat_elf_hwcap __read_mostly = COMPAT_ELF_HWCAP_DEFAULT; |
Ard Biesheuvel | 28964d3 | 2014-03-03 07:34:45 +0000 | [diff] [blame] | 73 | unsigned int compat_elf_hwcap2 __read_mostly; |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 74 | #endif |
| 75 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 76 | static const char *cpu_name; |
| 77 | static const char *machine_name; |
| 78 | phys_addr_t __fdt_pointer __initdata; |
| 79 | |
| 80 | /* |
| 81 | * Standard memory resources |
| 82 | */ |
| 83 | static struct resource mem_res[] = { |
| 84 | { |
| 85 | .name = "Kernel code", |
| 86 | .start = 0, |
| 87 | .end = 0, |
| 88 | .flags = IORESOURCE_MEM |
| 89 | }, |
| 90 | { |
| 91 | .name = "Kernel data", |
| 92 | .start = 0, |
| 93 | .end = 0, |
| 94 | .flags = IORESOURCE_MEM |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 | #define kernel_code mem_res[0] |
| 99 | #define kernel_data mem_res[1] |
| 100 | |
| 101 | void __init early_print(const char *str, ...) |
| 102 | { |
| 103 | char buf[256]; |
| 104 | va_list ap; |
| 105 | |
| 106 | va_start(ap, str); |
| 107 | vsnprintf(buf, sizeof(buf), str, ap); |
| 108 | va_end(ap); |
| 109 | |
| 110 | printk("%s", buf); |
| 111 | } |
| 112 | |
Will Deacon | 7158627 | 2013-11-05 18:10:47 +0000 | [diff] [blame] | 113 | void __init smp_setup_processor_id(void) |
| 114 | { |
| 115 | /* |
| 116 | * clear __my_cpu_offset on boot CPU to avoid hang caused by |
| 117 | * using percpu variable early, for example, lockdep will |
| 118 | * access percpu variable inside lock_release |
| 119 | */ |
| 120 | set_my_cpu_offset(0); |
| 121 | } |
| 122 | |
Sudeep KarkadaNagesha | 6e15d0e | 2013-10-21 13:29:42 +0100 | [diff] [blame] | 123 | bool arch_match_cpu_phys_id(int cpu, u64 phys_id) |
| 124 | { |
| 125 | return phys_id == cpu_logical_map(cpu); |
| 126 | } |
| 127 | |
Lorenzo Pieralisi | 976d7d3 | 2013-05-16 10:32:09 +0100 | [diff] [blame] | 128 | struct mpidr_hash mpidr_hash; |
| 129 | #ifdef CONFIG_SMP |
| 130 | /** |
| 131 | * smp_build_mpidr_hash - Pre-compute shifts required at each affinity |
| 132 | * level in order to build a linear index from an |
| 133 | * MPIDR value. Resulting algorithm is a collision |
| 134 | * free hash carried out through shifting and ORing |
| 135 | */ |
| 136 | static void __init smp_build_mpidr_hash(void) |
| 137 | { |
| 138 | u32 i, affinity, fs[4], bits[4], ls; |
| 139 | u64 mask = 0; |
| 140 | /* |
| 141 | * Pre-scan the list of MPIDRS and filter out bits that do |
| 142 | * not contribute to affinity levels, ie they never toggle. |
| 143 | */ |
| 144 | for_each_possible_cpu(i) |
| 145 | mask |= (cpu_logical_map(i) ^ cpu_logical_map(0)); |
| 146 | pr_debug("mask of set bits %#llx\n", mask); |
| 147 | /* |
| 148 | * Find and stash the last and first bit set at all affinity levels to |
| 149 | * check how many bits are required to represent them. |
| 150 | */ |
| 151 | for (i = 0; i < 4; i++) { |
| 152 | affinity = MPIDR_AFFINITY_LEVEL(mask, i); |
| 153 | /* |
| 154 | * Find the MSB bit and LSB bits position |
| 155 | * to determine how many bits are required |
| 156 | * to express the affinity level. |
| 157 | */ |
| 158 | ls = fls(affinity); |
| 159 | fs[i] = affinity ? ffs(affinity) - 1 : 0; |
| 160 | bits[i] = ls - fs[i]; |
| 161 | } |
| 162 | /* |
| 163 | * An index can be created from the MPIDR_EL1 by isolating the |
| 164 | * significant bits at each affinity level and by shifting |
| 165 | * them in order to compress the 32 bits values space to a |
| 166 | * compressed set of values. This is equivalent to hashing |
| 167 | * the MPIDR_EL1 through shifting and ORing. It is a collision free |
| 168 | * hash though not minimal since some levels might contain a number |
| 169 | * of CPUs that is not an exact power of 2 and their bit |
| 170 | * representation might contain holes, eg MPIDR_EL1[7:0] = {0x2, 0x80}. |
| 171 | */ |
| 172 | mpidr_hash.shift_aff[0] = MPIDR_LEVEL_SHIFT(0) + fs[0]; |
| 173 | mpidr_hash.shift_aff[1] = MPIDR_LEVEL_SHIFT(1) + fs[1] - bits[0]; |
| 174 | mpidr_hash.shift_aff[2] = MPIDR_LEVEL_SHIFT(2) + fs[2] - |
| 175 | (bits[1] + bits[0]); |
| 176 | mpidr_hash.shift_aff[3] = MPIDR_LEVEL_SHIFT(3) + |
| 177 | fs[3] - (bits[2] + bits[1] + bits[0]); |
| 178 | mpidr_hash.mask = mask; |
| 179 | mpidr_hash.bits = bits[3] + bits[2] + bits[1] + bits[0]; |
| 180 | pr_debug("MPIDR hash: aff0[%u] aff1[%u] aff2[%u] aff3[%u] mask[%#llx] bits[%u]\n", |
| 181 | mpidr_hash.shift_aff[0], |
| 182 | mpidr_hash.shift_aff[1], |
| 183 | mpidr_hash.shift_aff[2], |
| 184 | mpidr_hash.shift_aff[3], |
| 185 | mpidr_hash.mask, |
| 186 | mpidr_hash.bits); |
| 187 | /* |
| 188 | * 4x is an arbitrary value used to warn on a hash table much bigger |
| 189 | * than expected on most systems. |
| 190 | */ |
| 191 | if (mpidr_hash_size() > 4 * num_possible_cpus()) |
| 192 | pr_warn("Large number of MPIDR hash buckets detected\n"); |
| 193 | __flush_dcache_area(&mpidr_hash, sizeof(struct mpidr_hash)); |
| 194 | } |
| 195 | #endif |
| 196 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 197 | static void __init setup_processor(void) |
| 198 | { |
| 199 | struct cpu_info *cpu_info; |
Steve Capper | 4bff28c | 2013-12-16 21:04:36 +0000 | [diff] [blame] | 200 | u64 features, block; |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 201 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 202 | cpu_info = lookup_processor_type(read_cpuid_id()); |
| 203 | if (!cpu_info) { |
| 204 | printk("CPU configuration botched (ID %08x), unable to continue.\n", |
| 205 | read_cpuid_id()); |
| 206 | while (1); |
| 207 | } |
| 208 | |
| 209 | cpu_name = cpu_info->cpu_name; |
| 210 | |
| 211 | printk("CPU: %s [%08x] revision %d\n", |
| 212 | cpu_name, read_cpuid_id(), read_cpuid_id() & 15); |
| 213 | |
Will Deacon | 94ed1f2 | 2013-10-11 14:52:11 +0100 | [diff] [blame] | 214 | sprintf(init_utsname()->machine, ELF_PLATFORM); |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 215 | elf_hwcap = 0; |
Steve Capper | 4bff28c | 2013-12-16 21:04:36 +0000 | [diff] [blame] | 216 | |
| 217 | /* |
| 218 | * ID_AA64ISAR0_EL1 contains 4-bit wide signed feature blocks. |
| 219 | * The blocks we test below represent incremental functionality |
| 220 | * for non-negative values. Negative values are reserved. |
| 221 | */ |
| 222 | features = read_cpuid(ID_AA64ISAR0_EL1); |
| 223 | block = (features >> 4) & 0xf; |
| 224 | if (!(block & 0x8)) { |
| 225 | switch (block) { |
| 226 | default: |
| 227 | case 2: |
| 228 | elf_hwcap |= HWCAP_PMULL; |
| 229 | case 1: |
| 230 | elf_hwcap |= HWCAP_AES; |
| 231 | case 0: |
| 232 | break; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | block = (features >> 8) & 0xf; |
| 237 | if (block && !(block & 0x8)) |
| 238 | elf_hwcap |= HWCAP_SHA1; |
| 239 | |
| 240 | block = (features >> 12) & 0xf; |
| 241 | if (block && !(block & 0x8)) |
| 242 | elf_hwcap |= HWCAP_SHA2; |
| 243 | |
| 244 | block = (features >> 16) & 0xf; |
| 245 | if (block && !(block & 0x8)) |
| 246 | elf_hwcap |= HWCAP_CRC32; |
Ard Biesheuvel | 4cf761c | 2014-03-03 07:34:46 +0000 | [diff] [blame] | 247 | |
| 248 | #ifdef CONFIG_COMPAT |
| 249 | /* |
| 250 | * ID_ISAR5_EL1 carries similar information as above, but pertaining to |
| 251 | * the Aarch32 32-bit execution state. |
| 252 | */ |
| 253 | features = read_cpuid(ID_ISAR5_EL1); |
| 254 | block = (features >> 4) & 0xf; |
| 255 | if (!(block & 0x8)) { |
| 256 | switch (block) { |
| 257 | default: |
| 258 | case 2: |
| 259 | compat_elf_hwcap2 |= COMPAT_HWCAP2_PMULL; |
| 260 | case 1: |
| 261 | compat_elf_hwcap2 |= COMPAT_HWCAP2_AES; |
| 262 | case 0: |
| 263 | break; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | block = (features >> 8) & 0xf; |
| 268 | if (block && !(block & 0x8)) |
| 269 | compat_elf_hwcap2 |= COMPAT_HWCAP2_SHA1; |
| 270 | |
| 271 | block = (features >> 12) & 0xf; |
| 272 | if (block && !(block & 0x8)) |
| 273 | compat_elf_hwcap2 |= COMPAT_HWCAP2_SHA2; |
| 274 | |
| 275 | block = (features >> 16) & 0xf; |
| 276 | if (block && !(block & 0x8)) |
| 277 | compat_elf_hwcap2 |= COMPAT_HWCAP2_CRC32; |
| 278 | #endif |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | static void __init setup_machine_fdt(phys_addr_t dt_phys) |
| 282 | { |
Rob Herring | d5189cc | 2013-08-26 10:14:32 -0500 | [diff] [blame] | 283 | if (!dt_phys || !early_init_dt_scan(phys_to_virt(dt_phys))) { |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 284 | early_print("\n" |
| 285 | "Error: invalid device tree blob at physical address 0x%p (virtual address 0x%p)\n" |
Rob Herring | d5189cc | 2013-08-26 10:14:32 -0500 | [diff] [blame] | 286 | "The dtb must be 8-byte aligned and passed in the first 512MB of memory\n" |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 287 | "\nPlease check your bootloader.\n", |
Rob Herring | d5189cc | 2013-08-26 10:14:32 -0500 | [diff] [blame] | 288 | dt_phys, phys_to_virt(dt_phys)); |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 289 | |
| 290 | while (true) |
| 291 | cpu_relax(); |
| 292 | } |
| 293 | |
Rob Herring | f2b99bc | 2013-08-27 21:44:37 -0500 | [diff] [blame] | 294 | machine_name = of_flat_dt_get_machine_name(); |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 297 | /* |
| 298 | * Limit the memory size that was specified via FDT. |
| 299 | */ |
| 300 | static int __init early_mem(char *p) |
| 301 | { |
| 302 | phys_addr_t limit; |
| 303 | |
| 304 | if (!p) |
| 305 | return 1; |
| 306 | |
| 307 | limit = memparse(p, &p) & PAGE_MASK; |
| 308 | pr_notice("Memory limited to %lldMB\n", limit >> 20); |
| 309 | |
| 310 | memblock_enforce_memory_limit(limit); |
| 311 | |
| 312 | return 0; |
| 313 | } |
| 314 | early_param("mem", early_mem); |
| 315 | |
| 316 | static void __init request_standard_resources(void) |
| 317 | { |
| 318 | struct memblock_region *region; |
| 319 | struct resource *res; |
| 320 | |
| 321 | kernel_code.start = virt_to_phys(_text); |
| 322 | kernel_code.end = virt_to_phys(_etext - 1); |
| 323 | kernel_data.start = virt_to_phys(_sdata); |
| 324 | kernel_data.end = virt_to_phys(_end - 1); |
| 325 | |
| 326 | for_each_memblock(memory, region) { |
| 327 | res = alloc_bootmem_low(sizeof(*res)); |
| 328 | res->name = "System RAM"; |
| 329 | res->start = __pfn_to_phys(memblock_region_memory_base_pfn(region)); |
| 330 | res->end = __pfn_to_phys(memblock_region_memory_end_pfn(region)) - 1; |
| 331 | res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
| 332 | |
| 333 | request_resource(&iomem_resource, res); |
| 334 | |
| 335 | if (kernel_code.start >= res->start && |
| 336 | kernel_code.end <= res->end) |
| 337 | request_resource(res, &kernel_code); |
| 338 | if (kernel_data.start >= res->start && |
| 339 | kernel_data.end <= res->end) |
| 340 | request_resource(res, &kernel_data); |
| 341 | } |
| 342 | } |
| 343 | |
Javi Merino | 4c7aa00 | 2012-08-29 09:47:19 +0100 | [diff] [blame] | 344 | u64 __cpu_logical_map[NR_CPUS] = { [0 ... NR_CPUS-1] = INVALID_HWID }; |
| 345 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 346 | void __init setup_arch(char **cmdline_p) |
| 347 | { |
Catalin Marinas | b3bf6aa | 2013-11-21 14:46:17 +0000 | [diff] [blame] | 348 | /* |
| 349 | * Unmask asynchronous aborts early to catch possible system errors. |
| 350 | */ |
| 351 | local_async_enable(); |
| 352 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 353 | setup_processor(); |
| 354 | |
| 355 | setup_machine_fdt(__fdt_pointer); |
| 356 | |
| 357 | init_mm.start_code = (unsigned long) _text; |
| 358 | init_mm.end_code = (unsigned long) _etext; |
| 359 | init_mm.end_data = (unsigned long) _edata; |
| 360 | init_mm.brk = (unsigned long) _end; |
| 361 | |
| 362 | *cmdline_p = boot_command_line; |
| 363 | |
Mark Salter | 0bf757c | 2014-04-07 15:39:51 -0700 | [diff] [blame] | 364 | init_mem_pgprot(); |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 365 | early_ioremap_init(); |
Mark Salter | 0bf757c | 2014-04-07 15:39:51 -0700 | [diff] [blame] | 366 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 367 | parse_early_param(); |
| 368 | |
| 369 | arm64_memblock_init(); |
| 370 | |
| 371 | paging_init(); |
| 372 | request_standard_resources(); |
| 373 | |
| 374 | unflatten_device_tree(); |
| 375 | |
Will Deacon | e790f1d | 2012-12-18 17:53:14 +0000 | [diff] [blame] | 376 | psci_init(); |
| 377 | |
Javi Merino | 4c7aa00 | 2012-08-29 09:47:19 +0100 | [diff] [blame] | 378 | cpu_logical_map(0) = read_cpuid_mpidr() & MPIDR_HWID_BITMASK; |
Mark Rutland | e8765b2 | 2013-10-24 20:30:17 +0100 | [diff] [blame] | 379 | cpu_read_bootcpu_ops(); |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 380 | #ifdef CONFIG_SMP |
| 381 | smp_init_cpus(); |
Lorenzo Pieralisi | 976d7d3 | 2013-05-16 10:32:09 +0100 | [diff] [blame] | 382 | smp_build_mpidr_hash(); |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 383 | #endif |
| 384 | |
| 385 | #ifdef CONFIG_VT |
| 386 | #if defined(CONFIG_VGA_CONSOLE) |
| 387 | conswitchp = &vga_con; |
| 388 | #elif defined(CONFIG_DUMMY_CONSOLE) |
| 389 | conswitchp = &dummy_con; |
| 390 | #endif |
| 391 | #endif |
| 392 | } |
| 393 | |
Catalin Marinas | c560ecf | 2013-05-14 10:51:18 +0100 | [diff] [blame] | 394 | static int __init arm64_device_init(void) |
Catalin Marinas | de79a64 | 2013-02-08 12:18:15 +0000 | [diff] [blame] | 395 | { |
Catalin Marinas | c560ecf | 2013-05-14 10:51:18 +0100 | [diff] [blame] | 396 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); |
Catalin Marinas | de79a64 | 2013-02-08 12:18:15 +0000 | [diff] [blame] | 397 | return 0; |
| 398 | } |
Catalin Marinas | 6ecba8e | 2014-04-25 15:31:45 +0100 | [diff] [blame] | 399 | arch_initcall_sync(arm64_device_init); |
Catalin Marinas | de79a64 | 2013-02-08 12:18:15 +0000 | [diff] [blame] | 400 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 401 | static DEFINE_PER_CPU(struct cpu, cpu_data); |
| 402 | |
| 403 | static int __init topology_init(void) |
| 404 | { |
| 405 | int i; |
| 406 | |
| 407 | for_each_possible_cpu(i) { |
| 408 | struct cpu *cpu = &per_cpu(cpu_data, i); |
| 409 | cpu->hotpluggable = 1; |
| 410 | register_cpu(cpu, i); |
| 411 | } |
| 412 | |
| 413 | return 0; |
| 414 | } |
| 415 | subsys_initcall(topology_init); |
| 416 | |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 417 | static const char *hwcap_str[] = { |
| 418 | "fp", |
| 419 | "asimd", |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 420 | "evtstrm", |
Steve Capper | 4bff28c | 2013-12-16 21:04:36 +0000 | [diff] [blame] | 421 | "aes", |
| 422 | "pmull", |
| 423 | "sha1", |
| 424 | "sha2", |
| 425 | "crc32", |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 426 | NULL |
| 427 | }; |
| 428 | |
| 429 | static int c_show(struct seq_file *m, void *v) |
| 430 | { |
| 431 | int i; |
| 432 | |
| 433 | seq_printf(m, "Processor\t: %s rev %d (%s)\n", |
| 434 | cpu_name, read_cpuid_id() & 15, ELF_PLATFORM); |
| 435 | |
| 436 | for_each_online_cpu(i) { |
| 437 | /* |
| 438 | * glibc reads /proc/cpuinfo to determine the number of |
| 439 | * online processors, looking for lines beginning with |
| 440 | * "processor". Give glibc what it expects. |
| 441 | */ |
| 442 | #ifdef CONFIG_SMP |
| 443 | seq_printf(m, "processor\t: %d\n", i); |
| 444 | #endif |
Catalin Marinas | 9703d9d | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | /* dump out the processor features */ |
| 448 | seq_puts(m, "Features\t: "); |
| 449 | |
| 450 | for (i = 0; hwcap_str[i]; i++) |
| 451 | if (elf_hwcap & (1 << i)) |
| 452 | seq_printf(m, "%s ", hwcap_str[i]); |
| 453 | |
| 454 | seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24); |
| 455 | seq_printf(m, "CPU architecture: AArch64\n"); |
| 456 | seq_printf(m, "CPU variant\t: 0x%x\n", (read_cpuid_id() >> 20) & 15); |
| 457 | seq_printf(m, "CPU part\t: 0x%03x\n", (read_cpuid_id() >> 4) & 0xfff); |
| 458 | seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15); |
| 459 | |
| 460 | seq_puts(m, "\n"); |
| 461 | |
| 462 | seq_printf(m, "Hardware\t: %s\n", machine_name); |
| 463 | |
| 464 | return 0; |
| 465 | } |
| 466 | |
| 467 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 468 | { |
| 469 | return *pos < 1 ? (void *)1 : NULL; |
| 470 | } |
| 471 | |
| 472 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 473 | { |
| 474 | ++*pos; |
| 475 | return NULL; |
| 476 | } |
| 477 | |
| 478 | static void c_stop(struct seq_file *m, void *v) |
| 479 | { |
| 480 | } |
| 481 | |
| 482 | const struct seq_operations cpuinfo_op = { |
| 483 | .start = c_start, |
| 484 | .next = c_next, |
| 485 | .stop = c_stop, |
| 486 | .show = c_show |
| 487 | }; |