commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
24 lines
652 B
C
24 lines
652 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* omap4-restart.c - Common to OMAP4 and OMAP5
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/reboot.h>
|
|
#include "common.h"
|
|
#include "prm.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(enum reboot_mode mode, const char *cmd)
|
|
{
|
|
/* XXX Should save 'cmd' into scratchpad for use after reboot */
|
|
omap_prm_reset_system();
|
|
}
|