summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-vexpress/reset.c
blob: 78e452936d2cc2a3d6478aa1a43b81932b1905b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (C) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
 *
 * GPLv2 only
 */

#include <common.h>
#include <io.h>
#include <init.h>
#include <restart.h>
#include <linux/amba/sp805.h>

#include <mach/devices.h>

void __iomem *v2m_wdt_base;

static void vexpress_reset_soc(struct restart_handler *rst)
{
	writel(LOAD_MIN, v2m_wdt_base + WDTLOAD);
	writeb(RESET_ENABLE, v2m_wdt_base + WDTCONTROL);

	hang();
}

static int restart_register_feature(void)
{
	restart_handler_register_fn("soc-wdt", vexpress_reset_soc);

	return 0;
}
coredevice_initcall(restart_register_feature);