ARM: amba: Make driver_override output consistent with other buses
[linux/fpc-iii.git] / arch / powerpc / platforms / powernv / setup.c
blob092715b9674bb93309b3793ed4ccd2719407e5db
1 /*
2 * PowerNV setup code.
4 * Copyright 2011 IBM Corp.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #undef DEBUG
14 #include <linux/cpu.h>
15 #include <linux/errno.h>
16 #include <linux/sched.h>
17 #include <linux/kernel.h>
18 #include <linux/tty.h>
19 #include <linux/reboot.h>
20 #include <linux/init.h>
21 #include <linux/console.h>
22 #include <linux/delay.h>
23 #include <linux/irq.h>
24 #include <linux/seq_file.h>
25 #include <linux/of.h>
26 #include <linux/of_fdt.h>
27 #include <linux/interrupt.h>
28 #include <linux/bug.h>
29 #include <linux/pci.h>
30 #include <linux/cpufreq.h>
32 #include <asm/machdep.h>
33 #include <asm/firmware.h>
34 #include <asm/xics.h>
35 #include <asm/xive.h>
36 #include <asm/opal.h>
37 #include <asm/kexec.h>
38 #include <asm/smp.h>
39 #include <asm/tm.h>
40 #include <asm/setup.h>
42 #include "powernv.h"
44 static void pnv_setup_rfi_flush(void)
46 struct device_node *np, *fw_features;
47 enum l1d_flush_type type;
48 int enable;
50 /* Default to fallback in case fw-features are not available */
51 type = L1D_FLUSH_FALLBACK;
52 enable = 1;
54 np = of_find_node_by_name(NULL, "ibm,opal");
55 fw_features = of_get_child_by_name(np, "fw-features");
56 of_node_put(np);
58 if (fw_features) {
59 np = of_get_child_by_name(fw_features, "inst-l1d-flush-trig2");
60 if (np && of_property_read_bool(np, "enabled"))
61 type = L1D_FLUSH_MTTRIG;
63 of_node_put(np);
65 np = of_get_child_by_name(fw_features, "inst-l1d-flush-ori30,30,0");
66 if (np && of_property_read_bool(np, "enabled"))
67 type = L1D_FLUSH_ORI;
69 of_node_put(np);
71 /* Enable unless firmware says NOT to */
72 enable = 2;
73 np = of_get_child_by_name(fw_features, "needs-l1d-flush-msr-hv-1-to-0");
74 if (np && of_property_read_bool(np, "disabled"))
75 enable--;
77 of_node_put(np);
79 np = of_get_child_by_name(fw_features, "needs-l1d-flush-msr-pr-0-to-1");
80 if (np && of_property_read_bool(np, "disabled"))
81 enable--;
83 np = of_get_child_by_name(fw_features, "speculation-policy-favor-security");
84 if (np && of_property_read_bool(np, "disabled"))
85 enable = 0;
87 of_node_put(np);
88 of_node_put(fw_features);
91 setup_rfi_flush(type, enable > 0);
94 static void __init pnv_setup_arch(void)
96 set_arch_panic_timeout(10, ARCH_PANIC_TIMEOUT);
98 pnv_setup_rfi_flush();
100 /* Initialize SMP */
101 pnv_smp_init();
103 /* Setup PCI */
104 pnv_pci_init();
106 /* Setup RTC and NVRAM callbacks */
107 if (firmware_has_feature(FW_FEATURE_OPAL))
108 opal_nvram_init();
110 /* Enable NAP mode */
111 powersave_nap = 1;
113 /* XXX PMCS */
116 static void __init pnv_init(void)
119 * Initialize the LPC bus now so that legacy serial
120 * ports can be found on it
122 opal_lpc_init();
124 #ifdef CONFIG_HVC_OPAL
125 if (firmware_has_feature(FW_FEATURE_OPAL))
126 hvc_opal_init_early();
127 else
128 #endif
129 add_preferred_console("hvc", 0, NULL);
132 static void __init pnv_init_IRQ(void)
134 /* Try using a XIVE if available, otherwise use a XICS */
135 if (!xive_native_init())
136 xics_init();
138 WARN_ON(!ppc_md.get_irq);
141 static void pnv_show_cpuinfo(struct seq_file *m)
143 struct device_node *root;
144 const char *model = "";
146 root = of_find_node_by_path("/");
147 if (root)
148 model = of_get_property(root, "model", NULL);
149 seq_printf(m, "machine\t\t: PowerNV %s\n", model);
150 if (firmware_has_feature(FW_FEATURE_OPAL))
151 seq_printf(m, "firmware\t: OPAL\n");
152 else
153 seq_printf(m, "firmware\t: BML\n");
154 of_node_put(root);
155 if (radix_enabled())
156 seq_printf(m, "MMU\t\t: Radix\n");
157 else
158 seq_printf(m, "MMU\t\t: Hash\n");
161 static void pnv_prepare_going_down(void)
164 * Disable all notifiers from OPAL, we can't
165 * service interrupts anymore anyway
167 opal_event_shutdown();
169 /* Soft disable interrupts */
170 local_irq_disable();
173 * Return secondary CPUs to firwmare if a flash update
174 * is pending otherwise we will get all sort of error
175 * messages about CPU being stuck etc.. This will also
176 * have the side effect of hard disabling interrupts so
177 * past this point, the kernel is effectively dead.
179 opal_flash_term_callback();
182 static void __noreturn pnv_restart(char *cmd)
184 long rc = OPAL_BUSY;
186 pnv_prepare_going_down();
188 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
189 rc = opal_cec_reboot();
190 if (rc == OPAL_BUSY_EVENT)
191 opal_poll_events(NULL);
192 else
193 mdelay(10);
195 for (;;)
196 opal_poll_events(NULL);
199 static void __noreturn pnv_power_off(void)
201 long rc = OPAL_BUSY;
203 pnv_prepare_going_down();
205 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
206 rc = opal_cec_power_down(0);
207 if (rc == OPAL_BUSY_EVENT)
208 opal_poll_events(NULL);
209 else
210 mdelay(10);
212 for (;;)
213 opal_poll_events(NULL);
216 static void __noreturn pnv_halt(void)
218 pnv_power_off();
221 static void pnv_progress(char *s, unsigned short hex)
225 static void pnv_shutdown(void)
227 /* Let the PCI code clear up IODA tables */
228 pnv_pci_shutdown();
231 * Stop OPAL activity: Unregister all OPAL interrupts so they
232 * don't fire up while we kexec and make sure all potentially
233 * DMA'ing ops are complete (such as dump retrieval).
235 opal_shutdown();
238 #ifdef CONFIG_KEXEC_CORE
239 static void pnv_kexec_wait_secondaries_down(void)
241 int my_cpu, i, notified = -1;
243 my_cpu = get_cpu();
245 for_each_online_cpu(i) {
246 uint8_t status;
247 int64_t rc, timeout = 1000;
249 if (i == my_cpu)
250 continue;
252 for (;;) {
253 rc = opal_query_cpu_status(get_hard_smp_processor_id(i),
254 &status);
255 if (rc != OPAL_SUCCESS || status != OPAL_THREAD_STARTED)
256 break;
257 barrier();
258 if (i != notified) {
259 printk(KERN_INFO "kexec: waiting for cpu %d "
260 "(physical %d) to enter OPAL\n",
261 i, paca[i].hw_cpu_id);
262 notified = i;
266 * On crash secondaries might be unreachable or hung,
267 * so timeout if we've waited too long
268 * */
269 mdelay(1);
270 if (timeout-- == 0) {
271 printk(KERN_ERR "kexec: timed out waiting for "
272 "cpu %d (physical %d) to enter OPAL\n",
273 i, paca[i].hw_cpu_id);
274 break;
280 static void pnv_kexec_cpu_down(int crash_shutdown, int secondary)
282 u64 reinit_flags;
284 if (xive_enabled())
285 xive_kexec_teardown_cpu(secondary);
286 else
287 xics_kexec_teardown_cpu(secondary);
289 /* On OPAL, we return all CPUs to firmware */
290 if (!firmware_has_feature(FW_FEATURE_OPAL))
291 return;
293 if (secondary) {
294 /* Return secondary CPUs to firmware on OPAL v3 */
295 mb();
296 get_paca()->kexec_state = KEXEC_STATE_REAL_MODE;
297 mb();
299 /* Return the CPU to OPAL */
300 opal_return_cpu();
301 } else {
302 /* Primary waits for the secondaries to have reached OPAL */
303 pnv_kexec_wait_secondaries_down();
305 /* Switch XIVE back to emulation mode */
306 if (xive_enabled())
307 xive_shutdown();
310 * We might be running as little-endian - now that interrupts
311 * are disabled, reset the HILE bit to big-endian so we don't
312 * take interrupts in the wrong endian later
314 * We reinit to enable both radix and hash on P9 to ensure
315 * the mode used by the next kernel is always supported.
317 reinit_flags = OPAL_REINIT_CPUS_HILE_BE;
318 if (cpu_has_feature(CPU_FTR_ARCH_300))
319 reinit_flags |= OPAL_REINIT_CPUS_MMU_RADIX |
320 OPAL_REINIT_CPUS_MMU_HASH;
321 opal_reinit_cpus(reinit_flags);
324 #endif /* CONFIG_KEXEC_CORE */
326 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
327 static unsigned long pnv_memory_block_size(void)
330 * We map the kernel linear region with 1GB large pages on radix. For
331 * memory hot unplug to work our memory block size must be at least
332 * this size.
334 if (radix_enabled())
335 return 1UL * 1024 * 1024 * 1024;
336 else
337 return 256UL * 1024 * 1024;
339 #endif
341 static void __init pnv_setup_machdep_opal(void)
343 ppc_md.get_boot_time = opal_get_boot_time;
344 ppc_md.restart = pnv_restart;
345 pm_power_off = pnv_power_off;
346 ppc_md.halt = pnv_halt;
347 /* ppc_md.system_reset_exception gets filled in by pnv_smp_init() */
348 ppc_md.machine_check_exception = opal_machine_check;
349 ppc_md.mce_check_early_recovery = opal_mce_check_early_recovery;
350 ppc_md.hmi_exception_early = opal_hmi_exception_early;
351 ppc_md.handle_hmi_exception = opal_handle_hmi_exception;
354 static int __init pnv_probe(void)
356 if (!of_machine_is_compatible("ibm,powernv"))
357 return 0;
359 if (firmware_has_feature(FW_FEATURE_OPAL))
360 pnv_setup_machdep_opal();
362 pr_debug("PowerNV detected !\n");
364 pnv_init();
366 return 1;
369 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
370 void __init pnv_tm_init(void)
372 if (!firmware_has_feature(FW_FEATURE_OPAL) ||
373 !pvr_version_is(PVR_POWER9) ||
374 early_cpu_has_feature(CPU_FTR_TM))
375 return;
377 if (opal_reinit_cpus(OPAL_REINIT_CPUS_TM_SUSPEND_DISABLED) != OPAL_SUCCESS)
378 return;
380 pr_info("Enabling TM (Transactional Memory) with Suspend Disabled\n");
381 cur_cpu_spec->cpu_features |= CPU_FTR_TM;
382 /* Make sure "normal" HTM is off (it should be) */
383 cur_cpu_spec->cpu_user_features2 &= ~PPC_FEATURE2_HTM;
384 /* Turn on no suspend mode, and HTM no SC */
385 cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_HTM_NO_SUSPEND | \
386 PPC_FEATURE2_HTM_NOSC;
387 tm_suspend_disabled = true;
389 #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
392 * Returns the cpu frequency for 'cpu' in Hz. This is used by
393 * /proc/cpuinfo
395 static unsigned long pnv_get_proc_freq(unsigned int cpu)
397 unsigned long ret_freq;
399 ret_freq = cpufreq_get(cpu) * 1000ul;
402 * If the backend cpufreq driver does not exist,
403 * then fallback to old way of reporting the clockrate.
405 if (!ret_freq)
406 ret_freq = ppc_proc_freq;
407 return ret_freq;
410 define_machine(powernv) {
411 .name = "PowerNV",
412 .probe = pnv_probe,
413 .setup_arch = pnv_setup_arch,
414 .init_IRQ = pnv_init_IRQ,
415 .show_cpuinfo = pnv_show_cpuinfo,
416 .get_proc_freq = pnv_get_proc_freq,
417 .progress = pnv_progress,
418 .machine_shutdown = pnv_shutdown,
419 .power_save = NULL,
420 .calibrate_decr = generic_calibrate_decr,
421 #ifdef CONFIG_KEXEC_CORE
422 .kexec_cpu_down = pnv_kexec_cpu_down,
423 #endif
424 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
425 .memory_block_size = pnv_memory_block_size,
426 #endif