2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2013-01-23 21:02:40 +00:00
|
|
|
/*
|
|
|
|
* am33xx-restart.c - Code common to all AM33xx machines.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
2013-07-08 23:01:40 +00:00
|
|
|
#include <linux/reboot.h>
|
2013-01-23 21:02:40 +00:00
|
|
|
|
|
|
|
#include "common.h"
|
2014-10-27 15:39:26 +00:00
|
|
|
#include "prm.h"
|
2013-01-23 21:02:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* am3xx_restart - trigger a software restart of the SoC
|
|
|
|
* @mode: the "reboot mode", see arch/arm/kernel/{setup,process}.c
|
|
|
|
* @cmd: passed from the userspace program rebooting the system (if provided)
|
|
|
|
*
|
|
|
|
* Resets the SoC. For @cmd, see the 'reboot' syscall in
|
|
|
|
* kernel/sys.c. No return value.
|
|
|
|
*/
|
2013-07-08 23:01:40 +00:00
|
|
|
void am33xx_restart(enum reboot_mode mode, const char *cmd)
|
2013-01-23 21:02:40 +00:00
|
|
|
{
|
|
|
|
/* TODO: Handle mode and cmd if necessary */
|
|
|
|
|
2014-10-27 15:39:26 +00:00
|
|
|
omap_prm_reset_system();
|
2013-01-23 21:02:40 +00:00
|
|
|
}
|