1 /* sstate.c: System soft state support.
3 * Copyright (C) 2007, 2008 David S. Miller <davem@davemloft.net>
6 #include <linux/kernel.h>
7 #include <linux/notifier.h>
8 #include <linux/reboot.h>
9 #include <linux/init.h>
11 #include <asm/hypervisor.h>
12 #include <asm/spitfire.h>
13 #include <asm/oplib.h>
19 static int hv_supports_soft_state
;
21 static void do_set_sstate(unsigned long state
, const char *msg
)
25 if (!hv_supports_soft_state
)
28 err
= sun4v_mach_set_soft_state(state
, kimage_addr_to_ra(msg
));
30 printk(KERN_WARNING
"SSTATE: Failed to set soft-state to "
31 "state[%lx] msg[%s], err=%lu\n",
36 static const char booting_msg
[32] __attribute__((aligned(32))) =
38 static const char running_msg
[32] __attribute__((aligned(32))) =
40 static const char halting_msg
[32] __attribute__((aligned(32))) =
42 static const char poweroff_msg
[32] __attribute__((aligned(32))) =
44 static const char rebooting_msg
[32] __attribute__((aligned(32))) =
46 static const char panicing_msg
[32] __attribute__((aligned(32))) =
49 static int sstate_reboot_call(struct notifier_block
*np
, unsigned long type
, void *_unused
)
68 do_set_sstate(HV_SOFT_STATE_TRANSITION
, msg
);
73 static struct notifier_block sstate_reboot_notifier
= {
74 .notifier_call
= sstate_reboot_call
,
77 static int sstate_panic_event(struct notifier_block
*n
, unsigned long event
, void *ptr
)
79 do_set_sstate(HV_SOFT_STATE_TRANSITION
, panicing_msg
);
84 static struct notifier_block sstate_panic_block
= {
85 .notifier_call
= sstate_panic_event
,
89 static int __init
sstate_init(void)
91 unsigned long major
, minor
;
93 if (tlb_type
!= hypervisor
)
98 if (sun4v_hvapi_register(HV_GRP_SOFT_STATE
, major
, &minor
))
101 hv_supports_soft_state
= 1;
103 prom_sun4v_guest_soft_state();
105 do_set_sstate(HV_SOFT_STATE_TRANSITION
, booting_msg
);
107 atomic_notifier_chain_register(&panic_notifier_list
,
108 &sstate_panic_block
);
109 register_reboot_notifier(&sstate_reboot_notifier
);
114 core_initcall(sstate_init
);
116 static int __init
sstate_running(void)
118 do_set_sstate(HV_SOFT_STATE_NORMAL
, running_msg
);
122 late_initcall(sstate_running
);