1 /* 2 * 64-bit pSeries and RS/6000 setup code. 3 * 4 * Copyright (C) 1995 Linus Torvalds 5 * Adapted from 'alpha' version by Gary Thomas 6 * Modified by Cort Dougan (cort@cs.nmt.edu) 7 * Modified by PPC64 Team, IBM Corp 8 * 9 * This program is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU General Public License 11 * as published by the Free Software Foundation; either version 12 * 2 of the License, or (at your option) any later version. 13 */ 14 15 /* 16 * bootup setup stuff.. 17 */ 18 19 #include <linux/cpu.h> 20 #include <linux/errno.h> 21 #include <linux/sched.h> 22 #include <linux/kernel.h> 23 #include <linux/mm.h> 24 #include <linux/stddef.h> 25 #include <linux/unistd.h> 26 #include <linux/user.h> 27 #include <linux/tty.h> 28 #include <linux/major.h> 29 #include <linux/interrupt.h> 30 #include <linux/reboot.h> 31 #include <linux/init.h> 32 #include <linux/ioport.h> 33 #include <linux/console.h> 34 #include <linux/pci.h> 35 #include <linux/utsname.h> 36 #include <linux/adb.h> 37 #include <linux/export.h> 38 #include <linux/delay.h> 39 #include <linux/irq.h> 40 #include <linux/seq_file.h> 41 #include <linux/root_dev.h> 42 #include <linux/of.h> 43 #include <linux/of_pci.h> 44 #include <linux/memblock.h> 45 46 #include <asm/mmu.h> 47 #include <asm/processor.h> 48 #include <asm/io.h> 49 #include <asm/pgtable.h> 50 #include <asm/prom.h> 51 #include <asm/rtas.h> 52 #include <asm/pci-bridge.h> 53 #include <asm/iommu.h> 54 #include <asm/dma.h> 55 #include <asm/machdep.h> 56 #include <asm/irq.h> 57 #include <asm/time.h> 58 #include <asm/nvram.h> 59 #include <asm/pmc.h> 60 #include <asm/xics.h> 61 #include <asm/xive.h> 62 #include <asm/ppc-pci.h> 63 #include <asm/i8259.h> 64 #include <asm/udbg.h> 65 #include <asm/smp.h> 66 #include <asm/firmware.h> 67 #include <asm/eeh.h> 68 #include <asm/reg.h> 69 #include <asm/plpar_wrappers.h> 70 #include <asm/kexec.h> 71 #include <asm/isa-bridge.h> 72 #include <asm/security_features.h> 73 #include <asm/asm-const.h> 74 75 #include "pseries.h" 76 77 int CMO_PrPSP = -1; 78 int CMO_SecPSP = -1; 79 unsigned long CMO_PageSize = (ASM_CONST(1) << IOMMU_PAGE_SHIFT_4K); 80 EXPORT_SYMBOL(CMO_PageSize); 81 82 int fwnmi_active; /* TRUE if an FWNMI handler is present */ 83 84 static void pSeries_show_cpuinfo(struct seq_file *m) 85 { 86 struct device_node *root; 87 const char *model = ""; 88 89 root = of_find_node_by_path("/"); 90 if (root) 91 model = of_get_property(root, "model", NULL); 92 seq_printf(m, "machine\t\t: CHRP %s\n", model); 93 of_node_put(root); 94 if (radix_enabled()) 95 seq_printf(m, "MMU\t\t: Radix\n"); 96 else 97 seq_printf(m, "MMU\t\t: Hash\n"); 98 } 99 100 /* Initialize firmware assisted non-maskable interrupts if 101 * the firmware supports this feature. 102 */ 103 static void __init fwnmi_init(void) 104 { 105 unsigned long system_reset_addr, machine_check_addr; 106 u8 *mce_data_buf; 107 unsigned int i; 108 int nr_cpus = num_possible_cpus(); 109 110 int ibm_nmi_register = rtas_token("ibm,nmi-register"); 111 if (ibm_nmi_register == RTAS_UNKNOWN_SERVICE) 112 return; 113 114 /* If the kernel's not linked at zero we point the firmware at low 115 * addresses anyway, and use a trampoline to get to the real code. */ 116 system_reset_addr = __pa(system_reset_fwnmi) - PHYSICAL_START; 117 machine_check_addr = __pa(machine_check_fwnmi) - PHYSICAL_START; 118 119 if (0 == rtas_call(ibm_nmi_register, 2, 1, NULL, system_reset_addr, 120 machine_check_addr)) 121 fwnmi_active = 1; 122 123 /* 124 * Allocate a chunk for per cpu buffer to hold rtas errorlog. 125 * It will be used in real mode mce handler, hence it needs to be 126 * below RMA. 127 */ 128 mce_data_buf = __va(memblock_alloc_base(RTAS_ERROR_LOG_MAX * nr_cpus, 129 RTAS_ERROR_LOG_MAX, ppc64_rma_size)); 130 for_each_possible_cpu(i) { 131 paca_ptrs[i]->mce_data_buf = mce_data_buf + 132 (RTAS_ERROR_LOG_MAX * i); 133 } 134 } 135 136 static void pseries_8259_cascade(struct irq_desc *desc) 137 { 138 struct irq_chip *chip = irq_desc_get_chip(desc); 139 unsigned int cascade_irq = i8259_irq(); 140 141 if (cascade_irq) 142 generic_handle_irq(cascade_irq); 143 144 chip->irq_eoi(&desc->irq_data); 145 } 146 147 static void __init pseries_setup_i8259_cascade(void) 148 { 149 struct device_node *np, *old, *found = NULL; 150 unsigned int cascade; 151 const u32 *addrp; 152 unsigned long intack = 0; 153 int naddr; 154 155 for_each_node_by_type(np, "interrupt-controller") { 156 if (of_device_is_compatible(np, "chrp,iic")) { 157 found = np; 158 break; 159 } 160 } 161 162 if (found == NULL) { 163 printk(KERN_DEBUG "pic: no ISA interrupt controller\n"); 164 return; 165 } 166 167 cascade = irq_of_parse_and_map(found, 0); 168 if (!cascade) { 169 printk(KERN_ERR "pic: failed to map cascade interrupt"); 170 return; 171 } 172 pr_debug("pic: cascade mapped to irq %d\n", cascade); 173 174 for (old = of_node_get(found); old != NULL ; old = np) { 175 np = of_get_parent(old); 176 of_node_put(old); 177 if (np == NULL) 178 break; 179 if (strcmp(np->name, "pci") != 0) 180 continue; 181 addrp = of_get_property(np, "8259-interrupt-acknowledge", NULL); 182 if (addrp == NULL) 183 continue; 184 naddr = of_n_addr_cells(np); 185 intack = addrp[naddr-1]; 186 if (naddr > 1) 187 intack |= ((unsigned long)addrp[naddr-2]) << 32; 188 } 189 if (intack) 190 printk(KERN_DEBUG "pic: PCI 8259 intack at 0x%016lx\n", intack); 191 i8259_init(found, intack); 192 of_node_put(found); 193 irq_set_chained_handler(cascade, pseries_8259_cascade); 194 } 195 196 static void __init pseries_init_irq(void) 197 { 198 /* Try using a XIVE if available, otherwise use a XICS */ 199 if (!xive_spapr_init()) { 200 xics_init(); 201 pseries_setup_i8259_cascade(); 202 } 203 } 204 205 static void pseries_lpar_enable_pmcs(void) 206 { 207 unsigned long set, reset; 208 209 set = 1UL << 63; 210 reset = 0; 211 plpar_hcall_norets(H_PERFMON, set, reset); 212 } 213 214 static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *data) 215 { 216 struct of_reconfig_data *rd = data; 217 struct device_node *parent, *np = rd->dn; 218 struct pci_dn *pdn; 219 int err = NOTIFY_OK; 220 221 switch (action) { 222 case OF_RECONFIG_ATTACH_NODE: 223 parent = of_get_parent(np); 224 pdn = parent ? PCI_DN(parent) : NULL; 225 if (pdn) 226 pci_add_device_node_info(pdn->phb, np); 227 228 of_node_put(parent); 229 break; 230 case OF_RECONFIG_DETACH_NODE: 231 pdn = PCI_DN(np); 232 if (pdn) 233 list_del(&pdn->list); 234 break; 235 default: 236 err = NOTIFY_DONE; 237 break; 238 } 239 return err; 240 } 241 242 static struct notifier_block pci_dn_reconfig_nb = { 243 .notifier_call = pci_dn_reconfig_notifier, 244 }; 245 246 struct kmem_cache *dtl_cache; 247 248 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE 249 /* 250 * Allocate space for the dispatch trace log for all possible cpus 251 * and register the buffers with the hypervisor. This is used for 252 * computing time stolen by the hypervisor. 253 */ 254 static int alloc_dispatch_logs(void) 255 { 256 int cpu, ret; 257 struct paca_struct *pp; 258 struct dtl_entry *dtl; 259 260 if (!firmware_has_feature(FW_FEATURE_SPLPAR)) 261 return 0; 262 263 if (!dtl_cache) 264 return 0; 265 266 for_each_possible_cpu(cpu) { 267 pp = paca_ptrs[cpu]; 268 dtl = kmem_cache_alloc(dtl_cache, GFP_KERNEL); 269 if (!dtl) { 270 pr_warn("Failed to allocate dispatch trace log for cpu %d\n", 271 cpu); 272 pr_warn("Stolen time statistics will be unreliable\n"); 273 break; 274 } 275 276 pp->dtl_ridx = 0; 277 pp->dispatch_log = dtl; 278 pp->dispatch_log_end = dtl + N_DISPATCH_LOG; 279 pp->dtl_curr = dtl; 280 } 281 282 /* Register the DTL for the current (boot) cpu */ 283 dtl = get_paca()->dispatch_log; 284 get_paca()->dtl_ridx = 0; 285 get_paca()->dtl_curr = dtl; 286 get_paca()->lppaca_ptr->dtl_idx = 0; 287 288 /* hypervisor reads buffer length from this field */ 289 dtl->enqueue_to_dispatch_time = cpu_to_be32(DISPATCH_LOG_BYTES); 290 ret = register_dtl(hard_smp_processor_id(), __pa(dtl)); 291 if (ret) 292 pr_err("WARNING: DTL registration of cpu %d (hw %d) failed " 293 "with %d\n", smp_processor_id(), 294 hard_smp_processor_id(), ret); 295 get_paca()->lppaca_ptr->dtl_enable_mask = 2; 296 297 return 0; 298 } 299 #else /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */ 300 static inline int alloc_dispatch_logs(void) 301 { 302 return 0; 303 } 304 #endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */ 305 306 static int alloc_dispatch_log_kmem_cache(void) 307 { 308 dtl_cache = kmem_cache_create("dtl", DISPATCH_LOG_BYTES, 309 DISPATCH_LOG_BYTES, 0, NULL); 310 if (!dtl_cache) { 311 pr_warn("Failed to create dispatch trace log buffer cache\n"); 312 pr_warn("Stolen time statistics will be unreliable\n"); 313 return 0; 314 } 315 316 return alloc_dispatch_logs(); 317 } 318 machine_early_initcall(pseries, alloc_dispatch_log_kmem_cache); 319 320 static void pseries_lpar_idle(void) 321 { 322 /* 323 * Default handler to go into low thread priority and possibly 324 * low power mode by ceding processor to hypervisor 325 */ 326 327 /* Indicate to hypervisor that we are idle. */ 328 get_lppaca()->idle = 1; 329 330 /* 331 * Yield the processor to the hypervisor. We return if 332 * an external interrupt occurs (which are driven prior 333 * to returning here) or if a prod occurs from another 334 * processor. When returning here, external interrupts 335 * are enabled. 336 */ 337 cede_processor(); 338 339 get_lppaca()->idle = 0; 340 } 341 342 /* 343 * Enable relocation on during exceptions. This has partition wide scope and 344 * may take a while to complete, if it takes longer than one second we will 345 * just give up rather than wasting any more time on this - if that turns out 346 * to ever be a problem in practice we can move this into a kernel thread to 347 * finish off the process later in boot. 348 */ 349 void pseries_enable_reloc_on_exc(void) 350 { 351 long rc; 352 unsigned int delay, total_delay = 0; 353 354 while (1) { 355 rc = enable_reloc_on_exceptions(); 356 if (!H_IS_LONG_BUSY(rc)) { 357 if (rc == H_P2) { 358 pr_info("Relocation on exceptions not" 359 " supported\n"); 360 } else if (rc != H_SUCCESS) { 361 pr_warn("Unable to enable relocation" 362 " on exceptions: %ld\n", rc); 363 } 364 break; 365 } 366 367 delay = get_longbusy_msecs(rc); 368 total_delay += delay; 369 if (total_delay > 1000) { 370 pr_warn("Warning: Giving up waiting to enable " 371 "relocation on exceptions (%u msec)!\n", 372 total_delay); 373 return; 374 } 375 376 mdelay(delay); 377 } 378 } 379 EXPORT_SYMBOL(pseries_enable_reloc_on_exc); 380 381 void pseries_disable_reloc_on_exc(void) 382 { 383 long rc; 384 385 while (1) { 386 rc = disable_reloc_on_exceptions(); 387 if (!H_IS_LONG_BUSY(rc)) 388 break; 389 mdelay(get_longbusy_msecs(rc)); 390 } 391 if (rc != H_SUCCESS) 392 pr_warn("Warning: Failed to disable relocation on exceptions: %ld\n", 393 rc); 394 } 395 EXPORT_SYMBOL(pseries_disable_reloc_on_exc); 396 397 #ifdef CONFIG_KEXEC_CORE 398 static void pSeries_machine_kexec(struct kimage *image) 399 { 400 if (firmware_has_feature(FW_FEATURE_SET_MODE)) 401 pseries_disable_reloc_on_exc(); 402 403 default_machine_kexec(image); 404 } 405 #endif 406 407 #ifdef __LITTLE_ENDIAN__ 408 void pseries_big_endian_exceptions(void) 409 { 410 long rc; 411 412 while (1) { 413 rc = enable_big_endian_exceptions(); 414 if (!H_IS_LONG_BUSY(rc)) 415 break; 416 mdelay(get_longbusy_msecs(rc)); 417 } 418 419 /* 420 * At this point it is unlikely panic() will get anything 421 * out to the user, since this is called very late in kexec 422 * but at least this will stop us from continuing on further 423 * and creating an even more difficult to debug situation. 424 * 425 * There is a known problem when kdump'ing, if cpus are offline 426 * the above call will fail. Rather than panicking again, keep 427 * going and hope the kdump kernel is also little endian, which 428 * it usually is. 429 */ 430 if (rc && !kdump_in_progress()) 431 panic("Could not enable big endian exceptions"); 432 } 433 434 void pseries_little_endian_exceptions(void) 435 { 436 long rc; 437 438 while (1) { 439 rc = enable_little_endian_exceptions(); 440 if (!H_IS_LONG_BUSY(rc)) 441 break; 442 mdelay(get_longbusy_msecs(rc)); 443 } 444 if (rc) { 445 ppc_md.progress("H_SET_MODE LE exception fail", 0); 446 panic("Could not enable little endian exceptions"); 447 } 448 } 449 #endif 450 451 static void __init find_and_init_phbs(void) 452 { 453 struct device_node *node; 454 struct pci_controller *phb; 455 struct device_node *root = of_find_node_by_path("/"); 456 457 for_each_child_of_node(root, node) { 458 if (node->type == NULL || (strcmp(node->type, "pci") != 0 && 459 strcmp(node->type, "pciex") != 0)) 460 continue; 461 462 phb = pcibios_alloc_controller(node); 463 if (!phb) 464 continue; 465 rtas_setup_phb(phb); 466 pci_process_bridge_OF_ranges(phb, node, 0); 467 isa_bridge_find_early(phb); 468 phb->controller_ops = pseries_pci_controller_ops; 469 } 470 471 of_node_put(root); 472 473 /* 474 * PCI_PROBE_ONLY and PCI_REASSIGN_ALL_BUS can be set via properties 475 * in chosen. 476 */ 477 of_pci_check_probe_only(); 478 } 479 480 static void init_cpu_char_feature_flags(struct h_cpu_char_result *result) 481 { 482 /* 483 * The features below are disabled by default, so we instead look to see 484 * if firmware has *enabled* them, and set them if so. 485 */ 486 if (result->character & H_CPU_CHAR_SPEC_BAR_ORI31) 487 security_ftr_set(SEC_FTR_SPEC_BAR_ORI31); 488 489 if (result->character & H_CPU_CHAR_BCCTRL_SERIALISED) 490 security_ftr_set(SEC_FTR_BCCTRL_SERIALISED); 491 492 if (result->character & H_CPU_CHAR_L1D_FLUSH_ORI30) 493 security_ftr_set(SEC_FTR_L1D_FLUSH_ORI30); 494 495 if (result->character & H_CPU_CHAR_L1D_FLUSH_TRIG2) 496 security_ftr_set(SEC_FTR_L1D_FLUSH_TRIG2); 497 498 if (result->character & H_CPU_CHAR_L1D_THREAD_PRIV) 499 security_ftr_set(SEC_FTR_L1D_THREAD_PRIV); 500 501 if (result->character & H_CPU_CHAR_COUNT_CACHE_DISABLED) 502 security_ftr_set(SEC_FTR_COUNT_CACHE_DISABLED); 503 504 if (result->character & H_CPU_CHAR_BCCTR_FLUSH_ASSIST) 505 security_ftr_set(SEC_FTR_BCCTR_FLUSH_ASSIST); 506 507 if (result->behaviour & H_CPU_BEHAV_FLUSH_COUNT_CACHE) 508 security_ftr_set(SEC_FTR_FLUSH_COUNT_CACHE); 509 510 /* 511 * The features below are enabled by default, so we instead look to see 512 * if firmware has *disabled* them, and clear them if so. 513 */ 514 if (!(result->behaviour & H_CPU_BEHAV_FAVOUR_SECURITY)) 515 security_ftr_clear(SEC_FTR_FAVOUR_SECURITY); 516 517 if (!(result->behaviour & H_CPU_BEHAV_L1D_FLUSH_PR)) 518 security_ftr_clear(SEC_FTR_L1D_FLUSH_PR); 519 520 if (!(result->behaviour & H_CPU_BEHAV_BNDS_CHK_SPEC_BAR)) 521 security_ftr_clear(SEC_FTR_BNDS_CHK_SPEC_BAR); 522 } 523 524 void pseries_setup_rfi_flush(void) 525 { 526 struct h_cpu_char_result result; 527 enum l1d_flush_type types; 528 bool enable; 529 long rc; 530 531 /* 532 * Set features to the defaults assumed by init_cpu_char_feature_flags() 533 * so it can set/clear again any features that might have changed after 534 * migration, and in case the hypercall fails and it is not even called. 535 */ 536 powerpc_security_features = SEC_FTR_DEFAULT; 537 538 rc = plpar_get_cpu_characteristics(&result); 539 if (rc == H_SUCCESS) 540 init_cpu_char_feature_flags(&result); 541 542 /* 543 * We're the guest so this doesn't apply to us, clear it to simplify 544 * handling of it elsewhere. 545 */ 546 security_ftr_clear(SEC_FTR_L1D_FLUSH_HV); 547 548 types = L1D_FLUSH_FALLBACK; 549 550 if (security_ftr_enabled(SEC_FTR_L1D_FLUSH_TRIG2)) 551 types |= L1D_FLUSH_MTTRIG; 552 553 if (security_ftr_enabled(SEC_FTR_L1D_FLUSH_ORI30)) 554 types |= L1D_FLUSH_ORI; 555 556 enable = security_ftr_enabled(SEC_FTR_FAVOUR_SECURITY) && \ 557 security_ftr_enabled(SEC_FTR_L1D_FLUSH_PR); 558 559 setup_rfi_flush(types, enable); 560 setup_count_cache_flush(); 561 } 562 563 #ifdef CONFIG_PCI_IOV 564 enum rtas_iov_fw_value_map { 565 NUM_RES_PROPERTY = 0, /* Number of Resources */ 566 LOW_INT = 1, /* Lowest 32 bits of Address */ 567 START_OF_ENTRIES = 2, /* Always start of entry */ 568 APERTURE_PROPERTY = 2, /* Start of entry+ to Aperture Size */ 569 WDW_SIZE_PROPERTY = 4, /* Start of entry+ to Window Size */ 570 NEXT_ENTRY = 7 /* Go to next entry on array */ 571 }; 572 573 enum get_iov_fw_value_index { 574 BAR_ADDRS = 1, /* Get Bar Address */ 575 APERTURE_SIZE = 2, /* Get Aperture Size */ 576 WDW_SIZE = 3 /* Get Window Size */ 577 }; 578 579 resource_size_t pseries_get_iov_fw_value(struct pci_dev *dev, int resno, 580 enum get_iov_fw_value_index value) 581 { 582 const int *indexes; 583 struct device_node *dn = pci_device_to_OF_node(dev); 584 int i, num_res, ret = 0; 585 586 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL); 587 if (!indexes) 588 return 0; 589 590 /* 591 * First element in the array is the number of Bars 592 * returned. Search through the list to find the matching 593 * bar 594 */ 595 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1); 596 if (resno >= num_res) 597 return 0; /* or an errror */ 598 599 i = START_OF_ENTRIES + NEXT_ENTRY * resno; 600 switch (value) { 601 case BAR_ADDRS: 602 ret = of_read_number(&indexes[i], 2); 603 break; 604 case APERTURE_SIZE: 605 ret = of_read_number(&indexes[i + APERTURE_PROPERTY], 2); 606 break; 607 case WDW_SIZE: 608 ret = of_read_number(&indexes[i + WDW_SIZE_PROPERTY], 2); 609 break; 610 } 611 612 return ret; 613 } 614 615 void of_pci_set_vf_bar_size(struct pci_dev *dev, const int *indexes) 616 { 617 struct resource *res; 618 resource_size_t base, size; 619 int i, r, num_res; 620 621 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1); 622 num_res = min_t(int, num_res, PCI_SRIOV_NUM_BARS); 623 for (i = START_OF_ENTRIES, r = 0; r < num_res && r < PCI_SRIOV_NUM_BARS; 624 i += NEXT_ENTRY, r++) { 625 res = &dev->resource[r + PCI_IOV_RESOURCES]; 626 base = of_read_number(&indexes[i], 2); 627 size = of_read_number(&indexes[i + APERTURE_PROPERTY], 2); 628 res->flags = pci_parse_of_flags(of_read_number 629 (&indexes[i + LOW_INT], 1), 0); 630 res->flags |= (IORESOURCE_MEM_64 | IORESOURCE_PCI_FIXED); 631 res->name = pci_name(dev); 632 res->start = base; 633 res->end = base + size - 1; 634 } 635 } 636 637 void of_pci_parse_iov_addrs(struct pci_dev *dev, const int *indexes) 638 { 639 struct resource *res, *root, *conflict; 640 resource_size_t base, size; 641 int i, r, num_res; 642 643 /* 644 * First element in the array is the number of Bars 645 * returned. Search through the list to find the matching 646 * bars assign them from firmware into resources structure. 647 */ 648 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1); 649 for (i = START_OF_ENTRIES, r = 0; r < num_res && r < PCI_SRIOV_NUM_BARS; 650 i += NEXT_ENTRY, r++) { 651 res = &dev->resource[r + PCI_IOV_RESOURCES]; 652 base = of_read_number(&indexes[i], 2); 653 size = of_read_number(&indexes[i + WDW_SIZE_PROPERTY], 2); 654 res->name = pci_name(dev); 655 res->start = base; 656 res->end = base + size - 1; 657 root = &iomem_resource; 658 dev_dbg(&dev->dev, 659 "pSeries IOV BAR %d: trying firmware assignment %pR\n", 660 r + PCI_IOV_RESOURCES, res); 661 conflict = request_resource_conflict(root, res); 662 if (conflict) { 663 dev_info(&dev->dev, 664 "BAR %d: %pR conflicts with %s %pR\n", 665 r + PCI_IOV_RESOURCES, res, 666 conflict->name, conflict); 667 res->flags |= IORESOURCE_UNSET; 668 } 669 } 670 } 671 672 static void pseries_disable_sriov_resources(struct pci_dev *pdev) 673 { 674 int i; 675 676 pci_warn(pdev, "No hypervisor support for SR-IOV on this device, IOV BARs disabled.\n"); 677 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) 678 pdev->resource[i + PCI_IOV_RESOURCES].flags = 0; 679 } 680 681 static void pseries_pci_fixup_resources(struct pci_dev *pdev) 682 { 683 const int *indexes; 684 struct device_node *dn = pci_device_to_OF_node(pdev); 685 686 /*Firmware must support open sriov otherwise dont configure*/ 687 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL); 688 if (indexes) 689 of_pci_set_vf_bar_size(pdev, indexes); 690 else 691 pseries_disable_sriov_resources(pdev); 692 } 693 694 static void pseries_pci_fixup_iov_resources(struct pci_dev *pdev) 695 { 696 const int *indexes; 697 struct device_node *dn = pci_device_to_OF_node(pdev); 698 699 if (!pdev->is_physfn || pdev->is_added) 700 return; 701 /*Firmware must support open sriov otherwise dont configure*/ 702 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL); 703 if (indexes) 704 of_pci_parse_iov_addrs(pdev, indexes); 705 else 706 pseries_disable_sriov_resources(pdev); 707 } 708 709 static resource_size_t pseries_pci_iov_resource_alignment(struct pci_dev *pdev, 710 int resno) 711 { 712 const __be32 *reg; 713 struct device_node *dn = pci_device_to_OF_node(pdev); 714 715 /*Firmware must support open sriov otherwise report regular alignment*/ 716 reg = of_get_property(dn, "ibm,is-open-sriov-pf", NULL); 717 if (!reg) 718 return pci_iov_resource_size(pdev, resno); 719 720 if (!pdev->is_physfn) 721 return 0; 722 return pseries_get_iov_fw_value(pdev, 723 resno - PCI_IOV_RESOURCES, 724 APERTURE_SIZE); 725 } 726 #endif 727 728 static void __init pSeries_setup_arch(void) 729 { 730 set_arch_panic_timeout(10, ARCH_PANIC_TIMEOUT); 731 732 /* Discover PIC type and setup ppc_md accordingly */ 733 smp_init_pseries(); 734 735 736 /* openpic global configuration register (64-bit format). */ 737 /* openpic Interrupt Source Unit pointer (64-bit format). */ 738 /* python0 facility area (mmio) (64-bit format) REAL address. */ 739 740 /* init to some ~sane value until calibrate_delay() runs */ 741 loops_per_jiffy = 50000000; 742 743 fwnmi_init(); 744 745 pseries_setup_rfi_flush(); 746 setup_stf_barrier(); 747 748 /* By default, only probe PCI (can be overridden by rtas_pci) */ 749 pci_add_flags(PCI_PROBE_ONLY); 750 751 /* Find and initialize PCI host bridges */ 752 init_pci_config_tokens(); 753 find_and_init_phbs(); 754 of_reconfig_notifier_register(&pci_dn_reconfig_nb); 755 756 pSeries_nvram_init(); 757 758 if (firmware_has_feature(FW_FEATURE_LPAR)) { 759 vpa_init(boot_cpuid); 760 ppc_md.power_save = pseries_lpar_idle; 761 ppc_md.enable_pmcs = pseries_lpar_enable_pmcs; 762 #ifdef CONFIG_PCI_IOV 763 ppc_md.pcibios_fixup_resources = 764 pseries_pci_fixup_resources; 765 ppc_md.pcibios_fixup_sriov = 766 pseries_pci_fixup_iov_resources; 767 ppc_md.pcibios_iov_resource_alignment = 768 pseries_pci_iov_resource_alignment; 769 #endif 770 } else { 771 /* No special idle routine */ 772 ppc_md.enable_pmcs = power4_enable_pmcs; 773 } 774 775 ppc_md.pcibios_root_bridge_prepare = pseries_root_bridge_prepare; 776 } 777 778 static void pseries_panic(char *str) 779 { 780 panic_flush_kmsg_end(); 781 rtas_os_term(str); 782 } 783 784 static int __init pSeries_init_panel(void) 785 { 786 /* Manually leave the kernel version on the panel. */ 787 #ifdef __BIG_ENDIAN__ 788 ppc_md.progress("Linux ppc64\n", 0); 789 #else 790 ppc_md.progress("Linux ppc64le\n", 0); 791 #endif 792 ppc_md.progress(init_utsname()->version, 0); 793 794 return 0; 795 } 796 machine_arch_initcall(pseries, pSeries_init_panel); 797 798 static int pseries_set_dabr(unsigned long dabr, unsigned long dabrx) 799 { 800 return plpar_hcall_norets(H_SET_DABR, dabr); 801 } 802 803 static int pseries_set_xdabr(unsigned long dabr, unsigned long dabrx) 804 { 805 /* Have to set at least one bit in the DABRX according to PAPR */ 806 if (dabrx == 0 && dabr == 0) 807 dabrx = DABRX_USER; 808 /* PAPR says we can only set kernel and user bits */ 809 dabrx &= DABRX_KERNEL | DABRX_USER; 810 811 return plpar_hcall_norets(H_SET_XDABR, dabr, dabrx); 812 } 813 814 static int pseries_set_dawr(unsigned long dawr, unsigned long dawrx) 815 { 816 /* PAPR says we can't set HYP */ 817 dawrx &= ~DAWRX_HYP; 818 819 return plpar_set_watchpoint0(dawr, dawrx); 820 } 821 822 #define CMO_CHARACTERISTICS_TOKEN 44 823 #define CMO_MAXLENGTH 1026 824 825 void pSeries_coalesce_init(void) 826 { 827 struct hvcall_mpp_x_data mpp_x_data; 828 829 if (firmware_has_feature(FW_FEATURE_CMO) && !h_get_mpp_x(&mpp_x_data)) 830 powerpc_firmware_features |= FW_FEATURE_XCMO; 831 else 832 powerpc_firmware_features &= ~FW_FEATURE_XCMO; 833 } 834 835 /** 836 * fw_cmo_feature_init - FW_FEATURE_CMO is not stored in ibm,hypertas-functions, 837 * handle that here. (Stolen from parse_system_parameter_string) 838 */ 839 static void pSeries_cmo_feature_init(void) 840 { 841 char *ptr, *key, *value, *end; 842 int call_status; 843 int page_order = IOMMU_PAGE_SHIFT_4K; 844 845 pr_debug(" -> fw_cmo_feature_init()\n"); 846 spin_lock(&rtas_data_buf_lock); 847 memset(rtas_data_buf, 0, RTAS_DATA_BUF_SIZE); 848 call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1, 849 NULL, 850 CMO_CHARACTERISTICS_TOKEN, 851 __pa(rtas_data_buf), 852 RTAS_DATA_BUF_SIZE); 853 854 if (call_status != 0) { 855 spin_unlock(&rtas_data_buf_lock); 856 pr_debug("CMO not available\n"); 857 pr_debug(" <- fw_cmo_feature_init()\n"); 858 return; 859 } 860 861 end = rtas_data_buf + CMO_MAXLENGTH - 2; 862 ptr = rtas_data_buf + 2; /* step over strlen value */ 863 key = value = ptr; 864 865 while (*ptr && (ptr <= end)) { 866 /* Separate the key and value by replacing '=' with '\0' and 867 * point the value at the string after the '=' 868 */ 869 if (ptr[0] == '=') { 870 ptr[0] = '\0'; 871 value = ptr + 1; 872 } else if (ptr[0] == '\0' || ptr[0] == ',') { 873 /* Terminate the string containing the key/value pair */ 874 ptr[0] = '\0'; 875 876 if (key == value) { 877 pr_debug("Malformed key/value pair\n"); 878 /* Never found a '=', end processing */ 879 break; 880 } 881 882 if (0 == strcmp(key, "CMOPageSize")) 883 page_order = simple_strtol(value, NULL, 10); 884 else if (0 == strcmp(key, "PrPSP")) 885 CMO_PrPSP = simple_strtol(value, NULL, 10); 886 else if (0 == strcmp(key, "SecPSP")) 887 CMO_SecPSP = simple_strtol(value, NULL, 10); 888 value = key = ptr + 1; 889 } 890 ptr++; 891 } 892 893 /* Page size is returned as the power of 2 of the page size, 894 * convert to the page size in bytes before returning 895 */ 896 CMO_PageSize = 1 << page_order; 897 pr_debug("CMO_PageSize = %lu\n", CMO_PageSize); 898 899 if (CMO_PrPSP != -1 || CMO_SecPSP != -1) { 900 pr_info("CMO enabled\n"); 901 pr_debug("CMO enabled, PrPSP=%d, SecPSP=%d\n", CMO_PrPSP, 902 CMO_SecPSP); 903 powerpc_firmware_features |= FW_FEATURE_CMO; 904 pSeries_coalesce_init(); 905 } else 906 pr_debug("CMO not enabled, PrPSP=%d, SecPSP=%d\n", CMO_PrPSP, 907 CMO_SecPSP); 908 spin_unlock(&rtas_data_buf_lock); 909 pr_debug(" <- fw_cmo_feature_init()\n"); 910 } 911 912 /* 913 * Early initialization. Relocation is on but do not reference unbolted pages 914 */ 915 static void __init pseries_init(void) 916 { 917 pr_debug(" -> pseries_init()\n"); 918 919 #ifdef CONFIG_HVC_CONSOLE 920 if (firmware_has_feature(FW_FEATURE_LPAR)) 921 hvc_vio_init_early(); 922 #endif 923 if (firmware_has_feature(FW_FEATURE_XDABR)) 924 ppc_md.set_dabr = pseries_set_xdabr; 925 else if (firmware_has_feature(FW_FEATURE_DABR)) 926 ppc_md.set_dabr = pseries_set_dabr; 927 928 if (firmware_has_feature(FW_FEATURE_SET_MODE)) 929 ppc_md.set_dawr = pseries_set_dawr; 930 931 pSeries_cmo_feature_init(); 932 iommu_init_early_pSeries(); 933 934 pr_debug(" <- pseries_init()\n"); 935 } 936 937 /** 938 * pseries_power_off - tell firmware about how to power off the system. 939 * 940 * This function calls either the power-off rtas token in normal cases 941 * or the ibm,power-off-ups token (if present & requested) in case of 942 * a power failure. If power-off token is used, power on will only be 943 * possible with power button press. If ibm,power-off-ups token is used 944 * it will allow auto poweron after power is restored. 945 */ 946 static void pseries_power_off(void) 947 { 948 int rc; 949 int rtas_poweroff_ups_token = rtas_token("ibm,power-off-ups"); 950 951 if (rtas_flash_term_hook) 952 rtas_flash_term_hook(SYS_POWER_OFF); 953 954 if (rtas_poweron_auto == 0 || 955 rtas_poweroff_ups_token == RTAS_UNKNOWN_SERVICE) { 956 rc = rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1); 957 printk(KERN_INFO "RTAS power-off returned %d\n", rc); 958 } else { 959 rc = rtas_call(rtas_poweroff_ups_token, 0, 1, NULL); 960 printk(KERN_INFO "RTAS ibm,power-off-ups returned %d\n", rc); 961 } 962 for (;;); 963 } 964 965 static int __init pSeries_probe(void) 966 { 967 const char *dtype = of_get_property(of_root, "device_type", NULL); 968 969 if (dtype == NULL) 970 return 0; 971 if (strcmp(dtype, "chrp")) 972 return 0; 973 974 /* Cell blades firmware claims to be chrp while it's not. Until this 975 * is fixed, we need to avoid those here. 976 */ 977 if (of_machine_is_compatible("IBM,CPBW-1.0") || 978 of_machine_is_compatible("IBM,CBEA")) 979 return 0; 980 981 pm_power_off = pseries_power_off; 982 983 pr_debug("Machine is%s LPAR !\n", 984 (powerpc_firmware_features & FW_FEATURE_LPAR) ? "" : " not"); 985 986 pseries_init(); 987 988 return 1; 989 } 990 991 static int pSeries_pci_probe_mode(struct pci_bus *bus) 992 { 993 if (firmware_has_feature(FW_FEATURE_LPAR)) 994 return PCI_PROBE_DEVTREE; 995 return PCI_PROBE_NORMAL; 996 } 997 998 struct pci_controller_ops pseries_pci_controller_ops = { 999 .probe_mode = pSeries_pci_probe_mode, 1000 }; 1001 1002 define_machine(pseries) { 1003 .name = "pSeries", 1004 .probe = pSeries_probe, 1005 .setup_arch = pSeries_setup_arch, 1006 .init_IRQ = pseries_init_irq, 1007 .show_cpuinfo = pSeries_show_cpuinfo, 1008 .log_error = pSeries_log_error, 1009 .pcibios_fixup = pSeries_final_fixup, 1010 .restart = rtas_restart, 1011 .halt = rtas_halt, 1012 .panic = pseries_panic, 1013 .get_boot_time = rtas_get_boot_time, 1014 .get_rtc_time = rtas_get_rtc_time, 1015 .set_rtc_time = rtas_set_rtc_time, 1016 .calibrate_decr = generic_calibrate_decr, 1017 .progress = rtas_progress, 1018 .system_reset_exception = pSeries_system_reset_exception, 1019 .machine_check_exception = pSeries_machine_check_exception, 1020 #ifdef CONFIG_KEXEC_CORE 1021 .machine_kexec = pSeries_machine_kexec, 1022 .kexec_cpu_down = pseries_kexec_cpu_down, 1023 #endif 1024 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE 1025 .memory_block_size = pseries_memory_block_size, 1026 #endif 1027 }; 1028