2 * Copyright 2008-2011, IBM Corporation
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
10 #include <linux/delay.h>
11 #include <linux/init.h>
12 #include <linux/irq.h>
13 #include <linux/kernel.h>
16 #include <linux/smp.h>
17 #include <linux/time.h>
19 #include <asm/machdep.h>
26 static void psr2_spin(void)
33 static void psr2_restart(char *cmd
)
38 static int __init
psr2_probe(void)
40 unsigned long root
= of_get_flat_dt_root();
42 if (of_flat_dt_is_compatible(root
, "ibm,wsp-chroma")) {
43 /* chroma systems also claim they are psr2s */
47 if (!of_flat_dt_is_compatible(root
, "ibm,psr2"))
53 define_machine(psr2_md
) {
56 .setup_arch
= wsp_setup_arch
,
57 .restart
= psr2_restart
,
58 .power_off
= psr2_spin
,
60 .calibrate_decr
= generic_calibrate_decr
,
61 .init_IRQ
= wsp_setup_irq
,
62 .progress
= udbg_progress
,
63 .power_save
= book3e_idle
,
66 machine_arch_initcall(psr2_md
, wsp_probe_devices
);