Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
v6.9.4
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * mpc8xxx_wdt.c - MPC8xx/MPC83xx/MPC86xx watchdog userspace interface
  4 *
  5 * Authors: Dave Updegraff <dave@cray.org>
  6 *	    Kumar Gala <galak@kernel.crashing.org>
  7 *		Attribution: from 83xx_wst: Florian Schirmer <jolt@tuxbox.org>
  8 *				..and from sc520_wdt
  9 * Copyright (c) 2008  MontaVista Software, Inc.
 10 *                     Anton Vorontsov <avorontsov@ru.mvista.com>
 11 *
 12 * Note: it appears that you can only actually ENABLE or DISABLE the thing
 13 * once after POR. Once enabled, you cannot disable, and vice versa.
 
 
 
 
 
 14 */
 15
 
 
 16#include <linux/fs.h>
 17#include <linux/init.h>
 18#include <linux/kernel.h>
 19#include <linux/of.h>
 20#include <linux/platform_device.h>
 
 
 21#include <linux/module.h>
 22#include <linux/watchdog.h>
 23#include <linux/io.h>
 24#include <linux/uaccess.h>
 25#include <sysdev/fsl_soc.h>
 26
 27#define WATCHDOG_TIMEOUT 10
 28
 29struct mpc8xxx_wdt {
 30	__be32 res0;
 31	__be32 swcrr; /* System watchdog control register */
 32#define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */
 33#define SWCRR_SWF  0x00000008 /* Software Watchdog Freeze (mpc8xx). */
 34#define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */
 35#define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/
 36#define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */
 37	__be32 swcnr; /* System watchdog count register */
 38	u8 res1[2];
 39	__be16 swsrr; /* System watchdog service register */
 40	u8 res2[0xF0];
 41};
 42
 43struct mpc8xxx_wdt_type {
 44	int prescaler;
 45	bool hw_enabled;
 46	u32 rsr_mask;
 47};
 48
 49struct mpc8xxx_wdt_ddata {
 50	struct mpc8xxx_wdt __iomem *base;
 51	struct watchdog_device wdd;
 
 52	spinlock_t lock;
 53	u16 swtc;
 54};
 55
 56static u16 timeout;
 57module_param(timeout, ushort, 0);
 58MODULE_PARM_DESC(timeout,
 59	"Watchdog timeout in seconds. (1<timeout<65535, default="
 60	__MODULE_STRING(WATCHDOG_TIMEOUT) ")");
 61
 62static bool reset = 1;
 63module_param(reset, bool, 0);
 64MODULE_PARM_DESC(reset,
 65	"Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset");
 66
 67static bool nowayout = WATCHDOG_NOWAYOUT;
 68module_param(nowayout, bool, 0);
 69MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
 70		 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
 71
 72static void mpc8xxx_wdt_keepalive(struct mpc8xxx_wdt_ddata *ddata)
 73{
 74	/* Ping the WDT */
 75	spin_lock(&ddata->lock);
 76	out_be16(&ddata->base->swsrr, 0x556c);
 77	out_be16(&ddata->base->swsrr, 0xaa39);
 78	spin_unlock(&ddata->lock);
 79}
 80
 
 
 
 
 
 
 
 
 
 81static int mpc8xxx_wdt_start(struct watchdog_device *w)
 82{
 83	struct mpc8xxx_wdt_ddata *ddata =
 84		container_of(w, struct mpc8xxx_wdt_ddata, wdd);
 85	u32 tmp = in_be32(&ddata->base->swcrr);
 86
 87	/* Good, fire up the show */
 88	tmp &= ~(SWCRR_SWTC | SWCRR_SWF | SWCRR_SWEN | SWCRR_SWRI | SWCRR_SWPR);
 89	tmp |= SWCRR_SWEN | SWCRR_SWPR | (ddata->swtc << 16);
 90
 
 91	if (reset)
 92		tmp |= SWCRR_SWRI;
 93
 94	out_be32(&ddata->base->swcrr, tmp);
 95
 96	tmp = in_be32(&ddata->base->swcrr);
 97	if (!(tmp & SWCRR_SWEN))
 98		return -EOPNOTSUPP;
 99
100	ddata->swtc = tmp >> 16;
101	set_bit(WDOG_HW_RUNNING, &ddata->wdd.status);
102
103	return 0;
104}
105
106static int mpc8xxx_wdt_ping(struct watchdog_device *w)
107{
108	struct mpc8xxx_wdt_ddata *ddata =
109		container_of(w, struct mpc8xxx_wdt_ddata, wdd);
110
111	mpc8xxx_wdt_keepalive(ddata);
112	return 0;
113}
114
 
 
 
 
 
 
 
 
 
