Grant Likely | 9eb8f67 | 2011-04-28 14:27:20 -0600 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/kernel/devtree.c |
| 3 | * |
| 4 | * Copyright (C) 2009 Canonical Ltd. <jeremy.kerr@canonical.com> |
| 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 | */ |
| 10 | |
| 11 | #include <linux/init.h> |
Paul Gortmaker | ecea4ab | 2011-07-22 10:58:34 -0400 | [diff] [blame] | 12 | #include <linux/export.h> |
Grant Likely | 9eb8f67 | 2011-04-28 14:27:20 -0600 | [diff] [blame] | 13 | #include <linux/errno.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/bootmem.h> |
| 16 | #include <linux/memblock.h> |
| 17 | #include <linux/of.h> |
| 18 | #include <linux/of_fdt.h> |
| 19 | #include <linux/of_irq.h> |
| 20 | #include <linux/of_platform.h> |
Stephen Boyd | 6c3ff8b | 2013-10-30 18:21:09 -0700 | [diff] [blame] | 21 | #include <linux/smp.h> |
Grant Likely | 9eb8f67 | 2011-04-28 14:27:20 -0600 | [diff] [blame] | 22 | |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 23 | #include <asm/cputype.h> |
Grant Likely | 9eb8f67 | 2011-04-28 14:27:20 -0600 | [diff] [blame] | 24 | #include <asm/setup.h> |
| 25 | #include <asm/page.h> |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 26 | #include <asm/smp_plat.h> |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 27 | #include <asm/mach/arch.h> |
| 28 | #include <asm/mach-types.h> |
Grant Likely | 9eb8f67 | 2011-04-28 14:27:20 -0600 | [diff] [blame] | 29 | |
| 30 | void __init early_init_dt_add_memory_arch(u64 base, u64 size) |
| 31 | { |
| 32 | arm_add_memory(base, size); |
| 33 | } |
| 34 | |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 35 | void __init arm_dt_memblock_reserve(void) |
| 36 | { |
| 37 | u64 *reserve_map, base, size; |
| 38 | |
| 39 | if (!initial_boot_params) |
| 40 | return; |
| 41 | |
| 42 | /* Reserve the dtb region */ |
| 43 | memblock_reserve(virt_to_phys(initial_boot_params), |
| 44 | be32_to_cpu(initial_boot_params->totalsize)); |
| 45 | |
| 46 | /* |
| 47 | * Process the reserve map. This will probably overlap the initrd |
| 48 | * and dtb locations which are already reserved, but overlaping |
| 49 | * doesn't hurt anything |
| 50 | */ |
| 51 | reserve_map = ((void*)initial_boot_params) + |
| 52 | be32_to_cpu(initial_boot_params->off_mem_rsvmap); |
| 53 | while (1) { |
| 54 | base = be64_to_cpup(reserve_map++); |
| 55 | size = be64_to_cpup(reserve_map++); |
| 56 | if (!size) |
| 57 | break; |
| 58 | memblock_reserve(base, size); |
| 59 | } |
| 60 | } |
| 61 | |
Stephen Boyd | 6c3ff8b | 2013-10-30 18:21:09 -0700 | [diff] [blame] | 62 | #ifdef CONFIG_SMP |
| 63 | extern struct of_cpu_method __cpu_method_of_table_begin[]; |
| 64 | extern struct of_cpu_method __cpu_method_of_table_end[]; |
| 65 | |
| 66 | static int __init set_smp_ops_by_method(struct device_node *node) |
| 67 | { |
| 68 | const char *method; |
| 69 | struct of_cpu_method *m = __cpu_method_of_table_begin; |
| 70 | |
| 71 | if (of_property_read_string(node, "enable-method", &method)) |
| 72 | return 0; |
| 73 | |
| 74 | for (; m < __cpu_method_of_table_end; m++) |
| 75 | if (!strcmp(m->method, method)) { |
| 76 | smp_set_ops(m->ops); |
| 77 | return 1; |
| 78 | } |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | #else |
| 83 | static inline int set_smp_ops_by_method(struct device_node *node) |
| 84 | { |
| 85 | return 1; |
| 86 | } |
| 87 | #endif |
| 88 | |
| 89 | |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 90 | /* |
| 91 | * arm_dt_init_cpu_maps - Function retrieves cpu nodes from the device tree |
| 92 | * and builds the cpu logical map array containing MPIDR values related to |
| 93 | * logical cpus |
| 94 | * |
| 95 | * Updates the cpu possible mask with the number of parsed cpu nodes |
| 96 | */ |
| 97 | void __init arm_dt_init_cpu_maps(void) |
| 98 | { |
| 99 | /* |
| 100 | * Temp logical map is initialized with UINT_MAX values that are |
| 101 | * considered invalid logical map entries since the logical map must |
| 102 | * contain a list of MPIDR[23:0] values where MPIDR[31:24] must |
| 103 | * read as 0. |
| 104 | */ |
| 105 | struct device_node *cpu, *cpus; |
Stephen Boyd | 6c3ff8b | 2013-10-30 18:21:09 -0700 | [diff] [blame] | 106 | int found_method = 0; |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 107 | u32 i, j, cpuidx = 1; |
| 108 | u32 mpidr = is_smp() ? read_cpuid_mpidr() & MPIDR_HWID_BITMASK : 0; |
| 109 | |
Lorenzo Pieralisi | 18d7f15 | 2013-06-19 10:40:48 +0100 | [diff] [blame] | 110 | u32 tmp_map[NR_CPUS] = { [0 ... NR_CPUS-1] = MPIDR_INVALID }; |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 111 | bool bootcpu_valid = false; |
| 112 | cpus = of_find_node_by_path("/cpus"); |
| 113 | |
| 114 | if (!cpus) |
| 115 | return; |
| 116 | |
| 117 | for_each_child_of_node(cpus, cpu) { |
| 118 | u32 hwid; |
| 119 | |
Lorenzo Pieralisi | 1ba9bf0 | 2013-06-19 10:36:26 +0100 | [diff] [blame] | 120 | if (of_node_cmp(cpu->type, "cpu")) |
| 121 | continue; |
| 122 | |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 123 | pr_debug(" * %s...\n", cpu->full_name); |
| 124 | /* |
| 125 | * A device tree containing CPU nodes with missing "reg" |
| 126 | * properties is considered invalid to build the |
| 127 | * cpu_logical_map. |
| 128 | */ |
| 129 | if (of_property_read_u32(cpu, "reg", &hwid)) { |
| 130 | pr_debug(" * %s missing reg property\n", |
| 131 | cpu->full_name); |
| 132 | return; |
| 133 | } |
| 134 | |
| 135 | /* |
| 136 | * 8 MSBs must be set to 0 in the DT since the reg property |
| 137 | * defines the MPIDR[23:0]. |
| 138 | */ |
| 139 | if (hwid & ~MPIDR_HWID_BITMASK) |
| 140 | return; |
| 141 | |
| 142 | /* |
| 143 | * Duplicate MPIDRs are a recipe for disaster. |
| 144 | * Scan all initialized entries and check for |
| 145 | * duplicates. If any is found just bail out. |
| 146 | * temp values were initialized to UINT_MAX |
| 147 | * to avoid matching valid MPIDR[23:0] values. |
| 148 | */ |
| 149 | for (j = 0; j < cpuidx; j++) |
| 150 | if (WARN(tmp_map[j] == hwid, "Duplicate /cpu reg " |
| 151 | "properties in the DT\n")) |
| 152 | return; |
| 153 | |
| 154 | /* |
| 155 | * Build a stashed array of MPIDR values. Numbering scheme |
| 156 | * requires that if detected the boot CPU must be assigned |
| 157 | * logical id 0. Other CPUs get sequential indexes starting |
| 158 | * from 1. If a CPU node with a reg property matching the |
| 159 | * boot CPU MPIDR is detected, this is recorded so that the |
| 160 | * logical map built from DT is validated and can be used |
| 161 | * to override the map created in smp_setup_processor_id(). |
| 162 | */ |
| 163 | if (hwid == mpidr) { |
| 164 | i = 0; |
| 165 | bootcpu_valid = true; |
| 166 | } else { |
| 167 | i = cpuidx++; |
| 168 | } |
| 169 | |
Lorenzo Pieralisi | ce7b175 | 2012-11-22 18:02:54 +0100 | [diff] [blame] | 170 | if (WARN(cpuidx > nr_cpu_ids, "DT /cpu %u nodes greater than " |
| 171 | "max cores %u, capping them\n", |
| 172 | cpuidx, nr_cpu_ids)) { |
| 173 | cpuidx = nr_cpu_ids; |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 174 | break; |
Lorenzo Pieralisi | ce7b175 | 2012-11-22 18:02:54 +0100 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | tmp_map[i] = hwid; |
Stephen Boyd | 6c3ff8b | 2013-10-30 18:21:09 -0700 | [diff] [blame] | 178 | |
| 179 | if (!found_method) |
| 180 | found_method = set_smp_ops_by_method(cpu); |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Stephen Boyd | 6c3ff8b | 2013-10-30 18:21:09 -0700 | [diff] [blame] | 183 | /* |
| 184 | * Fallback to an enable-method in the cpus node if nothing found in |
| 185 | * a cpu node. |
| 186 | */ |
| 187 | if (!found_method) |
| 188 | set_smp_ops_by_method(cpus); |
| 189 | |
Olof Johansson | 8d5bc1a | 2013-06-29 16:25:14 -0700 | [diff] [blame] | 190 | if (!bootcpu_valid) { |
| 191 | pr_warn("DT missing boot CPU MPIDR[23:0], fall back to default cpu_logical_map\n"); |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 192 | return; |
Olof Johansson | 8d5bc1a | 2013-06-29 16:25:14 -0700 | [diff] [blame] | 193 | } |
Lorenzo Pieralisi | a0ae0240 | 2011-11-17 17:31:51 +0000 | [diff] [blame] | 194 | |
| 195 | /* |
| 196 | * Since the boot CPU node contains proper data, and all nodes have |
| 197 | * a reg property, the DT CPU list can be considered valid and the |
| 198 | * logical map created in smp_setup_processor_id() can be overridden |
| 199 | */ |
| 200 | for (i = 0; i < cpuidx; i++) { |
| 201 | set_cpu_possible(i, true); |
| 202 | cpu_logical_map(i) = tmp_map[i]; |
| 203 | pr_debug("cpu logical map 0x%x\n", cpu_logical_map(i)); |
| 204 | } |
| 205 | } |
| 206 | |
Sudeep KarkadaNagesha | 973e02c | 2013-06-17 13:11:29 +0100 | [diff] [blame] | 207 | bool arch_match_cpu_phys_id(int cpu, u64 phys_id) |
| 208 | { |
Sudeep Holla | e44ef89 | 2014-01-08 18:24:21 +0100 | [diff] [blame] | 209 | return phys_id == cpu_logical_map(cpu); |
Sudeep KarkadaNagesha | 973e02c | 2013-06-17 13:11:29 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Rob Herring | 6d67a9f | 2013-08-27 21:43:49 -0500 | [diff] [blame] | 212 | static const void * __init arch_get_next_mach(const char *const **match) |
| 213 | { |
| 214 | static const struct machine_desc *mdesc = __arch_info_begin; |
| 215 | const struct machine_desc *m = mdesc; |
| 216 | |
| 217 | if (m >= __arch_info_end) |
| 218 | return NULL; |
| 219 | |
| 220 | mdesc++; |
| 221 | *match = m->dt_compat; |
| 222 | return m; |
| 223 | } |
| 224 | |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 225 | /** |
| 226 | * setup_machine_fdt - Machine setup when an dtb was passed to the kernel |
| 227 | * @dt_phys: physical address of dt blob |
| 228 | * |
| 229 | * If a dtb was passed to the kernel in r2, then use it to choose the |
| 230 | * correct machine_desc and to setup the system. |
| 231 | */ |
Russell King | ff69a4c | 2013-07-26 14:55:59 +0100 | [diff] [blame] | 232 | const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys) |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 233 | { |
Russell King | ff69a4c | 2013-07-26 14:55:59 +0100 | [diff] [blame] | 234 | const struct machine_desc *mdesc, *mdesc_best = NULL; |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 235 | |
Arnd Bergmann | 883a106 | 2013-01-31 17:51:18 +0000 | [diff] [blame] | 236 | #ifdef CONFIG_ARCH_MULTIPLATFORM |
| 237 | DT_MACHINE_START(GENERIC_DT, "Generic DT based system") |
| 238 | MACHINE_END |
| 239 | |
Russell King | ff69a4c | 2013-07-26 14:55:59 +0100 | [diff] [blame] | 240 | mdesc_best = &__mach_desc_GENERIC_DT; |
Arnd Bergmann | 883a106 | 2013-01-31 17:51:18 +0000 | [diff] [blame] | 241 | #endif |
| 242 | |
Rob Herring | 56dc1f4 | 2013-08-26 10:13:01 -0500 | [diff] [blame] | 243 | if (!dt_phys || !early_init_dt_scan(phys_to_virt(dt_phys))) |
Nicolas Pitre | f506cd4 | 2011-06-09 04:58:36 +0100 | [diff] [blame] | 244 | return NULL; |
| 245 | |
Rob Herring | 6d67a9f | 2013-08-27 21:43:49 -0500 | [diff] [blame] | 246 | mdesc = of_flat_dt_match_machine(mdesc_best, arch_get_next_mach); |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 247 | |
Rob Herring | 6d67a9f | 2013-08-27 21:43:49 -0500 | [diff] [blame] | 248 | if (!mdesc) { |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 249 | const char *prop; |
| 250 | long size; |
Rob Herring | 6d67a9f | 2013-08-27 21:43:49 -0500 | [diff] [blame] | 251 | unsigned long dt_root; |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 252 | |
| 253 | early_print("\nError: unrecognized/unsupported " |
| 254 | "device tree compatible list:\n[ "); |
| 255 | |
Rob Herring | 6d67a9f | 2013-08-27 21:43:49 -0500 | [diff] [blame] | 256 | dt_root = of_get_flat_dt_root(); |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 257 | prop = of_get_flat_dt_prop(dt_root, "compatible", &size); |
| 258 | while (size > 0) { |
| 259 | early_print("'%s' ", prop); |
| 260 | size -= strlen(prop) + 1; |
| 261 | prop += strlen(prop) + 1; |
| 262 | } |
| 263 | early_print("]\n\n"); |
| 264 | |
| 265 | dump_machine_table(); /* does not return */ |
| 266 | } |
| 267 | |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 268 | /* Change machine number to match the mdesc we're using */ |
Rob Herring | 6d67a9f | 2013-08-27 21:43:49 -0500 | [diff] [blame] | 269 | __machine_arch_type = mdesc->nr; |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 270 | |
Rob Herring | 6d67a9f | 2013-08-27 21:43:49 -0500 | [diff] [blame] | 271 | return mdesc; |
Grant Likely | 93c02ab | 2011-04-28 14:27:21 -0600 | [diff] [blame] | 272 | } |