2019-05-29 14:18:00 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2017-07-11 01:00:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Regents of the University of California
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/reboot.h>
|
2019-10-17 22:21:28 +00:00
|
|
|
#include <linux/pm.h>
|
2017-07-11 01:00:26 +00:00
|
|
|
|
2019-04-15 09:14:42 +00:00
|
|
|
static void default_power_off(void)
|
|
|
|
{
|
2019-10-30 23:11:47 +00:00
|
|
|
while (1)
|
|
|
|
wait_for_interrupt();
|
2019-04-15 09:14:42 +00:00
|
|
|
}
|
|
|
|
|
2021-09-07 00:28:47 +00:00
|
|
|
void (*pm_power_off)(void) = NULL;
|
2019-06-11 10:28:40 +00:00
|
|
|
EXPORT_SYMBOL(pm_power_off);
|
2017-07-11 01:00:26 +00:00
|
|
|
|
|
|
|
void machine_restart(char *cmd)
|
|
|
|
{
|
|
|
|
do_kernel_restart(cmd);
|
|
|
|
while (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void machine_halt(void)
|
|
|
|
{
|
2022-05-09 23:32:19 +00:00
|
|
|
do_kernel_power_off();
|
|
|
|
default_power_off();
|
2017-07-11 01:00:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void machine_power_off(void)
|
|
|
|
{
|
2022-05-09 23:32:19 +00:00
|
|
|
do_kernel_power_off();
|
|
|
|
default_power_off();
|
2017-07-11 01:00:26 +00:00
|
|
|
}
|