1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * PIC32 deadman timer driver
5 * Purna Chandra Mandal <purna.mandal@microchip.com>
6 * Copyright (c) 2016, Microchip Technology Inc.
9 #include <linux/device.h>
10 #include <linux/err.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
15 #include <linux/platform_device.h>
17 #include <linux/watchdog.h>
19 #include <asm/mach-pic32/pic32.h>
21 /* Deadman Timer Regs */
22 #define DMTCON_REG 0x00
23 #define DMTPRECLR_REG 0x10
24 #define DMTCLR_REG 0x20
25 #define DMTSTAT_REG 0x30
26 #define DMTCNT_REG 0x40
27 #define DMTPSCNT_REG 0x60
28 #define DMTPSINTV_REG 0x70
30 /* Deadman Timer Regs fields */
31 #define DMT_ON BIT(15)
32 #define DMT_STEP1_KEY BIT(6)
33 #define DMT_STEP2_KEY BIT(3)
34 #define DMTSTAT_WINOPN BIT(0)
35 #define DMTSTAT_EVENT BIT(5)
36 #define DMTSTAT_BAD2 BIT(6)
37 #define DMTSTAT_BAD1 BIT(7)
39 /* Reset Control Register fields for watchdog */
40 #define RESETCON_DMT_TIMEOUT BIT(5)
47 static inline void dmt_enable(struct pic32_dmt *dmt)
49 writel(DMT_ON, PIC32_SET(dmt->regs + DMTCON_REG));
52 static inline void dmt_disable(struct pic32_dmt *dmt)
54 writel(DMT_ON, PIC32_CLR(dmt->regs + DMTCON_REG));
56 * Cannot touch registers in the CPU cycle following clearing the
62 static inline int dmt_bad_status(struct pic32_dmt *dmt)
66 val = readl(dmt->regs + DMTSTAT_REG);
67 val &= (DMTSTAT_BAD1 | DMTSTAT_BAD2 | DMTSTAT_EVENT);
74 static inline int dmt_keepalive(struct pic32_dmt *dmt)
79 /* set pre-clear key */
80 writel(DMT_STEP1_KEY << 8, dmt->regs + DMTPRECLR_REG);
82 /* wait for DMT window to open */
84 v = readl(dmt->regs + DMTSTAT_REG) & DMTSTAT_WINOPN;
85 if (v == DMTSTAT_WINOPN)
90 writel(DMT_STEP2_KEY, dmt->regs + DMTCLR_REG);
92 /* check whether keys are latched correctly */
93 return dmt_bad_status(dmt);
96 static inline u32 pic32_dmt_get_timeout_secs(struct pic32_dmt *dmt)
100 rate = clk_get_rate(dmt->clk);
102 return readl(dmt->regs + DMTPSCNT_REG) / rate;
107 static inline u32 pic32_dmt_bootstatus(struct pic32_dmt *dmt)
110 void __iomem *rst_base;
112 rst_base = ioremap(PIC32_BASE_RESET, 0x10);
118 writel(RESETCON_DMT_TIMEOUT, PIC32_CLR(rst_base));
121 return v & RESETCON_DMT_TIMEOUT;
124 static int pic32_dmt_start(struct watchdog_device *wdd)
126 struct pic32_dmt *dmt = watchdog_get_drvdata(wdd);
129 return dmt_keepalive(dmt);
132 static int pic32_dmt_stop(struct watchdog_device *wdd)
134 struct pic32_dmt *dmt = watchdog_get_drvdata(wdd);
141 static int pic32_dmt_ping(struct watchdog_device *wdd)
143 struct pic32_dmt *dmt = watchdog_get_drvdata(wdd);
145 return dmt_keepalive(dmt);
148 static const struct watchdog_ops pic32_dmt_fops = {
149 .owner = THIS_MODULE,
150 .start = pic32_dmt_start,
151 .stop = pic32_dmt_stop,
152 .ping = pic32_dmt_ping,
155 static const struct watchdog_info pic32_dmt_ident = {
156 .options = WDIOF_KEEPALIVEPING |
158 .identity = "PIC32 Deadman Timer",
161 static struct watchdog_device pic32_dmt_wdd = {
162 .info = &pic32_dmt_ident,
163 .ops = &pic32_dmt_fops,
166 static int pic32_dmt_probe(struct platform_device *pdev)
168 struct device *dev = &pdev->dev;
170 struct pic32_dmt *dmt;
171 struct watchdog_device *wdd = &pic32_dmt_wdd;
173 dmt = devm_kzalloc(dev, sizeof(*dmt), GFP_KERNEL);
177 dmt->regs = devm_platform_ioremap_resource(pdev, 0);
178 if (IS_ERR(dmt->regs))
179 return PTR_ERR(dmt->regs);
181 dmt->clk = devm_clk_get_enabled(dev, NULL);
182 if (IS_ERR(dmt->clk)) {
183 dev_err(dev, "clk not found\n");
184 return PTR_ERR(dmt->clk);
187 wdd->timeout = pic32_dmt_get_timeout_secs(dmt);
189 dev_err(dev, "failed to read watchdog register timeout\n");
193 dev_info(dev, "timeout %d\n", wdd->timeout);
195 wdd->bootstatus = pic32_dmt_bootstatus(dmt) ? WDIOF_CARDRESET : 0;
197 watchdog_set_nowayout(wdd, WATCHDOG_NOWAYOUT);
198 watchdog_set_drvdata(wdd, dmt);
200 ret = devm_watchdog_register_device(dev, wdd);
204 platform_set_drvdata(pdev, wdd);
208 static const struct of_device_id pic32_dmt_of_ids[] = {
209 { .compatible = "microchip,pic32mzda-dmt",},
212 MODULE_DEVICE_TABLE(of, pic32_dmt_of_ids);
214 static struct platform_driver pic32_dmt_driver = {
215 .probe = pic32_dmt_probe,
218 .of_match_table = of_match_ptr(pic32_dmt_of_ids),
222 module_platform_driver(pic32_dmt_driver);
224 MODULE_AUTHOR("Purna Chandra Mandal <purna.mandal@microchip.com>");
225 MODULE_DESCRIPTION("Microchip PIC32 DMT Driver");
226 MODULE_LICENSE("GPL");