blob: 27094c872fd6aeab041ac06b7df16270db3e6c99 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#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 Ellerman180a3362005-08-09 11:13:36 +100055#include <asm/pmc.h>
Benjamin Herrenschmidt0b05ac62011-04-04 13:46:58 +100056#include <asm/xics.h>
Cédric Le Goatereac1e732017-08-30 21:46:11 +020057#include <asm/xive.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100058#include <asm/ppc-pci.h>
Paul Mackerras69a80d32005-10-10 22:03:41 +100059#include <asm/i8259.h>
60#include <asm/udbg.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110061#include <asm/smp.h>
Michael Ellerman577830b2007-02-08 18:33:51 +110062#include <asm/firmware.h>
Stephen Rothwellbed59272007-03-04 17:04:44 +110063#include <asm/eeh.h>
Michael Neulingbf99de32012-12-20 14:06:45 +000064#include <asm/reg.h>
Deepthi Dharwar212bebb2013-08-22 15:23:52 +053065#include <asm/plpar_wrappers.h>
Thiago Jung Bauermannd81d8252016-08-23 19:57:39 -030066#include <asm/kexec.h>
Benjamin Herrenschmidt38e9d362017-01-30 18:11:55 +110067#include <asm/isa-bridge.h>
Michael Ellermanf636c142018-03-27 23:01:46 +110068#include <asm/security_features.h>
Christophe Leroyec0c4642018-07-05 16:24:57 +000069#include <asm/asm-const.h>
Gautham R. Shenoye4a884c2020-04-07 14:17:39 +053070#include <asm/idle.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>
Peter Zijlstrad6bdceb2020-05-29 22:41:01 +020073#include <asm/dtl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Michael Ellerman577830b2007-02-08 18:33:51 +110075#include "pseries.h"
Hari Vyas44bda4b2018-07-03 14:35:41 +053076#include "../../../../drivers/pci/pci.h"
Michael Ellermana1218722005-11-03 15:33:31 +110077
Srikar Dronamraju14c73bd2019-12-05 14:02:17 +053078DEFINE_STATIC_KEY_FALSE(shared_processor);
79EXPORT_SYMBOL_GPL(shared_processor);
80
Robert Jennings81f14992008-08-16 05:07:31 +100081int CMO_PrPSP = -1;
82int CMO_SecPSP = -1;
Alistair Popplee589a4402013-12-09 18:17:01 +110083unsigned long CMO_PageSize = (ASM_CONST(1) << IOMMU_PAGE_SHIFT_4K);
Andrew Mortond617a402008-08-21 11:16:26 +100084EXPORT_SYMBOL(CMO_PageSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086int fwnmi_active; /* TRUE if an FWNMI handler is present */
Nicholas Piggin7368b382020-05-08 14:33:57 +100087int ibm_nmi_interlock_token;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Arnd Bergmann84461962006-01-11 00:00:02 +000089static void pSeries_show_cpuinfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 struct device_node *root;
92 const char *model = "";
93
94 root = of_find_node_by_path("/");
95 if (root)
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100096 model = of_get_property(root, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 seq_printf(m, "machine\t\t: CHRP %s\n", model);
98 of_node_put(root);
Aneesh Kumar K.V3a4c26012017-03-21 22:59:55 +053099 if (radix_enabled())
100 seq_printf(m, "MMU\t\t: Radix\n");
101 else
102 seq_printf(m, "MMU\t\t: Hash\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105/* Initialize firmware assisted non-maskable interrupts if
106 * the firmware supports this feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
108static void __init fwnmi_init(void)
109{
Michael Ellerman8c4f1f22005-12-04 18:39:33 +1100110 unsigned long system_reset_addr, machine_check_addr;
Mahesh Salgaonkar94675cc2018-07-04 23:27:21 +0530111 u8 *mce_data_buf;
112 unsigned int i;
113 int nr_cpus = num_possible_cpus();
Mahesh Salgaonkarc6d15252018-09-11 19:57:15 +0530114#ifdef CONFIG_PPC_BOOK3S_64
115 struct slb_entry *slb_ptr;
116 size_t size;
117#endif
Nicholas Piggin7368b382020-05-08 14:33:57 +1000118 int ibm_nmi_register_token;
Michael Ellerman8c4f1f22005-12-04 18:39:33 +1100119
Nicholas Piggin7368b382020-05-08 14:33:57 +1000120 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 Torvalds1da177e2005-04-16 15:20:36 -0700126 return;
Michael Ellerman8c4f1f22005-12-04 18:39:33 +1100127
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 Piggin7368b382020-05-08 14:33:57 +1000133 if (0 == rtas_call(ibm_nmi_register_token, 2, 1, NULL,
134 system_reset_addr, machine_check_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 fwnmi_active = 1;
Mahesh Salgaonkar94675cc2018-07-04 23:27:21 +0530136
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 Rapoportf8067142019-03-07 16:30:48 -0800142 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 Salgaonkar94675cc2018-07-04 23:27:21 +0530149 for_each_possible_cpu(i) {
150 paca_ptrs[i]->mce_data_buf = mce_data_buf +
151 (RTAS_ERROR_LOG_MAX * i);
152 }
Mahesh Salgaonkarc6d15252018-09-11 19:57:15 +0530153
154#ifdef CONFIG_PPC_BOOK3S_64
Nicholas Piggin7290f3b2019-08-02 20:56:33 +1000155 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 Rapoportf8067142019-03-07 16:30:48 -0800164
Nicholas Piggin7290f3b2019-08-02 20:56:33 +1000165 for_each_possible_cpu(i)
166 paca_ptrs[i]->mce_faulty_slbs = slb_ptr + (mmu_slb_size * i);
167 }
Mahesh Salgaonkarc6d15252018-09-11 19:57:15 +0530168#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200171static void pseries_8259_cascade(struct irq_desc *desc)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000172{
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100173 struct irq_chip *chip = irq_desc_get_chip(desc);
Olaf Hering35a84c22006-10-07 22:08:26 +1000174 unsigned int cascade_irq = i8259_irq();
Lennert Buytenhek79f26c22011-03-07 13:59:45 +0000175
Michael Ellermanef24ba72016-09-06 21:53:24 +1000176 if (cascade_irq)
David Howells7d12e782006-10-05 14:55:46 +0100177 generic_handle_irq(cascade_irq);
Lennert Buytenhek79f26c22011-03-07 13:59:45 +0000178
179 chip->irq_eoi(&desc->irq_data);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000180}
181
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100182static void __init pseries_setup_i8259_cascade(void)
Michael Ellerman032ace72008-04-01 17:42:25 +1100183{
184 struct device_node *np, *old, *found = NULL;
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100185 unsigned int cascade;
Michael Ellerman032ace72008-04-01 17:42:25 +1100186 const u32 *addrp;
187 unsigned long intack = 0;
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100188 int naddr;
Michael Ellerman032ace72008-04-01 17:42:25 +1100189
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100190 for_each_node_by_type(np, "interrupt-controller") {
Michael Ellerman032ace72008-04-01 17:42:25 +1100191 if (of_device_is_compatible(np, "chrp,iic")) {
192 found = np;
193 break;
194 }
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100195 }
196
Michael Ellerman032ace72008-04-01 17:42:25 +1100197 if (found == NULL) {
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100198 printk(KERN_DEBUG "pic: no ISA interrupt controller\n");
Michael Ellerman032ace72008-04-01 17:42:25 +1100199 return;
200 }
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100201
Michael Ellerman032ace72008-04-01 17:42:25 +1100202 cascade = irq_of_parse_and_map(found, 0);
Michael Ellermanef24ba72016-09-06 21:53:24 +1000203 if (!cascade) {
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100204 printk(KERN_ERR "pic: failed to map cascade interrupt");
Michael Ellerman032ace72008-04-01 17:42:25 +1100205 return;
206 }
Michael Ellerman30d6ad22008-04-01 17:42:25 +1100207 pr_debug("pic: cascade mapped to irq %d\n", cascade);
Michael Ellerman032ace72008-04-01 17:42:25 +1100208
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 Herring2c8e65b2018-12-05 13:50:18 -0600214 if (!of_node_name_eq(np, "pci"))
Michael Ellerman032ace72008-04-01 17:42:25 +1100215 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 Ellerman30d6ad22008-04-01 17:42:25 +1100225 printk(KERN_DEBUG "pic: PCI 8259 intack at 0x%016lx\n", intack);
Michael Ellerman032ace72008-04-01 17:42:25 +1100226 i8259_init(found, intack);
227 of_node_put(found);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100228 irq_set_chained_handler(cascade, pseries_8259_cascade);
Michael Ellerman032ace72008-04-01 17:42:25 +1100229}
230
Rashmica Guptae7da5da2016-05-30 16:18:11 +1000231static void __init pseries_init_irq(void)
Michael Ellerman032ace72008-04-01 17:42:25 +1100232{
Cédric Le Goatereac1e732017-08-30 21:46:11 +0200233 /* 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 Ellerman032ace72008-04-01 17:42:25 +1100238}
239
Michael Ellerman180a3362005-08-09 11:13:36 +1000240static void pseries_lpar_enable_pmcs(void)
241{
242 unsigned long set, reset;
243
Michael Ellerman180a3362005-08-09 11:13:36 +1000244 set = 1UL << 63;
245 reset = 0;
246 plpar_hcall_norets(H_PERFMON, set, reset);
Michael Ellerman180a3362005-08-09 11:13:36 +1000247}
248
Grant Likelyf5242e52014-11-24 17:58:01 +0000249static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *data)
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000250{
Grant Likelyf5242e52014-11-24 17:58:01 +0000251 struct of_reconfig_data *rd = data;
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000252 struct device_node *parent, *np = rd->dn;
253 struct pci_dn *pdn;
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000254 int err = NOTIFY_OK;
255
256 switch (action) {
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000257 case OF_RECONFIG_ATTACH_NODE:
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000258 parent = of_get_parent(np);
259 pdn = parent ? PCI_DN(parent) : NULL;
Gavin Shan8cc75812016-05-20 16:41:37 +1000260 if (pdn)
Gavin Shand8f66f42016-05-03 15:41:40 +1000261 pci_add_device_node_info(pdn->phb, np);
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000262
263 of_node_put(parent);
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000264 break;
Gavin Shan590c7562015-08-27 14:12:36 +1000265 case OF_RECONFIG_DETACH_NODE:
Gavin Shanea0f8ac2015-08-27 14:12:37 +1000266 pdn = PCI_DN(np);
267 if (pdn)
268 list_del(&pdn->list);
Gavin Shan590c7562015-08-27 14:12:36 +1000269 break;
Kumar Gala2eb4afb2009-04-30 09:26:21 +0000270 default:
271 err = NOTIFY_DONE;
272 break;
273 }
274 return err;
275}
276
277static struct notifier_block pci_dn_reconfig_nb = {
278 .notifier_call = pci_dn_reconfig_notifier,
279};
280
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000281struct kmem_cache *dtl_cache;
282
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200283#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000284/*
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 */
289static int alloc_dispatch_logs(void)
290{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000291 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
292 return 0;
293
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000294 if (!dtl_cache)
Nishanth Aravamudan127493d2011-04-13 19:45:59 +0000295 return 0;
Nishanth Aravamudan127493d2011-04-13 19:45:59 +0000296
Naveen N. Rao18a593c2019-07-03 22:34:01 +0530297 alloc_dtl_buffers(0);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000298
299 /* Register the DTL for the current (boot) cpu */
Naveen N. Rao1c85a2a2019-07-03 22:33:56 +0530300 register_dtl_buffer(smp_processor_id());
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000301
302 return 0;
303}
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200304#else /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000305static inline int alloc_dispatch_logs(void)
306{
307 return 0;
308}
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200309#endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000310
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000311static int alloc_dispatch_log_kmem_cache(void)
312{
Anshuman Khanduald5394c02019-08-19 23:13:19 -0300313 void (*ctor)(void *) = get_dtl_cache_ctor();
314
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000315 dtl_cache = kmem_cache_create("dtl", DISPATCH_LOG_BYTES,
Anshuman Khanduald5394c02019-08-19 23:13:19 -0300316 DISPATCH_LOG_BYTES, 0, ctor);
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000317 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 Ellerman8e83e902014-07-16 12:02:43 +1000325machine_early_initcall(pseries, alloc_dispatch_log_kmem_cache);
Nishanth Aravamudanaf442a12011-05-04 12:54:16 +0000326
Gautham R. Shenoydc8afce2020-04-07 14:17:41 +0530327DEFINE_PER_CPU(u64, idle_spurr_cycles);
Gautham R. Shenoyc4019192020-04-07 14:17:40 +0530328DEFINE_PER_CPU(u64, idle_entry_purr_snap);
Gautham R. Shenoydc8afce2020-04-07 14:17:41 +0530329DEFINE_PER_CPU(u64, idle_entry_spurr_snap);
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530330static void pseries_lpar_idle(void)
Deepthi Dharware1798162011-11-30 02:46:55 +0000331{
Nicolas Pitred8c6ad32014-01-29 12:45:10 -0500332 /*
333 * Default handler to go into low thread priority and possibly
Michael Ellerman027dfac2016-06-01 16:34:37 +1000334 * low power mode by ceding processor to hypervisor
Deepthi Dharware1798162011-11-30 02:46:55 +0000335 */
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530336
Nathan Lynch92c94df2019-09-10 17:52:44 -0500337 if (!prep_irq_for_idle())
338 return;
339
Nicolas Pitred8c6ad32014-01-29 12:45:10 -0500340 /* Indicate to hypervisor that we are idle. */
Gautham R. Shenoyc4019192020-04-07 14:17:40 +0530341 pseries_idle_prolog();
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530342
Nicolas Pitred8c6ad32014-01-29 12:45:10 -0500343 /*
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 Srinivasan363edbe2013-09-06 00:25:06 +0530351
Gautham R. Shenoyc4019192020-04-07 14:17:40 +0530352 pseries_idle_epilog();
Deepthi Dharware1798162011-11-30 02:46:55 +0000353}
354
Ian Munsiefc8effa2012-11-08 16:03:14 +1100355/*
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 */
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000362void pseries_enable_reloc_on_exc(void)
Ian Munsiefc8effa2012-11-08 16:03:14 +1100363{
364 long rc;
365 unsigned int delay, total_delay = 0;
366
367 while (1) {
368 rc = enable_reloc_on_exceptions();
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000369 if (!H_IS_LONG_BUSY(rc)) {
370 if (rc == H_P2) {
371 pr_info("Relocation on exceptions not"
372 " supported\n");
373 } else if (rc != H_SUCCESS) {
374 pr_warn("Unable to enable relocation"
375 " on exceptions: %ld\n", rc);
376 }
377 break;
378 }
Ian Munsiefc8effa2012-11-08 16:03:14 +1100379
380 delay = get_longbusy_msecs(rc);
381 total_delay += delay;
382 if (total_delay > 1000) {
383 pr_warn("Warning: Giving up waiting to enable "
384 "relocation on exceptions (%u msec)!\n",
385 total_delay);
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000386 return;
Ian Munsiefc8effa2012-11-08 16:03:14 +1100387 }
388
389 mdelay(delay);
390 }
391}
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000392EXPORT_SYMBOL(pseries_enable_reloc_on_exc);
Ian Munsiefc8effa2012-11-08 16:03:14 +1100393
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000394void pseries_disable_reloc_on_exc(void)
Ian Munsiecedddd82012-11-08 16:40:28 +1100395{
396 long rc;
397
398 while (1) {
399 rc = disable_reloc_on_exceptions();
400 if (!H_IS_LONG_BUSY(rc))
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000401 break;
Ian Munsiecedddd82012-11-08 16:40:28 +1100402 mdelay(get_longbusy_msecs(rc));
403 }
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000404 if (rc != H_SUCCESS)
Joe Perchesf2c2cbc2016-10-24 21:00:08 -0700405 pr_warn("Warning: Failed to disable relocation on exceptions: %ld\n",
406 rc);
Ian Munsiecedddd82012-11-08 16:40:28 +1100407}
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000408EXPORT_SYMBOL(pseries_disable_reloc_on_exc);
Ian Munsiecedddd82012-11-08 16:40:28 +1100409
Thiago Jung Bauermannda665882016-11-29 23:45:50 +1100410#ifdef CONFIG_KEXEC_CORE
Ian Munsiecedddd82012-11-08 16:40:28 +1100411static void pSeries_machine_kexec(struct kimage *image)
412{
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000413 if (firmware_has_feature(FW_FEATURE_SET_MODE))
414 pseries_disable_reloc_on_exc();
Ian Munsiecedddd82012-11-08 16:40:28 +1100415
416 default_machine_kexec(image);
417}
418#endif
419
Anton Blancharde844b1e2013-11-20 22:14:59 +1100420#ifdef __LITTLE_ENDIAN__
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000421void pseries_big_endian_exceptions(void)
Anton Blancharde844b1e2013-11-20 22:14:59 +1100422{
423 long rc;
424
425 while (1) {
426 rc = enable_big_endian_exceptions();
427 if (!H_IS_LONG_BUSY(rc))
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000428 break;
Anton Blancharde844b1e2013-11-20 22:14:59 +1100429 mdelay(get_longbusy_msecs(rc));
430 }
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000431
432 /*
433 * At this point it is unlikely panic() will get anything
434 * out to the user, since this is called very late in kexec
435 * but at least this will stop us from continuing on further
436 * and creating an even more difficult to debug situation.
437 *
438 * There is a known problem when kdump'ing, if cpus are offline
439 * the above call will fail. Rather than panicking again, keep
440 * going and hope the kdump kernel is also little endian, which
441 * it usually is.
442 */
443 if (rc && !kdump_in_progress())
444 panic("Could not enable big endian exceptions");
Anton Blancharde844b1e2013-11-20 22:14:59 +1100445}
446
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000447void pseries_little_endian_exceptions(void)
Anton Blancharde844b1e2013-11-20 22:14:59 +1100448{
449 long rc;
450
451 while (1) {
452 rc = enable_little_endian_exceptions();
453 if (!H_IS_LONG_BUSY(rc))
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000454 break;
Anton Blancharde844b1e2013-11-20 22:14:59 +1100455 mdelay(get_longbusy_msecs(rc));
456 }
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000457 if (rc) {
458 ppc_md.progress("H_SET_MODE LE exception fail", 0);
459 panic("Could not enable little endian exceptions");
460 }
Anton Blancharde844b1e2013-11-20 22:14:59 +1100461}
462#endif
463
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100464static void __init find_and_init_phbs(void)
465{
466 struct device_node *node;
467 struct pci_controller *phb;
468 struct device_node *root = of_find_node_by_path("/");
469
470 for_each_child_of_node(root, node) {
Rob Herringe5480bd2018-11-16 16:11:00 -0600471 if (!of_node_is_type(node, "pci") &&
472 !of_node_is_type(node, "pciex"))
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100473 continue;
474
475 phb = pcibios_alloc_controller(node);
476 if (!phb)
477 continue;
478 rtas_setup_phb(phb);
479 pci_process_bridge_OF_ranges(phb, node, 0);
480 isa_bridge_find_early(phb);
Daniel Axtens38ae9ec2015-03-31 16:00:50 +1100481 phb->controller_ops = pseries_pci_controller_ops;
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100482 }
483
484 of_node_put(root);
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100485
486 /*
487 * PCI_PROBE_ONLY and PCI_REASSIGN_ALL_BUS can be set via properties
488 * in chosen.
489 */
Marc Zyngier705a7b42015-09-04 17:50:10 +0100490 of_pci_check_probe_only();
Daniel Axtensbdc728a2015-03-31 16:00:39 +1100491}
492
Michael Ellermanf636c142018-03-27 23:01:46 +1100493static void init_cpu_char_feature_flags(struct h_cpu_char_result *result)
494{
Mauricio Faria de Oliveira6232774f2018-03-30 14:28:25 -0300495 /*
496 * The features below are disabled by default, so we instead look to see
497 * if firmware has *enabled* them, and set them if so.
498 */
Michael Ellermanf636c142018-03-27 23:01:46 +1100499 if (result->character & H_CPU_CHAR_SPEC_BAR_ORI31)
500 security_ftr_set(SEC_FTR_SPEC_BAR_ORI31);
501
502 if (result->character & H_CPU_CHAR_BCCTRL_SERIALISED)
503 security_ftr_set(SEC_FTR_BCCTRL_SERIALISED);
504
505 if (result->character & H_CPU_CHAR_L1D_FLUSH_ORI30)
506 security_ftr_set(SEC_FTR_L1D_FLUSH_ORI30);
507
508 if (result->character & H_CPU_CHAR_L1D_FLUSH_TRIG2)
509 security_ftr_set(SEC_FTR_L1D_FLUSH_TRIG2);
510
511 if (result->character & H_CPU_CHAR_L1D_THREAD_PRIV)
512 security_ftr_set(SEC_FTR_L1D_THREAD_PRIV);
513
514 if (result->character & H_CPU_CHAR_COUNT_CACHE_DISABLED)
515 security_ftr_set(SEC_FTR_COUNT_CACHE_DISABLED);
516
Michael Ellermanba72dc12018-07-24 01:07:55 +1000517 if (result->character & H_CPU_CHAR_BCCTR_FLUSH_ASSIST)
518 security_ftr_set(SEC_FTR_BCCTR_FLUSH_ASSIST);
519
520 if (result->behaviour & H_CPU_BEHAV_FLUSH_COUNT_CACHE)
521 security_ftr_set(SEC_FTR_FLUSH_COUNT_CACHE);
522
Michael Ellermanf636c142018-03-27 23:01:46 +1100523 /*
524 * The features below are enabled by default, so we instead look to see
525 * if firmware has *disabled* them, and clear them if so.
526 */
Mauricio Faria de Oliveira0f9bdfe2018-03-29 15:32:11 -0300527 if (!(result->behaviour & H_CPU_BEHAV_FAVOUR_SECURITY))
Michael Ellermanf636c142018-03-27 23:01:46 +1100528 security_ftr_clear(SEC_FTR_FAVOUR_SECURITY);
529
Mauricio Faria de Oliveira0f9bdfe2018-03-29 15:32:11 -0300530 if (!(result->behaviour & H_CPU_BEHAV_L1D_FLUSH_PR))
Michael Ellermanf636c142018-03-27 23:01:46 +1100531 security_ftr_clear(SEC_FTR_L1D_FLUSH_PR);
532
Mauricio Faria de Oliveira0f9bdfe2018-03-29 15:32:11 -0300533 if (!(result->behaviour & H_CPU_BEHAV_BNDS_CHK_SPEC_BAR))
Michael Ellermanf636c142018-03-27 23:01:46 +1100534 security_ftr_clear(SEC_FTR_BNDS_CHK_SPEC_BAR);
535}
536
Michael Ellerman921bc6c2018-03-14 19:40:42 -0300537void pseries_setup_rfi_flush(void)
Michael Neuling8989d562018-01-10 03:07:15 +1100538{
539 struct h_cpu_char_result result;
540 enum l1d_flush_type types;
541 bool enable;
542 long rc;
543
Mauricio Faria de Oliveira6232774f2018-03-30 14:28:25 -0300544 /*
545 * Set features to the defaults assumed by init_cpu_char_feature_flags()
546 * so it can set/clear again any features that might have changed after
547 * migration, and in case the hypercall fails and it is not even called.
548 */
549 powerpc_security_features = SEC_FTR_DEFAULT;
550
Michael Neuling8989d562018-01-10 03:07:15 +1100551 rc = plpar_get_cpu_characteristics(&result);
Michael Ellerman2e4a1612018-03-27 23:01:51 +1100552 if (rc == H_SUCCESS)
Michael Ellermanf636c142018-03-27 23:01:46 +1100553 init_cpu_char_feature_flags(&result);
554
Michael Ellermanf636c142018-03-27 23:01:46 +1100555 /*
556 * We're the guest so this doesn't apply to us, clear it to simplify
557 * handling of it elsewhere.
558 */
559 security_ftr_clear(SEC_FTR_L1D_FLUSH_HV);
560
Michael Ellerman2e4a1612018-03-27 23:01:51 +1100561 types = L1D_FLUSH_FALLBACK;
562
563 if (security_ftr_enabled(SEC_FTR_L1D_FLUSH_TRIG2))
564 types |= L1D_FLUSH_MTTRIG;
565
566 if (security_ftr_enabled(SEC_FTR_L1D_FLUSH_ORI30))
567 types |= L1D_FLUSH_ORI;
568
569 enable = security_ftr_enabled(SEC_FTR_FAVOUR_SECURITY) && \
570 security_ftr_enabled(SEC_FTR_L1D_FLUSH_PR);
571
Michael Neuling8989d562018-01-10 03:07:15 +1100572 setup_rfi_flush(types, enable);
Michael Ellermanba72dc12018-07-24 01:07:55 +1000573 setup_count_cache_flush();
Michael Neuling8989d562018-01-10 03:07:15 +1100574}
575
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600576#ifdef CONFIG_PCI_IOV
577enum rtas_iov_fw_value_map {
578 NUM_RES_PROPERTY = 0, /* Number of Resources */
579 LOW_INT = 1, /* Lowest 32 bits of Address */
580 START_OF_ENTRIES = 2, /* Always start of entry */
581 APERTURE_PROPERTY = 2, /* Start of entry+ to Aperture Size */
582 WDW_SIZE_PROPERTY = 4, /* Start of entry+ to Window Size */
583 NEXT_ENTRY = 7 /* Go to next entry on array */
584};
585
586enum get_iov_fw_value_index {
587 BAR_ADDRS = 1, /* Get Bar Address */
588 APERTURE_SIZE = 2, /* Get Aperture Size */
589 WDW_SIZE = 3 /* Get Window Size */
590};
591
592resource_size_t pseries_get_iov_fw_value(struct pci_dev *dev, int resno,
593 enum get_iov_fw_value_index value)
594{
595 const int *indexes;
596 struct device_node *dn = pci_device_to_OF_node(dev);
597 int i, num_res, ret = 0;
598
599 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL);
600 if (!indexes)
601 return 0;
602
603 /*
604 * First element in the array is the number of Bars
605 * returned. Search through the list to find the matching
606 * bar
607 */
608 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1);
609 if (resno >= num_res)
610 return 0; /* or an errror */
611
612 i = START_OF_ENTRIES + NEXT_ENTRY * resno;
613 switch (value) {
614 case BAR_ADDRS:
615 ret = of_read_number(&indexes[i], 2);
616 break;
617 case APERTURE_SIZE:
618 ret = of_read_number(&indexes[i + APERTURE_PROPERTY], 2);
619 break;
620 case WDW_SIZE:
621 ret = of_read_number(&indexes[i + WDW_SIZE_PROPERTY], 2);
622 break;
623 }
624
625 return ret;
626}
627
628void of_pci_set_vf_bar_size(struct pci_dev *dev, const int *indexes)
629{
630 struct resource *res;
631 resource_size_t base, size;
632 int i, r, num_res;
633
634 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1);
635 num_res = min_t(int, num_res, PCI_SRIOV_NUM_BARS);
636 for (i = START_OF_ENTRIES, r = 0; r < num_res && r < PCI_SRIOV_NUM_BARS;
637 i += NEXT_ENTRY, r++) {
638 res = &dev->resource[r + PCI_IOV_RESOURCES];
639 base = of_read_number(&indexes[i], 2);
640 size = of_read_number(&indexes[i + APERTURE_PROPERTY], 2);
641 res->flags = pci_parse_of_flags(of_read_number
642 (&indexes[i + LOW_INT], 1), 0);
643 res->flags |= (IORESOURCE_MEM_64 | IORESOURCE_PCI_FIXED);
644 res->name = pci_name(dev);
645 res->start = base;
646 res->end = base + size - 1;
647 }
648}
649
650void of_pci_parse_iov_addrs(struct pci_dev *dev, const int *indexes)
651{
652 struct resource *res, *root, *conflict;
653 resource_size_t base, size;
654 int i, r, num_res;
655
656 /*
657 * First element in the array is the number of Bars
658 * returned. Search through the list to find the matching
659 * bars assign them from firmware into resources structure.
660 */
661 num_res = of_read_number(&indexes[NUM_RES_PROPERTY], 1);
662 for (i = START_OF_ENTRIES, r = 0; r < num_res && r < PCI_SRIOV_NUM_BARS;
663 i += NEXT_ENTRY, r++) {
664 res = &dev->resource[r + PCI_IOV_RESOURCES];
665 base = of_read_number(&indexes[i], 2);
666 size = of_read_number(&indexes[i + WDW_SIZE_PROPERTY], 2);
667 res->name = pci_name(dev);
668 res->start = base;
669 res->end = base + size - 1;
670 root = &iomem_resource;
671 dev_dbg(&dev->dev,
672 "pSeries IOV BAR %d: trying firmware assignment %pR\n",
673 r + PCI_IOV_RESOURCES, res);
674 conflict = request_resource_conflict(root, res);
675 if (conflict) {
676 dev_info(&dev->dev,
677 "BAR %d: %pR conflicts with %s %pR\n",
678 r + PCI_IOV_RESOURCES, res,
679 conflict->name, conflict);
680 res->flags |= IORESOURCE_UNSET;
681 }
682 }
683}
684
Sam Bobroffb87b9cf2018-07-30 11:59:14 +1000685static void pseries_disable_sriov_resources(struct pci_dev *pdev)
686{
687 int i;
688
689 pci_warn(pdev, "No hypervisor support for SR-IOV on this device, IOV BARs disabled.\n");
690 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++)
691 pdev->resource[i + PCI_IOV_RESOURCES].flags = 0;
692}
693
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600694static void pseries_pci_fixup_resources(struct pci_dev *pdev)
695{
696 const int *indexes;
697 struct device_node *dn = pci_device_to_OF_node(pdev);
698
699 /*Firmware must support open sriov otherwise dont configure*/
700 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL);
Sam Bobroffb87b9cf2018-07-30 11:59:14 +1000701 if (indexes)
702 of_pci_set_vf_bar_size(pdev, indexes);
703 else
704 pseries_disable_sriov_resources(pdev);
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600705}
706
707static void pseries_pci_fixup_iov_resources(struct pci_dev *pdev)
708{
709 const int *indexes;
710 struct device_node *dn = pci_device_to_OF_node(pdev);
711
Hari Vyas44bda4b2018-07-03 14:35:41 +0530712 if (!pdev->is_physfn || pci_dev_is_added(pdev))
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600713 return;
714 /*Firmware must support open sriov otherwise dont configure*/
715 indexes = of_get_property(dn, "ibm,open-sriov-vf-bar-info", NULL);
Sam Bobroffb87b9cf2018-07-30 11:59:14 +1000716 if (indexes)
717 of_pci_parse_iov_addrs(pdev, indexes);
718 else
719 pseries_disable_sriov_resources(pdev);
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600720}
721
722static resource_size_t pseries_pci_iov_resource_alignment(struct pci_dev *pdev,
723 int resno)
724{
725 const __be32 *reg;
726 struct device_node *dn = pci_device_to_OF_node(pdev);
727
728 /*Firmware must support open sriov otherwise report regular alignment*/
729 reg = of_get_property(dn, "ibm,is-open-sriov-pf", NULL);
730 if (!reg)
731 return pci_iov_resource_size(pdev, resno);
732
733 if (!pdev->is_physfn)
734 return 0;
735 return pseries_get_iov_fw_value(pdev,
736 resno - PCI_IOV_RESOURCES,
737 APERTURE_SIZE);
738}
739#endif
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741static void __init pSeries_setup_arch(void)
742{
Jason Baronb71d47c2013-11-25 23:23:11 +0000743 set_arch_panic_timeout(10, ARCH_PANIC_TIMEOUT);
Anton Blancharda9349042011-11-30 00:23:14 +0000744
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000745 /* Discover PIC type and setup ppc_md accordingly */
Rashmica Gupta86425be2016-05-30 16:18:12 +1000746 smp_init_pseries();
Rashmica Guptae7da5da2016-05-30 16:18:11 +1000747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /* openpic global configuration register (64-bit format). */
750 /* openpic Interrupt Source Unit pointer (64-bit format). */
751 /* python0 facility area (mmio) (64-bit format) REAL address. */
752
753 /* init to some ~sane value until calibrate_delay() runs */
754 loops_per_jiffy = 50000000;
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 fwnmi_init();
757
Michael Neuling8989d562018-01-10 03:07:15 +1100758 pseries_setup_rfi_flush();
Nicholas Piggina048a072018-05-22 09:00:00 +1000759 setup_stf_barrier();
Laurent Dufour1211ee62019-09-20 15:05:22 +0200760 pseries_lpar_read_hblkrm_characteristics();
Michael Neuling8989d562018-01-10 03:07:15 +1100761
Adam Buchbinder446957b2016-02-24 10:51:11 -0800762 /* By default, only probe PCI (can be overridden by rtas_pci) */
Bjorn Helgaas673c9752012-02-23 20:18:58 -0700763 pci_add_flags(PCI_PROBE_ONLY);
Bjorn Helgaas3c13be02012-02-23 20:18:58 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /* Find and initialize PCI host bridges */
766 init_pci_config_tokens();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 find_and_init_phbs();
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000768 of_reconfig_notifier_register(&pci_dn_reconfig_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 pSeries_nvram_init();
771
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530772 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +1000773 vpa_init(boot_cpuid);
Srikar Dronamraju14c73bd2019-12-05 14:02:17 +0530774
775 if (lppaca_shared_proc(get_lppaca()))
776 static_branch_enable(&shared_processor);
777
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530778 ppc_md.power_save = pseries_lpar_idle;
Michael Ellerman180a3362005-08-09 11:13:36 +1000779 ppc_md.enable_pmcs = pseries_lpar_enable_pmcs;
Bryant G. Lyfc5f6222018-01-05 10:45:52 -0600780#ifdef CONFIG_PCI_IOV
781 ppc_md.pcibios_fixup_resources =
782 pseries_pci_fixup_resources;
783 ppc_md.pcibios_fixup_sriov =
784 pseries_pci_fixup_iov_resources;
785 ppc_md.pcibios_iov_resource_alignment =
786 pseries_pci_iov_resource_alignment;
787#endif
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530788 } else {
789 /* No special idle routine */
Michael Ellerman180a3362005-08-09 11:13:36 +1000790 ppc_md.enable_pmcs = power4_enable_pmcs;
Vaidyanathan Srinivasan363edbe2013-09-06 00:25:06 +0530791 }
Ian Munsiefc8effa2012-11-08 16:03:14 +1100792
Kleber Sacilotto de Souzad82fb312013-05-03 12:43:12 +0000793 ppc_md.pcibios_root_bridge_prepare = pseries_root_bridge_prepare;
Alexey Kardashevskiy1a047cc2019-05-07 16:25:59 +1000794
795 if (swiotlb_force == SWIOTLB_FORCE)
796 ppc_swiotlb_enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
Nicholas Piggin35adacd2017-12-24 02:49:23 +1000799static void pseries_panic(char *str)
800{
801 panic_flush_kmsg_end();
802 rtas_os_term(str);
803}
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805static int __init pSeries_init_panel(void)
806{
807 /* Manually leave the kernel version on the panel. */
Tony Breeds983d8a62014-03-12 19:17:07 +1100808#ifdef __BIG_ENDIAN__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 ppc_md.progress("Linux ppc64\n", 0);
Tony Breeds983d8a62014-03-12 19:17:07 +1100810#else
811 ppc_md.progress("Linux ppc64le\n", 0);
812#endif
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700813 ppc_md.progress(init_utsname()->version, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 return 0;
816}
Benjamin Herrenschmidtf86d6b92011-03-31 18:49:45 +0000817machine_arch_initcall(pseries, pSeries_init_panel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Michael Neuling4474ef02012-09-06 21:24:56 +0000819static int pseries_set_dabr(unsigned long dabr, unsigned long dabrx)
Michael Ellermancab0af92005-11-03 15:30:49 +1100820{
Michael Ellerman76032de2005-11-07 13:12:03 +1100821 return plpar_hcall_norets(H_SET_DABR, dabr);
Michael Ellermancab0af92005-11-03 15:30:49 +1100822}
823
Michael Neuling4474ef02012-09-06 21:24:56 +0000824static int pseries_set_xdabr(unsigned long dabr, unsigned long dabrx)
Michael Ellerman76032de2005-11-07 13:12:03 +1100825{
Michael Neuling4474ef02012-09-06 21:24:56 +0000826 /* Have to set at least one bit in the DABRX according to PAPR */
827 if (dabrx == 0 && dabr == 0)
828 dabrx = DABRX_USER;
829 /* PAPR says we can only set kernel and user bits */
Michael Neulingcd144572012-09-06 21:24:57 +0000830 dabrx &= DABRX_KERNEL | DABRX_USER;
Michael Neuling4474ef02012-09-06 21:24:56 +0000831
832 return plpar_hcall_norets(H_SET_XDABR, dabr, dabrx);
Michael Ellerman76032de2005-11-07 13:12:03 +1100833}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Michael Neulingbf99de32012-12-20 14:06:45 +0000835static int pseries_set_dawr(unsigned long dawr, unsigned long dawrx)
836{
837 /* PAPR says we can't set HYP */
838 dawrx &= ~DAWRX_HYP;
839
Michael Ellerman7c09c182018-03-08 13:54:41 +1100840 return plpar_set_watchpoint0(dawr, dawrx);
Michael Neulingbf99de32012-12-20 14:06:45 +0000841}
842
Robert Jenningse46de422008-07-24 04:29:03 +1000843#define CMO_CHARACTERISTICS_TOKEN 44
844#define CMO_MAXLENGTH 1026
845
Brian King9ee820f2011-05-04 16:01:20 +1000846void pSeries_coalesce_init(void)
847{
848 struct hvcall_mpp_x_data mpp_x_data;
849
850 if (firmware_has_feature(FW_FEATURE_CMO) && !h_get_mpp_x(&mpp_x_data))
851 powerpc_firmware_features |= FW_FEATURE_XCMO;
852 else
853 powerpc_firmware_features &= ~FW_FEATURE_XCMO;
854}
855
Robert Jenningse46de422008-07-24 04:29:03 +1000856/**
857 * fw_cmo_feature_init - FW_FEATURE_CMO is not stored in ibm,hypertas-functions,
858 * handle that here. (Stolen from parse_system_parameter_string)
859 */
Anton Blancharde51df2c2014-08-20 08:55:18 +1000860static void pSeries_cmo_feature_init(void)
Robert Jenningse46de422008-07-24 04:29:03 +1000861{
862 char *ptr, *key, *value, *end;
863 int call_status;
Alistair Popplee589a4402013-12-09 18:17:01 +1100864 int page_order = IOMMU_PAGE_SHIFT_4K;
Robert Jenningse46de422008-07-24 04:29:03 +1000865
866 pr_debug(" -> fw_cmo_feature_init()\n");
867 spin_lock(&rtas_data_buf_lock);
868 memset(rtas_data_buf, 0, RTAS_DATA_BUF_SIZE);
869 call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
870 NULL,
871 CMO_CHARACTERISTICS_TOKEN,
872 __pa(rtas_data_buf),
873 RTAS_DATA_BUF_SIZE);
874
875 if (call_status != 0) {
876 spin_unlock(&rtas_data_buf_lock);
877 pr_debug("CMO not available\n");
878 pr_debug(" <- fw_cmo_feature_init()\n");
879 return;
880 }
881
882 end = rtas_data_buf + CMO_MAXLENGTH - 2;
883 ptr = rtas_data_buf + 2; /* step over strlen value */
884 key = value = ptr;
885
886 while (*ptr && (ptr <= end)) {
887 /* Separate the key and value by replacing '=' with '\0' and
888 * point the value at the string after the '='
889 */
890 if (ptr[0] == '=') {
891 ptr[0] = '\0';
892 value = ptr + 1;
893 } else if (ptr[0] == '\0' || ptr[0] == ',') {
894 /* Terminate the string containing the key/value pair */
895 ptr[0] = '\0';
896
897 if (key == value) {
898 pr_debug("Malformed key/value pair\n");
899 /* Never found a '=', end processing */
900 break;
901 }
902
Robert Jennings81f14992008-08-16 05:07:31 +1000903 if (0 == strcmp(key, "CMOPageSize"))
904 page_order = simple_strtol(value, NULL, 10);
905 else if (0 == strcmp(key, "PrPSP"))
906 CMO_PrPSP = simple_strtol(value, NULL, 10);
Robert Jenningse46de422008-07-24 04:29:03 +1000907 else if (0 == strcmp(key, "SecPSP"))
Robert Jennings81f14992008-08-16 05:07:31 +1000908 CMO_SecPSP = simple_strtol(value, NULL, 10);
Robert Jenningse46de422008-07-24 04:29:03 +1000909 value = key = ptr + 1;
910 }
911 ptr++;
912 }
913
Robert Jennings81f14992008-08-16 05:07:31 +1000914 /* Page size is returned as the power of 2 of the page size,
915 * convert to the page size in bytes before returning
916 */
917 CMO_PageSize = 1 << page_order;
918 pr_debug("CMO_PageSize = %lu\n", CMO_PageSize);
919
920 if (CMO_PrPSP != -1 || CMO_SecPSP != -1) {
Robert Jenningse46de422008-07-24 04:29:03 +1000921 pr_info("CMO enabled\n");
Robert Jennings81f14992008-08-16 05:07:31 +1000922 pr_debug("CMO enabled, PrPSP=%d, SecPSP=%d\n", CMO_PrPSP,
923 CMO_SecPSP);
Robert Jenningse46de422008-07-24 04:29:03 +1000924 powerpc_firmware_features |= FW_FEATURE_CMO;
Brian King9ee820f2011-05-04 16:01:20 +1000925 pSeries_coalesce_init();
Robert Jenningse46de422008-07-24 04:29:03 +1000926 } else
Robert Jennings81f14992008-08-16 05:07:31 +1000927 pr_debug("CMO not enabled, PrPSP=%d, SecPSP=%d\n", CMO_PrPSP,
928 CMO_SecPSP);
Robert Jenningse46de422008-07-24 04:29:03 +1000929 spin_unlock(&rtas_data_buf_lock);
930 pr_debug(" <- fw_cmo_feature_init()\n");
931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/*
934 * Early initialization. Relocation is on but do not reference unbolted pages
935 */
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000936static void __init pseries_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000938 pr_debug(" -> pseries_init()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000940#ifdef CONFIG_HVC_CONSOLE
Michael Ellerman57cfb812006-03-21 20:45:59 +1100941 if (firmware_has_feature(FW_FEATURE_LPAR))
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000942 hvc_vio_init_early();
943#endif
Michael Neuling06c88762012-09-05 19:17:49 +0000944 if (firmware_has_feature(FW_FEATURE_XDABR))
Michael Ellerman76032de2005-11-07 13:12:03 +1100945 ppc_md.set_dabr = pseries_set_xdabr;
Michael Neuling06c88762012-09-05 19:17:49 +0000946 else if (firmware_has_feature(FW_FEATURE_DABR))
947 ppc_md.set_dabr = pseries_set_dabr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Michael Neulingbf99de32012-12-20 14:06:45 +0000949 if (firmware_has_feature(FW_FEATURE_SET_MODE))
950 ppc_md.set_dawr = pseries_set_dawr;
951
Robert Jenningse46de422008-07-24 04:29:03 +1000952 pSeries_cmo_feature_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 iommu_init_early_pSeries();
954
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000955 pr_debug(" <- pseries_init()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Alexander Graf9178ba22014-10-13 16:01:09 +0200958/**
959 * pseries_power_off - tell firmware about how to power off the system.
960 *
961 * This function calls either the power-off rtas token in normal cases
962 * or the ibm,power-off-ups token (if present & requested) in case of
963 * a power failure. If power-off token is used, power on will only be
964 * possible with power button press. If ibm,power-off-ups token is used
965 * it will allow auto poweron after power is restored.
966 */
967static void pseries_power_off(void)
968{
969 int rc;
970 int rtas_poweroff_ups_token = rtas_token("ibm,power-off-ups");
971
972 if (rtas_flash_term_hook)
973 rtas_flash_term_hook(SYS_POWER_OFF);
974
975 if (rtas_poweron_auto == 0 ||
976 rtas_poweroff_ups_token == RTAS_UNKNOWN_SERVICE) {
977 rc = rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1);
978 printk(KERN_INFO "RTAS power-off returned %d\n", rc);
979 } else {
980 rc = rtas_call(rtas_poweroff_ups_token, 0, 1, NULL);
981 printk(KERN_INFO "RTAS ibm,power-off-ups returned %d\n", rc);
982 }
983 for (;;);
984}
985
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100986static int __init pSeries_probe(void)
987{
Rob Herringe5480bd2018-11-16 16:11:00 -0600988 if (!of_node_is_type(of_root, "chrp"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return 0;
990
Arnd Bergmann133dda12006-06-07 12:04:18 +1000991 /* Cell blades firmware claims to be chrp while it's not. Until this
992 * is fixed, we need to avoid those here.
993 */
Benjamin Herrenschmidt406b0b62016-07-05 15:04:00 +1000994 if (of_machine_is_compatible("IBM,CPBW-1.0") ||
995 of_machine_is_compatible("IBM,CBEA"))
Arnd Bergmann133dda12006-06-07 12:04:18 +1000996 return 0;
997
Alexander Graf9178ba22014-10-13 16:01:09 +0200998 pm_power_off = pseries_power_off;
999
Michael Ellermanf7ebf352008-04-24 15:13:19 +10001000 pr_debug("Machine is%s LPAR !\n",
1001 (powerpc_firmware_features & FW_FEATURE_LPAR) ? "" : " not");
Michael Ellerman57cfb812006-03-21 20:45:59 +11001002
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +10001003 pseries_init();
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return 1;
1006}
1007
Paul Mackerras42672922005-09-12 17:17:36 +10001008static int pSeries_pci_probe_mode(struct pci_bus *bus)
1009{
Michael Ellerman57cfb812006-03-21 20:45:59 +11001010 if (firmware_has_feature(FW_FEATURE_LPAR))
Paul Mackerras42672922005-09-12 17:17:36 +10001011 return PCI_PROBE_DEVTREE;
1012 return PCI_PROBE_NORMAL;
1013}
1014
Daniel Axtens38ae9ec2015-03-31 16:00:50 +11001015struct pci_controller_ops pseries_pci_controller_ops = {
1016 .probe_mode = pSeries_pci_probe_mode,
1017};
1018
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001019define_machine(pseries) {
1020 .name = "pSeries",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 .probe = pSeries_probe,
1022 .setup_arch = pSeries_setup_arch,
Rashmica Guptae7da5da2016-05-30 16:18:11 +10001023 .init_IRQ = pseries_init_irq,
Paul Mackerras0dd194d2005-10-20 20:48:19 +10001024 .show_cpuinfo = pSeries_show_cpuinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 .log_error = pSeries_log_error,
1026 .pcibios_fixup = pSeries_final_fixup,
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +11001027 .restart = rtas_restart,
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +11001028 .halt = rtas_halt,
Nicholas Piggin35adacd2017-12-24 02:49:23 +10001029 .panic = pseries_panic,
Arnd Bergmann773bf9c2005-06-23 09:43:18 +10001030 .get_boot_time = rtas_get_boot_time,
1031 .get_rtc_time = rtas_get_rtc_time,
1032 .set_rtc_time = rtas_set_rtc_time,
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +10001033 .calibrate_decr = generic_calibrate_decr,
Arnd Bergmann6566c6f2005-06-23 09:43:28 +10001034 .progress = rtas_progress,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 .system_reset_exception = pSeries_system_reset_exception,
Mahesh Salgaonkara43c1592018-09-11 19:57:00 +05301036 .machine_check_early = pseries_machine_check_realmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 .machine_check_exception = pSeries_machine_check_exception,
Thiago Jung Bauermannda665882016-11-29 23:45:50 +11001038#ifdef CONFIG_KEXEC_CORE
Ian Munsiecedddd82012-11-08 16:40:28 +11001039 .machine_kexec = pSeries_machine_kexec,
Rashmica Guptad739d2c2016-05-30 16:18:13 +10001040 .kexec_cpu_down = pseries_kexec_cpu_down,
Ian Munsiecedddd82012-11-08 16:40:28 +11001041#endif
Anton Blancharda5d86252014-06-04 17:50:47 +10001042#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
1043 .memory_block_size = pseries_memory_block_size,
1044#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045};