1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-06 18:29:47 +00:00

Enable reset mechanism for rk3188.

Approved by: ray@
This commit is contained in:
Ganbold Tsagaankhuu 2013-11-25 11:02:58 +00:00
parent a8e50123f0
commit 18d753d0fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=258548

View File

@ -49,6 +49,8 @@ __FBSDID("$FreeBSD$");
#include <dev/fdt/fdt_common.h>
#include <arm/rockchip/rk30xx_wdog.h>
/* Start of address space used for bootstrap map */
#define DEVMAP_BOOTSTRAP_MAP_START 0xF0000000
@ -122,6 +124,7 @@ void
cpu_reset()
{
printf("No cpu_reset implementation!\n");
rk30_wd_watchdog_reset();
printf("Reset failed!\n");
while (1);
}