1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015 Broadcom Corporation
8 #include <linux/init.h>
10 #include <linux/module.h>
12 #include <linux/platform_device.h>
14 #include <linux/watchdog.h>
16 #define WDT_START_1 0xff00
17 #define WDT_START_2 0x00ff
18 #define WDT_STOP_1 0xee00
19 #define WDT_STOP_2 0x00ee
21 #define WDT_TIMEOUT_REG 0x0
22 #define WDT_CMD_REG 0x4
24 #define WDT_MIN_TIMEOUT 1 /* seconds */
25 #define WDT_DEFAULT_TIMEOUT 30 /* seconds */
26 #define WDT_DEFAULT_RATE 27000000
28 struct bcm7038_watchdog
{
30 struct watchdog_device wdd
;
35 static bool nowayout
= WATCHDOG_NOWAYOUT
;
37 static void bcm7038_wdt_set_timeout_reg(struct watchdog_device
*wdog
)
39 struct bcm7038_watchdog
*wdt
= watchdog_get_drvdata(wdog
);
42 timeout
= wdt
->rate
* wdog
->timeout
;
44 writel(timeout
, wdt
->base
+ WDT_TIMEOUT_REG
);
47 static int bcm7038_wdt_ping(struct watchdog_device
*wdog
)
49 struct bcm7038_watchdog
*wdt
= watchdog_get_drvdata(wdog
);
51 writel(WDT_START_1
, wdt
->base
+ WDT_CMD_REG
);
52 writel(WDT_START_2
, wdt
->base
+ WDT_CMD_REG
);
57 static int bcm7038_wdt_start(struct watchdog_device
*wdog
)
59 bcm7038_wdt_set_timeout_reg(wdog
);
60 bcm7038_wdt_ping(wdog
);
65 static int bcm7038_wdt_stop(struct watchdog_device
*wdog
)
67 struct bcm7038_watchdog
*wdt
= watchdog_get_drvdata(wdog
);
69 writel(WDT_STOP_1
, wdt
->base
+ WDT_CMD_REG
);
70 writel(WDT_STOP_2
, wdt
->base
+ WDT_CMD_REG
);
75 static int bcm7038_wdt_set_timeout(struct watchdog_device
*wdog
,
78 /* Can't modify timeout value if watchdog timer is running */
79 bcm7038_wdt_stop(wdog
);
81 bcm7038_wdt_start(wdog
);
86 static unsigned int bcm7038_wdt_get_timeleft(struct watchdog_device
*wdog
)
88 struct bcm7038_watchdog
*wdt
= watchdog_get_drvdata(wdog
);
91 time_left
= readl(wdt
->base
+ WDT_CMD_REG
);
93 return time_left
/ wdt
->rate
;
96 static const struct watchdog_info bcm7038_wdt_info
= {
97 .identity
= "Broadcom BCM7038 Watchdog Timer",
98 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
|
102 static const struct watchdog_ops bcm7038_wdt_ops
= {
103 .owner
= THIS_MODULE
,
104 .start
= bcm7038_wdt_start
,
105 .stop
= bcm7038_wdt_stop
,
106 .set_timeout
= bcm7038_wdt_set_timeout
,
107 .get_timeleft
= bcm7038_wdt_get_timeleft
,
110 static int bcm7038_wdt_probe(struct platform_device
*pdev
)
112 struct device
*dev
= &pdev
->dev
;
113 struct bcm7038_watchdog
*wdt
;
114 struct resource
*res
;
117 wdt
= devm_kzalloc(dev
, sizeof(*wdt
), GFP_KERNEL
);
121 platform_set_drvdata(pdev
, wdt
);
123 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
124 wdt
->base
= devm_ioremap_resource(dev
, res
);
125 if (IS_ERR(wdt
->base
))
126 return PTR_ERR(wdt
->base
);
128 wdt
->clk
= devm_clk_get(dev
, NULL
);
129 /* If unable to get clock, use default frequency */
130 if (!IS_ERR(wdt
->clk
)) {
131 err
= clk_prepare_enable(wdt
->clk
);
134 wdt
->rate
= clk_get_rate(wdt
->clk
);
135 /* Prevent divide-by-zero exception */
137 wdt
->rate
= WDT_DEFAULT_RATE
;
139 wdt
->rate
= WDT_DEFAULT_RATE
;
143 wdt
->wdd
.info
= &bcm7038_wdt_info
;
144 wdt
->wdd
.ops
= &bcm7038_wdt_ops
;
145 wdt
->wdd
.min_timeout
= WDT_MIN_TIMEOUT
;
146 wdt
->wdd
.timeout
= WDT_DEFAULT_TIMEOUT
;
147 wdt
->wdd
.max_timeout
= 0xffffffff / wdt
->rate
;
148 wdt
->wdd
.parent
= dev
;
149 watchdog_set_drvdata(&wdt
->wdd
, wdt
);
151 err
= watchdog_register_device(&wdt
->wdd
);
153 dev_err(dev
, "Failed to register watchdog device\n");
154 clk_disable_unprepare(wdt
->clk
);
158 dev_info(dev
, "Registered BCM7038 Watchdog\n");
163 static int bcm7038_wdt_remove(struct platform_device
*pdev
)
165 struct bcm7038_watchdog
*wdt
= platform_get_drvdata(pdev
);
168 bcm7038_wdt_stop(&wdt
->wdd
);
170 watchdog_unregister_device(&wdt
->wdd
);
171 clk_disable_unprepare(wdt
->clk
);
176 #ifdef CONFIG_PM_SLEEP
177 static int bcm7038_wdt_suspend(struct device
*dev
)
179 struct bcm7038_watchdog
*wdt
= dev_get_drvdata(dev
);
181 if (watchdog_active(&wdt
->wdd
))
182 return bcm7038_wdt_stop(&wdt
->wdd
);
187 static int bcm7038_wdt_resume(struct device
*dev
)
189 struct bcm7038_watchdog
*wdt
= dev_get_drvdata(dev
);
191 if (watchdog_active(&wdt
->wdd
))
192 return bcm7038_wdt_start(&wdt
->wdd
);
198 static SIMPLE_DEV_PM_OPS(bcm7038_wdt_pm_ops
, bcm7038_wdt_suspend
,
201 static void bcm7038_wdt_shutdown(struct platform_device
*pdev
)
203 struct bcm7038_watchdog
*wdt
= platform_get_drvdata(pdev
);
205 if (watchdog_active(&wdt
->wdd
))
206 bcm7038_wdt_stop(&wdt
->wdd
);
209 static const struct of_device_id bcm7038_wdt_match
[] = {
210 { .compatible
= "brcm,bcm7038-wdt" },
213 MODULE_DEVICE_TABLE(of
, bcm7038_wdt_match
);
215 static struct platform_driver bcm7038_wdt_driver
= {
216 .probe
= bcm7038_wdt_probe
,
217 .remove
= bcm7038_wdt_remove
,
218 .shutdown
= bcm7038_wdt_shutdown
,
220 .name
= "bcm7038-wdt",
221 .of_match_table
= bcm7038_wdt_match
,
222 .pm
= &bcm7038_wdt_pm_ops
,
225 module_platform_driver(bcm7038_wdt_driver
);
227 module_param(nowayout
, bool, 0);
228 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
229 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
230 MODULE_LICENSE("GPL");
231 MODULE_DESCRIPTION("Driver for Broadcom 7038 SoCs Watchdog");
232 MODULE_AUTHOR("Justin Chen");