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/interrupt.h>
27 #include <linux/bug.h>
29 #include <asm/machdep.h>
30 #include <asm/firmware.h>
34 #include <asm/kexec.h>
38 static void __init
pnv_setup_arch(void)
46 /* Setup RTC and NVRAM callbacks */
47 if (firmware_has_feature(FW_FEATURE_OPAL
))
56 static void __init
pnv_init_early(void)
59 * Initialize the LPC bus now so that legacy serial
60 * ports can be found on it
64 #ifdef CONFIG_HVC_OPAL
65 if (firmware_has_feature(FW_FEATURE_OPAL
))
66 hvc_opal_init_early();
69 add_preferred_console("hvc", 0, NULL
);
72 static void __init
pnv_init_IRQ(void)
76 WARN_ON(!ppc_md
.get_irq
);
79 static void pnv_show_cpuinfo(struct seq_file
*m
)
81 struct device_node
*root
;
82 const char *model
= "";
84 root
= of_find_node_by_path("/");
86 model
= of_get_property(root
, "model", NULL
);
87 seq_printf(m
, "machine\t\t: PowerNV %s\n", model
);
88 if (firmware_has_feature(FW_FEATURE_OPALv3
))
89 seq_printf(m
, "firmware\t: OPAL v3\n");
90 else if (firmware_has_feature(FW_FEATURE_OPALv2
))
91 seq_printf(m
, "firmware\t: OPAL v2\n");
92 else if (firmware_has_feature(FW_FEATURE_OPAL
))
93 seq_printf(m
, "firmware\t: OPAL v1\n");
95 seq_printf(m
, "firmware\t: BML\n");
99 static void __noreturn
pnv_restart(char *cmd
)
103 opal_notifier_disable();
105 while (rc
== OPAL_BUSY
|| rc
== OPAL_BUSY_EVENT
) {
106 rc
= opal_cec_reboot();
107 if (rc
== OPAL_BUSY_EVENT
)
108 opal_poll_events(NULL
);
113 opal_poll_events(NULL
);
116 static void __noreturn
pnv_power_off(void)
120 opal_notifier_disable();
122 while (rc
== OPAL_BUSY
|| rc
== OPAL_BUSY_EVENT
) {
123 rc
= opal_cec_power_down(0);
124 if (rc
== OPAL_BUSY_EVENT
)
125 opal_poll_events(NULL
);
130 opal_poll_events(NULL
);
133 static void __noreturn
pnv_halt(void)
138 static void pnv_progress(char *s
, unsigned short hex
)
142 static void pnv_shutdown(void)
144 /* Let the PCI code clear up IODA tables */
147 /* And unregister all OPAL interrupts so they don't fire
154 static void pnv_kexec_cpu_down(int crash_shutdown
, int secondary
)
156 xics_kexec_teardown_cpu(secondary
);
158 /* Return secondary CPUs to firmware on OPAL v3 */
159 if (firmware_has_feature(FW_FEATURE_OPALv3
) && secondary
) {
161 get_paca()->kexec_state
= KEXEC_STATE_REAL_MODE
;
164 /* Return the CPU to OPAL */
168 #endif /* CONFIG_KEXEC */
170 static void __init
pnv_setup_machdep_opal(void)
172 ppc_md
.get_boot_time
= opal_get_boot_time
;
173 ppc_md
.get_rtc_time
= opal_get_rtc_time
;
174 ppc_md
.set_rtc_time
= opal_set_rtc_time
;
175 ppc_md
.restart
= pnv_restart
;
176 ppc_md
.power_off
= pnv_power_off
;
177 ppc_md
.halt
= pnv_halt
;
178 ppc_md
.machine_check_exception
= opal_machine_check
;
181 #ifdef CONFIG_PPC_POWERNV_RTAS
182 static void __init
pnv_setup_machdep_rtas(void)
184 if (rtas_token("get-time-of-day") != RTAS_UNKNOWN_SERVICE
) {
185 ppc_md
.get_boot_time
= rtas_get_boot_time
;
186 ppc_md
.get_rtc_time
= rtas_get_rtc_time
;
187 ppc_md
.set_rtc_time
= rtas_set_rtc_time
;
189 ppc_md
.restart
= rtas_restart
;
190 ppc_md
.power_off
= rtas_power_off
;
191 ppc_md
.halt
= rtas_halt
;
193 #endif /* CONFIG_PPC_POWERNV_RTAS */
195 static int __init
pnv_probe(void)
197 unsigned long root
= of_get_flat_dt_root();
199 if (!of_flat_dt_is_compatible(root
, "ibm,powernv"))
204 if (firmware_has_feature(FW_FEATURE_OPAL
))
205 pnv_setup_machdep_opal();
206 #ifdef CONFIG_PPC_POWERNV_RTAS
208 pnv_setup_machdep_rtas();
209 #endif /* CONFIG_PPC_POWERNV_RTAS */
211 pr_debug("PowerNV detected !\n");
216 define_machine(powernv
) {
219 .init_early
= pnv_init_early
,
220 .setup_arch
= pnv_setup_arch
,
221 .init_IRQ
= pnv_init_IRQ
,
222 .show_cpuinfo
= pnv_show_cpuinfo
,
223 .progress
= pnv_progress
,
224 .machine_shutdown
= pnv_shutdown
,
225 .power_save
= power7_idle
,
226 .calibrate_decr
= generic_calibrate_decr
,
228 .kexec_cpu_down
= pnv_kexec_cpu_down
,