blob: b955d54628ffde485b076e0fa16f7f5d6eec8467 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Paul Mackerras033ef332005-10-26 17:05:24 +10003 * 64-bit pSeries and RS/6000 setup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
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 Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/*
12 * bootup setup stuff..
13 */
14
Michael Ellerman62d60e92005-07-07 17:56:30 -070015#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#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 Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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 Heringcebb2b12005-07-10 19:35:15 +000031#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/adb.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040033#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/delay.h>
35#include <linux/irq.h>
36#include <linux/seq_file.h>
37#include <linux/root_dev.h>
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +000038#include <linux/of.h>
Marc Zyngier705a7b42015-09-04 17:50:10 +010039#include <linux/of_pci.h>
Mahesh Salgaonkar94675cc2018-07-04 23:27:21 +053040#include <linux/memblock.h>
Alexey Kardashevskiy1a047cc2019-05-07 16:25:59 +100041#include <linux/swiotlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/mmu.h>
44#include <asm/processor.h>
45#include <asm/io.h>
46#include <asm/pgtable.h>
47#include <asm/prom.h>
48#include <asm/rtas.h>
49#include <asm/pci-bridge.h>
50#include <asm/iommu.h>
51#include <asm/dma.h>
52#include <asm/machdep.h>
53#include <asm/irq.h>
54#include <asm/time.h>
55#include <asm/nvram.h>
Michael Ellerman180a3362005-08-09 11:13:36 +100056#include <asm/pmc.h>
Benjamin Herrenschmidt0b05ac62011-04-04 13:46:58 +100057#include <asm/xics.h>
Cédric Le Goatereac1e732017-08-30 21:46:11 +020058#include <asm/xive.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100059#include <asm/ppc-pci.h>
Paul Mackerras69a80d32005-10-10 22:03:41 +100060#include <asm/i8259.h>
61#include <asm/udbg.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110062#include <asm/smp.h>
Michael Ellerman577830b2007-02-08 18:33:51 +110063#include <asm/firmware.h>
Stephen Rothwellbed59272007-03-04 17:04:44 +110064#include <asm/eeh.h>
Michael Neulingbf99de32012-12-20 14:06:45 +000065#include <asm/reg.h>
Deepthi Dharwar212bebb2013-08-22 15:23:52 +053066#include <asm/plpar_wrappers.h>
Thiago Jung Bauermannd81d8252016-08-23 19:57:39 -030067#include <asm/kexec.h>
Benjamin Herrenschmidt38e9d362017-01-30 18:11:55 +110068#include <asm/isa-bridge.h>
Michael Ellermanf636c142018-03-27 23:01:46 +110069#include <asm/security_features.h>
Christophe Leroyec0c4642018-07-05 16:24:57 +000070#include <asm/asm-const.h>
Alexey Kardashevskiy1a047cc2019-05-07 16:25:59 +100071#include <asm/swiotlb.h>
Anshuman Khanduald5394c02019-08-19 23:13:19 -030072#include <asm/svm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Michael Ellerman577830b2007-02-08 18:33:51 +110074#include "pseries.h"
Hari Vyas44bda4b2018-07-03 14:35:41 +053075#include "../../../../drivers/pci/pci.h"
Michael Ellermana1218722005-11-03 15:33:31 +110076
Robert Jennings81f14992008-08-16 05:07:31 +100077int CMO_PrPSP = -1;
78int CMO_SecPSP = -1;
Alistair Popplee589a4402013-12-09 18:17:01 +110079unsigned long CMO_PageSize = (ASM_CONST(1) << IOMMU_PAGE_SHIFT_4K);
Andrew Mortond617a402008-08-21 11:16:26 +100080EXPORT_SYMBOL(CMO_PageSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082int fwnmi_active; /* TRUE if an FWNMI handler is present */
83
Arnd Bergmann84461962006-01-11 00:00:02 +000084static void pSeries_show_cpuinfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 struct device_node *root;
87 const char *model = "";
88
89 root = of_find_node_by_path("/");
90 if (root)
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100091 model = of_get_property(root, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 seq_printf(m, "machine\t\t: CHRP %s\n", model);
93 of_node_put(root);
Aneesh Kumar K.V3a4c26012017-03-21 22:59:55 +053094 if (radix_enabled())
95 seq_printf(m, "MMU\t\t: Radix\n");
96 else
97 seq_printf(m, "MMU\t\t: Hash\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100/* Initialize firmware assisted non-maskable interrupts if
101 * the firmware supports this feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
103static void __init fwnmi_init(void)
104{
Michael Ellerman8c4f1f22005-12-04 18:39:33 +1100105 unsigned long system_reset_addr, machine_check_addr;
Mahesh Salgaonkar94675cc2018-07-04 23:27:21 +0530106 u8 *mce_data_buf;
107 unsigned int i;
108 int nr_cpus = num_possible_cpus();
Mahesh Salgaonkarc6d15252018-09-11 19:57:15 +0530109#ifdef CONFIG_PPC_BOOK3S_64
110 struct slb_entry *slb_ptr;
111 size_t size;
112#endif
Michael Ellerman8c4f1f22005-12-04 18:39:33 +1100113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 int ibm_nmi_register = rtas_token("ibm,nmi-register");
115 if (ibm_nmi_register == RTAS_UNKNOWN_SERVICE)
116 return;
Michael Ellerman8c4f1f22005-12-04 18:39:33 +1100117
118 /* If the kernel's not linked at zero we point the firmware at low
119 * addresses anyway, and use a trampoline to get to the real code. */
120 system_reset_addr = __pa(system_reset_fwnmi) - PHYSICAL_START;
121 machine_check_addr = __pa(machine_check_fwnmi) - PHYSICAL_START;
122
123 if (0 == rtas_call(ibm_nmi_register, 2, 1, NULL, system_reset_addr,
124 machine_check_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 fwnmi_active = 1;
Mahesh Salgaonkar94675cc2018-07-04 23:27:21 +0530126
127 /*
128 * Allocate a chunk for per cpu buffer to hold rtas errorlog.
129 * It will be used in real mode mce handler, hence it needs to be
130 * below RMA.
131 */
Mike Rapoportf8067142019-03-07 16:30:48 -0800132 mce_data_buf = memblock_alloc_try_nid_raw(RTAS_ERROR_LOG_MAX * nr_cpus,
133 RTAS_ERROR_LOG_MAX, MEMBLOCK_LOW_LIMIT,
134 ppc64_rma_size, NUMA_NO_NODE);
135 if (!mce_data_buf)
136 panic("Failed to allocate %d bytes below %pa for MCE buffer\n",
137 RTAS_ERROR_LOG_MAX * nr_cpus, &ppc64_rma_size);
138
Mahesh Salgaonkar94675cc2018-07-04 23:27:21 +0530139 for_each_possible_cpu(i) {
140 paca_ptrs[i]->mce_data_buf = mce_data_buf +
141 (RTAS_ERROR_LOG_MAX * i);
142 }
Mahesh Salgaonkarc6d15252018-09-11 19:57:15 +0530143
144#ifdef CONFIG_PPC_BOOK3S_64
Nicholas Piggin7290f3b2019-08-02 20:56:33 +1000145 if (!radix_enabled()) {
146 /* Allocate per cpu area to save old slb contents during MCE */
147 size = sizeof(struct slb_entry) * mmu_slb_size * nr_cpus;
148 slb_ptr = memblock_alloc_try_nid_raw(size,
149 sizeof(struct slb_entry), MEMBLOCK_LOW_LIMIT,
150 ppc64_rma_size, NUMA_NO_NODE);
151 if (!slb_ptr)
152 panic("Failed to allocate %zu bytes below %pa for slb area\n",
153 size, &ppc64_rma_size);
Mike Rapoportf8067142019-03-07 16:30:48 -0800154
Nicholas Piggin7290f3b2019-08-02 20:56:33 +1000155 for_each_possible_cpu(i)
156 paca_ptrs[i]->mce_faulty_slbs = slb_ptr + (mmu_slb_size * i);
157 }
Mahesh Salgaonkarc6d15252018-09-11 19:57:15 +0530158#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200161static void pseries_8259_cascade(struct irq_desc *desc)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000162{
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100163 struct irq_chip *chip = irq_desc_get_chip(desc);
Olaf Hering35a84c22006-10-07 22:08:26 +1000164 unsigned int cascade_irq = i8259_irq();
Lennert Buytenhek79f26c22011-03-07 13:59:45 +0000165
Michael Ellermanef24ba72016-09-06 21:53:24 +1000166 if (cascade_irq)
David Howells7d12e782006-10-05 14:55:46 +0100167 generic_handle_irq(cascade_irq);
Lennert Buytenhek79f26c22011-03-07 13:59:45 +0000168
169 chip->irq_eoi(&desc->irq_data);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000170}
171
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100172static void __init pseries_setup_i8259_cascade(void)
Michael Ellerman032ace72008-04-01 17:42:25 +1100173{
174 struct device_node *np, *old, *found = NULL;
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100175 unsigned int cascade;
Michael Ellerman032ace72008-04-01 17:42:25 +1100176 const u32 *addrp;
177 unsigned long intack = 0;
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100178 int naddr;
Michael Ellerman032ace72008-04-01 17:42:25 +1100179
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100180 for_each_node_by_type(np, "interrupt-controller") {
Michael Ellerman032ace72008-04-01 17:42:25 +1100181 if (of_device_is_compatible(np, "chrp,iic")) {
182 found = np;
183 break;
184 }
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100185 }
186
Michael Ellerman032ace72008-04-01 17:42:25 +1100187 if (found == NULL) {
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100188 printk(KERN_DEBUG "pic: no ISA interrupt controller\n");
Michael Ellerman032ace72008-04-01 17:42:25 +1100189 return;
190 }
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100191
Michael Ellerman032ace72008-04-01 17:42:25 +1100192 cascade = irq_of_parse_and_map(found, 0);
Michael Ellermanef24ba72016-09-06 21:53:24 +1000193 if (!cascade) {
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100194 printk(KERN_ERR "pic: failed to map cascade interrupt");
Michael Ellerman032ace72008-04-01 17:42:25 +1100195 return;
196 }
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100197 pr_debug("pic: cascade mapped to irq %d\n", cascade);
Michael Ellerman032ace72008-04-01 17:42:25 +1100198
199 for (old = of_node_get(found); old != NULL ; old = np) {
200 np = of_get_parent(old);
201 of_node_put(old);
202 if (np == NULL)
203 break;
Rob Herring2c8e65b2018-12-05 13:50:18 -0600204 if (!of_node_name_eq(np, "pci"))
Michael Ellerman032ace72008-04-01 17:42:25 +1100205 continue;
206 addrp = of_get_property(np, "8259-interrupt-acknowledge", NULL);
207 if (addrp == NULL)
208 continue;
209 naddr = of_n_addr_cells(np);
210 intack = addrp[naddr-1];
211 if (naddr > 1)
212 intack |= ((unsigned long)addrp[naddr-2]) << 32;
213 }
214 if (intack)
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100215 printk(KERN_DEBUG "pic: PCI 8259 intack at 0x%016lx\n", intack);
Michael Ellerman032ace72008-04-01 17:42:25 +1100216 i8259_init(found, intack);
217 of_node_put(found);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100218 irq_set_chained_handler(cascade, pseries_8259_cascade);
Michael Ellerman032ace72008-04-01 17:42:25 +1100219}
220
Rashmica Guptae7da5da2016-05-30 16:18:11 +1000221static void __init pseries_init_irq(void)
Michael Ellerman032ace72008-04-01 17:42:25 +1100222{
Cédric Le Goatereac1e732017-08-30 21:46:11 +0200223 /* Try using a XIVE if available, otherwise use a XICS */
224 if (!xive_spapr_init()) {
225 xics_init();
226 pseries_setup_i8259_cascade();
227 }
Michael Ellerman032ace72008-04-01 17:42:25 +1100228}
229
Michael Ellerman180a3362005-08-09 11:13:36 +1000230static void pseries_lpar_enable_pmcs(void)
231{
232 unsigned long set, reset;
233
Michael Ellerman180a3362005-08-09 11:13:36 +1000234 set = 1UL << 63;
235 reset = 0;
236 plpar_hcall_norets(H_PERFMON, set, reset);
Michael Ellerman180a3362005-08-09 11:13:36 +1000237}
238
Grant Likelyf5242e52014-11-24 17:58:01 +0000239static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *data)
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000240{
Grant Likelyf5242e52014-11-24 17:58:01 +0000241 struct of_reconfig_data *rd = data;
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000242 struct device_node *parent, *np = rd->dn;
243 struct pci_dn *pdn;
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000244 int err = NOTIFY_OK;
245
246 switch (action) {
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000247 case OF_RECONFIG_ATTACH_NODE:
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000248 parent = of_get_parent(np);
249 pdn = parent ? PCI_DN(parent) : NULL;
Gavin Shan8cc75812016-05-20 16:41:37 +1000250 if (pdn)
Gavin Shand8f66f42016-05-03 15:41:40 +1000251 pci_add_device_node_info(pdn->phb, np);
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000252
253 of_node_put(parent);
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000254 break;
Gavin Shan590c7562015-08-27 14:12:36 +1000255 case OF_RECONFIG_DETACH_NODE:
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000256 pdn = PCI_DN(np);
257 if (pdn)
258 list_del(&pdn->list);
Gavin Shan590c7562015-08-27 14:12:36 +1000259 break;
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000260 default:
261 err = NOTIFY_DONE;
262 break;
263 }
264 return err;
265}
266
267static struct notifier_block pci_dn_reconfig_nb = {
268 .notifier_call = pci_dn_reconfig_notifier,
269};
270
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000271struct kmem_cache *dtl_cache;
272
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200273#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000274/*
275 * Allocate space for the dispatch trace log for all possible cpus
276 * and register the buffers with the hypervisor. This is used for
277 * computing time stolen by the hypervisor.
278 */
279static int alloc_dispatch_logs(void)
280{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000281 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
282 return 0;
283
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000284 if (!dtl_cache)
Nishanth Aravamudan127493d2011-04-13 19:45:59 +0000285 return 0;
Nishanth Aravamudan127493d2011-04-13 19:45:59 +0000286
Naveen N. Rao18a593c2019-07-03 22:34:01 +0530287 alloc_dtl_buffers(0);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000288
289 /* Register the DTL for the current (boot) cpu */
Naveen N. Rao1c85a2a2019-07-03 22:33:56 +0530290 register_dtl_buffer(smp_processor_id());
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000291
292 return 0;
293}
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200294#else /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000295static inline int alloc_dispatch_logs(void)
296{
297 return 0;
298}
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200299#endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000300
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000301static int alloc_dispatch_log_kmem_cache(void)
302{
Anshuman Khanduald5394c02019-08-19 23:13:19 -0300303 void (*ctor)(void *) = get_dtl_cache_ctor();
304
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000305 dtl_cache = kmem_cache_create("dtl", DISPATCH_LOG_BYTES,
Anshuman Khanduald5394c02019-08-19 23:13:19 -0300306 DISPATCH_LOG_BYTES, 0, ctor);
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000307 if (!dtl_cache) {
308 pr_warn("Failed to create dispatch trace log buffer cache\n");
309 pr_warn("Stolen time statistics will be unreliable\n");
310 return 0;
311 }
312
313 return alloc_dispatch_logs();
314}
Michael Ellerman8e83e902014-07-16 12:02:43 +1000315machine_early_initcall(pseries, alloc_dispatch_log_kmem_cache);
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000316
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530317static void pseries_lpar_idle(void)
Deepthi Dharware1798162011-11-30 02:46:55 +0000318{
Nicolas Pitred8c6ad32014-01-29 12:45:10 -0500319 /*
320 * Default handler to go into low thread priority and possibly
Michael Ellerman027dfac2016-06-01 16:34:37 +1000321 * low power mode by ceding processor to hypervisor
Deepthi Dharware1798162011-11-30 02:46:55 +0000322 */
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530323
Nicolas Pitred8c6ad32014-01-29 12:45:10 -0500324 /* Indicate to hypervisor that we are idle. */
325 get_lppaca()->idle = 1;
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530326
Nicolas Pitred8c6ad32014-01-29 12:45:10 -0500327 /*
328 * Yield the processor to the hypervisor. We return if
329 * an external interrupt occurs (which are driven prior
330 * to returning here) or if a prod occurs from another
331 * processor. When returning here, external interrupts
332 * are enabled.
333 */
334 cede_processor();
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530335
Nicolas Pitred8c6ad32014-01-29 12:45:10 -0500336 get_lppaca()->idle = 0;
Deepthi Dharware1798162011-11-30 02:46:55 +0000337}
338
Ian Munsiefc8effa2012-11-08 16:03:14 +1100339/*
340 * Enable relocation on during exceptions. This has partition wide scope and
341 * may take a while to complete, if it takes longer than one second we will
342 * just give up rather than wasting any more time on this - if that turns out
343 * to ever be a problem in practice we can move this into a kernel thread to
344 * finish off the process later in boot.
345 */
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000346void pseries_enable_reloc_on_exc(void)
Ian Munsiefc8effa2012-11-08 16:03:14 +1100347{
348 long rc;
349 unsigned int delay, total_delay = 0;
350
351 while (1) {
352 rc = enable_reloc_on_exceptions();
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000353 if (!H_IS_LONG_BUSY(rc)) {
354 if (rc == H_P2) {
355 pr_info("Relocation on exceptions not"
356 " supported\n");
357 } else if (rc != H_SUCCESS) {
358 pr_warn("Unable to enable relocation"
359 " on exceptions: %ld\n", rc);
360 }
361 break;
362 }
Ian Munsiefc8effa2012-11-08 16:03:14 +1100363
364 delay = get_longbusy_msecs(rc);
365 total_delay += delay;
366 if (total_delay > 1000) {
367 pr_warn("Warning: Giving up waiting to enable "
368 "relocation on exceptions (%u msec)!\n",
369 total_delay);
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000370 return;
Ian Munsiefc8effa2012-11-08 16:03:14 +1100371 }
372
373 mdelay(delay);
374 }
375}
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000376EXPORT_SYMBOL(pseries_enable_reloc_on_exc);
Ian Munsiefc8effa2012-11-08 16:03:14 +1100377
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000378void pseries_disable_reloc_on_exc(void)
Ian Munsiecedddd82012-11-08 16:40:28 +1100379{
380 long rc;
381
382 while (1) {
383 rc = disable_reloc_on_exceptions();
384 if (!H_IS_LONG_BUSY(rc))
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000385 break;
Ian Munsiecedddd82012-11-08 16:40:28 +1100386 mdelay(get_longbusy_msecs(rc));
387 }
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000388 if (rc != H_SUCCESS)
Joe Perchesf2c2cbc2016-10-24 21:00:08 -0700389 pr_warn("Warning: Failed to disable relocation on exceptions: %ld\n",
390 rc);
Ian Munsiecedddd82012-11-08 16:40:28 +1100391}
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000392EXPORT_SYMBOL(pseries_disable_reloc_on_exc);
Ian Munsiecedddd82012-11-08 16:40:28 +1100393
Thiago Jung Bauermannda665882016-11-29 23:45:50 +1100394#ifdef CONFIG_KEXEC_CORE
Ian Munsiecedddd82012-11-08 16:40:28 +1100395static void pSeries_machine_kexec(struct kimage *image)
396{
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000397 if (firmware_has_feature(FW_FEATURE_SET_MODE))
398 pseries_disable_reloc_on_exc();
Ian Munsiecedddd82012-11-08 16:40:28 +1100399
400 default_machine_kexec(image);
401}
402#endif
403
Anton Blancharde844b1e2013-11-20 22:14:59 +1100404#ifdef __LITTLE_ENDIAN__
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000405void pseries_big_endian_exceptions(void)
Anton Blancharde844b1e2013-11-20 22:14:59 +1100406{
407 long rc;
408
409 while (1) {
410 rc = enable_big_endian_exceptions();
411 if (!H_IS_LONG_BUSY(rc))
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000412 break;
Anton Blancharde844b1e2013-11-20 22:14:59 +1100413 mdelay(get_longbusy_msecs(rc));
414 }
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000415
416 /*
417 * At this point it is unlikely panic() will get anything
418 * out to the user, since this is called very late in kexec
419 * but at least this will stop us from continuing on further
420 * and creating an even more difficult to debug situation.
421 *
422 * There is a known problem when kdump'ing, if cpus are offline
423 * the above call will fail. Rather than panicking again, keep
424 * going and hope the kdump kernel is also little endian, which
425 * it usually is.
426 */
427 if (rc && !kdump_in_progress())
428 panic("Could not enable big endian exceptions");
Anton Blancharde844b1e2013-11-20 22:14:59 +1100429}
430
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000431void pseries_little_endian_exceptions(void)
Anton Blancharde844b1e2013-11-20 22:14:59 +1100432{
433 long rc;
434
435 while (1) {
436 rc = enable_little_endian_exceptions();
437 if (!H_IS_LONG_BUSY(rc))
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000438 break;
Anton Blancharde844b1e2013-11-20 22:14:59 +1100439 mdelay(get_longbusy_msecs(rc));
440 }
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000441 if (rc) {
442 ppc_md.progress("H_SET_MODE LE exception fail", 0);
443 panic("Could not enable little endian exceptions");
444 }
Anton Blancharde844b1e2013-11-20 22:14:59 +1100445}
446#endif
447
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100448static void __init find_and_init_phbs(void)
449{
450 struct device_node *node;
451 struct pci_controller *phb;
452 struct device_node *root = of_find_node_by_path("/");
453
454 for_each_child_of_node(root, node) {
Rob Herringe5480bd2018-11-16 16:11:00 -0600455 if (!of_node_is_type(node, "pci") &&
456 !of_node_is_type(node, "pciex"))
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100457 continue;
458
459 phb = pcibios_alloc_controller(node);
460 if (!phb)
461 continue;
462 rtas_setup_phb(phb);
463 pci_process_bridge_OF_ranges(phb, node, 0);
464 isa_bridge_find_early(phb);
Daniel Axtens38ae9ec2015-03-31 16:00:50 +1100465 phb->controller_ops = pseries_pci_controller_ops;
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100466 }
467
468 of_node_put(root);
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100469
470 /*
471 * PCI_PROBE_ONLY and PCI_REASSIGN_ALL_BUS can be set via properties
472 * in chosen.
473 */
Marc Zyngier705a7b42015-09-04 17:50:10 +0100474 of_pci_check_probe_only();
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100475}
476
Michael Ellermanf636c142018-03-27 23:01:46 +1100477static void init_cpu_char_feature_flags(struct h_cpu_char_result *result)
478{
Mauricio Faria de Oliveira6232774f2018-03-30 14:28:25 -0300479 /*
480 * The features below are disabled by default, so we instead look to see
481 * if firmware has *enabled* them, and set them if so.
482 */
Michael Ellermanf636c142018-03-27 23:01:46 +1100483 if (result->character & H_CPU_CHAR_SPEC_BAR_ORI31)
484 security_ftr_set(SEC_FTR_SPEC_BAR_ORI31);
485
486 if (result->character & H_CPU_CHAR_BCCTRL_SERIALISED)
487 security_ftr_set(SEC_FTR_BCCTRL_SERIALISED);
488
489 if (result->character & H_CPU_CHAR_L1D_FLUSH_ORI30)
490 security_ftr_set(SEC_FTR_L1D_FLUSH_ORI30);
491
492 if (result->character & H_CPU_CHAR_L1D_FLUSH_TRIG2)
493 security_ftr_set(SEC_FTR_L1D_FLUSH_TRIG2);
494
495 if (result->character & H_CPU_CHAR_L1D_THREAD_PRIV)
496 security_ftr_set(SEC_FTR_L1D_THREAD_PRIV);
497
498 if (result->character & H_CPU_CHAR_COUNT_CACHE_DISABLED)
499 security_ftr_set(SEC_FTR_COUNT_CACHE_DISABLED);
500
Michael Ellermanba72dc12018-07-24 01:07:55 +1000501 if (result->character & H_CPU_CHAR_BCCTR_FLUSH_ASSIST)
502 security_ftr_set(SEC_FTR_BCCTR_FLUSH_ASSIST);
503
504 if (result->behaviour & H_CPU_BEHAV_FLUSH_COUNT_CACHE)
505 security_ftr_set(SEC_FTR_FLUSH_COUNT_CACHE);
506
Michael Ellermanf636c142018-03-27 23:01:46 +1100507 /*
508 * The features below are enabled by default, so we instead look to see
509 * if firmware has *disabled* them, and clear them if so.
510 */
Mauricio Faria de Oliveira0f9bdfe2018-03-29 15:32:11 -0300511 if (!(result->behaviour & H_CPU_BEHAV_FAVOUR_SECURITY))
Michael Ellermanf636c142018-03-27 23:01:46 +1100512 security_ftr_clear(SEC_FTR_FAVOUR_SECURITY);
513
Mauricio Faria de Oliveira0f9bdfe2018-03-29 15:32:11 -0300514 if (!(result->behaviour & H_CPU_BEHAV_L1D_FLUSH_PR))
Michael Ellermanf636c142018-03-27 23:01:46 +1100515 security_ftr_clear(SEC_FTR_L1D_FLUSH_PR);
516
Mauricio Faria de Oliveira0f9bdfe2018-03-29 15:32:11 -0300517 if (!(result->behaviour & H_CPU_BEHAV_BNDS_CHK_SPEC_BAR))
Michael Ellermanf636c142018-03-27 23:01:46 +1100518 security_ftr_clear(SEC_FTR_BNDS_CHK_SPEC_BAR);
519}
520
Michael Ellerman921bc6c2018-03-14 19:40:42 -0300521void pseries_setup_rfi_flush(void)
Michael Neuling8989d562018-01-10 03:07:15 +1100522{
523 struct h_cpu_char_result result;
524 enum l1d_flush_type types;
525 bool enable;
526 long rc;
527
Mauricio Faria de Oliveira6232774f2018-03-30 14:28:25 -0300528 /*
529 * Set features to the defaults assumed by init_cpu_char_feature_flags()
530 * so it can set/clear again any features that might have changed after
531 * migration, and in case the hypercall fails and it is not even called.
532 */
533 powerpc_security_features = SEC_FTR_DEFAULT;
534
Michael Neuling8989d562018-01-10 03:07:15 +1100535 rc = plpar_get_cpu_characteristics(&result);
Michael Ellerman2e4a1612018-03-27 23:01:51 +1100536 if (rc == H_SUCCESS)
Michael Ellermanf636c142018-03-27 23:01:46 +1100537 init_cpu_char_feature_flags(&result);
538
Michael Ellermanf636c142018-03-27 23:01:46 +1100539 /*
540 * We're the guest so this doesn't apply to us, clear it to simplify
541 * handling of it elsewhere.
542 */
543 security_ftr_clear(SEC_FTR_L1D_FLUSH_HV);
544
Michael Ellerman2e4a1612018-03-27 23:01:51 +1100545 types = L1D_FLUSH_FALLBACK;
546
547 if (security_ftr_enabled(SEC_FTR_L1D_FLUSH_TRIG2))
548 types |= L1D_FLUSH_MTTRIG;
549
550 if (security_ftr_enabled(SEC_FTR_L1D_FLUSH_ORI30))
551 types |= L1D_FLUSH_ORI;
552
553 enable = security_ftr_enabled(SEC_FTR_FAVOUR_SECURITY) && \
554 security_ftr_enabled(SEC_FTR_L1D_FLUSH_PR);
555
Michael Neuling8989d562018-01-10 03:07:15 +1100556 setup_rfi_flush(types, enable);
Michael Ellermanba72dc12018-07-24 01:07:55 +1000557 setup_count_cache_flush();
Michael Neuling8989d562018-01-10 03:07:15 +1100558}
559
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600560#ifdef CONFIG_PCI_IOV
561enum rtas_iov_fw_value_map {
562 NUM_RES_PROPERTY = 0, /* Number of Resources */
563 LOW_INT = 1, /* Lowest 32 bits of Address */
564 START_OF_ENTRIES = 2, /* Always start of entry */
565 APERTURE_PROPERTY = 2, /* Start of entry+ to Aperture Size */
566 WDW_SIZE_PROPERTY = 4, /* Start of entry+ to Window Size */
567 NEXT_ENTRY = 7 /* Go to next entry on array */
568};
569
570enum get_iov_fw_value_index {
571 BAR_ADDRS = 1, /* Get Bar Address */
572 APERTURE_SIZE = 2, /* Get Aperture Size */
573 WDW_SIZE = 3 /* Get Window Size */
574};
575
576resource_size_t pseries_get_iov_fw_value(struct pci_dev *dev, int resno,
577 enum get_iov_fw_value_index value)
578{
579 const int *indexes;
580 struct device_node *dn = pci_device_to_OF_node(dev);
581 int i, num_res, ret = 0;
582
583 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL);
584 if (!indexes)
585 return 0;
586
587 /*
588 * First element in the array is the number of Bars
589 * returned. Search through the list to find the matching
590 * bar
591 */
592 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1);
593 if (resno >= num_res)
594 return 0; /* or an errror */
595
596 i = START_OF_ENTRIES + NEXT_ENTRY * resno;
597 switch (value) {
598 case BAR_ADDRS:
599 ret = of_read_number(&indexes[i], 2);
600 break;
601 case APERTURE_SIZE:
602 ret = of_read_number(&indexes[i + APERTURE_PROPERTY], 2);
603 break;
604 case WDW_SIZE:
605 ret = of_read_number(&indexes[i + WDW_SIZE_PROPERTY], 2);
606 break;
607 }
608
609 return ret;
610}
611
612void of_pci_set_vf_bar_size(struct pci_dev *dev, const int *indexes)
613{
614 struct resource *res;
615 resource_size_t base, size;
616 int i, r, num_res;
617
618 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1);
619 num_res = min_t(int, num_res, PCI_SRIOV_NUM_BARS);
620 for (i = START_OF_ENTRIES, r = 0; r < num_res && r < PCI_SRIOV_NUM_BARS;
621 i += NEXT_ENTRY, r++) {
622 res = &dev->resource[r + PCI_IOV_RESOURCES];
623 base = of_read_number(&indexes[i], 2);
624 size = of_read_number(&indexes[i + APERTURE_PROPERTY], 2);
625 res->flags = pci_parse_of_flags(of_read_number
626 (&indexes[i + LOW_INT], 1), 0);
627 res->flags |= (IORESOURCE_MEM_64 | IORESOURCE_PCI_FIXED);
628 res->name = pci_name(dev);
629 res->start = base;
630 res->end = base + size - 1;
631 }
632}
633
634void of_pci_parse_iov_addrs(struct pci_dev *dev, const int *indexes)
635{
636 struct resource *res, *root, *conflict;
637 resource_size_t base, size;
638 int i, r, num_res;
639
640 /*
641 * First element in the array is the number of Bars
642 * returned. Search through the list to find the matching
643 * bars assign them from firmware into resources structure.
644 */
645 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1);
646 for (i = START_OF_ENTRIES, r = 0; r < num_res && r < PCI_SRIOV_NUM_BARS;
647 i += NEXT_ENTRY, r++) {
648 res = &dev->resource[r + PCI_IOV_RESOURCES];
649 base = of_read_number(&indexes[i], 2);
650 size = of_read_number(&indexes[i + WDW_SIZE_PROPERTY], 2);
651 res->name = pci_name(dev);
652 res->start = base;
653 res->end = base + size - 1;
654 root = &iomem_resource;
655 dev_dbg(&dev->dev,
656 "pSeries IOV BAR %d: trying firmware assignment %pR\n",
657 r + PCI_IOV_RESOURCES, res);
658 conflict = request_resource_conflict(root, res);
659 if (conflict) {
660 dev_info(&dev->dev,
661 "BAR %d: %pR conflicts with %s %pR\n",
662 r + PCI_IOV_RESOURCES, res,
663 conflict->name, conflict);
664 res->flags |= IORESOURCE_UNSET;
665 }
666 }
667}
668
Sam Bobroffb87b9cf2018-07-30 11:59:14 +1000669static void pseries_disable_sriov_resources(struct pci_dev *pdev)
670{
671 int i;
672
673 pci_warn(pdev, "No hypervisor support for SR-IOV on this device, IOV BARs disabled.\n");
674 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++)
675 pdev->resource[i + PCI_IOV_RESOURCES].flags = 0;
676}
677
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600678static void pseries_pci_fixup_resources(struct pci_dev *pdev)
679{
680 const int *indexes;
681 struct device_node *dn = pci_device_to_OF_node(pdev);
682
683 /*Firmware must support open sriov otherwise dont configure*/
684 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL);
Sam Bobroffb87b9cf2018-07-30 11:59:14 +1000685 if (indexes)
686 of_pci_set_vf_bar_size(pdev, indexes);
687 else
688 pseries_disable_sriov_resources(pdev);
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600689}
690
691static void pseries_pci_fixup_iov_resources(struct pci_dev *pdev)
692{
693 const int *indexes;
694 struct device_node *dn = pci_device_to_OF_node(pdev);
695
Hari Vyas44bda4b2018-07-03 14:35:41 +0530696 if (!pdev->is_physfn || pci_dev_is_added(pdev))
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600697 return;
698 /*Firmware must support open sriov otherwise dont configure*/
699 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL);
Sam Bobroffb87b9cf2018-07-30 11:59:14 +1000700 if (indexes)
701 of_pci_parse_iov_addrs(pdev, indexes);
702 else
703 pseries_disable_sriov_resources(pdev);
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600704}
705
706static resource_size_t pseries_pci_iov_resource_alignment(struct pci_dev *pdev,
707 int resno)
708{
709 const __be32 *reg;
710 struct device_node *dn = pci_device_to_OF_node(pdev);
711
712 /*Firmware must support open sriov otherwise report regular alignment*/
713 reg = of_get_property(dn, "ibm,is-open-sriov-pf", NULL);
714 if (!reg)
715 return pci_iov_resource_size(pdev, resno);
716
717 if (!pdev->is_physfn)
718 return 0;
719 return pseries_get_iov_fw_value(pdev,
720 resno - PCI_IOV_RESOURCES,
721 APERTURE_SIZE);
722}
723#endif
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725static void __init pSeries_setup_arch(void)
726{
Jason Baronb71d47c2013-11-25 23:23:11 +0000727 set_arch_panic_timeout(10, ARCH_PANIC_TIMEOUT);
Anton Blancharda9349042011-11-30 00:23:14 +0000728
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000729 /* Discover PIC type and setup ppc_md accordingly */
Rashmica Gupta86425be2016-05-30 16:18:12 +1000730 smp_init_pseries();
Rashmica Guptae7da5da2016-05-30 16:18:11 +1000731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* openpic global configuration register (64-bit format). */
734 /* openpic Interrupt Source Unit pointer (64-bit format). */
735 /* python0 facility area (mmio) (64-bit format) REAL address. */
736
737 /* init to some ~sane value until calibrate_delay() runs */
738 loops_per_jiffy = 50000000;
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 fwnmi_init();
741
Michael Neuling8989d562018-01-10 03:07:15 +1100742 pseries_setup_rfi_flush();
Nicholas Piggina048a072018-05-22 09:00:00 +1000743 setup_stf_barrier();
Michael Neuling8989d562018-01-10 03:07:15 +1100744
Adam Buchbinder446957b2016-02-24 10:51:11 -0800745 /* By default, only probe PCI (can be overridden by rtas_pci) */
Bjorn Helgaas673c9752012-02-23 20:18:58 -0700746 pci_add_flags(PCI_PROBE_ONLY);
Bjorn Helgaas3c13be02012-02-23 20:18:58 -0700747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* Find and initialize PCI host bridges */
749 init_pci_config_tokens();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 find_and_init_phbs();
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000751 of_reconfig_notifier_register(&pci_dn_reconfig_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 pSeries_nvram_init();
754
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530755 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +1000756 vpa_init(boot_cpuid);
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530757 ppc_md.power_save = pseries_lpar_idle;
Michael Ellerman180a3362005-08-09 11:13:36 +1000758 ppc_md.enable_pmcs = pseries_lpar_enable_pmcs;
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600759#ifdef CONFIG_PCI_IOV
760 ppc_md.pcibios_fixup_resources =
761 pseries_pci_fixup_resources;
762 ppc_md.pcibios_fixup_sriov =
763 pseries_pci_fixup_iov_resources;
764 ppc_md.pcibios_iov_resource_alignment =
765 pseries_pci_iov_resource_alignment;
766#endif
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530767 } else {
768 /* No special idle routine */
Michael Ellerman180a3362005-08-09 11:13:36 +1000769 ppc_md.enable_pmcs = power4_enable_pmcs;
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530770 }
Ian Munsiefc8effa2012-11-08 16:03:14 +1100771
Kleber Sacilotto de Souzad82fb312013-05-03 12:43:12 +0000772 ppc_md.pcibios_root_bridge_prepare = pseries_root_bridge_prepare;
Alexey Kardashevskiy1a047cc2019-05-07 16:25:59 +1000773
774 if (swiotlb_force == SWIOTLB_FORCE)
775 ppc_swiotlb_enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Nicholas Piggin35adacd2017-12-24 02:49:23 +1000778static void pseries_panic(char *str)
779{
780 panic_flush_kmsg_end();
781 rtas_os_term(str);
782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784static int __init pSeries_init_panel(void)
785{
786 /* Manually leave the kernel version on the panel. */
Tony Breeds983d8a62014-03-12 19:17:07 +1100787#ifdef __BIG_ENDIAN__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 ppc_md.progress("Linux ppc64\n", 0);
Tony Breeds983d8a62014-03-12 19:17:07 +1100789#else
790 ppc_md.progress("Linux ppc64le\n", 0);
791#endif
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700792 ppc_md.progress(init_utsname()->version, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 return 0;
795}
Benjamin Herrenschmidtf86d6b92011-03-31 18:49:45 +0000796machine_arch_initcall(pseries, pSeries_init_panel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Michael Neuling4474ef02012-09-06 21:24:56 +0000798static int pseries_set_dabr(unsigned long dabr, unsigned long dabrx)
Michael Ellermancab0af92005-11-03 15:30:49 +1100799{
Michael Ellerman76032de2005-11-07 13:12:03 +1100800 return plpar_hcall_norets(H_SET_DABR, dabr);
Michael Ellermancab0af92005-11-03 15:30:49 +1100801}
802
Michael Neuling4474ef02012-09-06 21:24:56 +0000803static int pseries_set_xdabr(unsigned long dabr, unsigned long dabrx)
Michael Ellerman76032de2005-11-07 13:12:03 +1100804{
Michael Neuling4474ef02012-09-06 21:24:56 +0000805 /* 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 */
Michael Neulingcd144572012-09-06 21:24:57 +0000809 dabrx &= DABRX_KERNEL | DABRX_USER;
Michael Neuling4474ef02012-09-06 21:24:56 +0000810
811 return plpar_hcall_norets(H_SET_XDABR, dabr, dabrx);
Michael Ellerman76032de2005-11-07 13:12:03 +1100812}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Michael Neulingbf99de32012-12-20 14:06:45 +0000814static int pseries_set_dawr(unsigned long dawr, unsigned long dawrx)
815{
816 /* PAPR says we can't set HYP */
817 dawrx &= ~DAWRX_HYP;
818
Michael Ellerman7c09c182018-03-08 13:54:41 +1100819 return plpar_set_watchpoint0(dawr, dawrx);
Michael Neulingbf99de32012-12-20 14:06:45 +0000820}
821
Robert Jenningse46de422008-07-24 04:29:03 +1000822#define CMO_CHARACTERISTICS_TOKEN 44
823#define CMO_MAXLENGTH 1026
824
Brian King9ee820f2011-05-04 16:01:20 +1000825void 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
Robert Jenningse46de422008-07-24 04:29:03 +1000835/**
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 */
Anton Blancharde51df2c2014-08-20 08:55:18 +1000839static void pSeries_cmo_feature_init(void)
Robert Jenningse46de422008-07-24 04:29:03 +1000840{
841 char *ptr, *key, *value, *end;
842 int call_status;
Alistair Popplee589a4402013-12-09 18:17:01 +1100843 int page_order = IOMMU_PAGE_SHIFT_4K;
Robert Jenningse46de422008-07-24 04:29:03 +1000844
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
Robert Jennings81f14992008-08-16 05:07:31 +1000882 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);
Robert Jenningse46de422008-07-24 04:29:03 +1000886 else if (0 == strcmp(key, "SecPSP"))
Robert Jennings81f14992008-08-16 05:07:31 +1000887 CMO_SecPSP = simple_strtol(value, NULL, 10);
Robert Jenningse46de422008-07-24 04:29:03 +1000888 value = key = ptr + 1;
889 }
890 ptr++;
891 }
892
Robert Jennings81f14992008-08-16 05:07:31 +1000893 /* 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) {
Robert Jenningse46de422008-07-24 04:29:03 +1000900 pr_info("CMO enabled\n");
Robert Jennings81f14992008-08-16 05:07:31 +1000901 pr_debug("CMO enabled, PrPSP=%d, SecPSP=%d\n", CMO_PrPSP,
902 CMO_SecPSP);
Robert Jenningse46de422008-07-24 04:29:03 +1000903 powerpc_firmware_features |= FW_FEATURE_CMO;
Brian King9ee820f2011-05-04 16:01:20 +1000904 pSeries_coalesce_init();
Robert Jenningse46de422008-07-24 04:29:03 +1000905 } else
Robert Jennings81f14992008-08-16 05:07:31 +1000906 pr_debug("CMO not enabled, PrPSP=%d, SecPSP=%d\n", CMO_PrPSP,
907 CMO_SecPSP);
Robert Jenningse46de422008-07-24 04:29:03 +1000908 spin_unlock(&rtas_data_buf_lock);
909 pr_debug(" <- fw_cmo_feature_init()\n");
910}
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912/*
913 * Early initialization. Relocation is on but do not reference unbolted pages
914 */
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000915static void __init pseries_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000917 pr_debug(" -> pseries_init()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000919#ifdef CONFIG_HVC_CONSOLE
Michael Ellerman57cfb812006-03-21 20:45:59 +1100920 if (firmware_has_feature(FW_FEATURE_LPAR))
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000921 hvc_vio_init_early();
922#endif
Michael Neuling06c88762012-09-05 19:17:49 +0000923 if (firmware_has_feature(FW_FEATURE_XDABR))
Michael Ellerman76032de2005-11-07 13:12:03 +1100924 ppc_md.set_dabr = pseries_set_xdabr;
Michael Neuling06c88762012-09-05 19:17:49 +0000925 else if (firmware_has_feature(FW_FEATURE_DABR))
926 ppc_md.set_dabr = pseries_set_dabr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Michael Neulingbf99de32012-12-20 14:06:45 +0000928 if (firmware_has_feature(FW_FEATURE_SET_MODE))
929 ppc_md.set_dawr = pseries_set_dawr;
930
Robert Jenningse46de422008-07-24 04:29:03 +1000931 pSeries_cmo_feature_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 iommu_init_early_pSeries();
933
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000934 pr_debug(" <- pseries_init()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Alexander Graf9178ba22014-10-13 16:01:09 +0200937/**
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 */
946static 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
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100965static int __init pSeries_probe(void)
966{
Rob Herringe5480bd2018-11-16 16:11:00 -0600967 if (!of_node_is_type(of_root, "chrp"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return 0;
969
Arnd Bergmann133dda12006-06-07 12:04:18 +1000970 /* Cell blades firmware claims to be chrp while it's not. Until this
971 * is fixed, we need to avoid those here.
972 */
Benjamin Herrenschmidt406b0b62016-07-05 15:04:00 +1000973 if (of_machine_is_compatible("IBM,CPBW-1.0") ||
974 of_machine_is_compatible("IBM,CBEA"))
Arnd Bergmann133dda12006-06-07 12:04:18 +1000975 return 0;
976
Alexander Graf9178ba22014-10-13 16:01:09 +0200977 pm_power_off = pseries_power_off;
978
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000979 pr_debug("Machine is%s LPAR !\n",
980 (powerpc_firmware_features & FW_FEATURE_LPAR) ? "" : " not");
Michael Ellerman57cfb812006-03-21 20:45:59 +1100981
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000982 pseries_init();
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return 1;
985}
986
Paul Mackerras42672922005-09-12 17:17:36 +1000987static int pSeries_pci_probe_mode(struct pci_bus *bus)
988{
Michael Ellerman57cfb812006-03-21 20:45:59 +1100989 if (firmware_has_feature(FW_FEATURE_LPAR))
Paul Mackerras42672922005-09-12 17:17:36 +1000990 return PCI_PROBE_DEVTREE;
991 return PCI_PROBE_NORMAL;
992}
993
Daniel Axtens38ae9ec2015-03-31 16:00:50 +1100994struct pci_controller_ops pseries_pci_controller_ops = {
995 .probe_mode = pSeries_pci_probe_mode,
996};
997
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100998define_machine(pseries) {
999 .name = "pSeries",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 .probe = pSeries_probe,
1001 .setup_arch = pSeries_setup_arch,
Rashmica Guptae7da5da2016-05-30 16:18:11 +10001002 .init_IRQ = pseries_init_irq,
Paul Mackerras0dd194d2005-10-20 20:48:19 +10001003 .show_cpuinfo = pSeries_show_cpuinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 .log_error = pSeries_log_error,
1005 .pcibios_fixup = pSeries_final_fixup,
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +11001006 .restart = rtas_restart,
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +11001007 .halt = rtas_halt,
Nicholas Piggin35adacd2017-12-24 02:49:23 +10001008 .panic = pseries_panic,
Arnd Bergmann773bf9c2005-06-23 09:43:18 +10001009 .get_boot_time = rtas_get_boot_time,
1010 .get_rtc_time = rtas_get_rtc_time,
1011 .set_rtc_time = rtas_set_rtc_time,
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +10001012 .calibrate_decr = generic_calibrate_decr,
Arnd Bergmann6566c6f2005-06-23 09:43:28 +10001013 .progress = rtas_progress,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 .system_reset_exception = pSeries_system_reset_exception,
Mahesh Salgaonkara43c1592018-09-11 19:57:00 +05301015 .machine_check_early = pseries_machine_check_realmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 .machine_check_exception = pSeries_machine_check_exception,
Thiago Jung Bauermannda665882016-11-29 23:45:50 +11001017#ifdef CONFIG_KEXEC_CORE
Ian Munsiecedddd82012-11-08 16:40:28 +11001018 .machine_kexec = pSeries_machine_kexec,
Rashmica Guptad739d2c2016-05-30 16:18:13 +10001019 .kexec_cpu_down = pseries_kexec_cpu_down,
Ian Munsiecedddd82012-11-08 16:40:28 +11001020#endif
Anton Blancharda5d86252014-06-04 17:50:47 +10001021#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
1022 .memory_block_size = pseries_memory_block_size,
1023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024};