blob: 076d801f5d4e567931b49edc5e8aa94af3bad64e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Macpaul Lin90969632011-01-26 18:46:28 +08002/*
3 * Watchdog driver for the FTWDT010 Watch Dog Driver
4 *
5 * (c) Copyright 2004 Faraday Technology Corp. (www.faraday-tech.com)
6 * Based on sa1100_wdt.c by Oleg Drokin <green@crimea.edu>
7 * Based on SoftDog driver by Alan Cox <alan@redhat.com>
8 *
9 * Copyright (C) 2011 Andes Technology Corporation
10 * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
11 *
Macpaul Lin90969632011-01-26 18:46:28 +080012 * 27/11/2004 Initial release, Faraday.
13 * 12/01/2011 Port to u-boot, Macpaul Lin.
14 */
15
16#include <common.h>
17#include <watchdog.h>
18#include <asm/io.h>
Macpaul Lin04c2dd82011-04-12 13:04:02 +080019#include <faraday/ftwdt010_wdt.h>
Macpaul Lin90969632011-01-26 18:46:28 +080020
21/*
22 * Set the watchdog time interval.
23 * Counter is 32 bit.
24 */
Macpaul Lin04c2dd82011-04-12 13:04:02 +080025int ftwdt010_wdt_settimeout(unsigned int timeout)
Macpaul Lin90969632011-01-26 18:46:28 +080026{
27 unsigned int reg;
28
29 struct ftwdt010_wdt *wd = (struct ftwdt010_wdt *)CONFIG_FTWDT010_BASE;
30
31 debug("Activating WDT..\n");
32
33 /* Check if disabled */
34 if (readl(&wd->wdcr) & ~FTWDT010_WDCR_ENABLE) {
35 printf("sorry, watchdog is disabled\n");
36 return -1;
37 }
38
39 /*
40 * In a 66MHz system,
41 * if you set WDLOAD as 0x03EF1480 (66000000)
42 * the reset timer is 1 second.
43 */
44 reg = FTWDT010_WDLOAD(timeout * FTWDT010_TIMEOUT_FACTOR);
45
46 writel(reg, &wd->wdload);
47
48 return 0;
49}
50
Macpaul Lin04c2dd82011-04-12 13:04:02 +080051void ftwdt010_wdt_reset(void)
Macpaul Lin90969632011-01-26 18:46:28 +080052{
53 struct ftwdt010_wdt *wd = (struct ftwdt010_wdt *)CONFIG_FTWDT010_BASE;
54
55 /* clear control register */
56 writel(0, &wd->wdcr);
57
58 /* Write Magic number */
59 writel(FTWDT010_WDRESTART_MAGIC, &wd->wdrestart);
60
61 /* Enable WDT */
62 writel((FTWDT010_WDCR_RST | FTWDT010_WDCR_ENABLE), &wd->wdcr);
63}
64
Macpaul Lin04c2dd82011-04-12 13:04:02 +080065void ftwdt010_wdt_disable(void)
Macpaul Lin90969632011-01-26 18:46:28 +080066{
67 struct ftwdt010_wdt *wd = (struct ftwdt010_wdt *)CONFIG_FTWDT010_BASE;
68
69 debug("Deactivating WDT..\n");
70
71 /*
72 * It was defined with CONFIG_WATCHDOG_NOWAYOUT in Linux
73 *
74 * Shut off the timer.
75 * Lock it in if it's a module and we defined ...NOWAYOUT
76 */
77 writel(0, &wd->wdcr);
78}
79
Macpaul Lin04c2dd82011-04-12 13:04:02 +080080#if defined(CONFIG_HW_WATCHDOG)
81void hw_watchdog_reset(void)
Macpaul Lin90969632011-01-26 18:46:28 +080082{
83 ftwdt010_wdt_reset();
84}
85
86void hw_watchdog_init(void)
87{
88 /* set timer in ms */
89 ftwdt010_wdt_settimeout(CONFIG_FTWDT010_HW_TIMEOUT * 1000);
90}
Macpaul Lin04c2dd82011-04-12 13:04:02 +080091#endif