1 // SPDX-License-Identifier: GPL-2.0+
3 * Watchdog driver for the A21 VME CPU Boards
5 * Copyright (C) 2013 MEN Mikro Elektronik Nuernberg GmbH
8 #include <linux/module.h>
9 #include <linux/moduleparam.h>
10 #include <linux/types.h>
11 #include <linux/kernel.h>
12 #include <linux/slab.h>
13 #include <linux/platform_device.h>
14 #include <linux/watchdog.h>
15 #include <linux/uaccess.h>
16 #include <linux/gpio/consumer.h>
17 #include <linux/delay.h>
18 #include <linux/bitops.h>
33 struct watchdog_device wdt
;
34 struct gpio_desc
*gpios
[NUM_GPIOS
];
37 static bool nowayout
= WATCHDOG_NOWAYOUT
;
38 module_param(nowayout
, bool, 0);
39 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
40 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
42 static unsigned int a21_wdt_get_bootstatus(struct a21_wdt_drv
*drv
)
46 reset
|= gpiod_get_value(drv
->gpios
[GPIO_WD_RST0
]) ? (1 << 0) : 0;
47 reset
|= gpiod_get_value(drv
->gpios
[GPIO_WD_RST1
]) ? (1 << 1) : 0;
48 reset
|= gpiod_get_value(drv
->gpios
[GPIO_WD_RST2
]) ? (1 << 2) : 0;
53 static int a21_wdt_start(struct watchdog_device
*wdt
)
55 struct a21_wdt_drv
*drv
= watchdog_get_drvdata(wdt
);
57 gpiod_set_value(drv
->gpios
[GPIO_WD_ENAB
], 1);
62 static int a21_wdt_stop(struct watchdog_device
*wdt
)
64 struct a21_wdt_drv
*drv
= watchdog_get_drvdata(wdt
);
66 gpiod_set_value(drv
->gpios
[GPIO_WD_ENAB
], 0);
71 static int a21_wdt_ping(struct watchdog_device
*wdt
)
73 struct a21_wdt_drv
*drv
= watchdog_get_drvdata(wdt
);
75 gpiod_set_value(drv
->gpios
[GPIO_WD_TRIG
], 0);
77 gpiod_set_value(drv
->gpios
[GPIO_WD_TRIG
], 1);
82 static int a21_wdt_set_timeout(struct watchdog_device
*wdt
,
85 struct a21_wdt_drv
*drv
= watchdog_get_drvdata(wdt
);
87 if (timeout
!= 1 && timeout
!= 30) {
88 dev_err(wdt
->parent
, "Only 1 and 30 allowed as timeout\n");
92 if (timeout
== 30 && wdt
->timeout
== 1) {
94 "Transition from fast to slow mode not allowed\n");
99 gpiod_set_value(drv
->gpios
[GPIO_WD_FAST
], 1);
101 gpiod_set_value(drv
->gpios
[GPIO_WD_FAST
], 0);
103 wdt
->timeout
= timeout
;
108 static const struct watchdog_info a21_wdt_info
= {
109 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
110 .identity
= "MEN A21 Watchdog",
113 static const struct watchdog_ops a21_wdt_ops
= {
114 .owner
= THIS_MODULE
,
115 .start
= a21_wdt_start
,
116 .stop
= a21_wdt_stop
,
117 .ping
= a21_wdt_ping
,
118 .set_timeout
= a21_wdt_set_timeout
,
121 static struct watchdog_device a21_wdt
= {
122 .info
= &a21_wdt_info
,
128 static int a21_wdt_probe(struct platform_device
*pdev
)
130 struct device
*dev
= &pdev
->dev
;
131 struct a21_wdt_drv
*drv
;
132 unsigned int reset
= 0;
137 drv
= devm_kzalloc(dev
, sizeof(struct a21_wdt_drv
), GFP_KERNEL
);
141 num_gpios
= gpiod_count(dev
, NULL
);
142 if (num_gpios
!= NUM_GPIOS
) {
143 dev_err(dev
, "gpios DT property wrong, got %d want %d",
144 num_gpios
, NUM_GPIOS
);
148 /* Request the used GPIOs */
149 for (i
= 0; i
< num_gpios
; i
++) {
150 enum gpiod_flags gflags
;
152 if (i
< GPIO_WD_RST0
)
156 drv
->gpios
[i
] = devm_gpiod_get_index(dev
, NULL
, i
, gflags
);
157 if (IS_ERR(drv
->gpios
[i
]))
158 return PTR_ERR(drv
->gpios
[i
]);
160 gpiod_set_consumer_name(drv
->gpios
[i
], "MEN A21 Watchdog");
163 * Retrieve the initial value from the GPIOs that should be
164 * output, then set up the line as output with that value.
166 if (i
< GPIO_WD_RST0
) {
169 val
= gpiod_get_value(drv
->gpios
[i
]);
170 gpiod_direction_output(drv
->gpios
[i
], val
);
174 watchdog_init_timeout(&a21_wdt
, 30, dev
);
175 watchdog_set_nowayout(&a21_wdt
, nowayout
);
176 watchdog_set_drvdata(&a21_wdt
, drv
);
177 a21_wdt
.parent
= dev
;
179 reset
= a21_wdt_get_bootstatus(drv
);
181 a21_wdt
.bootstatus
|= WDIOF_EXTERN1
;
183 a21_wdt
.bootstatus
|= WDIOF_CARDRESET
;
185 a21_wdt
.bootstatus
|= WDIOF_POWERUNDER
;
187 a21_wdt
.bootstatus
|= WDIOF_EXTERN2
;
190 dev_set_drvdata(dev
, drv
);
192 ret
= devm_watchdog_register_device(dev
, &a21_wdt
);
196 dev_info(dev
, "MEN A21 watchdog timer driver enabled\n");
201 static void a21_wdt_shutdown(struct platform_device
*pdev
)
203 struct a21_wdt_drv
*drv
= dev_get_drvdata(&pdev
->dev
);
205 gpiod_set_value(drv
->gpios
[GPIO_WD_ENAB
], 0);
208 static const struct of_device_id a21_wdt_ids
[] = {
209 { .compatible
= "men,a021-wdt" },
212 MODULE_DEVICE_TABLE(of
, a21_wdt_ids
);
214 static struct platform_driver a21_wdt_driver
= {
215 .probe
= a21_wdt_probe
,
216 .shutdown
= a21_wdt_shutdown
,
218 .name
= "a21-watchdog",
219 .of_match_table
= a21_wdt_ids
,
223 module_platform_driver(a21_wdt_driver
);
225 MODULE_AUTHOR("MEN Mikro Elektronik");
226 MODULE_DESCRIPTION("MEN A21 Watchdog");
227 MODULE_LICENSE("GPL");
228 MODULE_ALIAS("platform:a21-watchdog");