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.
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>
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>
37 #include <asm/kexec.h>
40 #include <asm/setup.h>
44 static void pnv_setup_rfi_flush(void)
46 struct device_node
*np
, *fw_features
;
47 enum l1d_flush_type type
;
50 /* Default to fallback in case fw-features are not available */
51 type
= L1D_FLUSH_FALLBACK
;
54 np
= of_find_node_by_name(NULL
, "ibm,opal");
55 fw_features
= of_get_child_by_name(np
, "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
;
65 np
= of_get_child_by_name(fw_features
, "inst-l1d-flush-ori30,30,0");
66 if (np
&& of_property_read_bool(np
, "enabled"))
71 /* Enable unless firmware says NOT to */
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"))
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"))
83 np
= of_get_child_by_name(fw_features
, "speculation-policy-favor-security");
84 if (np
&& of_property_read_bool(np
, "disabled"))
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();
106 /* Setup RTC and NVRAM callbacks */
107 if (firmware_has_feature(FW_FEATURE_OPAL
))
110 /* Enable NAP mode */
116 static void __init
pnv_init(void)
119 * Initialize the LPC bus now so that legacy serial
120 * ports can be found on it
124 #ifdef CONFIG_HVC_OPAL
125 if (firmware_has_feature(FW_FEATURE_OPAL
))
126 hvc_opal_init_early();
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())
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("/");
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");
153 seq_printf(m
, "firmware\t: BML\n");
156 seq_printf(m
, "MMU\t\t: Radix\n");
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 */
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
)
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
);
196 opal_poll_events(NULL
);
199 static void __noreturn
pnv_power_off(void)
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
);
213 opal_poll_events(NULL
);
216 static void __noreturn
pnv_halt(void)
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 */
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).
238 #ifdef CONFIG_KEXEC_CORE
239 static void pnv_kexec_wait_secondaries_down(void)
241 int my_cpu
, i
, notified
= -1;
245 for_each_online_cpu(i
) {
247 int64_t rc
, timeout
= 1000;
253 rc
= opal_query_cpu_status(get_hard_smp_processor_id(i
),
255 if (rc
!= OPAL_SUCCESS
|| status
!= OPAL_THREAD_STARTED
)
259 printk(KERN_INFO
"kexec: waiting for cpu %d "
260 "(physical %d) to enter OPAL\n",
261 i
, paca
[i
].hw_cpu_id
);
266 * On crash secondaries might be unreachable or hung,
267 * so timeout if we've waited too long
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
);
280 static void pnv_kexec_cpu_down(int crash_shutdown
, int secondary
)
285 xive_kexec_teardown_cpu(secondary
);
287 xics_kexec_teardown_cpu(secondary
);
289 /* On OPAL, we return all CPUs to firmware */
290 if (!firmware_has_feature(FW_FEATURE_OPAL
))
294 /* Return secondary CPUs to firmware on OPAL v3 */
296 get_paca()->kexec_state
= KEXEC_STATE_REAL_MODE
;
299 /* Return the CPU to OPAL */
302 /* Primary waits for the secondaries to have reached OPAL */
303 pnv_kexec_wait_secondaries_down();
305 /* Switch XIVE back to emulation mode */
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
335 return 1UL * 1024 * 1024 * 1024;
337 return 256UL * 1024 * 1024;
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"))
359 if (firmware_has_feature(FW_FEATURE_OPAL
))
360 pnv_setup_machdep_opal();
362 pr_debug("PowerNV detected !\n");
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
))
377 if (opal_reinit_cpus(OPAL_REINIT_CPUS_TM_SUSPEND_DISABLED
) != OPAL_SUCCESS
)
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
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.
406 ret_freq
= ppc_proc_freq
;
410 define_machine(powernv
) {
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
,
420 .calibrate_decr
= generic_calibrate_decr
,
421 #ifdef CONFIG_KEXEC_CORE
422 .kexec_cpu_down
= pnv_kexec_cpu_down
,
424 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
425 .memory_block_size
= pnv_memory_block_size
,