i6300esb.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. /*
  2. * i6300esb: Watchdog timer driver for Intel 6300ESB chipset
  3. *
  4. * (c) Copyright 2004 Google Inc.
  5. * (c) Copyright 2005 David Härdeman <david@2gen.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. *
  12. * based on i810-tco.c which is in turn based on softdog.c
  13. *
  14. * The timer is implemented in the following I/O controller hubs:
  15. * (See the intel documentation on http://developer.intel.com.)
  16. * 6300ESB chip : document number 300641-004
  17. *
  18. * 2004YYZZ Ross Biro
  19. * Initial version 0.01
  20. * 2004YYZZ Ross Biro
  21. * Version 0.02
  22. * 20050210 David Härdeman <david@2gen.com>
  23. * Ported driver to kernel 2.6
  24. */
  25. /*
  26. * Includes, defines, variables, module parameters, ...
  27. */
  28. #include <linux/module.h>
  29. #include <linux/types.h>
  30. #include <linux/kernel.h>
  31. #include <linux/fs.h>
  32. #include <linux/mm.h>
  33. #include <linux/miscdevice.h>
  34. #include <linux/watchdog.h>
  35. #include <linux/platform_device.h>
  36. #include <linux/init.h>
  37. #include <linux/pci.h>
  38. #include <linux/ioport.h>
  39. #include <linux/uaccess.h>
  40. #include <linux/io.h>
  41. /* Module and version information */
  42. #define ESB_VERSION "0.04"
  43. #define ESB_MODULE_NAME "i6300ESB timer"
  44. #define ESB_DRIVER_NAME ESB_MODULE_NAME ", v" ESB_VERSION
  45. #define PFX ESB_MODULE_NAME ": "
  46. /* PCI configuration registers */
  47. #define ESB_CONFIG_REG 0x60 /* Config register */
  48. #define ESB_LOCK_REG 0x68 /* WDT lock register */
  49. /* Memory mapped registers */
  50. #define ESB_TIMER1_REG BASEADDR + 0x00 /* Timer1 value after each reset */
  51. #define ESB_TIMER2_REG BASEADDR + 0x04 /* Timer2 value after each reset */
  52. #define ESB_GINTSR_REG BASEADDR + 0x08 /* General Interrupt Status Register */
  53. #define ESB_RELOAD_REG BASEADDR + 0x0c /* Reload register */
  54. /* Lock register bits */
  55. #define ESB_WDT_FUNC (0x01 << 2) /* Watchdog functionality */
  56. #define ESB_WDT_ENABLE (0x01 << 1) /* Enable WDT */
  57. #define ESB_WDT_LOCK (0x01 << 0) /* Lock (nowayout) */
  58. /* Config register bits */
  59. #define ESB_WDT_REBOOT (0x01 << 5) /* Enable reboot on timeout */
  60. #define ESB_WDT_FREQ (0x01 << 2) /* Decrement frequency */
  61. #define ESB_WDT_INTTYPE (0x11 << 0) /* Interrupt type on timer1 timeout */
  62. /* Reload register bits */
  63. #define ESB_WDT_RELOAD (0x01 << 8) /* prevent timeout */
  64. /* Magic constants */
  65. #define ESB_UNLOCK1 0x80 /* Step 1 to unlock reset registers */
  66. #define ESB_UNLOCK2 0x86 /* Step 2 to unlock reset registers */
  67. /* internal variables */
  68. static void __iomem *BASEADDR;
  69. static DEFINE_SPINLOCK(esb_lock); /* Guards the hardware */
  70. static unsigned long timer_alive;
  71. static struct pci_dev *esb_pci;
  72. static unsigned short triggered; /* The status of the watchdog upon boot */
  73. static char esb_expect_close;
  74. static struct platform_device *esb_platform_device;
  75. /* module parameters */
  76. /* 30 sec default heartbeat (1 < heartbeat < 2*1023) */
  77. #define WATCHDOG_HEARTBEAT 30
  78. static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
  79. module_param(heartbeat, int, 0);
  80. MODULE_PARM_DESC(heartbeat,
  81. "Watchdog heartbeat in seconds. (1<heartbeat<2046, default="
  82. __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
  83. static int nowayout = WATCHDOG_NOWAYOUT;
  84. module_param(nowayout, int, 0);
  85. MODULE_PARM_DESC(nowayout,
  86. "Watchdog cannot be stopped once started (default="
  87. __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
  88. /*
  89. * Some i6300ESB specific functions
  90. */
  91. /*
  92. * Prepare for reloading the timer by unlocking the proper registers.
  93. * This is performed by first writing 0x80 followed by 0x86 to the
  94. * reload register. After this the appropriate registers can be written
  95. * to once before they need to be unlocked again.
  96. */
  97. static inline void esb_unlock_registers(void)
  98. {
  99. writeb(ESB_UNLOCK1, ESB_RELOAD_REG);
  100. writeb(ESB_UNLOCK2, ESB_RELOAD_REG);
  101. }
  102. static int esb_timer_start(void)
  103. {
  104. u8 val;
  105. spin_lock(&esb_lock);
  106. esb_unlock_registers();
  107. writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
  108. /* Enable or Enable + Lock? */
  109. val = 0x02 | (nowayout ? 0x01 : 0x00);
  110. pci_write_config_byte(esb_pci, ESB_LOCK_REG, val);
  111. spin_unlock(&esb_lock);
  112. return 0;
  113. }
  114. static int esb_timer_stop(void)
  115. {
  116. u8 val;
  117. spin_lock(&esb_lock);
  118. /* First, reset timers as suggested by the docs */
  119. esb_unlock_registers();
  120. writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
  121. /* Then disable the WDT */
  122. pci_write_config_byte(esb_pci, ESB_LOCK_REG, 0x0);
  123. pci_read_config_byte(esb_pci, ESB_LOCK_REG, &val);
  124. spin_unlock(&esb_lock);
  125. /* Returns 0 if the timer was disabled, non-zero otherwise */
  126. return (val & 0x01);
  127. }
  128. static void esb_timer_keepalive(void)
  129. {
  130. spin_lock(&esb_lock);
  131. esb_unlock_registers();
  132. writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
  133. /* FIXME: Do we need to flush anything here? */
  134. spin_unlock(&esb_lock);
  135. }
  136. static int esb_timer_set_heartbeat(int time)
  137. {
  138. u32 val;
  139. if (time < 0x1 || time > (2 * 0x03ff))
  140. return -EINVAL;
  141. spin_lock(&esb_lock);
  142. /* We shift by 9, so if we are passed a value of 1 sec,
  143. * val will be 1 << 9 = 512, then write that to two
  144. * timers => 2 * 512 = 1024 (which is decremented at 1KHz)
  145. */
  146. val = time << 9;
  147. /* Write timer 1 */
  148. esb_unlock_registers();
  149. writel(val, ESB_TIMER1_REG);
  150. /* Write timer 2 */
  151. esb_unlock_registers();
  152. writel(val, ESB_TIMER2_REG);
  153. /* Reload */
  154. esb_unlock_registers();
  155. writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
  156. /* FIXME: Do we need to flush everything out? */
  157. /* Done */
  158. heartbeat = time;
  159. spin_unlock(&esb_lock);
  160. return 0;
  161. }
  162. static int esb_timer_read(void)
  163. {
  164. u32 count;
  165. /* This isn't documented, and doesn't take into
  166. * acount which stage is running, but it looks
  167. * like a 20 bit count down, so we might as well report it.
  168. */
  169. pci_read_config_dword(esb_pci, 0x64, &count);
  170. return (int)count;
  171. }
  172. /*
  173. * /dev/watchdog handling
  174. */
  175. static int esb_open(struct inode *inode, struct file *file)
  176. {
  177. /* /dev/watchdog can only be opened once */
  178. if (test_and_set_bit(0, &timer_alive))
  179. return -EBUSY;
  180. /* Reload and activate timer */
  181. esb_timer_start();
  182. return nonseekable_open(inode, file);
  183. }
  184. static int esb_release(struct inode *inode, struct file *file)
  185. {
  186. /* Shut off the timer. */
  187. if (esb_expect_close == 42)
  188. esb_timer_stop();
  189. else {
  190. printk(KERN_CRIT PFX
  191. "Unexpected close, not stopping watchdog!\n");
  192. esb_timer_keepalive();
  193. }
  194. clear_bit(0, &timer_alive);
  195. esb_expect_close = 0;
  196. return 0;
  197. }
  198. static ssize_t esb_write(struct file *file, const char __user *data,
  199. size_t len, loff_t *ppos)
  200. {
  201. /* See if we got the magic character 'V' and reload the timer */
  202. if (len) {
  203. if (!nowayout) {
  204. size_t i;
  205. /* note: just in case someone wrote the magic character
  206. * five months ago... */
  207. esb_expect_close = 0;
  208. /* scan to see whether or not we got the
  209. * magic character */
  210. for (i = 0; i != len; i++) {
  211. char c;
  212. if (get_user(c, data + i))
  213. return -EFAULT;
  214. if (c == 'V')
  215. esb_expect_close = 42;
  216. }
  217. }
  218. /* someone wrote to us, we should reload the timer */
  219. esb_timer_keepalive();
  220. }
  221. return len;
  222. }
  223. static long esb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  224. {
  225. int new_options, retval = -EINVAL;
  226. int new_heartbeat;
  227. void __user *argp = (void __user *)arg;
  228. int __user *p = argp;
  229. static struct watchdog_info ident = {
  230. .options = WDIOF_SETTIMEOUT |
  231. WDIOF_KEEPALIVEPING |
  232. WDIOF_MAGICCLOSE,
  233. .firmware_version = 0,
  234. .identity = ESB_MODULE_NAME,
  235. };
  236. switch (cmd) {
  237. case WDIOC_GETSUPPORT:
  238. return copy_to_user(argp, &ident,
  239. sizeof(ident)) ? -EFAULT : 0;
  240. case WDIOC_GETSTATUS:
  241. return put_user(esb_timer_read(), p);
  242. case WDIOC_GETBOOTSTATUS:
  243. return put_user(triggered, p);
  244. case WDIOC_SETOPTIONS:
  245. {
  246. if (get_user(new_options, p))
  247. return -EFAULT;
  248. if (new_options & WDIOS_DISABLECARD) {
  249. esb_timer_stop();
  250. retval = 0;
  251. }
  252. if (new_options & WDIOS_ENABLECARD) {
  253. esb_timer_start();
  254. retval = 0;
  255. }
  256. return retval;
  257. }
  258. case WDIOC_KEEPALIVE:
  259. esb_timer_keepalive();
  260. return 0;
  261. case WDIOC_SETTIMEOUT:
  262. {
  263. if (get_user(new_heartbeat, p))
  264. return -EFAULT;
  265. if (esb_timer_set_heartbeat(new_heartbeat))
  266. return -EINVAL;
  267. esb_timer_keepalive();
  268. /* Fall */
  269. }
  270. case WDIOC_GETTIMEOUT:
  271. return put_user(heartbeat, p);
  272. default:
  273. return -ENOTTY;
  274. }
  275. }
  276. /*
  277. * Kernel Interfaces
  278. */
  279. static const struct file_operations esb_fops = {
  280. .owner = THIS_MODULE,
  281. .llseek = no_llseek,
  282. .write = esb_write,
  283. .unlocked_ioctl = esb_ioctl,
  284. .open = esb_open,
  285. .release = esb_release,
  286. };
  287. static struct miscdevice esb_miscdev = {
  288. .minor = WATCHDOG_MINOR,
  289. .name = "watchdog",
  290. .fops = &esb_fops,
  291. };
  292. /*
  293. * Data for PCI driver interface
  294. *
  295. * This data only exists for exporting the supported
  296. * PCI ids via MODULE_DEVICE_TABLE. We do not actually
  297. * register a pci_driver, because someone else might one day
  298. * want to register another driver on the same PCI id.
  299. */
  300. static struct pci_device_id esb_pci_tbl[] = {
  301. { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_9), },
  302. { 0, }, /* End of list */
  303. };
  304. MODULE_DEVICE_TABLE(pci, esb_pci_tbl);
  305. /*
  306. * Init & exit routines
  307. */
  308. static unsigned char __devinit esb_getdevice(void)
  309. {
  310. u8 val1;
  311. unsigned short val2;
  312. /*
  313. * Find the PCI device
  314. */
  315. esb_pci = pci_get_device(PCI_VENDOR_ID_INTEL,
  316. PCI_DEVICE_ID_INTEL_ESB_9, NULL);
  317. if (esb_pci) {
  318. if (pci_enable_device(esb_pci)) {
  319. printk(KERN_ERR PFX "failed to enable device\n");
  320. goto err_devput;
  321. }
  322. if (pci_request_region(esb_pci, 0, ESB_MODULE_NAME)) {
  323. printk(KERN_ERR PFX "failed to request region\n");
  324. goto err_disable;
  325. }
  326. BASEADDR = pci_ioremap_bar(esb_pci, 0);
  327. if (BASEADDR == NULL) {
  328. /* Something's wrong here, BASEADDR has to be set */
  329. printk(KERN_ERR PFX "failed to get BASEADDR\n");
  330. goto err_release;
  331. }
  332. /*
  333. * The watchdog has two timers, it can be setup so that the
  334. * expiry of timer1 results in an interrupt and the expiry of
  335. * timer2 results in a reboot. We set it to not generate
  336. * any interrupts as there is not much we can do with it
  337. * right now.
  338. *
  339. * We also enable reboots and set the timer frequency to
  340. * the PCI clock divided by 2^15 (approx 1KHz).
  341. */
  342. pci_write_config_word(esb_pci, ESB_CONFIG_REG, 0x0003);
  343. /* Check that the WDT isn't already locked */
  344. pci_read_config_byte(esb_pci, ESB_LOCK_REG, &val1);
  345. if (val1 & ESB_WDT_LOCK)
  346. printk(KERN_WARNING PFX "nowayout already set\n");
  347. /* Set the timer to watchdog mode and disable it for now */
  348. pci_write_config_byte(esb_pci, ESB_LOCK_REG, 0x00);
  349. /* Check if the watchdog was previously triggered */
  350. esb_unlock_registers();
  351. val2 = readw(ESB_RELOAD_REG);
  352. triggered = (val2 & (0x01 << 9) >> 9);
  353. /* Reset trigger flag and timers */
  354. esb_unlock_registers();
  355. writew((0x11 << 8), ESB_RELOAD_REG);
  356. /* Done */
  357. return 1;
  358. err_release:
  359. pci_release_region(esb_pci, 0);
  360. err_disable:
  361. pci_disable_device(esb_pci);
  362. err_devput:
  363. pci_dev_put(esb_pci);
  364. }
  365. return 0;
  366. }
  367. static int __devinit esb_probe(struct platform_device *dev)
  368. {
  369. int ret;
  370. /* Check whether or not the hardware watchdog is there */
  371. if (!esb_getdevice() || esb_pci == NULL)
  372. return -ENODEV;
  373. /* Check that the heartbeat value is within it's range;
  374. if not reset to the default */
  375. if (esb_timer_set_heartbeat(heartbeat)) {
  376. esb_timer_set_heartbeat(WATCHDOG_HEARTBEAT);
  377. printk(KERN_INFO PFX
  378. "heartbeat value must be 1<heartbeat<2046, using %d\n",
  379. heartbeat);
  380. }
  381. ret = misc_register(&esb_miscdev);
  382. if (ret != 0) {
  383. printk(KERN_ERR PFX
  384. "cannot register miscdev on minor=%d (err=%d)\n",
  385. WATCHDOG_MINOR, ret);
  386. goto err_unmap;
  387. }
  388. esb_timer_stop();
  389. printk(KERN_INFO PFX
  390. "initialized (0x%p). heartbeat=%d sec (nowayout=%d)\n",
  391. BASEADDR, heartbeat, nowayout);
  392. return 0;
  393. err_unmap:
  394. iounmap(BASEADDR);
  395. /* err_release: */
  396. pci_release_region(esb_pci, 0);
  397. /* err_disable: */
  398. pci_disable_device(esb_pci);
  399. /* err_devput: */
  400. pci_dev_put(esb_pci);
  401. return ret;
  402. }
  403. static int __devexit esb_remove(struct platform_device *dev)
  404. {
  405. /* Stop the timer before we leave */
  406. if (!nowayout)
  407. esb_timer_stop();
  408. /* Deregister */
  409. misc_deregister(&esb_miscdev);
  410. iounmap(BASEADDR);
  411. pci_release_region(esb_pci, 0);
  412. pci_disable_device(esb_pci);
  413. pci_dev_put(esb_pci);
  414. return 0;
  415. }
  416. static void esb_shutdown(struct platform_device *dev)
  417. {
  418. esb_timer_stop();
  419. }
  420. static struct platform_driver esb_platform_driver = {
  421. .probe = esb_probe,
  422. .remove = __devexit_p(esb_remove),
  423. .shutdown = esb_shutdown,
  424. .driver = {
  425. .owner = THIS_MODULE,
  426. .name = ESB_MODULE_NAME,
  427. },
  428. };
  429. static int __init watchdog_init(void)
  430. {
  431. int err;
  432. printk(KERN_INFO PFX "Intel 6300ESB WatchDog Timer Driver v%s\n",
  433. ESB_VERSION);
  434. err = platform_driver_register(&esb_platform_driver);
  435. if (err)
  436. return err;
  437. esb_platform_device = platform_device_register_simple(ESB_MODULE_NAME,
  438. -1, NULL, 0);
  439. if (IS_ERR(esb_platform_device)) {
  440. err = PTR_ERR(esb_platform_device);
  441. goto unreg_platform_driver;
  442. }
  443. return 0;
  444. unreg_platform_driver:
  445. platform_driver_unregister(&esb_platform_driver);
  446. return err;
  447. }
  448. static void __exit watchdog_cleanup(void)
  449. {
  450. platform_device_unregister(esb_platform_device);
  451. platform_driver_unregister(&esb_platform_driver);
  452. printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
  453. }
  454. module_init(watchdog_init);
  455. module_exit(watchdog_cleanup);
  456. MODULE_AUTHOR("Ross Biro and David Härdeman");
  457. MODULE_DESCRIPTION("Watchdog driver for Intel 6300ESB chipsets");
  458. MODULE_LICENSE("GPL");
  459. MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);