2019-06-04 10:11:33 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2013-05-27 20:05:19 +05:30
|
|
|
/*
|
|
|
|
* omap4-restart.c - Common to OMAP4 and OMAP5
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
2013-07-08 16:01:40 -07:00
|
|
|
#include <linux/reboot.h>
|
2015-07-11 20:29:16 +05:30
|
|
|
#include "common.h"
|
2014-10-27 08:39:26 -07:00
|
|
|
#include "prm.h"
|
2013-05-27 20:05:19 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* omap44xx_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 16:01:40 -07:00
|
|
|
void omap44xx_restart(enum reboot_mode mode, const char *cmd)
|
2013-05-27 20:05:19 +05:30
|
|
|
{
|
|
|
|
/* XXX Should save 'cmd' into scratchpad for use after reboot */
|
2014-10-27 08:39:26 -07:00
|
|
|
omap_prm_reset_system();
|
2013-05-27 20:05:19 +05:30
|
|
|
}
|