Release 4.7 drivers/watchdog/pnx4008_wdt.c
/*
* drivers/char/watchdog/pnx4008_wdt.c
*
* Watchdog driver for PNX4008 board
*
* Authors: Dmitry Chigirev <source@mvista.com>,
* Vitaly Wool <vitalywool@gmail.com>
* Based on sa1100 driver,
* Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
*
* 2005-2006 (c) MontaVista Software, Inc.
*
* (C) 2012 Wolfram Sang, Pengutronix
*
* This file is licensed under the terms of the GNU General Public License
* version 2. This program is licensed "as is" without any warranty of any
* kind, whether express or implied.
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/watchdog.h>
#include <linux/platform_device.h>
#include <linux/clk.h>
#include <linux/spinlock.h>
#include <linux/io.h>
#include <linux/slab.h>
#include <linux/err.h>
#include <linux/of.h>
#include <linux/delay.h>
#include <linux/reboot.h>
#include <mach/hardware.h>
/* WatchDog Timer - Chapter 23 Page 207 */
#define DEFAULT_HEARTBEAT 19
#define MAX_HEARTBEAT 60
/* Watchdog timer register set definition */
#define WDTIM_INT(p) ((p) + 0x0)
#define WDTIM_CTRL(p) ((p) + 0x4)
#define WDTIM_COUNTER(p) ((p) + 0x8)
#define WDTIM_MCTRL(p) ((p) + 0xC)
#define WDTIM_MATCH0(p) ((p) + 0x10)
#define WDTIM_EMR(p) ((p) + 0x14)
#define WDTIM_PULSE(p) ((p) + 0x18)
#define WDTIM_RES(p) ((p) + 0x1C)
/* WDTIM_INT bit definitions */
#define MATCH_INT 1
/* WDTIM_CTRL bit definitions */
#define COUNT_ENAB 1
#define RESET_COUNT (1 << 1)
#define DEBUG_EN (1 << 2)
/* WDTIM_MCTRL bit definitions */
#define MR0_INT 1
#undef RESET_COUNT0
#define RESET_COUNT0 (1 << 2)
#define STOP_COUNT0 (1 << 2)
#define M_RES1 (1 << 3)
#define M_RES2 (1 << 4)
#define RESFRC1 (1 << 5)
#define RESFRC2 (1 << 6)
/* WDTIM_EMR bit definitions */
#define EXT_MATCH0 1
#define MATCH_OUTPUT_HIGH (2 << 4)
/*a MATCH_CTRL setting */
/* WDTIM_RES bit definitions */
#define WDOG_RESET 1
/* read only */
#define WDOG_COUNTER_RATE 13000000
/*the counter clock is 13 MHz fixed */
static bool nowayout = WATCHDOG_NOWAYOUT;
static unsigned int heartbeat = DEFAULT_HEARTBEAT;
static DEFINE_SPINLOCK(io_lock);
static void __iomem *wdt_base;
static struct clk *wdt_clk;
static int pnx4008_wdt_start(struct watchdog_device *wdd)
{
spin_lock(&io_lock);
/* stop counter, initiate counter reset */
writel(RESET_COUNT, WDTIM_CTRL(wdt_base));
/*wait for reset to complete. 100% guarantee event */
while (readl(WDTIM_COUNTER(wdt_base)))
cpu_relax();
/* internal and external reset, stop after that */
writel(M_RES2 | STOP_COUNT0 | RESET_COUNT0, WDTIM_MCTRL(wdt_base));
/* configure match output */
writel(MATCH_OUTPUT_HIGH, WDTIM_EMR(wdt_base));
/* clear interrupt, just in case */
writel(MATCH_INT, WDTIM_INT(wdt_base));
/* the longest pulse period 65541/(13*10^6) seconds ~ 5 ms. */
writel(0xFFFF, WDTIM_PULSE(wdt_base));
writel(wdd->timeout * WDOG_COUNTER_RATE, WDTIM_MATCH0(wdt_base));
/*enable counter, stop when debugger active */
writel(COUNT_ENAB | DEBUG_EN, WDTIM_CTRL(wdt_base));
spin_unlock(&io_lock);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vitaly wool | vitaly wool | 94 | 74.60% | 2 | 40.00% |
wolfram sang | wolfram sang | 20 | 15.87% | 2 | 40.00% |
wim van sebroeck | wim van sebroeck | 12 | 9.52% | 1 | 20.00% |
| Total | 126 | 100.00% | 5 | 100.00% |
static int pnx4008_wdt_stop(struct watchdog_device *wdd)
{
spin_lock(&io_lock);
writel(0, WDTIM_CTRL(wdt_base)); /*stop counter */
spin_unlock(&io_lock);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vitaly wool | vitaly wool | 17 | 45.95% | 1 | 25.00% |
wim van sebroeck | wim van sebroeck | 12 | 32.43% | 1 | 25.00% |
wolfram sang | wolfram sang | 8 | 21.62% | 2 | 50.00% |
| Total | 37 | 100.00% | 4 | 100.00% |
static int pnx4008_wdt_set_timeout(struct watchdog_device *wdd,
unsigned int new_timeout)
{
wdd->timeout = new_timeout;
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vitaly wool | vitaly wool | 10 | 41.67% | 1 | 33.33% |
wolfram sang | wolfram sang | 8 | 33.33% | 1 | 33.33% |
wim van sebroeck | wim van sebroeck | 6 | 25.00% | 1 | 33.33% |
| Total | 24 | 100.00% | 3 | 100.00% |
static int pnx4008_restart_handler(struct watchdog_device *wdd,
unsigned long mode, void *cmd)
{
const char *boot_cmd = cmd;
/*
* Verify if a "cmd" passed from the userspace program rebooting
* the system; if available, handle it.
* - For details, see the 'reboot' syscall in kernel/reboot.c
* - If the received "cmd" is not supported, use the default mode.
*/
if (boot_cmd) {
if (boot_cmd[0] == 'h')
mode = REBOOT_HARD;
else if (boot_cmd[0] == 's')
mode = REBOOT_SOFT;
}
if (mode == REBOOT_SOFT) {
/* Force match output active */
writel(EXT_MATCH0, WDTIM_EMR(wdt_base));
/* Internal reset on match output (RESOUT_N not asserted) */
writel(M_RES1, WDTIM_MCTRL(wdt_base));
} else {
/* Instant assert of RESETOUT_N with pulse length 1mS */
writel(13000, WDTIM_PULSE(wdt_base));
writel(M_RES2 | RESFRC1 | RESFRC2, WDTIM_MCTRL(wdt_base));
}
/* Wait for watchdog to reset system */
mdelay(1000);
return NOTIFY_DONE;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
sylvain lemieux | sylvain lemieux | 127 | 100.00% | 3 | 100.00% |
| Total | 127 | 100.00% | 3 | 100.00% |
static const struct watchdog_info pnx4008_wdt_ident = {
.options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE |
WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
.identity = "PNX4008 Watchdog",
};
static const struct watchdog_ops pnx4008_wdt_ops = {
.owner = THIS_MODULE,
.start = pnx4008_wdt_start,
.stop = pnx4008_wdt_stop,
.set_timeout = pnx4008_wdt_set_timeout,
.restart = pnx4008_restart_handler,
};
static struct watchdog_device pnx4008_wdd = {
.info = &pnx4008_wdt_ident,
.ops = &pnx4008_wdt_ops,
.timeout = DEFAULT_HEARTBEAT,
.min_timeout = 1,
.max_timeout = MAX_HEARTBEAT,
};
static int pnx4008_wdt_probe(struct platform_device *pdev)
{
struct resource *r;
int ret = 0;
watchdog_init_timeout(&pnx4008_wdd, heartbeat, &pdev->dev);
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
wdt_base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(wdt_base))
return PTR_ERR(wdt_base);
wdt_clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(wdt_clk))
return PTR_ERR(wdt_clk);
ret = clk_prepare_enable(wdt_clk);
if (ret)
return ret;
pnx4008_wdd.bootstatus = (readl(WDTIM_RES(wdt_base)) & WDOG_RESET) ?
WDIOF_CARDRESET : 0;
pnx4008_wdd.parent = &pdev->dev;
watchdog_set_nowayout(&pnx4008_wdd, nowayout);
watchdog_set_restart_priority(&pnx4008_wdd, 128);
pnx4008_wdt_stop(&pnx4008_wdd); /* disable for now */
ret = watchdog_register_device(&pnx4008_wdd);
if (ret < 0) {
dev_err(&pdev->dev, "cannot register watchdog device\n");
goto disable_clk;
}
dev_info(&pdev->dev, "heartbeat %d sec\n", pnx4008_wdd.timeout);
return 0;
disable_clk:
clk_disable_unprepare(wdt_clk);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vitaly wool | vitaly wool | 76 | 35.02% | 1 | 6.25% |
wolfram sang | wolfram sang | 74 | 34.10% | 3 | 18.75% |
fabio porcedda | fabio porcedda | 14 | 6.45% | 1 | 6.25% |
russell king | russell king | 10 | 4.61% | 2 | 12.50% |
sylvain lemieux | sylvain lemieux | 9 | 4.15% | 2 | 12.50% |
pratyush anand | pratyush anand | 9 | 4.15% | 1 | 6.25% |
thierry reding | thierry reding | 8 | 3.69% | 1 | 6.25% |
akinobu mita | akinobu mita | 7 | 3.23% | 1 | 6.25% |
jingoo han | jingoo han | 4 | 1.84% | 1 | 6.25% |
julia lawall | julia lawall | 2 | 0.92% | 1 | 6.25% |
h hartley sweeten | h hartley sweeten | 2 | 0.92% | 1 | 6.25% |
vladimir zapolskiy | vladimir zapolskiy | 2 | 0.92% | 1 | 6.25% |
| Total | 217 | 100.00% | 16 | 100.00% |
static int pnx4008_wdt_remove(struct platform_device *pdev)
{
watchdog_unregister_device(&pnx4008_wdd);
clk_disable_unprepare(wdt_clk);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vitaly wool | vitaly wool | 21 | 84.00% | 1 | 25.00% |
wolfram sang | wolfram sang | 2 | 8.00% | 1 | 25.00% |
wim van sebroeck | wim van sebroeck | 1 | 4.00% | 1 | 25.00% |
vladimir zapolskiy | vladimir zapolskiy | 1 | 4.00% | 1 | 25.00% |
| Total | 25 | 100.00% | 4 | 100.00% |
#ifdef CONFIG_OF
static const struct of_device_id pnx4008_wdt_match[] = {
{ .compatible = "nxp,pnx4008-wdt" },
{ }
};
MODULE_DEVICE_TABLE(of, pnx4008_wdt_match);
#endif
static struct platform_driver platform_wdt_driver = {
.driver = {
.name = "pnx4008-watchdog",
.of_match_table = of_match_ptr(pnx4008_wdt_match),
},
.probe = pnx4008_wdt_probe,
.remove = pnx4008_wdt_remove,
};
module_platform_driver(platform_wdt_driver);
MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
MODULE_AUTHOR("Wolfram Sang <kernel@pengutronix.de>");
MODULE_DESCRIPTION("PNX4008 Watchdog Driver");
module_param(heartbeat, uint, 0);
MODULE_PARM_DESC(heartbeat,
"Watchdog heartbeat period in seconds from 1 to "
__MODULE_STRING(MAX_HEARTBEAT) ", default "
__MODULE_STRING(DEFAULT_HEARTBEAT));
module_param(nowayout, bool, 0);
MODULE_PARM_DESC(nowayout,
"Set to 1 to keep watchdog running after device release");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:pnx4008-watchdog");
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vitaly wool | vitaly wool | 532 | 52.99% | 2 | 5.41% |
wolfram sang | wolfram sang | 147 | 14.64% | 4 | 10.81% |
sylvain lemieux | sylvain lemieux | 147 | 14.64% | 4 | 10.81% |
wim van sebroeck | wim van sebroeck | 48 | 4.78% | 6 | 16.22% |
roland stigge | roland stigge | 39 | 3.88% | 1 | 2.70% |
fabio porcedda | fabio porcedda | 19 | 1.89% | 1 | 2.70% |
russell king | russell king | 13 | 1.29% | 4 | 10.81% |
pratyush anand | pratyush anand | 9 | 0.90% | 1 | 2.70% |
thierry reding | thierry reding | 8 | 0.80% | 1 | 2.70% |
joe perches | joe perches | 7 | 0.70% | 1 | 2.70% |
akinobu mita | akinobu mita | 7 | 0.70% | 1 | 2.70% |
kay sievers | kay sievers | 6 | 0.60% | 1 | 2.70% |
jingoo han | jingoo han | 4 | 0.40% | 1 | 2.70% |
alexey dobriyan | alexey dobriyan | 4 | 0.40% | 1 | 2.70% |
vladimir zapolskiy | vladimir zapolskiy | 4 | 0.40% | 2 | 5.41% |
tejun heo | tejun heo | 2 | 0.20% | 1 | 2.70% |
julia lawall | julia lawall | 2 | 0.20% | 1 | 2.70% |
h hartley sweeten | h hartley sweeten | 2 | 0.20% | 1 | 2.70% |
axel lin | axel lin | 2 | 0.20% | 1 | 2.70% |
alan cox | alan cox | 1 | 0.10% | 1 | 2.70% |
arjan van de ven | arjan van de ven | 1 | 0.10% | 1 | 2.70% |
| Total | 1004 | 100.00% | 37 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.