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