summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-samsung/reset_source.c
blob: 2456e3f6020cc5ed4ee4bda2245765e2750a030d (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
 * (C) Copyright 2012 Juergen Beisert - <kernel@pengutronix.de>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <common.h>
#include <init.h>
#include <io.h>
#include <reset_source.h>
#include <mach/s3c-iomap.h>

/* S3C2440 relevant */
#define S3C2440_GSTATUS2 0xb4
# define S3C2440_GSTATUS2_PWRST (1 << 0)
# define S3C2440_GSTATUS2_SLEEPRST (1 << 1)
# define S3C2440_GSTATUS2_WDRST (1 << 2)

static int s3c_detect_reset_source(void)
{
	u32 reg = readl(S3C_GPIO_BASE + S3C2440_GSTATUS2);

	if (reg & S3C2440_GSTATUS2_PWRST) {
		set_reset_source(RESET_POR);
		writel(S3C2440_GSTATUS2_PWRST,
					S3C_GPIO_BASE + S3C2440_GSTATUS2);
		return 0;
	}

	if (reg & S3C2440_GSTATUS2_SLEEPRST) {
		set_reset_source(RESET_WKE);
		writel(S3C2440_GSTATUS2_SLEEPRST,
					S3C_GPIO_BASE + S3C2440_GSTATUS2);
		return 0;
	}

	if (reg & S3C2440_GSTATUS2_WDRST) {
		set_reset_source(RESET_WDG);
		writel(S3C2440_GSTATUS2_WDRST,
					S3C_GPIO_BASE + S3C2440_GSTATUS2);
		return 0;
	}

	/* else keep the default 'unknown' state */
	return 0;
}

device_initcall(s3c_detect_reset_source);