WatchDog Timer驱动

Linux混杂设备驱动 (2010-04-17 18:18)

WatchDog Timer驱动

混杂设备

Misc(或miscellaneous)驱动是一些拥有着共同特性的简单字符设备驱动。内核抽象出这些特性而形成一些API(在文件drivers/char/misc.c中实现),以简化这些设备驱动程序的初始化。所有的misc设备被分配同一个主设备号MISC_MAJOR(10),但是每一个可以选择一个单独的次设备号。如果一个字符设备驱动要驱动多个设备,那么它就不应该用misc设备来实现。

通常情况下,一个字符设备都不得不在初始化的过程中进行下面的步骤:

通过alloc_chrdev_region()分配主/次设备号。

使用cdev_init()和cdev_add()来以一个字符设备注册自己。

而一个misc驱动,则可以只用一个调用misc_register()来完成这所有的步骤。

所有的miscdevice设备形成一个链表,对设备访问时,内核根据次设备号查找对应的miscdevice设备,然后调用其file_operations中注册的文件操作方法进行操作。

在Linux内核中,使用struct miscdevice来表示miscdevice。这个结构体的定义为:

structmiscdevice  {

    int minor;

    const char *name;

    const struct file_operations *fops;

    struct list_head list;

    struct device *parent;

    struct device *this_device;

    const char *nodename;

    mode_t mode;

};

minor是这个混杂设备的次设备号,若由系统自动配置,则可以设置为MISC_DYNANIC_MINOR,name是设备名。

每一个misc驱动会自动出现在/sys/class/misc下,而不需要驱动程序作者明确的去做。Linux watchdog timer驱动被实现为misc 驱动,他们被放在drivers/char/watchdog/目录下。Watchdog 驱动也导出了一个标准设备接口到用户空间。这样就可以使符合这个接口的应用程序的实现独立于Watchdog硬件。这个API在内核树中的Documentation/watchdog/watchdog-api.txt文件中有详细的说明。需要watchdog服务的程序可以操作/dev/watchdog,这个设备有一个misc次设备号130。

WDT在内核中通常都实现为misc驱动。

 

Introduction:

 

一个Watchdog Timer(WDT)是一个在软件出错的时候可以复位计算机系统的硬件电路。

通常一个用户空间守护进程会在正常的时间间隔内通过/dev/watchdog特殊设备文件来通知内核的watchdog驱动,用户空间仍然正常。当这样的一个通知发生时,驱动通常会告诉硬件watchdog一切正常,然后watchdog应该再等待一段时间来复位系统。如果用户空间出问题(RAM错误,内核bug等),则通知将会停止,然后硬件watchdog将在超时后复位系统。

Linux的watchdog API是一个相当特别的东西,不同的驱动实现是不同的,而且有时部分是不兼容的。这个文档正是要尝试着去说明已经出现的用法,并且使以后的驱动作者把它作为一份参考。

 

最简单的 API:

 

所有的设备驱动都支持的基本的操作模式,一旦/dev/watchdog被打开,则watchdog激活,并且除非喂狗,否则将在一段时间之后重启,这个时间被称为timeout或margin。最简单的喂狗方法就是写一些数据到设备。一个非常简单的watchdog守护进程看起来就像这个文件这样:

Documentation/watchdog/src/watchdog-simple.c

 

一个高级一些的驱动在喂狗之前,可能还会做一些其他的事情,比如说检查HTTP服务器是否依然可以相应。

 

当设备关闭的时候,除非支持"Magic Close"特性。否则watchdog被关闭。这并不总是一个好主意,比如watchdog守护进程出现了bug并且崩溃了,则系统将不会重启。因此,某些驱动支持"Disable watchdog shutdown on close",CONFIG_WATCHDOG_NOWAYOUT配置选项。当编译内核的时候这个选项被设置为Y,则一旦watchdog被启动,则将没有办法能够停止。这样,则当watchdog守护进程崩溃的时候,系统仍将在超时后重启。Watchdog设备常常也支持nowayout模块参数,这样这个选项就可以在运行时进行控制。

 

MagicClose 特性:

 

