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