it87_wdt.c 7.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 *	Watchdog Timer Driver
 *	   for ITE IT87xx Environment Control - Low Pin Count Input / Output
 *
 *	(c) Copyright 2007  Oliver Schuster <olivers137@aol.com>
 *
 *	Based on softdog.c	by Alan Cox,
 *		 83977f_wdt.c	by Jose Goncalves,
 *		 it87.c		by Chris Gauthron, Jean Delvare
 *
 *	Data-sheets: Publicly available at the ITE website
 *		    http://www.ite.com.tw/
 *
 *	Support of the watchdog timers, which are available on
15 16 17
 *	IT8607, IT8620, IT8622, IT8625, IT8628, IT8655, IT8665, IT8686,
 *	IT8702, IT8712, IT8716, IT8718, IT8720, IT8721, IT8726, IT8728,
 *	and IT8783.
18 19 20 21 22 23 24 25 26 27 28 29
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 *
 *	This program is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU General Public License for more details.
 */

30 31
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

32 33 34
#include <linux/init.h>
#include <linux/io.h>
#include <linux/kernel.h>
35 36 37 38 39 40 41 42
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/types.h>
#include <linux/watchdog.h>

#define WATCHDOG_NAME		"IT87 WDT"

/* Defaults for Module Parameter */
43
#define DEFAULT_TIMEOUT		60
44 45 46 47 48 49 50 51 52 53 54 55 56
#define DEFAULT_TESTMODE	0
#define DEFAULT_NOWAYOUT	WATCHDOG_NOWAYOUT

/* IO Ports */
#define REG		0x2e
#define VAL		0x2f

/* Logical device Numbers LDN */
#define GPIO		0x07

/* Configuration Registers and Functions */
#define LDNREG		0x07
#define CHIPID		0x20
57
#define CHIPREV		0x22
58 59 60

/* Chip Id numbers */
#define NO_DEV_ID	0xffff
61
#define IT8607_ID	0x8607
62
#define IT8620_ID	0x8620
63 64 65 66 67 68
#define IT8622_ID	0x8622
#define IT8625_ID	0x8625
#define IT8628_ID	0x8628
#define IT8655_ID	0x8655
#define IT8665_ID	0x8665
#define IT8686_ID	0x8686
69
#define IT8702_ID	0x8702
70 71 72 73
#define IT8705_ID	0x8705
#define IT8712_ID	0x8712
#define IT8716_ID	0x8716
#define IT8718_ID	0x8718
74
#define IT8720_ID	0x8720
75
#define IT8721_ID	0x8721
76
#define IT8726_ID	0x8726	/* the data sheet suggest wrongly 0x8716 */
77
#define IT8728_ID	0x8728
P
Paolo Teti 已提交
78
#define IT8783_ID	0x8783
79 80

/* GPIO Configuration Registers LDN=0x07 */
81
#define WDTCTRL		0x71
82 83 84 85 86 87 88 89
#define WDTCFG		0x72
#define WDTVALLSB	0x73
#define WDTVALMSB	0x74

/* GPIO Bits WDTCFG */
#define WDT_TOV1	0x80
#define WDT_KRST	0x40
#define WDT_TOVE	0x20
90
#define WDT_PWROK	0x10 /* not in it8721 */
91 92
#define WDT_INT_MASK	0x0f

93
static unsigned int max_units, chip_type;
94

95
static unsigned int timeout = DEFAULT_TIMEOUT;
96 97 98
static int testmode = DEFAULT_TESTMODE;
static bool nowayout = DEFAULT_NOWAYOUT;

99 100 101 102 103 104
module_param(timeout, int, 0);
MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds, default="
		__MODULE_STRING(DEFAULT_TIMEOUT));
module_param(testmode, int, 0);
MODULE_PARM_DESC(testmode, "Watchdog test mode (1 = no reboot), default="
		__MODULE_STRING(DEFAULT_TESTMODE));