如果一个驱动支持"Magic Close",则除非在关闭文件前,魔幻字符'V'被发送到/dev/watchdog,驱动将不停止watchdog。如果用户空间守护进程在关闭文件前没有发送这个字符,则驱动认为用户空间崩溃,并在关闭watchdog前停止喂狗。

这样的话,如果没有在一定的时间内重新打开watchdog,则将导致一个重启。

 

ioctlAPI:

 

所有标准的驱动也应该支持一个ioctl API。

 

喂狗使用一个ioctl:

所有的驱动都有一个ioctl接口支持至少一个ioctl命令,KEEPALIVE。这个 ioctl 做的事和一个写watchdog设备完全一样,所以,上面程序的主循环可以替换为:

    while (1) {

       ioctl(fd, WDIOC_KEEPALIVE, 0);

       sleep(10);

    }

ioctl的参数被忽略。

 

设置和获得超时值:

对于某些驱动来说,在上层使用SETTIMEOUT ioctl命令改变watchdog的超时值是可能的,那些驱动在他们的选项与中有WDIOF_SETTIMEOUT标志。参数是一个代表以秒为单位的超时值,驱动将在同一个变量中返回实际使用的超时值,这个超时值可能由于硬件的限制,而不同于所请求的超时值

    int timeout = 45;

    ioctl(fd, WDIOC_SETTIMEOUT, &timeout);

    printf("The timeout was set to %dseconds\n", timeout);

如果设备的超时值的粒度只能到分钟,则这个例子可能实际打印"The timeout was set to 60 seconds"。

自从Linux 2.4.18内核,通过GETTIMEOUT ioctl命令查询当前超时值也是可能的:

    ioctl(fd, WDIOC_GETTIMEOUT, &timeout);

    printf("The timeout was is %dseconds\n", timeout);

 

预处理:

Pretimeouts:

一些watchdog定时器,可以被设置为,在他们实际复位系统前,有一个触发。这可能通过一个NMI,中断,或其他机制。这将允许在它复位系统前Linux去记录一些有用的信息(比如panic信息和内核转储)。

    pretimeout = 10;

    ioctl(fd, WDIOC_SETPRETIMEOUT,&pretimeout);

注意,预超时值应该是一个相对于超时值提前的秒数。而不是直到预超时的秒数。

比如,如果你设置超时值为60秒,预超时值为10秒,那么预超时将在50秒后到达。设置为0则是禁用它。预超时还有一个get功能:

    ioctl(fd, WDIOC_GETPRETIMEOUT,&timeout);

    printf("The pretimeout was is %dseconds\n", timeout);

不是所有的watchdog驱动都支持一个预超时的。

 

获得重启前的秒数

一些watchdog驱动有一个报告在重启前的剩余时间的功能。WDIOC_GETTIMELEFT就是返回重启前的秒数的ioctl命令。

    ioctl(fd, WDIOC_GETTIMELEFT,&timeleft);

    printf("The timeout was is %dseconds\n", timeleft);

 

环境监视:

Environmentalmonitoring:

 

所有的watchdog驱动都被要求返回更多关于系统的信息,有些返回温度,风扇和功率水平监测,依稀可以告诉你上一次重启系统的原因。GETSUPPORT ioctl可以用来查询设备可以做什么:

    struct watchdog_info ident;

    ioctl(fd, WDIOC_GETSUPPORT, &ident);

 

ident结构中返回的字段是:

        identity     一个标识watchdog驱动的字符串

    firmware_version  如果可用的话,就是卡的固件版本

    options           一个描述设备支持什么的标志

options字段可以有下面的位集,和描述GET_STATUS和 GET_BOOT_STATUS ioctls可以返回什么种类的信息。

 [FIXME -- Is this correct?]

 

WDIOF_OVERHEAT       由于CPU过热而复位

机器上一次被watchdog复位是由于温度过高。

 

WDIOF_FANFAULT       风扇失灵

watchdog监测到一个系统风扇失灵

 

WDIOF_EXTERN1     External relay 1

 

Externalmonitoring relay/source 1 was triggered. Controllers intended for real worldapplications include external monitoring pins that will trigger a reset.

 

    WDIOF_EXTERN2     External relay 2

 

