ixp4xx_wdt.c 4.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
L
Linus Torvalds 已提交
2
/*
3
 * drivers/char/watchdog/ixp4xx_wdt.c
L
Linus Torvalds 已提交
4 5 6 7
 *
 * Watchdog driver for Intel IXP4xx network processors
 *
 * Author: Deepak Saxena <dsaxena@plexity.net>
8
 * Author: Linus Walleij <linus.walleij@linaro.org>
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17
 *
 * Copyright 2004 (c) MontaVista, Software, Inc.
 * Based on sa1100 driver, Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/watchdog.h>
18 19 20 21 22 23 24 25 26 27
#include <linux/bits.h>
#include <linux/platform_device.h>
#include <linux/clk.h>
#include <linux/soc/ixp4xx/cpu.h>

struct ixp4xx_wdt {
	struct watchdog_device wdd;
	void __iomem *base;
	unsigned long rate;
};
L
Linus Torvalds 已提交
28

29 30
/* Fallback if we do not have a clock for this */
#define IXP4XX_TIMER_FREQ	66666000
L
Linus Torvalds 已提交
31

32 33 34 35 36
/* Registers after the timer registers */
#define IXP4XX_OSWT_OFFSET	0x14  /* Watchdog Timer */
#define IXP4XX_OSWE_OFFSET	0x18  /* Watchdog Enable */
#define IXP4XX_OSWK_OFFSET	0x1C  /* Watchdog Key */
#define IXP4XX_OSST_OFFSET	0x20  /* Timer Status */
L
Linus Torvalds 已提交
37

38 39 40 41 42 43
#define IXP4XX_OSST_TIMER_WDOG_PEND	0x00000008
#define IXP4XX_OSST_TIMER_WARM_RESET	0x00000010
#define IXP4XX_WDT_KEY			0x0000482E
#define IXP4XX_WDT_RESET_ENABLE		0x00000001
#define IXP4XX_WDT_IRQ_ENABLE		0x00000002
#define IXP4XX_WDT_COUNT_ENABLE		0x00000004
L
Linus Torvalds 已提交
44

45 46
static inline
struct ixp4xx_wdt *to_ixp4xx_wdt(struct watchdog_device *wdd)
L
Linus Torvalds 已提交
47
{
48
	return container_of(wdd, struct ixp4xx_wdt, wdd);
L
Linus Torvalds 已提交
49 50
}

51
static int ixp4xx_wdt_start(struct watchdog_device *wdd)
L
Linus Torvalds 已提交
52
{
53
	struct ixp4xx_wdt *iwdt = to_ixp4xx_wdt(wdd);
L
Linus Torvalds 已提交
54

55 56 57 58 59 60 61
	__raw_writel(IXP4XX_WDT_KEY, iwdt->base + IXP4XX_OSWK_OFFSET);
	__raw_writel(0, iwdt->base + IXP4XX_OSWE_OFFSET);
	__raw_writel(wdd->timeout * iwdt->rate,
		     iwdt->base + IXP4XX_OSWT_OFFSET);
	__raw_writel(IXP4XX_WDT_COUNT_ENABLE | IXP4XX_WDT_RESET_ENABLE,
		     iwdt->base + IXP4XX_OSWE_OFFSET);
	__raw_writel(0, iwdt->base + IXP4XX_OSWK_OFFSET);
L
Linus Torvalds 已提交
62

63
	return 0;
L
Linus Torvalds 已提交
64 65
}

66
static int ixp4xx_wdt_stop(struct watchdog_device *wdd)
L
Linus Torvalds 已提交
67
{
68
	struct ixp4xx_wdt *iwdt = to_ixp4xx_wdt(wdd);
L
Linus Torvalds 已提交
69

70 71 72
	__raw_writel(IXP4XX_WDT_KEY, iwdt->base + IXP4XX_OSWK_OFFSET);
	__raw_writel(0, iwdt->base + IXP4XX_OSWE_OFFSET);
	__raw_writel(0, iwdt->base + IXP4XX_OSWK_OFFSET);
L
Linus Torvalds 已提交
73

74
	return 0;
L
Linus Torvalds 已提交
75 76
}

77 78
static int ixp4xx_wdt_set_timeout(struct watchdog_device *wdd,
				  unsigned int timeout)
