cpwatchdog.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:22k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* cpwatchdog.c - driver implementation for hardware watchdog
  2.  * timers found on Sun Microsystems CP1400 and CP1500 boards.
  3.  *
  4.  * This device supports both the generic Linux watchdog 
  5.  * interface and Solaris-compatible ioctls as best it is
  6.  * able.
  7.  *
  8.  * NOTE:  CP1400 systems appear to have a defective intr_mask
  9.  *  register on the PLD, preventing the disabling of
  10.  *  timer interrupts.  We use a timer to periodically 
  11.  *  reset 'stopped' watchdogs on affected platforms.
  12.  *
  13.  * TODO: DevFS support (/dev/watchdogs/0 ... /dev/watchdogs/2)
  14.  *
  15.  * Copyright (c) 2000 Eric Brower (ebrower@usa.net)
  16.  */
  17. #include <linux/kernel.h>
  18. #include <linux/module.h>
  19. #include <linux/version.h>
  20. #include <linux/fs.h>
  21. #include <linux/errno.h>
  22. #include <linux/major.h>
  23. #include <linux/init.h>
  24. #include <linux/miscdevice.h>
  25. #include <linux/sched.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/ioport.h>
  28. #include <linux/timer.h>
  29. #include <asm/irq.h>
  30. #include <asm/ebus.h>
  31. #include <asm/oplib.h>
  32. #include <asm/uaccess.h>
  33. #include <asm/watchdog.h>
  34. #define WD_OBPNAME "watchdog"
  35. #define WD_BADMODEL "SUNW,501-5336"
  36. #define WD_BTIMEOUT (jiffies + (HZ * 1000))
  37. #define WD_BLIMIT 0xFFFF
  38. #define WD0_DEVNAME "watchdog0"
  39. #define WD1_DEVNAME "watchdog1"
  40. #define WD2_DEVNAME "watchdog2"
  41. #define WD0_MINOR 212
  42. #define WD1_MINOR 213
  43. #define WD2_MINOR 214
  44. /* Internal driver definitions
  45.  */
  46. #define WD0_ID 0 /* Watchdog0 */
  47. #define WD1_ID 1 /* Watchdog1 */
  48. #define WD2_ID 2 /* Watchdog2 */
  49. #define WD_NUMDEVS 3 /* Device contains 3 timers */
  50. #define WD_INTR_OFF 0 /* Interrupt disable value */
  51. #define WD_INTR_ON 1 /* Interrupt enable value */
  52. #define WD_STAT_INIT 0x01 /* Watchdog timer is initialized */
  53. #define WD_STAT_BSTOP 0x02 /* Watchdog timer is brokenstopped */
  54. #define WD_STAT_SVCD 0x04 /* Watchdog interrupt occurred */
  55. /* Register value definitions
  56.  */
  57. #define WD0_INTR_MASK 0x01 /* Watchdog device interrupt masks */
  58. #define WD1_INTR_MASK 0x02
  59. #define WD2_INTR_MASK 0x04
  60. #define WD_S_RUNNING 0x01 /* Watchdog device status running */
  61. #define WD_S_EXPIRED 0x02 /* Watchdog device status expired */
  62. /* Sun uses Altera PLD EPF8820ATC144-4 
  63.  * providing three hardware watchdogs:
  64.  *
  65.  *  1) RIC - sends an interrupt when triggered
  66.  *  2) XIR - asserts XIR_B_RESET when triggered, resets CPU
  67.  *  3) POR - asserts POR_B_RESET when triggered, resets CPU, backplane, board
  68.  *
  69.  *** Timer register block definition (struct wd_timer_regblk)
  70.  *
  71.  * dcntr and limit registers (halfword access):      
  72.  * -------------------
  73.  * | 15 | ...| 1 | 0 |
  74.  * -------------------
  75.  * |-  counter val  -|
  76.  * -------------------
  77.  * dcntr -  Current 16-bit downcounter value.
  78.  *  When downcounter reaches '0' watchdog expires.
  79.  *  Reading this register resets downcounter with 'limit' value.
  80.  * limit -  16-bit countdown value in 1/10th second increments.
  81.  *  Writing this register begins countdown with input value.
  82.  *  Reading from this register does not affect counter.
  83.  * NOTES: After watchdog reset, dcntr and limit contain '1'
  84.  *
  85.  * status register (byte access):
  86.  * ---------------------------
  87.  * | 7 | ... | 2 |  1  |  0  |
  88.  * --------------+------------
  89.  * |-   UNUSED  -| EXP | RUN |
  90.  * ---------------------------
  91.  * status- Bit 0 - Watchdog is running
  92.  *  Bit 1 - Watchdog has expired
  93.  *
  94.  *** PLD register block definition (struct wd_pld_regblk)
  95.  *
  96.  * intr_mask register (byte access):
  97.  * ---------------------------------
  98.  * | 7 | ... | 3 |  2  |  1  |  0  |
  99.  * +-------------+------------------
  100.  * |-   UNUSED  -| WD3 | WD2 | WD1 |
  101.  * ---------------------------------
  102.  * WD3 -  1 == Interrupt disabled for watchdog 3
  103.  * WD2 -  1 == Interrupt disabled for watchdog 2
  104.  * WD1 -  1 == Interrupt disabled for watchdog 1
  105.  *
  106.  * pld_status register (byte access):
  107.  * UNKNOWN, MAGICAL MYSTERY REGISTER
  108.  *
  109.  */
  110. struct wd_timer_regblk {
  111. volatile __u16 dcntr; /* down counter - hw */
  112. volatile __u16 dcntr_pad;
  113. volatile __u16 limit; /* limit register - hw */
  114. volatile __u16 limit_pad;
  115. volatile __u8 status; /* status register - b */
  116. volatile __u8 status_pad;
  117. volatile __u16 status_pad2;
  118. volatile __u32 pad32; /* yet more padding */
  119. };
  120. struct wd_pld_regblk {
  121. volatile __u8 intr_mask; /* interrupt mask - b */
  122. volatile __u8 intr_mask_pad;
  123. volatile __u16 intr_mask_pad2;
  124. volatile __u8 status; /* device status - b */
  125. volatile __u8 status_pad;
  126. volatile __u16 status_pad2;
  127. };
  128. struct wd_regblk {
  129. volatile struct wd_timer_regblk wd0_regs;
  130. volatile struct wd_timer_regblk wd1_regs;
  131. volatile struct wd_timer_regblk wd2_regs;
  132. volatile struct wd_pld_regblk pld_regs;
  133. };
  134. /* Individual timer structure 
  135.  */
  136. struct wd_timer {
  137. __u16 timeout;
  138. __u8 intr_mask;
  139. unsigned char runstatus;
  140. volatile struct wd_timer_regblk* regs;
  141. };
  142. /* Device structure
  143.  */
  144. struct wd_device {
  145. int irq;
  146. spinlock_t lock;
  147. unsigned char isbaddoggie; /* defective PLD */
  148. unsigned char opt_enable;
  149. unsigned char opt_reboot;
  150. unsigned short opt_timeout;
  151. unsigned char initialized;
  152. struct wd_timer watchdog[WD_NUMDEVS];
  153. volatile struct wd_regblk* regs;
  154. };
  155. static struct wd_device wd_dev = { 
  156. 0, SPIN_LOCK_UNLOCKED, 0, 0, 0, 0,
  157. };
  158. static struct timer_list wd_timer;
  159. static int wd0_timeout = 0;
  160. static int wd1_timeout = 0;
  161. static int wd2_timeout = 0;
  162. #ifdef MODULE
  163. EXPORT_NO_SYMBOLS;
  164. MODULE_PARM (wd0_timeout, "i");
  165. MODULE_PARM_DESC(wd0_timeout, "Default watchdog0 timeout in 1/10secs");
  166. MODULE_PARM  (wd1_timeout, "i");
  167. MODULE_PARM_DESC(wd1_timeout, "Default watchdog1 timeout in 1/10secs");
  168. MODULE_PARM  (wd2_timeout, "i");
  169. MODULE_PARM_DESC(wd2_timeout, "Default watchdog2 timeout in 1/10secs");
  170. MODULE_AUTHOR
  171. ("Eric Brower <ebrower@usa.net>");
  172. MODULE_DESCRIPTION
  173. ("Hardware watchdog driver for Sun Microsystems CP1400/1500");
  174. MODULE_LICENSE("GPL");
  175. MODULE_SUPPORTED_DEVICE
  176. ("watchdog");
  177. #endif /* ifdef MODULE */
  178. /* Forward declarations of internal methods
  179.  */
  180. #ifdef WD_DEBUG
  181. static void wd_dumpregs(void);
  182. #endif
  183. static void wd_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  184. static void wd_toggleintr(struct wd_timer* pTimer, int enable);
  185. static void wd_pingtimer(struct wd_timer* pTimer);
  186. static void wd_starttimer(struct wd_timer* pTimer);
  187. static void wd_resetbrokentimer(struct wd_timer* pTimer);
  188. static void wd_stoptimer(struct wd_timer* pTimer);
  189. static void wd_brokentimer(unsigned long data);
  190. static int  wd_getstatus(struct wd_timer* pTimer);
  191. /* PLD expects words to be written in LSB format,
  192.  * so we must flip all words prior to writing them to regs
  193.  */
  194. static inline unsigned short flip_word(unsigned short word)
  195. {
  196. return ((word & 0xff) << 8) | ((word >> 8) & 0xff);
  197. }
  198. #define wd_writew(val, addr)  (writew(flip_word(val), addr))
  199. #define wd_readw(addr)  (flip_word(readw(addr)))
  200. #define wd_writeb(val, addr)  (writeb(val, addr))
  201. #define wd_readb(addr)  (readb(addr))
  202. /* CP1400s seem to have broken PLD implementations--
  203.  * the interrupt_mask register cannot be written, so
  204.  * no timer interrupts can be masked within the PLD.
  205.  */
  206. static inline int wd_isbroken(void)
  207. {
  208. /* we could test this by read/write/read/restore
  209.  * on the interrupt mask register only if OBP
  210.  * 'watchdog-enable?' == FALSE, but it seems 
  211.  * ubiquitous on CP1400s
  212.  */
  213. char val[32];
  214. prom_getproperty(prom_root_node, "model", val, sizeof(val));
  215. return((!strcmp(val, WD_BADMODEL)) ? 1 : 0);
  216. }
  217. /* Retrieve watchdog-enable? option from OBP
  218.  * Returns 0 if false, 1 if true
  219.  */
  220. static inline int wd_opt_enable(void)
  221. {
  222. int opt_node;
  223. opt_node = prom_getchild(prom_root_node);
  224. opt_node = prom_searchsiblings(opt_node, "options");
  225. return((-1 == prom_getint(opt_node, "watchdog-enable?")) ? 0 : 1);
  226. }
  227. /* Retrieve watchdog-reboot? option from OBP
  228.  * Returns 0 if false, 1 if true
  229.  */
  230. static inline int wd_opt_reboot(void)
  231. {
  232. int opt_node;
  233. opt_node = prom_getchild(prom_root_node);
  234. opt_node = prom_searchsiblings(opt_node, "options");
  235. return((-1 == prom_getint(opt_node, "watchdog-reboot?")) ? 0 : 1);
  236. }
  237. /* Retrieve watchdog-timeout option from OBP
  238.  * Returns OBP value, or 0 if not located
  239.  */
  240. static inline int wd_opt_timeout(void)
  241. {
  242. int opt_node;
  243. char value[32];
  244. char *p = value;
  245. opt_node = prom_getchild(prom_root_node);
  246. opt_node = prom_searchsiblings(opt_node, "options");
  247. opt_node = prom_getproperty(opt_node, 
  248. "watchdog-timeout", 
  249. value, 
  250. sizeof(value));
  251. if(-1 != opt_node) {
  252. /* atoi implementation */
  253. for(opt_node = 0; /* nop */; p++) {
  254. if(*p >= '0' && *p <= '9') {
  255. opt_node = (10*opt_node)+(*p-'0');
  256. }
  257. else {
  258. break;
  259. }
  260. }
  261. }
  262. return((-1 == opt_node) ? (0) : (opt_node)); 
  263. }
  264. static int wd_open(struct inode *inode, struct file *f)
  265. {
  266. switch(MINOR(inode->i_rdev))
  267. {
  268. case WD0_MINOR:
  269. f->private_data = &wd_dev.watchdog[WD0_ID];
  270. break;
  271. case WD1_MINOR:
  272. f->private_data = &wd_dev.watchdog[WD1_ID];
  273. break;
  274. case WD2_MINOR:
  275. f->private_data = &wd_dev.watchdog[WD2_ID];
  276. break;
  277. default:
  278. return(-ENODEV);
  279. }
  280. /* Register IRQ on first open of device */
  281. if(0 == wd_dev.initialized)
  282. {
  283. if (request_irq(wd_dev.irq, 
  284. &wd_interrupt, 
  285. SA_SHIRQ,
  286. WD_OBPNAME,
  287. (void *)wd_dev.regs)) {
  288. printk("%s: Cannot register IRQ %sn", 
  289. WD_OBPNAME, __irq_itoa(wd_dev.irq));
  290. return(-EBUSY);
  291. }
  292. wd_dev.initialized = 1;
  293. }
  294. MOD_INC_USE_COUNT;
  295. return(0);
  296. }
  297. static int wd_release(struct inode *inode, struct file *file)
  298. {
  299. MOD_DEC_USE_COUNT;
  300. return 0;
  301. }
  302. static int wd_ioctl(struct inode *inode, struct file *file, 
  303.      unsigned int cmd, unsigned long arg)
  304. {
  305. int  setopt  = 0;
  306. struct  wd_timer* pTimer  = (struct wd_timer*)file->private_data;
  307. struct  watchdog_info info  = {
  308. 0,
  309. 0,
  310. "Altera EPF8820ATC144-4"
  311. };
  312. if(NULL == pTimer) {
  313. return(-EINVAL);
  314. }
  315. switch(cmd)
  316. {
  317. /* Generic Linux IOCTLs */
  318. case WDIOC_GETSUPPORT:
  319. if(copy_to_user((struct watchdog_info *)arg, 
  320. (struct watchdog_info *)&info, 
  321. sizeof(struct watchdog_info))) {
  322. return(-EFAULT);
  323. }
  324. break;
  325. case WDIOC_GETSTATUS:
  326. case WDIOC_GETBOOTSTATUS:
  327. if (put_user(0, (int *) arg))
  328. return -EFAULT;
  329. break;
  330. case WDIOC_KEEPALIVE:
  331. wd_pingtimer(pTimer);
  332. break;
  333. case WDIOC_SETOPTIONS:
  334. if(copy_from_user(&setopt, (void*) arg, sizeof(unsigned int))) {
  335. return -EFAULT;
  336. }
  337. if(setopt & WDIOS_DISABLECARD) {
  338. if(wd_dev.opt_enable) {
  339. printk(
  340. "%s: cannot disable watchdog in ENABLED moden",
  341. WD_OBPNAME);
  342. return(-EINVAL);
  343. }
  344. wd_stoptimer(pTimer);
  345. }
  346. else if(setopt & WDIOS_ENABLECARD) {
  347. wd_starttimer(pTimer);
  348. }
  349. else {
  350. return(-EINVAL);
  351. }
  352. break;
  353. /* Solaris-compatible IOCTLs */
  354. case WIOCGSTAT:
  355. setopt = wd_getstatus(pTimer);
  356. if(copy_to_user((void*)arg, &setopt, sizeof(unsigned int))) {
  357. return(-EFAULT);
  358. }
  359. break;
  360. case WIOCSTART:
  361. wd_starttimer(pTimer);
  362. break;
  363. case WIOCSTOP:
  364. if(wd_dev.opt_enable) {
  365. printk("%s: cannot disable watchdog in ENABLED moden",
  366. WD_OBPNAME);
  367. return(-EINVAL);
  368. }
  369. wd_stoptimer(pTimer);
  370. break;
  371. default:
  372. return(-EINVAL);
  373. }
  374. return(0);
  375. }
  376. static ssize_t wd_write( struct file  *file, 
  377. const char *buf, 
  378. size_t  count, 
  379. loff_t  *ppos)
  380. {
  381. struct wd_timer* pTimer = (struct wd_timer*)file->private_data;
  382. if(NULL == pTimer) {
  383. return(-EINVAL);
  384. }
  385. if (ppos != &file->f_pos)
  386. return -ESPIPE;
  387. if (count) {
  388. wd_pingtimer(pTimer);
  389. return 1;
  390. }
  391. return 0;
  392. }
  393. static ssize_t wd_read(struct file * file, char * buffer,
  394.         size_t count, loff_t *ppos)
  395. {
  396. #ifdef WD_DEBUG
  397. wd_dumpregs();
  398. return(0);
  399. #else
  400. return(-EINVAL);
  401. #endif /* ifdef WD_DEBUG */
  402. }
  403. static void wd_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  404. {
  405. /* Only WD0 will interrupt-- others are NMI and we won't
  406.  * see them here....
  407.  */
  408. spin_lock_irq(&wd_dev.lock);
  409. if((unsigned long)wd_dev.regs == (unsigned long)dev_id)
  410. {
  411. wd_stoptimer(&wd_dev.watchdog[WD0_ID]);
  412. wd_dev.watchdog[WD0_ID].runstatus |=  WD_STAT_SVCD;
  413. }
  414. spin_unlock_irq(&wd_dev.lock);
  415. return;
  416. }
  417. static struct file_operations wd_fops = {
  418. owner: THIS_MODULE,
  419. ioctl: wd_ioctl,
  420. open: wd_open,
  421. write: wd_write,
  422. read: wd_read,
  423. release: wd_release,
  424. };
  425. static struct miscdevice wd0_miscdev = { WD0_MINOR, WD0_DEVNAME, &wd_fops };
  426. static struct miscdevice wd1_miscdev = { WD1_MINOR, WD1_DEVNAME, &wd_fops };
  427. static struct miscdevice wd2_miscdev = { WD2_MINOR, WD2_DEVNAME, &wd_fops };
  428. #ifdef WD_DEBUG
  429. static void wd_dumpregs(void)
  430. {
  431. /* Reading from downcounters initiates watchdog countdown--
  432.  * Example is included below for illustration purposes.
  433.  */
  434. int i;
  435. printk("%s: dumping register valuesn", WD_OBPNAME);
  436. for(i = WD0_ID; i < WD_NUMDEVS; ++i) {
  437. /* printk("t%s%i: dcntr  at 0x%lx: 0x%xn", 
  438.  *  WD_OBPNAME,
  439.    * i,
  440.  * (unsigned long)(&wd_dev.watchdog[i].regs->dcntr), 
  441.  * readw(&wd_dev.watchdog[i].regs->dcntr));
  442.  */
  443. printk("t%s%i: limit  at 0x%lx: 0x%xn", 
  444. WD_OBPNAME,
  445. i,
  446. (unsigned long)(&wd_dev.watchdog[i].regs->limit), 
  447. readw(&wd_dev.watchdog[i].regs->limit));
  448. printk("t%s%i: status at 0x%lx: 0x%xn", 
  449. WD_OBPNAME,
  450. i,
  451. (unsigned long)(&wd_dev.watchdog[i].regs->status), 
  452. readb(&wd_dev.watchdog[i].regs->status));
  453. printk("t%s%i: driver status: 0x%xn",
  454. WD_OBPNAME,
  455. i,
  456. wd_getstatus(&wd_dev.watchdog[i]));
  457. }
  458. printk("tintr_mask  at 0x%lx: 0x%xn", 
  459. (unsigned long)(&wd_dev.regs->pld_regs.intr_mask), 
  460. readb(&wd_dev.regs->pld_regs.intr_mask));
  461. printk("tpld_status at 0x%lx: 0x%xn", 
  462. (unsigned long)(&wd_dev.regs->pld_regs.status), 
  463. readb(&wd_dev.regs->pld_regs.status));
  464. }
  465. #endif
  466. /* Enable or disable watchdog interrupts
  467.  * Because of the CP1400 defect this should only be
  468.  * called during initialzation or by wd_[start|stop]timer()
  469.  *
  470.  * pTimer  - pointer to timer device, or NULL to indicate all timers 
  471.  * enable - non-zero to enable interrupts, zero to disable
  472.  */
  473. static void wd_toggleintr(struct wd_timer* pTimer, int enable)
  474. {
  475. unsigned char curregs = wd_readb(&wd_dev.regs->pld_regs.intr_mask);
  476. unsigned char setregs = 
  477. (NULL == pTimer) ? 
  478. (WD0_INTR_MASK | WD1_INTR_MASK | WD2_INTR_MASK) : 
  479. (pTimer->intr_mask);
  480. (WD_INTR_ON == enable) ?
  481. (curregs &= ~setregs):
  482. (curregs |=  setregs);
  483. wd_writeb(curregs, &wd_dev.regs->pld_regs.intr_mask);
  484. return;
  485. }
  486. /* Reset countdown timer with 'limit' value and continue countdown.
  487.  * This will not start a stopped timer.
  488.  *
  489.  * pTimer - pointer to timer device
  490.  */
  491. static void wd_pingtimer(struct wd_timer* pTimer)
  492. {
  493. if(wd_readb(&pTimer->regs->status) & WD_S_RUNNING) {
  494. wd_readb(&pTimer->regs->dcntr);
  495. }
  496. }
  497. /* Stop a running watchdog timer-- the timer actually keeps
  498.  * running, but the interrupt is masked so that no action is
  499.  * taken upon expiration.
  500.  *
  501.  * pTimer - pointer to timer device
  502.  */
  503. static void wd_stoptimer(struct wd_timer* pTimer)
  504. {
  505. if(wd_readb(&pTimer->regs->status) & WD_S_RUNNING) {
  506. wd_toggleintr(pTimer, WD_INTR_OFF);
  507. if(wd_dev.isbaddoggie) {
  508. pTimer->runstatus |= WD_STAT_BSTOP;
  509. wd_brokentimer((unsigned long)&wd_dev);
  510. }
  511. }
  512. }
  513. /* Start a watchdog timer with the specified limit value
  514.  * If the watchdog is running, it will be restarted with
  515.  * the provided limit value.
  516.  *
  517.  * This function will enable interrupts on the specified
  518.  * watchdog.
  519.  *
  520.  * pTimer - pointer to timer device
  521.  * limit - limit (countdown) value in 1/10th seconds
  522.  */
  523. static void wd_starttimer(struct wd_timer* pTimer)
  524. {
  525. if(wd_dev.isbaddoggie) {
  526. pTimer->runstatus &= ~WD_STAT_BSTOP;
  527. }
  528. pTimer->runstatus &= ~WD_STAT_SVCD;
  529. wd_writew(pTimer->timeout, &pTimer->regs->limit);
  530. wd_toggleintr(pTimer, WD_INTR_ON);
  531. }
  532. /* Restarts timer with maximum limit value and
  533.  * does not unset 'brokenstop' value.
  534.  */
  535. static void wd_resetbrokentimer(struct wd_timer* pTimer)
  536. {
  537. wd_toggleintr(pTimer, WD_INTR_ON);
  538. wd_writew(WD_BLIMIT, &pTimer->regs->limit);
  539. }
  540. /* Timer device initialization helper.
  541.  * Returns 0 on success, other on failure
  542.  */
  543. static int wd_inittimer(int whichdog)
  544. {
  545. struct miscdevice  *whichmisc;
  546. volatile struct wd_timer_regblk *whichregs;
  547. char  whichident[8];
  548. int whichmask;
  549. __u16 whichlimit;
  550. switch(whichdog)
  551. {
  552. case WD0_ID:
  553. whichmisc = &wd0_miscdev;
  554. strcpy(whichident, "RIC");
  555. whichregs = &wd_dev.regs->wd0_regs;
  556. whichmask = WD0_INTR_MASK;
  557. whichlimit= (0 == wd0_timeout)  ? 
  558. (wd_dev.opt_timeout): 
  559. (wd0_timeout);
  560. break;
  561. case WD1_ID:
  562. whichmisc = &wd1_miscdev;
  563. strcpy(whichident, "XIR");
  564. whichregs = &wd_dev.regs->wd1_regs;
  565. whichmask = WD1_INTR_MASK;
  566. whichlimit= (0 == wd1_timeout)  ? 
  567. (wd_dev.opt_timeout): 
  568. (wd1_timeout);
  569. break;
  570. case WD2_ID:
  571. whichmisc = &wd2_miscdev;
  572. strcpy(whichident, "POR");
  573. whichregs = &wd_dev.regs->wd2_regs;
  574. whichmask = WD2_INTR_MASK;
  575. whichlimit= (0 == wd2_timeout)  ? 
  576. (wd_dev.opt_timeout): 
  577. (wd2_timeout);
  578. break;
  579. default:
  580. printk("%s: %s: invalid watchdog id: %in",
  581. WD_OBPNAME, __FUNCTION__, whichdog);
  582. return(1);
  583. }
  584. if(0 != misc_register(whichmisc))
  585. {
  586. return(1);
  587. }
  588. wd_dev.watchdog[whichdog].regs = whichregs;
  589. wd_dev.watchdog[whichdog].timeout  = whichlimit;
  590. wd_dev.watchdog[whichdog].intr_mask = whichmask;
  591. wd_dev.watchdog[whichdog].runstatus  &= ~WD_STAT_BSTOP;
  592. wd_dev.watchdog[whichdog].runstatus  |= WD_STAT_INIT;
  593. printk("%s%i: %s hardware watchdog [%01i.%i sec] %sn", 
  594. WD_OBPNAME, 
  595. whichdog, 
  596. whichident, 
  597. wd_dev.watchdog[whichdog].timeout / 10,
  598. wd_dev.watchdog[whichdog].timeout % 10,
  599. (0 != wd_dev.opt_enable) ? "in ENABLED mode" : "");
  600. return(0);
  601. }
  602. /* Timer method called to reset stopped watchdogs--
  603.  * because of the PLD bug on CP1400, we cannot mask
  604.  * interrupts within the PLD so me must continually
  605.  * reset the timers ad infinitum.
  606.  */
  607. static void wd_brokentimer(unsigned long data)
  608. {
  609. struct wd_device* pDev = (struct wd_device*)data;
  610. int id, tripped = 0;
  611. /* kill a running timer instance, in case we
  612.  * were called directly instead of by kernel timer
  613.  */
  614. if(timer_pending(&wd_timer)) {
  615. del_timer(&wd_timer);
  616. }
  617. for(id = WD0_ID; id < WD_NUMDEVS; ++id) {
  618. if(pDev->watchdog[id].runstatus & WD_STAT_BSTOP) {
  619. ++tripped;
  620. wd_resetbrokentimer(&pDev->watchdog[id]);
  621. }
  622. }
  623. if(tripped) {
  624. /* there is at least one timer brokenstopped-- reschedule */
  625. wd_timer.expires = WD_BTIMEOUT;
  626. add_timer(&wd_timer);
  627. }
  628. }
  629. static int wd_getstatus(struct wd_timer* pTimer)
  630. {
  631. unsigned char stat = wd_readb(&pTimer->regs->status);
  632. unsigned char intr = wd_readb(&wd_dev.regs->pld_regs.intr_mask);
  633. unsigned char ret  = WD_STOPPED;
  634. /* determine STOPPED */
  635. if(0 == stat ) { 
  636. return(ret);
  637. }
  638. /* determine EXPIRED vs FREERUN vs RUNNING */
  639. else if(WD_S_EXPIRED & stat) {
  640. ret = WD_EXPIRED;
  641. }
  642. else if(WD_S_RUNNING & stat) {
  643. if(intr & pTimer->intr_mask) {
  644. ret = WD_FREERUN;
  645. }
  646. else {
  647. /* Fudge WD_EXPIRED status for defective CP1400--
  648.  * IF timer is running 
  649.  *  AND brokenstop is set 
  650.  *  AND an interrupt has been serviced
  651.  * we are WD_EXPIRED.
  652.  *
  653.  * IF timer is running 
  654.  *  AND brokenstop is set 
  655.  *  AND no interrupt has been serviced
  656.  * we are WD_FREERUN.
  657.  */
  658. if(wd_dev.isbaddoggie && (pTimer->runstatus & WD_STAT_BSTOP)) {
  659. if(pTimer->runstatus & WD_STAT_SVCD) {
  660. ret = WD_EXPIRED;
  661. }
  662. else {
  663. /* we could as well pretend we are expired */
  664. ret = WD_FREERUN;
  665. }
  666. }
  667. else {
  668. ret = WD_RUNNING;
  669. }
  670. }
  671. }
  672. /* determine SERVICED */
  673. if(pTimer->runstatus & WD_STAT_SVCD) {
  674. ret |= WD_SERVICED;
  675. }
  676. return(ret);
  677. }
  678. static int __init wd_init(void)
  679. {
  680. int  id;
  681. struct  linux_ebus *ebus = NULL;
  682. struct  linux_ebus_device *edev = NULL;
  683. for_each_ebus(ebus) {
  684. for_each_ebusdev(edev, ebus) {
  685. if (!strcmp(edev->prom_name, WD_OBPNAME))
  686. goto ebus_done;
  687. }
  688. }
  689. ebus_done:
  690. if(!edev) {
  691. printk("%s: unable to locate devicen", WD_OBPNAME);
  692. return -ENODEV;
  693. }
  694. wd_dev.regs = 
  695. ioremap(edev->resource[0].start, sizeof(struct wd_regblk));
  696. if(NULL == wd_dev.regs) {
  697. printk("%s: unable to map registersn", WD_OBPNAME);
  698. return(-ENODEV);
  699. }
  700. /* initialize device structure from OBP parameters */
  701. wd_dev.irq  = edev->irqs[0];
  702. wd_dev.opt_enable = wd_opt_enable();
  703. wd_dev.opt_reboot = wd_opt_reboot();
  704. wd_dev.opt_timeout = wd_opt_timeout();
  705. wd_dev.isbaddoggie = wd_isbroken();
  706. /* disable all interrupts unless watchdog-enabled? == true */
  707. if(! wd_dev.opt_enable) {
  708. wd_toggleintr(NULL, WD_INTR_OFF);
  709. }
  710. /* register miscellaneous devices */
  711. for(id = WD0_ID; id < WD_NUMDEVS; ++id) {
  712. if(0 != wd_inittimer(id)) {
  713. printk("%s%i: unable to initializen", WD_OBPNAME, id);
  714. }
  715. }
  716. /* warn about possible defective PLD */
  717. if(wd_dev.isbaddoggie) {
  718. init_timer(&wd_timer);
  719. wd_timer.function  = wd_brokentimer;
  720. wd_timer.data = (unsigned long)&wd_dev;
  721. wd_timer.expires = WD_BTIMEOUT;
  722. printk("%s: PLD defect workaround enabled for model %sn",
  723. WD_OBPNAME, WD_BADMODEL);
  724. }
  725. return(0);
  726. }
  727. static void __exit wd_cleanup(void)
  728. {
  729. int id;
  730. /* if 'watchdog-enable?' == TRUE, timers are not stopped 
  731.  * when module is unloaded.  All brokenstopped timers will
  732.  * also now eventually trip. 
  733.  */
  734. for(id = WD0_ID; id < WD_NUMDEVS; ++id) {
  735. if(WD_S_RUNNING == wd_readb(&wd_dev.watchdog[id].regs->status)) {
  736. if(wd_dev.opt_enable) {
  737. printk(KERN_WARNING "%s%i: timer not stopped at releasen",
  738. WD_OBPNAME, id);
  739. }
  740. else {
  741. wd_stoptimer(&wd_dev.watchdog[id]);
  742. if(wd_dev.watchdog[id].runstatus & WD_STAT_BSTOP) {
  743. wd_resetbrokentimer(&wd_dev.watchdog[id]);
  744. printk(KERN_WARNING 
  745. "%s%i: defect workaround disabled at release, "
  746. "timer expires in ~%01i secn",
  747. WD_OBPNAME, id, 
  748. wd_readw(&wd_dev.watchdog[id].regs->limit) / 10);
  749. }
  750. }
  751. }
  752. }
  753. if(wd_dev.isbaddoggie && timer_pending(&wd_timer)) {
  754. del_timer(&wd_timer);
  755. }
  756. if(0 != (wd_dev.watchdog[WD0_ID].runstatus & WD_STAT_INIT)) {
  757. misc_deregister(&wd0_miscdev);
  758. }
  759. if(0 != (wd_dev.watchdog[WD1_ID].runstatus & WD_STAT_INIT)) {
  760. misc_deregister(&wd1_miscdev);
  761. }
  762. if(0 != (wd_dev.watchdog[WD2_ID].runstatus & WD_STAT_INIT)) {
  763. misc_deregister(&wd2_miscdev);
  764. }
  765. if(0 != wd_dev.initialized) {
  766. free_irq(wd_dev.irq, (void *)wd_dev.regs);
  767. }
  768. iounmap(wd_dev.regs);
  769. }
  770. module_init(wd_init);
  771. module_exit(wd_cleanup);