Externalmonitoring relay/source 2 was triggered

 

    WDIOF_POWERUNDER  Power bad/power fault

 

Themachine is showing an undervoltage status

 

    WDIOF_CARDRESET      Card previously reset the CPU

 

Thelast reboot was caused by the watchdog card

 

    WDIOF_POWEROVER      Power over voltage

 

Themachine is showing an overvoltage status. Note that if one level is

underand one over both bits will be set - this may seem odd but makes

sense.

 

    WDIOF_KEEPALIVEPING  Keep alive ping reply

 

Thewatchdog saw a keepalive ping since it was last queried.

 

    WDIOF_SETTIMEOUT  Can set/get the timeout

 

Thewatchdog can do pretimeouts.

 

    WDIOF_PRETIMEOUT  Pretimeout (in seconds), get/set

 

 

Forthose drivers that return any bits set in the option field, the

GETSTATUSand GETBOOTSTATUS ioctls can be used to ask for the current

status,and the status at the last reboot, respectively. 

 

    int flags;

    ioctl(fd, WDIOC_GETSTATUS, &flags);

 

    or

 

    ioctl(fd, WDIOC_GETBOOTSTATUS, &flags);

 

Notethat not all devices support these two calls, and some only

supportthe GETBOOTSTATUS call.

 

Somedrivers can measure the temperature using the GETTEMP ioctl.  The

returnedvalue is the temperature in degrees fahrenheit.

 

    int temperature;

    ioctl(fd, WDIOC_GETTEMP, &temperature);

 

Finallythe SETOPTIONS ioctl can be used to control some aspects of

thecards operation; right now the pcwd driver is the only one

supportingthis ioctl.

 

    int options = 0;

    ioctl(fd, WDIOC_SETOPTIONS, options);

 

Thefollowing options are available:

 

    WDIOS_DISABLECARD Turn off the watchdog timer

    WDIOS_ENABLECARD  Turn on the watchdog timer

    WDIOS_TEMPPANIC      Kernel panic on temperature trip

 

[FIXME-- better explanations]

 

 

S3C2440ASoC与看门狗有关的寄存器只有三个:看门狗控制寄存器WDTCON,看门狗数据寄存器WDTDAT和看门狗计数寄存器WDTCNT。驱动在同一时间只允许一个进程打开,所以在open()方法中锁定,也就是获得一个信号量,在release()方法中解除锁定。然后就是根据内核文档中的WDT API的语义进行尽可能丰富的实现。

#include<linux/init.h>

#include<linux/module.h>

#include<linux/miscdevice.h>

#include<linux/watchdog.h>

#include<linux/fs.h>

#include<linux/ioport.h>

#include<asm/io.h>

#include<linux/moduleparam.h>

#include<linux/semaphore.h>

#include<asm/uaccess.h>

#include"s3c2440wdt.h"

void*wdtmem = NULL;

intnowayout = NOWAYOUT;

intclosetag = 0;

module_param(nowayout,int, S_IRUGO);

unsignedint wdt_timeout = DEFAULT_WATCHDOG_TIMEOUT;

structsemaphore sem;

staticint s3c2440wdt_open(structinode *inode, struct file *filp)

{

  down_interruptible(&sem);

  iowrite32(wdt_timeout, wdtmem + WDTDAT);

  iowrite32(wdt_timeout, wdtmem + WDTCNT);

  iowrite32(DEFAULT_WDTCON, wdtmem + WDTCON);

  return 0;

}

staticint s3c2440wdt_close(structinode *inode, struct file *filp)

{

  unsigned int wdtdat = 0;

  /* If CONFIG_WATCHDOG_NOWAYOUT is chosenduring kernel

     configuration, do not disable the watchdogeven if the

     application desires to close it.

  */

  if(nowayout)

    return 0;

  if(closetag == 0)

    return 0;

#ifndefCONFIG_WATCHDOG_NOWAYOUT

  /*Disable watchdog */

  wdtdat = ioread32(wdtmem + WDTCON);

  wdtdat &= ~(1 << WENABLE_SHIFT);

  iowrite32(wdtdat, wdtmem + WDTCON);

#endif

  up(&sem);

  return 0;

}

