]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/socfpga/reset_manager.c
5d7aba467f70af05e83ceda8cebb945b8a892b1b
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / socfpga / reset_manager.c
1 /*
2  *  Copyright (C) 2013 Altera Corporation <www.altera.com>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7
8 #include <common.h>
9 #include <asm/io.h>
10 #include <asm/arch/reset_manager.h>
11
12 DECLARE_GLOBAL_DATA_PTR;
13
14 static const struct socfpga_reset_manager *reset_manager_base =
15                 (void *)SOCFPGA_RSTMGR_ADDRESS;
16
17 /* Toggle reset signal to watchdog (WDT is disabled after this operation!) */
18 void socfpga_watchdog_reset(void)
19 {
20         /* assert reset for watchdog */
21         setbits_le32(&reset_manager_base->per_mod_reset,
22                      1 << RSTMGR_PERMODRST_L4WD0_LSB);
23
24         /* deassert watchdog from reset (watchdog in not running state) */
25         clrbits_le32(&reset_manager_base->per_mod_reset,
26                      1 << RSTMGR_PERMODRST_L4WD0_LSB);
27 }
28
29 /*
30  * Write the reset manager register to cause reset
31  */
32 void reset_cpu(ulong addr)
33 {
34         /* request a warm reset */
35         writel((1 << RSTMGR_CTRL_SWWARMRSTREQ_LSB),
36                 &reset_manager_base->ctrl);
37         /*
38          * infinite loop here as watchdog will trigger and reset
39          * the processor
40          */
41         while (1)
42                 ;
43 }
44
45 /*
46  * Release peripherals from reset based on handoff
47  */
48 void reset_deassert_peripherals_handoff(void)
49 {
50         writel(0, &reset_manager_base->per_mod_reset);
51 }