1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Procedures for creating, accessing and interpreting the device tree. 4 * 5 * Paul Mackerras August 1996. 6 * Copyright (C) 1996-2005 Paul Mackerras. 7 * 8 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner. 9 * {engebret|bergner}@us.ibm.com 10 */ 11 12 #undef DEBUG 13 14 #include <linux/kernel.h> 15 #include <linux/string.h> 16 #include <linux/init.h> 17 #include <linux/threads.h> 18 #include <linux/spinlock.h> 19 #include <linux/types.h> 20 #include <linux/pci.h> 21 #include <linux/delay.h> 22 #include <linux/initrd.h> 23 #include <linux/bitops.h> 24 #include <linux/export.h> 25 #include <linux/kexec.h> 26 #include <linux/irq.h> 27 #include <linux/memblock.h> 28 #include <linux/of.h> 29 #include <linux/of_fdt.h> 30 #include <linux/libfdt.h> 31 #include <linux/cpu.h> 32 #include <linux/pgtable.h> 33 #include <linux/seq_buf.h> 34 35 #include <asm/rtas.h> 36 #include <asm/page.h> 37 #include <asm/processor.h> 38 #include <asm/irq.h> 39 #include <asm/io.h> 40 #include <asm/kdump.h> 41 #include <asm/smp.h> 42 #include <asm/mmu.h> 43 #include <asm/paca.h> 44 #include <asm/powernv.h> 45 #include <asm/iommu.h> 46 #include <asm/btext.h> 47 #include <asm/sections.h> 48 #include <asm/setup.h> 49 #include <asm/pci-bridge.h> 50 #include <asm/kexec.h> 51 #include <asm/opal.h> 52 #include <asm/fadump.h> 53 #include <asm/epapr_hcalls.h> 54 #include <asm/firmware.h> 55 #include <asm/dt_cpu_ftrs.h> 56 #include <asm/drmem.h> 57 #include <asm/ultravisor.h> 58 #include <asm/prom.h> 59 60 #include <mm/mmu_decl.h> 61 62 #ifdef DEBUG 63 #define DBG(fmt...) printk(KERN_ERR fmt) 64 #else 65 #define DBG(fmt...) 66 #endif 67 68 int *chip_id_lookup_table; 69 70 #ifdef CONFIG_PPC64 71 int __initdata iommu_is_off; 72 int __initdata iommu_force_on; 73 unsigned long tce_alloc_start, tce_alloc_end; 74 u64 ppc64_rma_size; 75 #endif 76 static phys_addr_t first_memblock_size; 77 static int __initdata boot_cpu_count; 78 79 static int __init early_parse_mem(char *p) 80 { 81 if (!p) 82 return 1; 83 84 memory_limit = PAGE_ALIGN(memparse(p, &p)); 85 DBG("memory limit = 0x%llx\n", memory_limit); 86 87 return 0; 88 } 89 early_param("mem", early_parse_mem); 90 91 /* 92 * overlaps_initrd - check for overlap with page aligned extension of 93 * initrd. 94 */ 95 static inline int overlaps_initrd(unsigned long start, unsigned long size) 96 { 97 #ifdef CONFIG_BLK_DEV_INITRD 98 if (!initrd_start) 99 return 0; 100 101 return (start + size) > ALIGN_DOWN(initrd_start, PAGE_SIZE) && 102 start <= ALIGN(initrd_end, PAGE_SIZE); 103 #else 104 return 0; 105 #endif 106 } 107 108 /** 109 * move_device_tree - move tree to an unused area, if needed. 110 * 111 * The device tree may be allocated beyond our memory limit, or inside the 112 * crash kernel region for kdump, or within the page aligned range of initrd. 113 * If so, move it out of the way. 114 */ 115 static void __init move_device_tree(void) 116 { 117 unsigned long start, size; 118 void *p; 119 120 DBG("-> move_device_tree\n"); 121 122 start = __pa(initial_boot_params); 123 size = fdt_totalsize(initial_boot_params); 124 125 if ((memory_limit && (start + size) > PHYSICAL_START + memory_limit) || 126 !memblock_is_memory(start + size - 1) || 127 overlaps_crashkernel(start, size) || overlaps_initrd(start, size)) { 128 p = memblock_alloc_raw(size, PAGE_SIZE); 129 if (!p) 130 panic("Failed to allocate %lu bytes to move device tree\n", 131 size); 132 memcpy(p, initial_boot_params, size); 133 initial_boot_params = p; 134 DBG("Moved device tree to 0x%px\n", p); 135 } 136 137 DBG("<- move_device_tree\n"); 138 } 139 140 /* 141 * ibm,pa/pi-features is a per-cpu property that contains a string of 142 * attribute descriptors, each of which has a 2 byte header plus up 143 * to 254 bytes worth of processor attribute bits. First header 144 * byte specifies the number of bytes following the header. 145 * Second header byte is an "attribute-specifier" type, of which 146 * zero is the only currently-defined value. 147 * Implementation: Pass in the byte and bit offset for the feature 148 * that we are interested in. The function will return -1 if the 149 * pa-features property is missing, or a 1/0 to indicate if the feature 150 * is supported/not supported. Note that the bit numbers are 151 * big-endian to match the definition in PAPR. 152 */ 153 struct ibm_feature { 154 unsigned long cpu_features; /* CPU_FTR_xxx bit */ 155 unsigned long mmu_features; /* MMU_FTR_xxx bit */ 156 unsigned int cpu_user_ftrs; /* PPC_FEATURE_xxx bit */ 157 unsigned int cpu_user_ftrs2; /* PPC_FEATURE2_xxx bit */ 158 unsigned char pabyte; /* byte number in ibm,pa/pi-features */ 159 unsigned char pabit; /* bit number (big-endian) */ 160 unsigned char invert; /* if 1, pa bit set => clear feature */ 161 }; 162 163 static struct ibm_feature ibm_pa_features[] __initdata = { 164 { .pabyte = 0, .pabit = 0, .cpu_user_ftrs = PPC_FEATURE_HAS_MMU }, 165 { .pabyte = 0, .pabit = 1, .cpu_user_ftrs = PPC_FEATURE_HAS_FPU }, 166 { .pabyte = 0, .pabit = 3, .cpu_features = CPU_FTR_CTRL }, 167 { .pabyte = 0, .pabit = 6, .cpu_features = CPU_FTR_NOEXECUTE }, 168 { .pabyte = 1, .pabit = 2, .mmu_features = MMU_FTR_CI_LARGE_PAGE }, 169 #ifdef CONFIG_PPC_RADIX_MMU 170 { .pabyte = 40, .pabit = 0, .mmu_features = MMU_FTR_TYPE_RADIX | MMU_FTR_GTSE }, 171 #endif 172 { .pabyte = 5, .pabit = 0, .cpu_features = CPU_FTR_REAL_LE, 173 .cpu_user_ftrs = PPC_FEATURE_TRUE_LE }, 174 /* 175 * If the kernel doesn't support TM (ie CONFIG_PPC_TRANSACTIONAL_MEM=n), 176 * we don't want to turn on TM here, so we use the *_COMP versions 177 * which are 0 if the kernel doesn't support TM. 178 */ 179 { .pabyte = 22, .pabit = 0, .cpu_features = CPU_FTR_TM_COMP, 180 .cpu_user_ftrs2 = PPC_FEATURE2_HTM_COMP | PPC_FEATURE2_HTM_NOSC_COMP }, 181 182 { .pabyte = 64, .pabit = 0, .cpu_features = CPU_FTR_DAWR1 }, 183 }; 184 185 /* 186 * ibm,pi-features property provides the support of processor specific 187 * options not described in ibm,pa-features. Right now use byte 0, bit 3 188 * which indicates the occurrence of DSI interrupt when the paste operation 189 * on the suspended NX window. 190 */ 191 static struct ibm_feature ibm_pi_features[] __initdata = { 192 { .pabyte = 0, .pabit = 3, .mmu_features = MMU_FTR_NX_DSI }, 193 }; 194 195 static void __init scan_features(unsigned long node, const unsigned char *ftrs, 196 unsigned long tablelen, 197 struct ibm_feature *fp, 198 unsigned long ft_size) 199 { 200 unsigned long i, len, bit; 201 202 /* find descriptor with type == 0 */ 203 for (;;) { 204 if (tablelen < 3) 205 return; 206 len = 2 + ftrs[0]; 207 if (tablelen < len) 208 return; /* descriptor 0 not found */ 209 if (ftrs[1] == 0) 210 break; 211 tablelen -= len; 212 ftrs += len; 213 } 214 215 /* loop over bits we know about */ 216 for (i = 0; i < ft_size; ++i, ++fp) { 217 if (fp->pabyte >= ftrs[0]) 218 continue; 219 bit = (ftrs[2 + fp->pabyte] >> (7 - fp->pabit)) & 1; 220 if (bit ^ fp->invert) { 221 cur_cpu_spec->cpu_features |= fp->cpu_features; 222 cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftrs; 223 cur_cpu_spec->cpu_user_features2 |= fp->cpu_user_ftrs2; 224 cur_cpu_spec->mmu_features |= fp->mmu_features; 225 } else { 226 cur_cpu_spec->cpu_features &= ~fp->cpu_features; 227 cur_cpu_spec->cpu_user_features &= ~fp->cpu_user_ftrs; 228 cur_cpu_spec->cpu_user_features2 &= ~fp->cpu_user_ftrs2; 229 cur_cpu_spec->mmu_features &= ~fp->mmu_features; 230 } 231 } 232 } 233 234 static void __init check_cpu_features(unsigned long node, char *name, 235 struct ibm_feature *fp, 236 unsigned long size) 237 { 238 const unsigned char *pa_ftrs; 239 int tablelen; 240 241 pa_ftrs = of_get_flat_dt_prop(node, name, &tablelen); 242 if (pa_ftrs == NULL) 243 return; 244 245 scan_features(node, pa_ftrs, tablelen, fp, size); 246 } 247 248 #ifdef CONFIG_PPC_64S_HASH_MMU 249 static void __init init_mmu_slb_size(unsigned long node) 250 { 251 const __be32 *slb_size_ptr; 252 253 slb_size_ptr = of_get_flat_dt_prop(node, "slb-size", NULL) ? : 254 of_get_flat_dt_prop(node, "ibm,slb-size", NULL); 255 256 if (slb_size_ptr) 257 mmu_slb_size = be32_to_cpup(slb_size_ptr); 258 } 259 #else 260 #define init_mmu_slb_size(node) do { } while(0) 261 #endif 262 263 static struct feature_property { 264 const char *name; 265 u32 min_value; 266 unsigned long cpu_feature; 267 unsigned long cpu_user_ftr; 268 } feature_properties[] __initdata = { 269 #ifdef CONFIG_ALTIVEC 270 {"altivec", 0, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC}, 271 {"ibm,vmx", 1, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC}, 272 #endif /* CONFIG_ALTIVEC */ 273 #ifdef CONFIG_VSX 274 /* Yes, this _really_ is ibm,vmx == 2 to enable VSX */ 275 {"ibm,vmx", 2, CPU_FTR_VSX, PPC_FEATURE_HAS_VSX}, 276 #endif /* CONFIG_VSX */ 277 #ifdef CONFIG_PPC64 278 {"ibm,dfp", 1, 0, PPC_FEATURE_HAS_DFP}, 279 {"ibm,purr", 1, CPU_FTR_PURR, 0}, 280 {"ibm,spurr", 1, CPU_FTR_SPURR, 0}, 281 #endif /* CONFIG_PPC64 */ 282 }; 283 284 #if defined(CONFIG_44x) && defined(CONFIG_PPC_FPU) 285 static __init void identical_pvr_fixup(unsigned long node) 286 { 287 unsigned int pvr; 288 const char *model = of_get_flat_dt_prop(node, "model", NULL); 289 290 /* 291 * Since 440GR(x)/440EP(x) processors have the same pvr, 292 * we check the node path and set bit 28 in the cur_cpu_spec 293 * pvr for EP(x) processor version. This bit is always 0 in 294 * the "real" pvr. Then we call identify_cpu again with 295 * the new logical pvr to enable FPU support. 296 */ 297 if (model && strstr(model, "440EP")) { 298 pvr = cur_cpu_spec->pvr_value | 0x8; 299 identify_cpu(0, pvr); 300 DBG("Using logical pvr %x for %s\n", pvr, model); 301 } 302 } 303 #else 304 #define identical_pvr_fixup(node) do { } while(0) 305 #endif 306 307 static void __init check_cpu_feature_properties(unsigned long node) 308 { 309 int i; 310 struct feature_property *fp = feature_properties; 311 const __be32 *prop; 312 313 for (i = 0; i < (int)ARRAY_SIZE(feature_properties); ++i, ++fp) { 314 prop = of_get_flat_dt_prop(node, fp->name, NULL); 315 if (prop && be32_to_cpup(prop) >= fp->min_value) { 316 cur_cpu_spec->cpu_features |= fp->cpu_feature; 317 cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftr; 318 } 319 } 320 } 321 322 static int __init early_init_dt_scan_cpus(unsigned long node, 323 const char *uname, int depth, 324 void *data) 325 { 326 const char *type = of_get_flat_dt_prop(node, "device_type", NULL); 327 const __be32 *prop; 328 const __be32 *intserv; 329 int i, nthreads; 330 int len; 331 int found = -1; 332 int found_thread = 0; 333 334 /* We are scanning "cpu" nodes only */ 335 if (type == NULL || strcmp(type, "cpu") != 0) 336 return 0; 337 338 /* Get physical cpuid */ 339 intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len); 340 if (!intserv) 341 intserv = of_get_flat_dt_prop(node, "reg", &len); 342 343 nthreads = len / sizeof(int); 344 345 /* 346 * Now see if any of these threads match our boot cpu. 347 * NOTE: This must match the parsing done in smp_setup_cpu_maps. 348 */ 349 for (i = 0; i < nthreads; i++) { 350 if (be32_to_cpu(intserv[i]) == 351 fdt_boot_cpuid_phys(initial_boot_params)) { 352 found = boot_cpu_count; 353 found_thread = i; 354 } 355 #ifdef CONFIG_SMP 356 /* logical cpu id is always 0 on UP kernels */ 357 boot_cpu_count++; 358 #endif 359 } 360 361 /* Not the boot CPU */ 362 if (found < 0) 363 return 0; 364 365 DBG("boot cpu: logical %d physical %d\n", found, 366 be32_to_cpu(intserv[found_thread])); 367 boot_cpuid = found; 368 369 // Pass the boot CPU's hard CPU id back to our caller 370 *((u32 *)data) = be32_to_cpu(intserv[found_thread]); 371 372 /* 373 * PAPR defines "logical" PVR values for cpus that 374 * meet various levels of the architecture: 375 * 0x0f000001 Architecture version 2.04 376 * 0x0f000002 Architecture version 2.05 377 * If the cpu-version property in the cpu node contains 378 * such a value, we call identify_cpu again with the 379 * logical PVR value in order to use the cpu feature 380 * bits appropriate for the architecture level. 381 * 382 * A POWER6 partition in "POWER6 architected" mode 383 * uses the 0x0f000002 PVR value; in POWER5+ mode 384 * it uses 0x0f000001. 385 * 386 * If we're using device tree CPU feature discovery then we don't 387 * support the cpu-version property, and it's the responsibility of the 388 * firmware/hypervisor to provide the correct feature set for the 389 * architecture level via the ibm,powerpc-cpu-features binding. 390 */ 391 if (!dt_cpu_ftrs_in_use()) { 392 prop = of_get_flat_dt_prop(node, "cpu-version", NULL); 393 if (prop && (be32_to_cpup(prop) & 0xff000000) == 0x0f000000) 394 identify_cpu(0, be32_to_cpup(prop)); 395 396 check_cpu_feature_properties(node); 397 check_cpu_features(node, "ibm,pa-features", ibm_pa_features, 398 ARRAY_SIZE(ibm_pa_features)); 399 check_cpu_features(node, "ibm,pi-features", ibm_pi_features, 400 ARRAY_SIZE(ibm_pi_features)); 401 } 402 403 identical_pvr_fixup(node); 404 init_mmu_slb_size(node); 405 406 #ifdef CONFIG_PPC64 407 if (nthreads == 1) 408 cur_cpu_spec->cpu_features &= ~CPU_FTR_SMT; 409 else if (!dt_cpu_ftrs_in_use()) 410 cur_cpu_spec->cpu_features |= CPU_FTR_SMT; 411 #endif 412 413 return 0; 414 } 415 416 static int __init early_init_dt_scan_chosen_ppc(unsigned long node, 417 const char *uname, 418 int depth, void *data) 419 { 420 const unsigned long *lprop; /* All these set by kernel, so no need to convert endian */ 421 422 /* Use common scan routine to determine if this is the chosen node */ 423 if (early_init_dt_scan_chosen(data) < 0) 424 return 0; 425 426 #ifdef CONFIG_PPC64 427 /* check if iommu is forced on or off */ 428 if (of_get_flat_dt_prop(node, "linux,iommu-off", NULL) != NULL) 429 iommu_is_off = 1; 430 if (of_get_flat_dt_prop(node, "linux,iommu-force-on", NULL) != NULL) 431 iommu_force_on = 1; 432 #endif 433 434 /* mem=x on the command line is the preferred mechanism */ 435 lprop = of_get_flat_dt_prop(node, "linux,memory-limit", NULL); 436 if (lprop) 437 memory_limit = *lprop; 438 439 #ifdef CONFIG_PPC64 440 lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-start", NULL); 441 if (lprop) 442 tce_alloc_start = *lprop; 443 lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-end", NULL); 444 if (lprop) 445 tce_alloc_end = *lprop; 446 #endif 447 448 #ifdef CONFIG_KEXEC_CORE 449 lprop = of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL); 450 if (lprop) 451 crashk_res.start = *lprop; 452 453 lprop = of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL); 454 if (lprop) 455 crashk_res.end = crashk_res.start + *lprop - 1; 456 #endif 457 458 /* break now */ 459 return 1; 460 } 461 462 /* 463 * Compare the range against max mem limit and update 464 * size if it cross the limit. 465 */ 466 467 #ifdef CONFIG_SPARSEMEM 468 static bool __init validate_mem_limit(u64 base, u64 *size) 469 { 470 u64 max_mem = 1UL << (MAX_PHYSMEM_BITS); 471 472 if (base >= max_mem) 473 return false; 474 if ((base + *size) > max_mem) 475 *size = max_mem - base; 476 return true; 477 } 478 #else 479 static bool __init validate_mem_limit(u64 base, u64 *size) 480 { 481 return true; 482 } 483 #endif 484 485 #ifdef CONFIG_PPC_PSERIES 486 /* 487 * Interpret the ibm dynamic reconfiguration memory LMBs. 488 * This contains a list of memory blocks along with NUMA affinity 489 * information. 490 */ 491 static int __init early_init_drmem_lmb(struct drmem_lmb *lmb, 492 const __be32 **usm, 493 void *data) 494 { 495 u64 base, size; 496 int is_kexec_kdump = 0, rngs; 497 498 base = lmb->base_addr; 499 size = drmem_lmb_size(); 500 rngs = 1; 501 502 /* 503 * Skip this block if the reserved bit is set in flags 504 * or if the block is not assigned to this partition. 505 */ 506 if ((lmb->flags & DRCONF_MEM_RESERVED) || 507 !(lmb->flags & DRCONF_MEM_ASSIGNED)) 508 return 0; 509 510 if (*usm) 511 is_kexec_kdump = 1; 512 513 if (is_kexec_kdump) { 514 /* 515 * For each memblock in ibm,dynamic-memory, a 516 * corresponding entry in linux,drconf-usable-memory 517 * property contains a counter 'p' followed by 'p' 518 * (base, size) duple. Now read the counter from 519 * linux,drconf-usable-memory property 520 */ 521 rngs = dt_mem_next_cell(dt_root_size_cells, usm); 522 if (!rngs) /* there are no (base, size) duple */ 523 return 0; 524 } 525 526 do { 527 if (is_kexec_kdump) { 528 base = dt_mem_next_cell(dt_root_addr_cells, usm); 529 size = dt_mem_next_cell(dt_root_size_cells, usm); 530 } 531 532 if (iommu_is_off) { 533 if (base >= 0x80000000ul) 534 continue; 535 if ((base + size) > 0x80000000ul) 536 size = 0x80000000ul - base; 537 } 538 539 if (!validate_mem_limit(base, &size)) 540 continue; 541 542 DBG("Adding: %llx -> %llx\n", base, size); 543 memblock_add(base, size); 544 545 if (lmb->flags & DRCONF_MEM_HOTREMOVABLE) 546 memblock_mark_hotplug(base, size); 547 } while (--rngs); 548 549 return 0; 550 } 551 #endif /* CONFIG_PPC_PSERIES */ 552 553 static int __init early_init_dt_scan_memory_ppc(void) 554 { 555 #ifdef CONFIG_PPC_PSERIES 556 const void *fdt = initial_boot_params; 557 int node = fdt_path_offset(fdt, "/ibm,dynamic-reconfiguration-memory"); 558 559 if (node > 0) 560 walk_drmem_lmbs_early(node, NULL, early_init_drmem_lmb); 561 562 #endif 563 564 return early_init_dt_scan_memory(); 565 } 566 567 /* 568 * For a relocatable kernel, we need to get the memstart_addr first, 569 * then use it to calculate the virtual kernel start address. This has 570 * to happen at a very early stage (before machine_init). In this case, 571 * we just want to get the memstart_address and would not like to mess the 572 * memblock at this stage. So introduce a variable to skip the memblock_add() 573 * for this reason. 574 */ 575 #ifdef CONFIG_RELOCATABLE 576 static int add_mem_to_memblock = 1; 577 #else 578 #define add_mem_to_memblock 1 579 #endif 580 581 void __init early_init_dt_add_memory_arch(u64 base, u64 size) 582 { 583 #ifdef CONFIG_PPC64 584 if (iommu_is_off) { 585 if (base >= 0x80000000ul) 586 return; 587 if ((base + size) > 0x80000000ul) 588 size = 0x80000000ul - base; 589 } 590 #endif 591 /* Keep track of the beginning of memory -and- the size of 592 * the very first block in the device-tree as it represents 593 * the RMA on ppc64 server 594 */ 595 if (base < memstart_addr) { 596 memstart_addr = base; 597 first_memblock_size = size; 598 } 599 600 /* Add the chunk to the MEMBLOCK list */ 601 if (add_mem_to_memblock) { 602 if (validate_mem_limit(base, &size)) 603 memblock_add(base, size); 604 } 605 } 606 607 static void __init early_reserve_mem_dt(void) 608 { 609 unsigned long i, dt_root; 610 int len; 611 const __be32 *prop; 612 613 early_init_fdt_reserve_self(); 614 early_init_fdt_scan_reserved_mem(); 615 616 dt_root = of_get_flat_dt_root(); 617 618 prop = of_get_flat_dt_prop(dt_root, "reserved-ranges", &len); 619 620 if (!prop) 621 return; 622 623 DBG("Found new-style reserved-ranges\n"); 624 625 /* Each reserved range is an (address,size) pair, 2 cells each, 626 * totalling 4 cells per range. */ 627 for (i = 0; i < len / (sizeof(*prop) * 4); i++) { 628 u64 base, size; 629 630 base = of_read_number(prop + (i * 4) + 0, 2); 631 size = of_read_number(prop + (i * 4) + 2, 2); 632 633 if (size) { 634 DBG("reserving: %llx -> %llx\n", base, size); 635 memblock_reserve(base, size); 636 } 637 } 638 } 639 640 static void __init early_reserve_mem(void) 641 { 642 __be64 *reserve_map; 643 644 reserve_map = (__be64 *)(((unsigned long)initial_boot_params) + 645 fdt_off_mem_rsvmap(initial_boot_params)); 646 647 /* Look for the new "reserved-regions" property in the DT */ 648 early_reserve_mem_dt(); 649 650 #ifdef CONFIG_BLK_DEV_INITRD 651 /* Then reserve the initrd, if any */ 652 if (initrd_start && (initrd_end > initrd_start)) { 653 memblock_reserve(ALIGN_DOWN(__pa(initrd_start), PAGE_SIZE), 654 ALIGN(initrd_end, PAGE_SIZE) - 655 ALIGN_DOWN(initrd_start, PAGE_SIZE)); 656 } 657 #endif /* CONFIG_BLK_DEV_INITRD */ 658 659 if (!IS_ENABLED(CONFIG_PPC32)) 660 return; 661 662 /* 663 * Handle the case where we might be booting from an old kexec 664 * image that setup the mem_rsvmap as pairs of 32-bit values 665 */ 666 if (be64_to_cpup(reserve_map) > 0xffffffffull) { 667 u32 base_32, size_32; 668 __be32 *reserve_map_32 = (__be32 *)reserve_map; 669 670 DBG("Found old 32-bit reserve map\n"); 671 672 while (1) { 673 base_32 = be32_to_cpup(reserve_map_32++); 674 size_32 = be32_to_cpup(reserve_map_32++); 675 if (size_32 == 0) 676 break; 677 DBG("reserving: %x -> %x\n", base_32, size_32); 678 memblock_reserve(base_32, size_32); 679 } 680 return; 681 } 682 } 683 684 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM 685 static bool tm_disabled __initdata; 686 687 static int __init parse_ppc_tm(char *str) 688 { 689 bool res; 690 691 if (kstrtobool(str, &res)) 692 return -EINVAL; 693 694 tm_disabled = !res; 695 696 return 0; 697 } 698 early_param("ppc_tm", parse_ppc_tm); 699 700 static void __init tm_init(void) 701 { 702 if (tm_disabled) { 703 pr_info("Disabling hardware transactional memory (HTM)\n"); 704 cur_cpu_spec->cpu_user_features2 &= 705 ~(PPC_FEATURE2_HTM_NOSC | PPC_FEATURE2_HTM); 706 cur_cpu_spec->cpu_features &= ~CPU_FTR_TM; 707 return; 708 } 709 710 pnv_tm_init(); 711 } 712 #else 713 static void tm_init(void) { } 714 #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */ 715 716 #ifdef CONFIG_PPC64 717 static void __init save_fscr_to_task(void) 718 { 719 /* 720 * Ensure the init_task (pid 0, aka swapper) uses the value of FSCR we 721 * have configured via the device tree features or via __init_FSCR(). 722 * That value will then be propagated to pid 1 (init) and all future 723 * processes. 724 */ 725 if (early_cpu_has_feature(CPU_FTR_ARCH_207S)) 726 init_task.thread.fscr = mfspr(SPRN_FSCR); 727 } 728 #else 729 static inline void save_fscr_to_task(void) {} 730 #endif 731 732 733 void __init early_init_devtree(void *params) 734 { 735 u32 boot_cpu_hwid; 736 phys_addr_t limit; 737 738 DBG(" -> early_init_devtree(%px)\n", params); 739 740 /* Too early to BUG_ON(), do it by hand */ 741 if (!early_init_dt_verify(params)) 742 panic("BUG: Failed verifying flat device tree, bad version?"); 743 744 #ifdef CONFIG_PPC_RTAS 745 /* Some machines might need RTAS info for debugging, grab it now. */ 746 of_scan_flat_dt(early_init_dt_scan_rtas, NULL); 747 #endif 748 749 #ifdef CONFIG_PPC_POWERNV 750 /* Some machines might need OPAL info for debugging, grab it now. */ 751 of_scan_flat_dt(early_init_dt_scan_opal, NULL); 752 753 /* Scan tree for ultravisor feature */ 754 of_scan_flat_dt(early_init_dt_scan_ultravisor, NULL); 755 #endif 756 757 #if defined(CONFIG_FA_DUMP) || defined(CONFIG_PRESERVE_FA_DUMP) 758 /* scan tree to see if dump is active during last boot */ 759 of_scan_flat_dt(early_init_dt_scan_fw_dump, NULL); 760 #endif 761 762 /* Retrieve various informations from the /chosen node of the 763 * device-tree, including the platform type, initrd location and 764 * size, TCE reserve, and more ... 765 */ 766 of_scan_flat_dt(early_init_dt_scan_chosen_ppc, boot_command_line); 767 768 /* Scan memory nodes and rebuild MEMBLOCKs */ 769 early_init_dt_scan_root(); 770 early_init_dt_scan_memory_ppc(); 771 772 /* 773 * As generic code authors expect to be able to use static keys 774 * in early_param() handlers, we initialize the static keys just 775 * before parsing early params (it's fine to call jump_label_init() 776 * more than once). 777 */ 778 jump_label_init(); 779 parse_early_param(); 780 781 /* make sure we've parsed cmdline for mem= before this */ 782 if (memory_limit) 783 first_memblock_size = min_t(u64, first_memblock_size, memory_limit); 784 setup_initial_memory_limit(memstart_addr, first_memblock_size); 785 /* Reserve MEMBLOCK regions used by kernel, initrd, dt, etc... */ 786 memblock_reserve(PHYSICAL_START, __pa(_end) - PHYSICAL_START); 787 /* If relocatable, reserve first 32k for interrupt vectors etc. */ 788 if (PHYSICAL_START > MEMORY_START) 789 memblock_reserve(MEMORY_START, 0x8000); 790 reserve_kdump_trampoline(); 791 #if defined(CONFIG_FA_DUMP) || defined(CONFIG_PRESERVE_FA_DUMP) 792 /* 793 * If we fail to reserve memory for firmware-assisted dump then 794 * fallback to kexec based kdump. 795 */ 796 if (fadump_reserve_mem() == 0) 797 #endif 798 reserve_crashkernel(); 799 early_reserve_mem(); 800 801 /* Ensure that total memory size is page-aligned. */ 802 limit = ALIGN(memory_limit ?: memblock_phys_mem_size(), PAGE_SIZE); 803 memblock_enforce_memory_limit(limit); 804 805 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_PPC_4K_PAGES) 806 if (!early_radix_enabled()) 807 memblock_cap_memory_range(0, 1UL << (H_MAX_PHYSMEM_BITS)); 808 #endif 809 810 memblock_allow_resize(); 811 memblock_dump_all(); 812 813 DBG("Phys. mem: %llx\n", (unsigned long long)memblock_phys_mem_size()); 814 815 /* We may need to relocate the flat tree, do it now. 816 * FIXME .. and the initrd too? */ 817 move_device_tree(); 818 819 DBG("Scanning CPUs ...\n"); 820 821 dt_cpu_ftrs_scan(); 822 823 // We can now add the CPU name & PVR to the hardware description 824 seq_buf_printf(&ppc_hw_desc, "%s 0x%04lx ", cur_cpu_spec->cpu_name, mfspr(SPRN_PVR)); 825 826 /* Retrieve CPU related informations from the flat tree 827 * (altivec support, boot CPU ID, ...) 828 */ 829 of_scan_flat_dt(early_init_dt_scan_cpus, &boot_cpu_hwid); 830 if (boot_cpuid < 0) { 831 printk("Failed to identify boot CPU !\n"); 832 BUG(); 833 } 834 835 save_fscr_to_task(); 836 837 #if defined(CONFIG_SMP) && defined(CONFIG_PPC64) 838 /* We'll later wait for secondaries to check in; there are 839 * NCPUS-1 non-boot CPUs :-) 840 */ 841 spinning_secondaries = boot_cpu_count - 1; 842 #endif 843 844 mmu_early_init_devtree(); 845 846 // NB. paca is not installed until later in early_setup() 847 allocate_paca_ptrs(); 848 allocate_paca(boot_cpuid); 849 set_hard_smp_processor_id(boot_cpuid, boot_cpu_hwid); 850 851 #ifdef CONFIG_PPC_POWERNV 852 /* Scan and build the list of machine check recoverable ranges */ 853 of_scan_flat_dt(early_init_dt_scan_recoverable_ranges, NULL); 854 #endif 855 epapr_paravirt_early_init(); 856 857 /* Now try to figure out if we are running on LPAR and so on */ 858 pseries_probe_fw_features(); 859 860 /* 861 * Initialize pkey features and default AMR/IAMR values 862 */ 863 pkey_early_init_devtree(); 864 865 #ifdef CONFIG_PPC_PS3 866 /* Identify PS3 firmware */ 867 if (of_flat_dt_is_compatible(of_get_flat_dt_root(), "sony,ps3")) 868 powerpc_firmware_features |= FW_FEATURE_PS3_POSSIBLE; 869 #endif 870 871 tm_init(); 872 873 DBG(" <- early_init_devtree()\n"); 874 } 875 876 #ifdef CONFIG_RELOCATABLE 877 /* 878 * This function run before early_init_devtree, so we have to init 879 * initial_boot_params. 880 */ 881 void __init early_get_first_memblock_info(void *params, phys_addr_t *size) 882 { 883 /* Setup flat device-tree pointer */ 884 initial_boot_params = params; 885 886 /* 887 * Scan the memory nodes and set add_mem_to_memblock to 0 to avoid 888 * mess the memblock. 889 */ 890 add_mem_to_memblock = 0; 891 early_init_dt_scan_root(); 892 early_init_dt_scan_memory_ppc(); 893 add_mem_to_memblock = 1; 894 895 if (size) 896 *size = first_memblock_size; 897 } 898 #endif 899 900 /******* 901 * 902 * New implementation of the OF "find" APIs, return a refcounted 903 * object, call of_node_put() when done. The device tree and list 904 * are protected by a rw_lock. 905 * 906 * Note that property management will need some locking as well, 907 * this isn't dealt with yet. 908 * 909 *******/ 910 911 /** 912 * of_get_ibm_chip_id - Returns the IBM "chip-id" of a device 913 * @np: device node of the device 914 * 915 * This looks for a property "ibm,chip-id" in the node or any 916 * of its parents and returns its content, or -1 if it cannot 917 * be found. 918 */ 919 int of_get_ibm_chip_id(struct device_node *np) 920 { 921 of_node_get(np); 922 while (np) { 923 u32 chip_id; 924 925 /* 926 * Skiboot may produce memory nodes that contain more than one 927 * cell in chip-id, we only read the first one here. 928 */ 929 if (!of_property_read_u32(np, "ibm,chip-id", &chip_id)) { 930 of_node_put(np); 931 return chip_id; 932 } 933 934 np = of_get_next_parent(np); 935 } 936 return -1; 937 } 938 EXPORT_SYMBOL(of_get_ibm_chip_id); 939 940 /** 941 * cpu_to_chip_id - Return the cpus chip-id 942 * @cpu: The logical cpu number. 943 * 944 * Return the value of the ibm,chip-id property corresponding to the given 945 * logical cpu number. If the chip-id can not be found, returns -1. 946 */ 947 int cpu_to_chip_id(int cpu) 948 { 949 struct device_node *np; 950 int ret = -1, idx; 951 952 idx = cpu / threads_per_core; 953 if (chip_id_lookup_table && chip_id_lookup_table[idx] != -1) 954 return chip_id_lookup_table[idx]; 955 956 np = of_get_cpu_node(cpu, NULL); 957 if (np) { 958 ret = of_get_ibm_chip_id(np); 959 of_node_put(np); 960 961 if (chip_id_lookup_table) 962 chip_id_lookup_table[idx] = ret; 963 } 964 965 return ret; 966 } 967 EXPORT_SYMBOL(cpu_to_chip_id); 968 969 bool arch_match_cpu_phys_id(int cpu, u64 phys_id) 970 { 971 #ifdef CONFIG_SMP 972 /* 973 * Early firmware scanning must use this rather than 974 * get_hard_smp_processor_id because we don't have pacas allocated 975 * until memory topology is discovered. 976 */ 977 if (cpu_to_phys_id != NULL) 978 return (int)phys_id == cpu_to_phys_id[cpu]; 979 #endif 980 981 return (int)phys_id == get_hard_smp_processor_id(cpu); 982 } 983