staticssize_t s3c2440wdt_write(structfile *filp, const char __user *buf, size_t count, loff_t *pos)

{

  char usrdata = 0;

  copy_from_user(&usrdata, buf,sizeof(usrdata));

  if(usrdata == MAGIC_CHAR){

    closetag = 1;

  }else {

    closetag = 0;

  }

  iowrite32(wdt_timeout, wdtmem + WDTCNT);

  return 0;

}

staticint s3c2440wdt_ioctl(structinode *inode, struct file *filp, unsigned int cmd, unsigned long arg)

{

  unsigned int realtimeout = 0;

  int timeout;

  struct watchdog_info *ident;

  switch(cmd){

  case WDIOC_KEEPALIVE:

    /* Write to the watchdog.Application caninvoke

       this ioctl instead of writing to thedevice */

    iowrite32(wdt_timeout, wdtmem + WDTCNT);

    break;

  case WDIOC_SETTIMEOUT:

    copy_from_user(&timeout, (int *)arg,sizeof(int));

    if(timeout > 40)

      timeout = 40;

    copy_to_user((int *)arg, &timeout,sizeof(int));

    wdt_timeout = ((unsigned int)timeout) *PER_SECOND;

    break;

  case WDIOC_GETTIMEOUT:

    timeout = (int)(wdt_timeout / PER_SECOND);

    copy_to_user((int *)arg, &timeout,sizeof(int));

    break;

  case WDIOC_GETTIMELEFT:

    realtimeout = ioread32(wdtmem + WDTCNT);

    realtimeout /= PER_SECOND;

    timeout = (int)realtimeout;

    copy_to_user((int *)arg, &timeout,sizeof(int));

    break;

  case WDIOC_GETSUPPORT:

    ident = kmalloc(sizeof(*ident),GFP_KERNEL);

    if(ident == NULL){

      printk(KERN_NOTICE "s3c2440wdt get memory failure.\n");

      return -EINVAL;

    }

    memset(ident, 0, sizeof(*ident));

    sprintf(ident->identity, "%s","s3c2440wdt");

    ident->options = WDIOF_SETTIMEOUT |WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING;

    copy_to_user((char *)arg, ident,sizeof(*ident));

    break;

  default:

    return -ENOTTY;

  }

  return 0;

}

 

structfile_operations s3c2440wdt_fops= {

  .owner = THIS_MODULE,

  .open = s3c2440wdt_open,

  .release = s3c2440wdt_close,

  .write = s3c2440wdt_write,

  .ioctl = s3c2440wdt_ioctl,

};

staticstruct miscdevice s3c2440_wdt_dev= {

  .minor = WATCHDOG_MINOR,

  .name = "s3c2440wdt",

  .fops = &s3c2440wdt_fops,

  .nodename = "watchdog",

};

 

staticint s3c2440wdt_init(void)

{

  if(request_mem_region(WDTMEMBASE, WDTMEMLEN,"s3c2440wdt") ==NULL){

    printk(KERN_ALERT "Get wdt registermemory failure.\n");

    return -EBUSY;

  }

  wdtmem = ioremap(WDTMEMBASE, WDTMEMLEN);

  init_MUTEX(&sem);

  misc_register(&s3c2440_wdt_dev);

  printk(KERN_ALERT "The initializationhas been completed successfully!\n");

  return 0;

}

 

staticvoid s3c2440wdt_exit(void)

{

  misc_deregister(&s3c2440_wdt_dev);

  iounmap(wdtmem);

  release_mem_region(WDTMEMBASE, WDTMEMLEN);

  printk(KERN_ALERT "modoule s3c2440wdt eixt.\n");

}

 

module_init(s3c2440wdt_init);

module_exit(s3c2440wdt_exit);

 

MODULE_LICENSE("DualBSD/GPL");

MODULE_AUTHOR("Hanpfei,hanpfei@gmail.com");

MODULE_DESCRIPTION("Thedrivers for mini2440's watch dog timer.");

MODULE_VERSION("v1.0");

MODULE_ALIAS("mini2440-wdt");


转载于:https://www.cnblogs.com/yuzaipiaofei/archive/2012/03/23/4124227.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值