summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/reset_source.c
blob: e7b2a906c50a4f9697e1ced87ea786a280426de6 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * (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/imx-regs.h>

#ifdef CONFIG_ARCH_IMX1
#  define IMX_RESET_SRC_WDOG (1 << 1)
#  define IMX_RESET_SRC_HRDRESET (1 << 0)
/* let the compiler sort out useless code on this arch */
#  define IMX_RESET_SRC_WARMSTART 0
#  define IMX_RESET_SRC_COLDSTART 0
#else
  /* WRSR checked for i.MX25, i.MX27, i.MX31, i.MX35 and i.MX51 */
# define WDOG_WRSR 0x04
  /* valid for i.MX25, i.MX27, i.MX31, i.MX35, i.MX51 */
#  define IMX_RESET_SRC_WARMSTART (1 << 0)
  /* valid for i.MX25, i.MX27, i.MX31, i.MX35, i.MX51 */
#  define IMX_RESET_SRC_WDOG (1 << 1)
  /* valid for i.MX27, i.MX31, always '0' on i.MX25, i.MX35, i.MX51 */
#  define IMX_RESET_SRC_HRDRESET (1 << 3)
  /* valid for i.MX27, i.MX31, always '0' on i.MX25, i.MX35, i.MX51 */
#  define IMX_RESET_SRC_COLDSTART (1 << 4)
#endif

static unsigned read_detection_register(void)
{
#ifdef CONFIG_ARCH_IMX1
	return readl(IMX_SYSCTRL_BASE);
#else
	return readw(IMX_WDT_BASE + WDOG_WRSR);
#endif
}

static int imx_detect_reset_source(void)
{
	unsigned reg = read_detection_register();

	if (reg & IMX_RESET_SRC_COLDSTART) {
		set_reset_source(RESET_POR);
		return 0;
	}

	if (reg & (IMX_RESET_SRC_HRDRESET | IMX_RESET_SRC_WARMSTART)) {
		set_reset_source(RESET_RST);
		return 0;
	}

	if (reg & IMX_RESET_SRC_WDOG) {
		set_reset_source(RESET_WDG);
		return 0;
	}

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

device_initcall(imx_detect_reset_source);