1 // SPDX-License-Identifier: GPL-2.0
2 /* sstate.c: System soft state support.
4 * Copyright (C) 2007, 2008 David S. Miller <davem@davemloft.net>
7 #include <linux/kernel.h>
8 #include <linux/notifier.h>
9 #include <linux/reboot.h>
10 #include <linux/init.h>
12 #include <asm/hypervisor.h>
13 #include <asm/spitfire.h>
14 #include <asm/oplib.h>
20 static int hv_supports_soft_state
;
22 static void do_set_sstate(unsigned long state
, const char *msg
)
26 if (!hv_supports_soft_state
)
29 err
= sun4v_mach_set_soft_state(state
, kimage_addr_to_ra(msg
));
31 printk(KERN_WARNING
"SSTATE: Failed to set soft-state to "
32 "state[%lx] msg[%s], err=%lu\n",
37 static const char booting_msg
[32] __attribute__((aligned(32))) =
39 static const char running_msg
[32] __attribute__((aligned(32))) =
41 static const char halting_msg
[32] __attribute__((aligned(32))) =
43 static const char poweroff_msg
[32] __attribute__((aligned(32))) =
45 static const char rebooting_msg
[32] __attribute__((aligned(32))) =
47 static const char panicking_msg
[32] __attribute__((aligned(32))) =
50 static int sstate_reboot_call(struct notifier_block
*np
, unsigned long type
, void *_unused
)
69 do_set_sstate(HV_SOFT_STATE_TRANSITION
, msg
);
74 static struct notifier_block sstate_reboot_notifier
= {
75 .notifier_call
= sstate_reboot_call
,
78 static int sstate_panic_event(struct notifier_block
*n
, unsigned long event
, void *ptr
)
80 do_set_sstate(HV_SOFT_STATE_TRANSITION
, panicking_msg
);
85 static struct notifier_block sstate_panic_block
= {
86 .notifier_call
= sstate_panic_event
,
90 static int __init
sstate_init(void)
92 unsigned long major
, minor
;
94 if (tlb_type
!= hypervisor
)
99 if (sun4v_hvapi_register(HV_GRP_SOFT_STATE
, major
, &minor
))
102 hv_supports_soft_state
= 1;
104 prom_sun4v_guest_soft_state();
106 do_set_sstate(HV_SOFT_STATE_TRANSITION
, booting_msg
);
108 atomic_notifier_chain_register(&panic_notifier_list
,
109 &sstate_panic_block
);
110 register_reboot_notifier(&sstate_reboot_notifier
);
115 core_initcall(sstate_init
);
117 static int __init
sstate_running(void)
119 do_set_sstate(HV_SOFT_STATE_NORMAL
, running_msg
);
123 late_initcall(sstate_running
);