115static struct watchdog_info mpc8xxx_wdt_info = {
116	.options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT,
117	.firmware_version = 1,
118	.identity = "MPC8xxx",
119};
120
121static const struct watchdog_ops mpc8xxx_wdt_ops = {
122	.owner = THIS_MODULE,
123	.start = mpc8xxx_wdt_start,
124	.ping = mpc8xxx_wdt_ping,
 
125};
126
127static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
128{
129	int ret;
130	struct resource *res;
131	const struct mpc8xxx_wdt_type *wdt_type;
132	struct mpc8xxx_wdt_ddata *ddata;
133	u32 freq = fsl_get_sys_freq();
134	bool enabled;
135	struct device *dev = &ofdev->dev;
136
137	wdt_type = of_device_get_match_data(dev);
138	if (!wdt_type)
139		return -EINVAL;
140
141	if (!freq || freq == -1)
142		return -EINVAL;
143
144	ddata = devm_kzalloc(dev, sizeof(*ddata), GFP_KERNEL);
145	if (!ddata)
146		return -ENOMEM;
147
148	ddata->base = devm_platform_ioremap_resource(ofdev, 0);
 
149	if (IS_ERR(ddata->base))
150		return PTR_ERR(ddata->base);
151
152	enabled = in_be32(&ddata->base->swcrr) & SWCRR_SWEN;
153	if (!enabled && wdt_type->hw_enabled) {
154		dev_info(dev, "could not be enabled in software\n");
155		return -ENODEV;
156	}
157
158	res = platform_get_resource(ofdev, IORESOURCE_MEM, 1);
159	if (res) {
160		bool status;
161		u32 __iomem *rsr = ioremap(res->start, resource_size(res));
162
163		if (!rsr)
164			return -ENOMEM;
165
166		status = in_be32(rsr) & wdt_type->rsr_mask;
167		ddata->wdd.bootstatus = status ? WDIOF_CARDRESET : 0;
168		 /* clear reset status bits related to watchdog timer */
169		out_be32(rsr, wdt_type->rsr_mask);
170		iounmap(rsr);
171
172		dev_info(dev, "Last boot was %scaused by watchdog\n",
173			 status ? "" : "not ");
174	}
175
176	spin_lock_init(&ddata->lock);
 
 
177
178	ddata->wdd.info = &mpc8xxx_wdt_info;
179	ddata->wdd.ops = &mpc8xxx_wdt_ops;
180
181	ddata->wdd.timeout = WATCHDOG_TIMEOUT;
182	watchdog_init_timeout(&ddata->wdd, timeout, dev);
 
 
183
184	watchdog_set_nowayout(&ddata->wdd, nowayout);
185
186	ddata->swtc = min(ddata->wdd.timeout * freq / wdt_type->prescaler,
187			  0xffffU);
 
 
 
 
 
 
188
189	/*
190	 * If the watchdog was previously enabled or we're running on
191	 * MPC8xxx, we should ping the wdt from the kernel until the
192	 * userspace handles it.
193	 */
194	if (enabled)
195		mpc8xxx_wdt_start(&ddata->wdd);
196
197	ddata->wdd.max_hw_heartbeat_ms = (ddata->swtc * wdt_type->prescaler) /
198					 (freq / 1000);
199	ddata->wdd.min_timeout = ddata->wdd.max_hw_heartbeat_ms / 1000;
200	if (ddata->wdd.timeout < ddata->wdd.min_timeout)
201		ddata->wdd.timeout = ddata->wdd.min_timeout;
202
203	ret = devm_watchdog_register_device(dev, &ddata->wdd);
204	if (ret)
205		return ret;
206
207	dev_info(dev,
208		 "WDT driver for MPC8xxx initialized. mode:%s timeout=%d sec\n",
209		 reset ? "reset" : "interrupt", ddata->wdd.timeout);
 
210
211	platform_set_drvdata(ofdev, ddata);
212	return 0;
213}
214
215static const struct of_device_id mpc8xxx_wdt_match[] = {
216	{
217		.compatible = "mpc83xx_wdt",
218		.data = &(struct mpc8xxx_wdt_type) {
219			.prescaler = 0x10000,
220			.rsr_mask = BIT(3), /* RSR Bit SWRS */
221		},
222	},
223	{
224		.compatible = "fsl,mpc8610-wdt",
225		.data = &(struct mpc8xxx_wdt_type) {
226			.prescaler = 0x10000,
227			.hw_enabled = true,
228			.rsr_mask = BIT(20), /* RSTRSCR Bit WDT_RR */
229		},
230	},
231	{
232		.compatible = "fsl,mpc823-wdt",
233		.data = &(struct mpc8xxx_wdt_type) {
234			.prescaler = 0x800,
235			.hw_enabled = true,
236			.rsr_mask = BIT(28), /* RSR Bit SWRS */
237		},
238	},
239	{},
240};
241MODULE_DEVICE_TABLE(of, mpc8xxx_wdt_match);
242
243static struct platform_driver mpc8xxx_wdt_driver = {
244	.probe		= mpc8xxx_wdt_probe,
 
245	.driver = {
246		.name = "mpc8xxx_wdt",
247		.of_match_table = mpc8xxx_wdt_match,
248	},
249};
250
251static int __init mpc8xxx_wdt_init(void)
252{
253	return platform_driver_register(&mpc8xxx_wdt_driver);
254}
255arch_initcall(mpc8xxx_wdt_init);
256
257static void __exit mpc8xxx_wdt_exit(void)
258{
259	platform_driver_unregister(&mpc8xxx_wdt_driver);
260}
261module_exit(mpc8xxx_wdt_exit);
262
263MODULE_AUTHOR("Dave Updegraff, Kumar Gala");
264MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx "
265		   "uProcessors");
266MODULE_LICENSE("GPL");
v4.6
 
  1/*
  2 * mpc8xxx_wdt.c - MPC8xx/MPC83xx/MPC86xx watchdog userspace interface
  3 *
  4 * Authors: Dave Updegraff <dave@cray.org>
  5 *	    Kumar Gala <galak@kernel.crashing.org>
  6 *		Attribution: from 83xx_wst: Florian Schirmer <jolt@tuxbox.org>
  7 *				..and from sc520_wdt
  8 * Copyright (c) 2008  MontaVista Software, Inc.
  9 *                     Anton Vorontsov <avorontsov@ru.mvista.com>
 10 *
 11 * Note: it appears that you can only actually ENABLE or DISABLE the thing
 12 * once after POR. Once enabled, you cannot disable, and vice versa.
 13 *
 14 * This program is free software; you can redistribute  it and/or modify it
 15 * under  the terms of  the GNU General  Public License as published by the
 16 * Free Software Foundation;  either version 2 of the  License, or (at your
 17 * option) any later version.
 18 */
 19
 20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 21
 22#include <linux/fs.h>
 23#include <linux/init.h>
 24#include <linux/kernel.h>
 25#include <linux/timer.h>
 26#include <linux/miscdevice.h>
 27#include <linux/of_address.h>
 28#include <linux/of_platform.h>
 29#include <linux/module.h>
 30#include <linux/watchdog.h>
 31#include <linux/io.h>
 32#include <linux/uaccess.h>
 33#include <sysdev/fsl_soc.h>
 34
 
 
 35struct mpc8xxx_wdt {
 36	__be32 res0;
 37	__be32 swcrr; /* System watchdog control register */
 38#define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */
 
 39#define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */
 40#define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/
 41#define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */
 42	__be32 swcnr; /* System watchdog count register */
 43	u8 res1[2];
 44	__be16 swsrr; /* System watchdog service register */
 45	u8 res2[0xF0];
 46};
 47
 48struct mpc8xxx_wdt_type {
 49	int prescaler;
 50	bool hw_enabled;
 
 51};
 52
 53struct mpc8xxx_wdt_ddata {
 54	struct mpc8xxx_wdt __iomem *base;
 55	struct watchdog_device wdd;
 56	struct timer_list timer;
 57	spinlock_t lock;
 
 58};
 59
 60static u16 timeout = 0xffff;
 61module_param(timeout, ushort, 0);
 62MODULE_PARM_DESC(timeout,
 63	"Watchdog timeout in ticks. (0<timeout<65536, default=65535)");
 
 64
 65static bool reset = 1;
 66module_param(reset, bool, 0);
 67MODULE_PARM_DESC(reset,
 68	"Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset");
 69
 70static bool nowayout = WATCHDOG_NOWAYOUT;
 71module_param(nowayout, bool, 0);
 72MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
 73		 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
 74
 75static void mpc8xxx_wdt_keepalive(struct mpc8xxx_wdt_ddata *ddata)
 76{
 77	/* Ping the WDT */
 78	spin_lock(&ddata->lock);
 79	out_be16(&ddata->base->swsrr, 0x556c);
 80	out_be16(&ddata->base->swsrr, 0xaa39);
 81	spin_unlock(&ddata->lock);
 82}
 83
 84static void mpc8xxx_wdt_timer_ping(unsigned long arg)
 85{
 86	struct mpc8xxx_wdt_ddata *ddata = (void *)arg;
 87
 88	mpc8xxx_wdt_keepalive(ddata);
 89	/* We're pinging it twice faster than needed, just to be sure. */
 90	mod_timer(&ddata->timer, jiffies + HZ * ddata->wdd.timeout / 2);
 91}
 92
 93static int mpc8xxx_wdt_start(struct watchdog_device *w)
 94{
 95	struct mpc8xxx_wdt_ddata *ddata =
 96		container_of(w, struct mpc8xxx_wdt_ddata, wdd);
 
 97
 98	u32 tmp = SWCRR_SWEN | SWCRR_SWPR;
 
 
 99
100	/* Good, fire up the show */
101	if (reset)
102		tmp |= SWCRR_SWRI;
103
104	tmp |= timeout << 16;
105
106	out_be32(&ddata->base->swcrr, tmp);
 
 
107
108	del_timer_sync(&ddata->timer);
 
109
110	return 0;
111}
112
113static int mpc8xxx_wdt_ping(struct watchdog_device *w)
114{
115	struct mpc8xxx_wdt_ddata *ddata =
116		container_of(w, struct mpc8xxx_wdt_ddata, wdd);
117
118	mpc8xxx_wdt_keepalive(ddata);
119	return 0;
120}
121
122static int mpc8xxx_wdt_stop(struct watchdog_device *w)
123{
124	struct mpc8xxx_wdt_ddata *ddata =
125		container_of(w, struct mpc8xxx_wdt_ddata, wdd);
126
127	mod_timer(&ddata->timer, jiffies);
128	return 0;
129}
130
131static struct watchdog_info mpc8xxx_wdt_info = {
132	.options = WDIOF_KEEPALIVEPING,
133	.firmware_version = 1,
134	.identity = "MPC8xxx",
135};
136
137static struct watchdog_ops mpc8xxx_wdt_ops = {
138	.owner = THIS_MODULE,
139	.start = mpc8xxx_wdt_start,
140	.ping = mpc8xxx_wdt_ping,
141	.stop = mpc8xxx_wdt_stop,
142};
143
144static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
145{
146	int ret;
147	struct resource *res;
148	const struct mpc8xxx_wdt_type *wdt_type;
149	struct mpc8xxx_wdt_ddata *ddata;
150	u32 freq = fsl_get_sys_freq();
151	bool enabled;
152	unsigned int timeout_sec;
153
154	wdt_type = of_device_get_match_data(&ofdev->dev);
155	if (!wdt_type)
156		return -EINVAL;
157
158	if (!freq || freq == -1)
159		return -EINVAL;
160
161	ddata = devm_kzalloc(&ofdev->dev, sizeof(*ddata), GFP_KERNEL);
162	if (!ddata)
163		return -ENOMEM;
164
165	res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
166	ddata->base = devm_ioremap_resource(&ofdev->dev, res);
167	if (IS_ERR(ddata->base))
168		return PTR_ERR(ddata->base);
169
170	enabled = in_be32(&ddata->base->swcrr) & SWCRR_SWEN;
171	if (!enabled && wdt_type->hw_enabled) {
172		pr_info("could not be enabled in software\n");
173		return -ENODEV;
174	}
175
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176	spin_lock_init(&ddata->lock);
177	setup_timer(&ddata->timer, mpc8xxx_wdt_timer_ping,
178		    (unsigned long)ddata);
179
180	ddata->wdd.info = &mpc8xxx_wdt_info,
181	ddata->wdd.ops = &mpc8xxx_wdt_ops,
182
183	/* Calculate the timeout in seconds */
184	timeout_sec = (timeout * wdt_type->prescaler) / freq;
185
186	ddata->wdd.timeout = timeout_sec;
187
188	watchdog_set_nowayout(&ddata->wdd, nowayout);
189
190	ret = watchdog_register_device(&ddata->wdd);
191	if (ret) {
192		pr_err("cannot register watchdog device (err=%d)\n", ret);
193		return ret;
194	}
195
196	pr_info("WDT driver for MPC8xxx initialized. mode:%s timeout=%d (%d seconds)\n",
197		reset ? "reset" : "interrupt", timeout, timeout_sec);
198
199	/*
200	 * If the watchdog was previously enabled or we're running on
201	 * MPC8xxx, we should ping the wdt from the kernel until the
202	 * userspace handles it.
203	 */
204	if (enabled)
205		mod_timer(&ddata->timer, jiffies);
206
207	platform_set_drvdata(ofdev, ddata);
208	return 0;
209}
 
 
210
211static int mpc8xxx_wdt_remove(struct platform_device *ofdev)
212{
213	struct mpc8xxx_wdt_ddata *ddata = platform_get_drvdata(ofdev);
214
215	pr_crit("Watchdog removed, expect the %s soon!\n",
216		reset ? "reset" : "machine check exception");
217	del_timer_sync(&ddata->timer);
218	watchdog_unregister_device(&ddata->wdd);
219
 
220	return 0;
221}
222
223static const struct of_device_id mpc8xxx_wdt_match[] = {
224	{
225		.compatible = "mpc83xx_wdt",
226		.data = &(struct mpc8xxx_wdt_type) {
227			.prescaler = 0x10000,
 
228		},
229	},
230	{
231		.compatible = "fsl,mpc8610-wdt",
232		.data = &(struct mpc8xxx_wdt_type) {
233			.prescaler = 0x10000,
234			.hw_enabled = true,
 
235		},
236	},
237	{
238		.compatible = "fsl,mpc823-wdt",
239		.data = &(struct mpc8xxx_wdt_type) {
240			.prescaler = 0x800,
241			.hw_enabled = true,
 
242		},
243	},
244	{},
245};
246MODULE_DEVICE_TABLE(of, mpc8xxx_wdt_match);
247
248static struct platform_driver mpc8xxx_wdt_driver = {
249	.probe		= mpc8xxx_wdt_probe,
250	.remove		= mpc8xxx_wdt_remove,
251	.driver = {
252		.name = "mpc8xxx_wdt",
253		.of_match_table = mpc8xxx_wdt_match,
254	},
255};
256
257static int __init mpc8xxx_wdt_init(void)
258{
259	return platform_driver_register(&mpc8xxx_wdt_driver);
260}
261arch_initcall(mpc8xxx_wdt_init);
262
263static void __exit mpc8xxx_wdt_exit(void)
264{
265	platform_driver_unregister(&mpc8xxx_wdt_driver);
266}
267module_exit(mpc8xxx_wdt_exit);
268
269MODULE_AUTHOR("Dave Updegraff, Kumar Gala");
270MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx "
271		   "uProcessors");
272MODULE_LICENSE("GPL");