Troy Kisky | 4b7c602 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 1 | /* |
| 2 | * watchdog.c - driver for i.mx on-chip watchdog |
| 3 | * |
| 4 | * Licensed under the GPL-2 or later. |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/io.h> |
| 9 | #include <watchdog.h> |
| 10 | #include <asm/arch/imx-regs.h> |
Xiaoliang Yang | a6657ad | 2018-10-18 18:27:45 +0800 | [diff] [blame] | 11 | #ifdef CONFIG_FSL_LSCH2 |
| 12 | #include <asm/arch/immap_lsch2.h> |
| 13 | #endif |
Fabio Estevam | cd847ab | 2015-10-03 14:20:59 -0300 | [diff] [blame] | 14 | #include <fsl_wdog.h> |
Troy Kisky | 4b7c602 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 15 | |
| 16 | #ifdef CONFIG_IMX_WATCHDOG |
| 17 | void hw_watchdog_reset(void) |
| 18 | { |
Xiaoliang Yang | 09e9213 | 2018-10-18 18:27:46 +0800 | [diff] [blame] | 19 | #ifndef CONFIG_WATCHDOG_RESET_DISABLE |
Troy Kisky | 4b7c602 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 20 | struct watchdog_regs *wdog = (struct watchdog_regs *)WDOG1_BASE_ADDR; |
| 21 | |
| 22 | writew(0x5555, &wdog->wsr); |
| 23 | writew(0xaaaa, &wdog->wsr); |
Xiaoliang Yang | 09e9213 | 2018-10-18 18:27:46 +0800 | [diff] [blame] | 24 | #endif /* CONFIG_WATCHDOG_RESET_DISABLE*/ |
Troy Kisky | 4b7c602 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | void hw_watchdog_init(void) |
| 28 | { |
| 29 | struct watchdog_regs *wdog = (struct watchdog_regs *)WDOG1_BASE_ADDR; |
| 30 | u16 timeout; |
| 31 | |
| 32 | /* |
| 33 | * The timer watchdog can be set between |
| 34 | * 0.5 and 128 Seconds. If not defined |
| 35 | * in configuration file, sets 128 Seconds |
| 36 | */ |
| 37 | #ifndef CONFIG_WATCHDOG_TIMEOUT_MSECS |
| 38 | #define CONFIG_WATCHDOG_TIMEOUT_MSECS 128000 |
| 39 | #endif |
| 40 | timeout = (CONFIG_WATCHDOG_TIMEOUT_MSECS / 500) - 1; |
Xiaoliang Yang | a6657ad | 2018-10-18 18:27:45 +0800 | [diff] [blame] | 41 | #ifdef CONFIG_FSL_LSCH2 |
| 42 | writew((WCR_WDA | WCR_SRS | WCR_WDE) << 8 | timeout, &wdog->wcr); |
| 43 | #else |
Anatolij Gustschin | ca31000 | 2013-09-30 12:52:38 +0200 | [diff] [blame] | 44 | writew(WCR_WDZST | WCR_WDBG | WCR_WDE | WCR_WDT | WCR_SRS | |
Ross Parker | feaada1 | 2016-08-02 08:08:07 +0000 | [diff] [blame] | 45 | WCR_WDA | SET_WCR_WT(timeout), &wdog->wcr); |
Xiaoliang Yang | a6657ad | 2018-10-18 18:27:45 +0800 | [diff] [blame] | 46 | #endif /* CONFIG_FSL_LSCH2*/ |
Troy Kisky | 4b7c602 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 47 | hw_watchdog_reset(); |
| 48 | } |
| 49 | #endif |
| 50 | |
Stefan Agner | 2cf1fdb | 2016-07-13 00:25:42 -0700 | [diff] [blame] | 51 | void __attribute__((weak)) reset_cpu(ulong addr) |
Troy Kisky | 4b7c602 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 52 | { |
| 53 | struct watchdog_regs *wdog = (struct watchdog_regs *)WDOG1_BASE_ADDR; |
| 54 | |
Andrey Skvortsov | 46ddf2c | 2015-12-20 21:09:58 +0300 | [diff] [blame] | 55 | clrsetbits_le16(&wdog->wcr, WCR_WT_MSK, WCR_WDE); |
Peng Fan | 838cf7b | 2015-09-14 13:34:44 +0800 | [diff] [blame] | 56 | |
Troy Kisky | 4b7c602 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 57 | writew(0x5555, &wdog->wsr); |
| 58 | writew(0xaaaa, &wdog->wsr); /* load minimum 1/2 second timeout */ |
| 59 | while (1) { |
| 60 | /* |
| 61 | * spin for .5 seconds before reset |
| 62 | */ |
| 63 | } |
| 64 | } |