W
Wim Van Sebroeck 已提交
105
module_param(nowayout, bool, 0);
106 107 108 109 110
MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started, default="
		__MODULE_STRING(WATCHDOG_NOWAYOUT));

/* Superio Chip */

111
static inline int superio_enter(void)
112
{
113 114 115 116 117 118
	/*
	 * Try to reserve REG and REG + 1 for exclusive access.
	 */
	if (!request_muxed_region(REG, 2, WATCHDOG_NAME))
		return -EBUSY;

119 120 121 122
	outb(0x87, REG);
	outb(0x01, REG);
	outb(0x55, REG);
	outb(0x55, REG);
123
	return 0;
124 125 126 127 128 129
}

static inline void superio_exit(void)
{
	outb(0x02, REG);
	outb(0x02, VAL);
130
	release_region(REG, 2);
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
}

static inline void superio_select(int ldn)
{
	outb(LDNREG, REG);
	outb(ldn, VAL);
}

static inline int superio_inb(int reg)
{
	outb(reg, REG);
	return inb(VAL);
}

static inline void superio_outb(int val, int reg)
{
147 148
	outb(reg, REG);
	outb(val, VAL);
149 150 151 152 153 154 155 156 157 158 159 160 161 162
}

static inline int superio_inw(int reg)
{
	int val;
	outb(reg++, REG);
	val = inb(VAL) << 8;
	outb(reg, REG);
	val |= inb(VAL);
	return val;
}

static inline void superio_outw(int val, int reg)
{
163 164 165 166
	outb(reg++, REG);
	outb(val >> 8, VAL);
	outb(reg, REG);
	outb(val, VAL);
167 168
}

169
/* Internal function, should be called after superio_select(GPIO) */
170
static void _wdt_update_timeout(unsigned int t)
171
{
172
	unsigned char cfg = WDT_KRST;
173 174 175 176

	if (testmode)
		cfg = 0;

177
	if (t <= max_units)
178 179
		cfg |= WDT_TOV1;
	else
180
		t /= 60;
181

182 183 184
	if (chip_type != IT8721_ID)
		cfg |= WDT_PWROK;

185
	superio_outb(cfg, WDTCFG);
186
	superio_outb(t, WDTVALLSB);
187
	if (max_units > 255)
188
		superio_outb(t >> 8, WDTVALMSB);
189 190
}

191
static int wdt_update_timeout(unsigned int t)
192 193 194 195 196 197 198 199
{
	int ret;

	ret = superio_enter();
	if (ret)
		return ret;

	superio_select(GPIO);
200
	_wdt_update_timeout(t);
201 202 203 204 205
	superio_exit();

	return 0;
}

206 207 208 209 210 211 212
static int wdt_round_time(int t)
{
	t += 59;
	t -= t % 60;
	return t;
}

213 214
/* watchdog timer handling */

215
static int wdt_start(struct watchdog_device *wdd)
216
{
217
	return wdt_update_timeout(wdd->timeout);
218 219
}

220
static int wdt_stop(struct watchdog_device *wdd)
221
{
222
	return wdt_update_timeout(0);
223 224 225 226 227 228
}

/**
 *	wdt_set_timeout - set a new timeout value with watchdog ioctl
 *	@t: timeout value in seconds
 *
229 230
 *	The hardware device has a 8 or 16 bit watchdog timer (depends on
 *	chip version) that can be configured to count seconds or minutes.
231 232 233 234
 *
 *	Used within WDIOC_SETTIMEOUT watchdog device ioctl.
 */

235
static int wdt_set_timeout(struct watchdog_device *wdd, unsigned int t)
236
{
237
	int ret = 0;
238

239
	if (t > max_units)
240
		t = wdt_round_time(t);
241

242
	wdd->timeout = t;
243

244
	if (watchdog_hw_running(wdd))
245
		ret = wdt_update_timeout(t);
246

247
	return ret;
248 249
}

