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