寫在移植前的:
看門狗在嵌入式系統開發中占據重要的地位,管理系統的工作狀態。在這裡本人muge0913在參考別人的基礎上,實現了mini6410看門狗的移植。
在mini6410中看門狗驅動文件為linux2.6.38/drivers/watchdog/s3c2410_wdt.c
在mini6410中linux系統默認看門狗是不開機啟動,但是我們可以向/dev/watchdog寫入數據來啟動或關閉看門狗。
如:echo 0 >/dev/watchdog
echo這個命令啟動的作用是先打開文件,再寫入內容,然後關閉。也就是open->write->release。
運行效果:
一段時間後系統會自動重啟。
如果執行:
echo 0 >/dev/watchdog
echo V >/dev/watchdog
系統側不會重啟。
原因分析:
open函數:
- static int s3c2410wdt_open(struct inode *inode, struct file *file)
- {
- if (test_and_set_bit(0, &open_lock))
- return -EBUSY;
-
- if (nowayout)
- __module_get(THIS_MODULE);
-
- expect_close = 0;
-
- /* start the timer */
- s3c2410wdt_start();
- return nonseekable_open(inode, file);
- }
release函數:
- static int s3c2410wdt_release(struct inode *inode, struct file *file)
- {
- /*
- * Shut off the timer.
- * Lock it in if it's a module and we set nowayout
- */
-
- if (expect_close == 42)
- s3c2410wdt_stop();
- else {
- dev_err(wdt_dev, "Unexpected close, not stopping watchdog\n");
- s3c2410wdt_keepalive();
- }
- expect_close = 0;
- clear_bit(0, &open_lock);
- return 0;
- }
write函數:
- static ssize_t s3c2410wdt_write(struct file *file, const char __user *data,
- size_t len, loff_t *ppos)
- {
- /*
- * Refresh the timer.
- */
- if (len) {
- if (!nowayout) {
- size_t i;
-
- /* In case it was set long ago */
- expect_close = 0;
-
- for (i = 0; i != len; i++) {
- char c;
-
- if (get_user(c, data + i))
- return -EFAULT;
- if (c == 'V')
- expect_close = 42;
- }
- }
- s3c2410wdt_keepalive();
- }
- return len;
- }
看門狗只能被一個進程打開,打開函數中先判斷了一下,然後啟動了看門狗;再看write函數,寫入的如果是V則允許關閉看門狗,如果不是V僅僅喂狗一次;最後是release函數,如果允許關閉則關閉看門狗,如果不允許關閉,打印"Unexpectedclose, not stopping watchdog",喂狗一次。此時看門狗並沒有關閉,所以系統會復位的,如果輸入V則看門狗被關閉,這樣系統就不復位了。