250
static const struct watchdog_info ident = {
251
	.options = WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING,
252
	.firmware_version = 1,
253 254 255
	.identity = WATCHDOG_NAME,
};

256
static const struct watchdog_ops wdt_ops = {
257 258 259 260 261
	.owner = THIS_MODULE,
	.start = wdt_start,
	.stop = wdt_stop,
	.set_timeout = wdt_set_timeout,
};
262

263 264 265 266 267
static struct watchdog_device wdt_dev = {
	.info = &ident,
	.ops = &wdt_ops,
	.min_timeout = 1,
};
268 269 270 271

static int __init it87_wdt_init(void)
{
	u8  chip_rev;
272
	int rc;
273

274 275 276 277
	rc = superio_enter();
	if (rc)
		return rc;

278 279 280 281 282
	chip_type = superio_inw(CHIPID);
	chip_rev  = superio_inb(CHIPREV) & 0x0f;
	superio_exit();

	switch (chip_type) {
283 284 285 286 287 288
	case IT8702_ID:
		max_units = 255;
		break;
	case IT8712_ID:
		max_units = (chip_rev < 8) ? 255 : 65535;
		break;
289 290
	case IT8716_ID:
	case IT8726_ID:
291
		max_units = 65535;
292
		break;
293
	case IT8607_ID:
294
	case IT8620_ID:
295 296 297 298 299 300
	case IT8622_ID:
	case IT8625_ID:
	case IT8628_ID:
	case IT8655_ID:
	case IT8665_ID:
	case IT8686_ID:
301 302
	case IT8718_ID:
	case IT8720_ID:
303
	case IT8721_ID:
304
	case IT8728_ID:
P
Paolo Teti 已提交
305
	case IT8783_ID:
306
		max_units = 65535;
307
		break;
308
	case IT8705_ID:
309
		pr_err("Unsupported Chip found, Chip %04x Revision %02x\n",
310 311 312
		       chip_type, chip_rev);
		return -ENODEV;
	case NO_DEV_ID:
313
		pr_err("no device\n");
314 315
		return -ENODEV;
	default:
316
		pr_err("Unknown Chip found, Chip %04x Revision %04x\n",
317 318 319 320
		       chip_type, chip_rev);
		return -ENODEV;
	}

321 322 323
	rc = superio_enter();
	if (rc)
		return rc;
324 325 326 327

	superio_select(GPIO);
	superio_outb(WDT_TOV1, WDTCFG);
	superio_outb(0x00, WDTCTRL);
328
	superio_exit();
329

330
	if (timeout < 1 || timeout > max_units * 60) {
331
		timeout = DEFAULT_TIMEOUT;
332 333
		pr_warn("Timeout value out of range, use default %d sec\n",
			DEFAULT_TIMEOUT);
334 335
	}

336 337 338
	if (timeout > max_units)
		timeout = wdt_round_time(timeout);

339 340 341
	wdt_dev.timeout = timeout;
	wdt_dev.max_timeout = max_units * 60;

342
	watchdog_stop_on_reboot(&wdt_dev);
343 344 345
	rc = watchdog_register_device(&wdt_dev);
	if (rc) {
		pr_err("Cannot register watchdog device (err=%d)\n", rc);
346
		return rc;
347 348
	}

349 350
	pr_info("Chip IT%04x revision %d initialized. timeout=%d sec (nowayout=%d testmode=%d)\n",
		chip_type, chip_rev, timeout, nowayout, testmode);
351 352 353 354 355 356

	return 0;
}

static void __exit it87_wdt_exit(void)
{
357
	watchdog_unregister_device(&wdt_dev);
358 359 360 361 362 363 364 365
}

module_init(it87_wdt_init);
module_exit(it87_wdt_exit);

MODULE_AUTHOR("Oliver Schuster");
MODULE_DESCRIPTION("Hardware Watchdog Device Driver for IT87xx EC-LPC I/O");
MODULE_LICENSE("GPL");