mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 21:30:54 +07:00
ab4c2e1bbd
Separate out OMAP4 restart and have it similar to other platforms, in a different file. Main motive is to reuse omap4-common on platforms other than OMAP4, like AM43x, even if OMAP4 is deselected (otherwise would have caused build breakage). Signed-off-by: Afzal Mohammed <afzal@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
28 lines
802 B
C
28 lines
802 B
C
/*
|
|
* omap4-restart.c - Common to OMAP4 and OMAP5
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include "prminst44xx.h"
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
void omap44xx_restart(char mode, const char *cmd)
|
|
{
|
|
/* XXX Should save 'cmd' into scratchpad for use after reboot */
|
|
omap4_prminst_global_warm_sw_reset(); /* never returns */
|
|
while (1)
|
|
;
|
|
}
|