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