L
Linus Torvalds 已提交
79
{
80 81 82
	wdd->timeout = timeout;
	if (watchdog_active(wdd))
		ixp4xx_wdt_start(wdd);
L
Linus Torvalds 已提交
83 84 85 86

	return 0;
}

87 88 89 90 91
static const struct watchdog_ops ixp4xx_wdt_ops = {
	.start = ixp4xx_wdt_start,
	.stop = ixp4xx_wdt_stop,
	.set_timeout = ixp4xx_wdt_set_timeout,
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
92 93
};

94 95 96 97 98
static const struct watchdog_info ixp4xx_wdt_info = {
	.options = WDIOF_KEEPALIVEPING
		| WDIOF_MAGICCLOSE
		| WDIOF_SETTIMEOUT,
	.identity = KBUILD_MODNAME,
L
Linus Torvalds 已提交
99 100
};

101 102 103 104 105 106 107
/* Devres-handled clock disablement */
static void ixp4xx_clock_action(void *d)
{
	clk_disable_unprepare(d);
}

static int ixp4xx_wdt_probe(struct platform_device *pdev)
L
Linus Torvalds 已提交
108
{
109 110 111
	struct device *dev = &pdev->dev;
	struct ixp4xx_wdt *iwdt;
	struct clk *clk;
L
Linus Torvalds 已提交
112 113
	int ret;

114
	if (!(read_cpuid_id() & 0xf) && !cpu_is_ixp46x()) {
115
		dev_err(dev, "Rev. A0 IXP42x CPU detected - watchdog disabled\n");
L
Linus Torvalds 已提交
116 117 118
		return -ENODEV;
	}

119 120 121 122
	iwdt = devm_kzalloc(dev, sizeof(*iwdt), GFP_KERNEL);
	if (!iwdt)
		return -ENOMEM;
	iwdt->base = dev->platform_data;
L
Linus Torvalds 已提交
123

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
	/*
	 * Retrieve rate from a fixed clock from the device tree if
	 * the parent has that, else use the default clock rate.
	 */
	clk = devm_clk_get(dev->parent, NULL);
	if (!IS_ERR(clk)) {
		ret = clk_prepare_enable(clk);
		if (ret)
			return ret;
		ret = devm_add_action_or_reset(dev, ixp4xx_clock_action, clk);
		if (ret)
			return ret;
		iwdt->rate = clk_get_rate(clk);
	}
	if (!iwdt->rate)
		iwdt->rate = IXP4XX_TIMER_FREQ;
L
Linus Torvalds 已提交
140

141 142 143 144 145 146 147 148
	iwdt->wdd.info = &ixp4xx_wdt_info;
	iwdt->wdd.ops = &ixp4xx_wdt_ops;
	iwdt->wdd.min_timeout = 1;
	iwdt->wdd.max_timeout = U32_MAX / iwdt->rate;
	iwdt->wdd.parent = dev;
	/* Default to 60 seconds */
	iwdt->wdd.timeout = 60U;
	watchdog_init_timeout(&iwdt->wdd, 0, dev);
L
Linus Torvalds 已提交
149

150 151 152 153 154 155 156 157 158
	if (__raw_readl(iwdt->base + IXP4XX_OSST_OFFSET) &
	    IXP4XX_OSST_TIMER_WARM_RESET)
		iwdt->wdd.bootstatus = WDIOF_CARDRESET;

	ret = devm_watchdog_register_device(dev, &iwdt->wdd);
	if (ret)
		return ret;

	dev_info(dev, "IXP4xx watchdog available\n");
L
Linus Torvalds 已提交
159

160 161
	return 0;
}
L
Linus Torvalds 已提交
162

163 164 165 166 167 168 169
static struct platform_driver ixp4xx_wdt_driver = {
	.probe = ixp4xx_wdt_probe,
	.driver = {
		.name   = "ixp4xx-watchdog",
	},
};
module_platform_driver(ixp4xx_wdt_driver);
L
Linus Torvalds 已提交
170

171 172
MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>");
MODULE_DESCRIPTION("IXP4xx Network Processor Watchdog");
L
Linus Torvalds 已提交
173
MODULE_LICENSE("GPL");