blob: d5bf112e007763b0d4cc2874aa30bf612aa8c4bc [file] [log] [blame]
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +02001/*
2 * NS pc87413-wdt Watchdog Timer driver for Linux 2.6.x.x
3 *
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +02004 * This code is based on wdt.c with original copyright.
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +02005 *
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +02006 * (C) Copyright 2006 Sven Anders, <anders@anduras.de>
7 * and Marcus Junker, <junker@anduras.de>
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +02008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020014 * Neither Sven Anders, Marcus Junker nor ANDURAS AG
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020015 * admit liability nor provide warranty for any of this software.
16 * This material is provided "AS-IS" and at no charge.
17 *
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020018 * Release 1.1
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020019 */
20
Joe Perches27c766a2012-02-15 15:06:19 -080021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020023#include <linux/module.h>
24#include <linux/types.h>
25#include <linux/miscdevice.h>
26#include <linux/watchdog.h>
27#include <linux/ioport.h>
28#include <linux/delay.h>
29#include <linux/notifier.h>
30#include <linux/fs.h>
31#include <linux/reboot.h>
32#include <linux/init.h>
33#include <linux/spinlock.h>
34#include <linux/moduleparam.h>
Alan Coxaee334c2008-05-19 14:07:37 +010035#include <linux/io.h>
36#include <linux/uaccess.h>
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020037
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020038#include <asm/system.h>
39
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020040/* #define DEBUG 1 */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020041
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000042#define DEFAULT_TIMEOUT 1 /* 1 minute */
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020043#define MAX_TIMEOUT 255
44
45#define VERSION "1.1"
46#define MODNAME "pc87413 WDT"
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020047#define DPFX MODNAME " - DEBUG: "
48
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000049#define WDT_INDEX_IO_PORT (io+0) /* I/O port base (index register) */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020050#define WDT_DATA_IO_PORT (WDT_INDEX_IO_PORT+1)
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020051#define SWC_LDN 0x04
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000052#define SIOCFG2 0x22 /* Serial IO register */
Lucas De Marchi25985ed2011-03-30 22:57:33 -030053#define WDCTL 0x10 /* Watchdog-Timer-Control-Register */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000054#define WDTO 0x11 /* Watchdog timeout register */
55#define WDCFG 0x12 /* Watchdog config register */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020056
Randy Dunlap76550d32010-05-01 09:46:15 -070057#define IO_DEFAULT 0x2E /* Address used on Portwell Boards */
58
59static int io = IO_DEFAULT;
Jonathan McDowell7ccdb942011-04-14 12:02:39 -070060static int swc_base_addr = -1;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020061
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000062static int timeout = DEFAULT_TIMEOUT; /* timeout value */
Alan Coxaee334c2008-05-19 14:07:37 +010063static unsigned long timer_enabled; /* is the timer enabled? */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020064
Alan Coxaee334c2008-05-19 14:07:37 +010065static char expect_close; /* is the close expected? */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020066
Alan Coxaee334c2008-05-19 14:07:37 +010067static DEFINE_SPINLOCK(io_lock); /* to guard us from io races */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020068
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010069static bool nowayout = WATCHDOG_NOWAYOUT;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020070
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020071/* -- Low level function ----------------------------------------*/
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020072
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020073/* Select pins for Watchdog output */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020074
Alan Coxaee334c2008-05-19 14:07:37 +010075static inline void pc87413_select_wdt_out(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020076{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020077 unsigned int cr_data = 0;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020078
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020079 /* Step 1: Select multiple pin,pin55,as WDT output */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020080
81 outb_p(SIOCFG2, WDT_INDEX_IO_PORT);
82
Alan Coxaee334c2008-05-19 14:07:37 +010083 cr_data = inb(WDT_DATA_IO_PORT);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020084
85 cr_data |= 0x80; /* Set Bit7 to 1*/
86 outb_p(SIOCFG2, WDT_INDEX_IO_PORT);
87
88 outb_p(cr_data, WDT_DATA_IO_PORT);
89
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020090#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -080091 pr_info(DPFX
Alan Coxaee334c2008-05-19 14:07:37 +010092 "Select multiple pin,pin55,as WDT output: Bit7 to 1: %d\n",
93 cr_data);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020094#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020095}
96
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020097/* Enable SWC functions */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +020098
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +020099static inline void pc87413_enable_swc(void)
100{
Alan Coxaee334c2008-05-19 14:07:37 +0100101 unsigned int cr_data = 0;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200102
103 /* Step 2: Enable SWC functions */
104
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000105 outb_p(0x07, WDT_INDEX_IO_PORT); /* Point SWC_LDN (LDN=4) */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200106 outb_p(SWC_LDN, WDT_DATA_IO_PORT);
107
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000108 outb_p(0x30, WDT_INDEX_IO_PORT); /* Read Index 0x30 First */
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200109 cr_data = inb(WDT_DATA_IO_PORT);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000110 cr_data |= 0x01; /* Set Bit0 to 1 */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200111 outb_p(0x30, WDT_INDEX_IO_PORT);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000112 outb_p(cr_data, WDT_DATA_IO_PORT); /* Index0x30_bit0P1 */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200113
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200114#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800115 pr_info(DPFX "pc87413 - Enable SWC functions\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200116#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200117}
118
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200119/* Read SWC I/O base address */
120
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700121static void pc87413_get_swc_base_addr(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200122{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200123 unsigned char addr_l, addr_h = 0;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200124
125 /* Step 3: Read SWC I/O Base Address */
126
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000127 outb_p(0x60, WDT_INDEX_IO_PORT); /* Read Index 0x60 */
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200128 addr_h = inb(WDT_DATA_IO_PORT);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200129
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000130 outb_p(0x61, WDT_INDEX_IO_PORT); /* Read Index 0x61 */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200131
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200132 addr_l = inb(WDT_DATA_IO_PORT);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200133
134 swc_base_addr = (addr_h << 8) + addr_l;
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200135#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800136 pr_info(DPFX
Alan Coxaee334c2008-05-19 14:07:37 +0100137 "Read SWC I/O Base Address: low %d, high %d, res %d\n",
138 addr_l, addr_h, swc_base_addr);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200139#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200140}
141
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200142/* Select Bank 3 of SWC */
143
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700144static inline void pc87413_swc_bank3(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200145{
146 /* Step 4: Select Bank3 of SWC */
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200147 outb_p(inb(swc_base_addr + 0x0f) | 0x03, swc_base_addr + 0x0f);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200148#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800149 pr_info(DPFX "Select Bank3 of SWC\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200150#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200151}
152
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200153/* Set watchdog timeout to x minutes */
154
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700155static inline void pc87413_programm_wdto(char pc87413_time)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200156{
157 /* Step 5: Programm WDTO, Twd. */
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200158 outb_p(pc87413_time, swc_base_addr + WDTO);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200159#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800160 pr_info(DPFX "Set WDTO to %d minutes\n", pc87413_time);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200161#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200162}
163
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200164/* Enable WDEN */
165
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700166static inline void pc87413_enable_wden(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200167{
168 /* Step 6: Enable WDEN */
Alan Coxaee334c2008-05-19 14:07:37 +0100169 outb_p(inb(swc_base_addr + WDCTL) | 0x01, swc_base_addr + WDCTL);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200170#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800171 pr_info(DPFX "Enable WDEN\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200172#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200173}
174
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200175/* Enable SW_WD_TREN */
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700176static inline void pc87413_enable_sw_wd_tren(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200177{
178 /* Enable SW_WD_TREN */
Alan Coxaee334c2008-05-19 14:07:37 +0100179 outb_p(inb(swc_base_addr + WDCFG) | 0x80, swc_base_addr + WDCFG);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200180#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800181 pr_info(DPFX "Enable SW_WD_TREN\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200182#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200183}
184
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200185/* Disable SW_WD_TREN */
186
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700187static inline void pc87413_disable_sw_wd_tren(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200188{
189 /* Disable SW_WD_TREN */
Alan Coxaee334c2008-05-19 14:07:37 +0100190 outb_p(inb(swc_base_addr + WDCFG) & 0x7f, swc_base_addr + WDCFG);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200191#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800192 pr_info(DPFX "pc87413 - Disable SW_WD_TREN\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200193#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200194}
195
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200196/* Enable SW_WD_TRG */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200197
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700198static inline void pc87413_enable_sw_wd_trg(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200199{
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200200 /* Enable SW_WD_TRG */
Alan Coxaee334c2008-05-19 14:07:37 +0100201 outb_p(inb(swc_base_addr + WDCTL) | 0x80, swc_base_addr + WDCTL);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200202#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800203 pr_info(DPFX "pc87413 - Enable SW_WD_TRG\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200204#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200205}
206
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200207/* Disable SW_WD_TRG */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200208
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700209static inline void pc87413_disable_sw_wd_trg(void)
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200210{
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200211 /* Disable SW_WD_TRG */
Alan Coxaee334c2008-05-19 14:07:37 +0100212 outb_p(inb(swc_base_addr + WDCTL) & 0x7f, swc_base_addr + WDCTL);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200213#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800214 pr_info(DPFX "Disable SW_WD_TRG\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200215#endif
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200216}
217
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200218/* -- Higher level functions ------------------------------------*/
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200219
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200220/* Enable the watchdog */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200221
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200222static void pc87413_enable(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200223{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200224 spin_lock(&io_lock);
225
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700226 pc87413_swc_bank3();
227 pc87413_programm_wdto(timeout);
228 pc87413_enable_wden();
229 pc87413_enable_sw_wd_tren();
230 pc87413_enable_sw_wd_trg();
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200231
232 spin_unlock(&io_lock);
233}
234
235/* Disable the watchdog */
236
237static void pc87413_disable(void)
238{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200239 spin_lock(&io_lock);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200240
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700241 pc87413_swc_bank3();
242 pc87413_disable_sw_wd_tren();
243 pc87413_disable_sw_wd_trg();
244 pc87413_programm_wdto(0);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200245
246 spin_unlock(&io_lock);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200247}
248
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200249/* Refresh the watchdog */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200250
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200251static void pc87413_refresh(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200252{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200253 spin_lock(&io_lock);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200254
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700255 pc87413_swc_bank3();
256 pc87413_disable_sw_wd_tren();
257 pc87413_disable_sw_wd_trg();
258 pc87413_programm_wdto(timeout);
259 pc87413_enable_wden();
260 pc87413_enable_sw_wd_tren();
261 pc87413_enable_sw_wd_trg();
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200262
263 spin_unlock(&io_lock);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200264}
265
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200266/* -- File operations -------------------------------------------*/
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200267
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200268/**
269 * pc87413_open:
270 * @inode: inode of device
271 * @file: file handle to device
272 *
273 */
274
275static int pc87413_open(struct inode *inode, struct file *file)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200276{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200277 /* /dev/watchdog can only be opened once */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200278
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200279 if (test_and_set_bit(0, &timer_enabled))
280 return -EBUSY;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200281
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200282 if (nowayout)
283 __module_get(THIS_MODULE);
284
285 /* Reload and activate timer */
286 pc87413_refresh();
287
Joe Perches27c766a2012-02-15 15:06:19 -0800288 pr_info("Watchdog enabled. Timeout set to %d minute(s).\n", timeout);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200289
290 return nonseekable_open(inode, file);
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200291}
292
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200293/**
294 * pc87413_release:
295 * @inode: inode to board
296 * @file: file handle to board
297 *
298 * The watchdog has a configurable API. There is a religious dispute
299 * between people who want their watchdog to be able to shut down and
300 * those who want to be sure if the watchdog manager dies the machine
301 * reboots. In the former case we disable the counters, in the latter
302 * case you have to open it again very soon.
303 */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200304
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200305static int pc87413_release(struct inode *inode, struct file *file)
306{
307 /* Shut off the timer. */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200308
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200309 if (expect_close == 42) {
310 pc87413_disable();
Joe Perches27c766a2012-02-15 15:06:19 -0800311 pr_info("Watchdog disabled, sleeping again...\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200312 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800313 pr_crit("Unexpected close, not stopping watchdog!\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200314 pc87413_refresh();
315 }
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200316 clear_bit(0, &timer_enabled);
317 expect_close = 0;
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200318 return 0;
319}
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200320
321/**
322 * pc87413_status:
323 *
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200324 * return, if the watchdog is enabled (timeout is set...)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200325 */
326
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200327
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200328static int pc87413_status(void)
329{
Wim Van Sebroeck0835caa2006-10-23 18:21:52 +0200330 return 0; /* currently not supported */
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200331}
332
333/**
334 * pc87413_write:
335 * @file: file handle to the watchdog
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200336 * @data: data buffer to write
337 * @len: length in bytes
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200338 * @ppos: pointer to the position to write. No seeks allowed
339 *
340 * A write to a watchdog device is defined as a keepalive signal. Any
341 * write of data will do, as we we don't define content meaning.
342 */
343
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200344static ssize_t pc87413_write(struct file *file, const char __user *data,
345 size_t len, loff_t *ppos)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200346{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200347 /* See if we got the magic character 'V' and reload the timer */
348 if (len) {
349 if (!nowayout) {
350 size_t i;
351
352 /* reset expect flag */
353 expect_close = 0;
354
Alan Coxaee334c2008-05-19 14:07:37 +0100355 /* scan to see whether or not we got the
356 magic character */
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200357 for (i = 0; i != len; i++) {
358 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000359 if (get_user(c, data + i))
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200360 return -EFAULT;
361 if (c == 'V')
362 expect_close = 42;
363 }
364 }
365
366 /* someone wrote to us, we should reload the timer */
367 pc87413_refresh();
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200368 }
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200369 return len;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200370}
371
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200372/**
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200373 * pc87413_ioctl:
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200374 * @file: file handle to the device
375 * @cmd: watchdog command
376 * @arg: argument pointer
377 *
378 * The watchdog API defines a common set of functions for all watchdogs
379 * according to their available features. We only actually usefully support
380 * querying capabilities and current status.
381 */
382
Alan Coxaee334c2008-05-19 14:07:37 +0100383static long pc87413_ioctl(struct file *file, unsigned int cmd,
384 unsigned long arg)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200385{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200386 int new_timeout;
387
388 union {
389 struct watchdog_info __user *ident;
390 int __user *i;
391 } uarg;
392
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000393 static const struct watchdog_info ident = {
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200394 .options = WDIOF_KEEPALIVEPING |
Alan Coxaee334c2008-05-19 14:07:37 +0100395 WDIOF_SETTIMEOUT |
396 WDIOF_MAGICCLOSE,
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200397 .firmware_version = 1,
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000398 .identity = "PC87413(HF/F) watchdog",
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200399 };
400
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200401 uarg.i = (int __user *)arg;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200402
Alan Coxaee334c2008-05-19 14:07:37 +0100403 switch (cmd) {
404 case WDIOC_GETSUPPORT:
405 return copy_to_user(uarg.ident, &ident,
406 sizeof(ident)) ? -EFAULT : 0;
407 case WDIOC_GETSTATUS:
408 return put_user(pc87413_status(), uarg.i);
409 case WDIOC_GETBOOTSTATUS:
410 return put_user(0, uarg.i);
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000411 case WDIOC_SETOPTIONS:
412 {
413 int options, retval = -EINVAL;
414 if (get_user(options, uarg.i))
415 return -EFAULT;
416 if (options & WDIOS_DISABLECARD) {
417 pc87413_disable();
418 retval = 0;
419 }
420 if (options & WDIOS_ENABLECARD) {
421 pc87413_enable();
422 retval = 0;
423 }
424 return retval;
425 }
Alan Coxaee334c2008-05-19 14:07:37 +0100426 case WDIOC_KEEPALIVE:
427 pc87413_refresh();
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200428#ifdef DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -0800429 pr_info(DPFX "keepalive\n");
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200430#endif
Alan Coxaee334c2008-05-19 14:07:37 +0100431 return 0;
432 case WDIOC_SETTIMEOUT:
433 if (get_user(new_timeout, uarg.i))
434 return -EFAULT;
435 /* the API states this is given in secs */
436 new_timeout /= 60;
437 if (new_timeout < 0 || new_timeout > MAX_TIMEOUT)
438 return -EINVAL;
439 timeout = new_timeout;
440 pc87413_refresh();
441 /* fall through and return the new timeout... */
442 case WDIOC_GETTIMEOUT:
443 new_timeout = timeout * 60;
444 return put_user(new_timeout, uarg.i);
Alan Coxaee334c2008-05-19 14:07:37 +0100445 default:
446 return -ENOTTY;
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200447 }
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200448}
449
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200450/* -- Notifier funtions -----------------------------------------*/
451
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200452/**
453 * notify_sys:
454 * @this: our notifier block
455 * @code: the event being reported
456 * @unused: unused
457 *
458 * Our notifier is called on system shutdowns. We want to turn the card
459 * off at reboot otherwise the machine will reboot again during memory
460 * test or worse yet during the following fsck. This would suck, in fact
461 * trust me - if it happens it does suck.
462 */
463
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200464static int pc87413_notify_sys(struct notifier_block *this,
465 unsigned long code,
466 void *unused)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200467{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200468 if (code == SYS_DOWN || code == SYS_HALT)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200469 /* Turn the card off */
470 pc87413_disable();
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200471 return NOTIFY_DONE;
472}
473
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200474/* -- Module's structures ---------------------------------------*/
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200475
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800476static const struct file_operations pc87413_fops = {
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200477 .owner = THIS_MODULE,
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200478 .llseek = no_llseek,
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200479 .write = pc87413_write,
Alan Coxaee334c2008-05-19 14:07:37 +0100480 .unlocked_ioctl = pc87413_ioctl,
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200481 .open = pc87413_open,
482 .release = pc87413_release,
483};
484
Alan Coxaee334c2008-05-19 14:07:37 +0100485static struct notifier_block pc87413_notifier = {
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200486 .notifier_call = pc87413_notify_sys,
487};
488
Alan Coxaee334c2008-05-19 14:07:37 +0100489static struct miscdevice pc87413_miscdev = {
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200490 .minor = WATCHDOG_MINOR,
491 .name = "watchdog",
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000492 .fops = &pc87413_fops,
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200493};
494
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200495/* -- Module init functions -------------------------------------*/
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200496
497/**
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000498 * pc87413_init: module's "constructor"
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200499 *
500 * Set up the WDT watchdog board. All we have to do is grab the
501 * resources we require and bitch if anyone beat us to them.
502 * The open() function will actually kick the board off.
503 */
504
505static int __init pc87413_init(void)
506{
507 int ret;
508
Joe Perches27c766a2012-02-15 15:06:19 -0800509 pr_info("Version " VERSION " at io 0x%X\n",
Alan Coxaee334c2008-05-19 14:07:37 +0100510 WDT_INDEX_IO_PORT);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200511
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700512 if (!request_muxed_region(io, 2, MODNAME))
513 return -EBUSY;
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200514
515 ret = register_reboot_notifier(&pc87413_notifier);
516 if (ret != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800517 pr_err("cannot register reboot notifier (err=%d)\n", ret);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200518 }
519
520 ret = misc_register(&pc87413_miscdev);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200521 if (ret != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800522 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
523 WATCHDOG_MINOR, ret);
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700524 goto reboot_unreg;
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200525 }
Joe Perches27c766a2012-02-15 15:06:19 -0800526 pr_info("initialized. timeout=%d min\n", timeout);
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700527
528 pc87413_select_wdt_out();
529 pc87413_enable_swc();
530 pc87413_get_swc_base_addr();
531
532 if (!request_region(swc_base_addr, 0x20, MODNAME)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800533 pr_err("cannot request SWC region at 0x%x\n", swc_base_addr);
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700534 ret = -EBUSY;
535 goto misc_unreg;
536 }
537
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200538 pc87413_enable();
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700539
540 release_region(io, 2);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200541 return 0;
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700542
543misc_unreg:
544 misc_deregister(&pc87413_miscdev);
545reboot_unreg:
546 unregister_reboot_notifier(&pc87413_notifier);
547 release_region(io, 2);
548 return ret;
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200549}
550
551/**
552 * pc87413_exit: module's "destructor"
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200553 *
554 * Unload the watchdog. You cannot do this with any file handles open.
555 * If your watchdog is set to continue ticking on close and you unload
556 * it, well it keeps ticking. We won't get the interrupt but the board
557 * will not touch PC memory so all is fine. You just have to load a new
558 * module in 60 seconds or reboot.
559 */
560
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200561static void __exit pc87413_exit(void)
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200562{
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200563 /* Stop the timer before we leave */
Alan Coxaee334c2008-05-19 14:07:37 +0100564 if (!nowayout) {
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200565 pc87413_disable();
Joe Perches27c766a2012-02-15 15:06:19 -0800566 pr_info("Watchdog disabled\n");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200567 }
568
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200569 misc_deregister(&pc87413_miscdev);
570 unregister_reboot_notifier(&pc87413_notifier);
Jonathan McDowell7ccdb942011-04-14 12:02:39 -0700571 release_region(swc_base_addr, 0x20);
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200572
Joe Perches27c766a2012-02-15 15:06:19 -0800573 pr_info("watchdog component driver removed\n");
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200574}
575
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200576module_init(pc87413_init);
577module_exit(pc87413_exit);
578
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000579MODULE_AUTHOR("Sven Anders <anders@anduras.de>, "
580 "Marcus Junker <junker@anduras.de>,");
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200581MODULE_DESCRIPTION("PC87413 WDT driver");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200582MODULE_LICENSE("GPL");
583
Sven Anders & Marcus Junker789fc0a2006-08-24 17:11:50 +0200584MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
585
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200586module_param(io, int, 0);
Randy Dunlap76550d32010-05-01 09:46:15 -0700587MODULE_PARM_DESC(io, MODNAME " I/O port (default: "
588 __MODULE_STRING(IO_DEFAULT) ").");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200589
590module_param(timeout, int, 0);
Alan Coxaee334c2008-05-19 14:07:37 +0100591MODULE_PARM_DESC(timeout,
592 "Watchdog timeout in minutes (default="
Randy Dunlap76550d32010-05-01 09:46:15 -0700593 __MODULE_STRING(DEFAULT_TIMEOUT) ").");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200594
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100595module_param(nowayout, bool, 0);
Alan Coxaee334c2008-05-19 14:07:37 +0100596MODULE_PARM_DESC(nowayout,
597 "Watchdog cannot be stopped once started (default="
598 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Sven Anders & Marcus Junker00b3b3e2006-10-16 18:18:09 +0200599