您的位置:首页 > 其它

项目经理如何有效地进行项目沟通?

2011-06-09 16:24 561 查看
Linux驱动修炼之道-看门狗框架源码分析 收藏 此文于2011-06-07被推荐到CSDN首页
如何被推荐?
努力成为linux kernel hacker的人李万鹏原创作品,为梦而战。转载请标明出处

http://blog.csdn.net/woshixingaaa/archive/2011/06/03/6525504.aspx

由于计算机在工作时不可避免的要受到各种各样因素的干扰,即使再优秀的计算机程序也可能因为这种干扰使计算机进入一个死循环,更严重的就是导致死机。有两种方法来处理这种情况,一是采用人工复位的方法,而是依赖某种硬件来执行这个复位工作。这种硬件通常叫做看门狗。S3C2440A处理器内部集成了一个看门狗硬件,如下图:

看门狗有两个功能,即可作为一个正常的16位的内部寄存器来请求中断服务,也可产生128PCLK周期的复位信号。下面分析一下看门狗工作过程:首先处理器提供的PCLK经过8位预分频(这个值在WTCON[15:8]), 然后通过一个多路选择器,可以选择4种分频方式,16,32,64,128。看门狗通过WTCON[4:3]来选择哪种分频方式,这样可以产生一个时钟频率,每一个时钟周期WTCNT中的值就减1,直到为0。当为0时,如果WTCON[2]为1,则产生一个中断信号;如果WTCON[0]为1,则产生一个复位信号。看门狗的工作频率=PCLK/(WTCON[15:8]+1)/divider(divider=(16,32,64,128))。公式中WTCON[15:8]+1是因为WTCONT[15:8]的取值范围为0~255,因为除数不能为0,所以设计者规定需要加1。divider的值由WTCONT的第3,4位决定,可以取值16,32,64和128。
下面来分析Linux内核中看门狗的源码,其实我觉得看门狗相当简单了,因为一共就3个寄存器,来看一些全局变量,这些在一些函数中会用到:

view plaincopy to clipboardprint?
#define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)

static int nowayout = WATCHDOG_NOWAYOUT;
static int tmr_margin = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME;
static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
static int soft_noboot;
static int debug;
#define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)

static int nowayout = WATCHDOG_NOWAYOUT;
static int tmr_margin = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME;
static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
static int soft_noboot;
static int debug;

nowayout表示决不允许看门狗关闭,为1表示不允许关闭,为0表示允许关闭;tmr_margin表示默认的看门狗喂狗时间为15s;tmr_atboot表示系统启动时就使能看门狗,为1表示使能,为0表示关闭;soft_noboot表示看门狗工作的方式,看门狗可以作为定时器使用也可作为复位硬件使用,soft_noboot为1表示看门狗作为定时器使用,不发送复位信号;debug表示是否使用调试模式来调试代码,该模式中,会打印调试信息。
WATCHDOG_NOWAYOUT的值由配置选项CONFIG_WATCHDOG_NOWAYOUT决定,其宏定义如下:

view plaincopy to clipboardprint?
#ifdef CONFIG_WATCHDOG_NOWAYOUT
#define WATCHDOG_NOWAYOUT 1
#else
#define WATCHDOG_NOWAYOUT 0
#endif
#ifdef CONFIG_WATCHDOG_NOWAYOUT
#define WATCHDOG_NOWAYOUT 1
#else
#define WATCHDOG_NOWAYOUT 0
#endif

另外一个重要的枚举值close_state用来标识看门狗是否允许关闭,其定义如下:

view plaincopy to clipboardprint?
typedef enum close_state {
CLOSE_STATE_NOT,
CLOSE_STATE_ALLOW = 0x4021
} close_state_t;
typedef enum close_state {
CLOSE_STATE_NOT,
CLOSE_STATE_ALLOW = 0x4021
} close_state_t;

CLOSE_STATE_NOT表示不允许关闭看门狗,CLOSE_STATE_ALLOW表示允许关闭看门狗。
S3C2410的看门狗同时具有多重身份:字符设备,混杂设备,平台设备。下面看一下看门狗驱动作为平台驱动的描述:

view plaincopy to clipboardprint?
static struct platform_driver s3c2410wdt_driver = {
.probe = s3c2410wdt_probe,
.remove = s3c2410wdt_remove,
.shutdown = s3c2410wdt_shutdown,
.suspend = s3c2410wdt_suspend,
.resume = s3c2410wdt_resume,
.driver = {
.owner = THIS_MODULE,
.name = "s3c2410-wdt",
},
};
static struct platform_driver s3c2410wdt_driver = {
.probe = s3c2410wdt_probe,
.remove = s3c2410wdt_remove,
.shutdown = s3c2410wdt_shutdown,
.suspend = s3c2410wdt_suspend,
.resume = s3c2410wdt_resume,
.driver = {
.owner = THIS_MODULE,
.name = "s3c2410-wdt",
},
};

下面是看门狗驱动作为平台驱动的注册:

view plaincopy to clipboardprint?
static char banner[] __initdata =
KERN_INFO "S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics/n";

static int __init watchdog_init(void)
{
printk(banner);
return platform_driver_register(&s3c2410wdt_driver);
}

static void __exit watchdog_exit(void)
{
platform_driver_unregister(&s3c2410wdt_driver);
}

module_init(watchdog_init);
module_exit(watchdog_exit);
static char banner[] __initdata =
KERN_INFO "S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics/n";

static int __init watchdog_init(void)
{
printk(banner);
return platform_driver_register(&s3c2410wdt_driver);
}

static void __exit watchdog_exit(void)
{
platform_driver_unregister(&s3c2410wdt_driver);
}

module_init(watchdog_init);
module_exit(watchdog_exit);

下面是看门狗平台设备及其资源:

view plaincopy to clipboardprint?
/* Watchdog */
static struct resource s3c_wdt_resource[] = {
[0] = {
/*看门狗I/O内存开始位置,被定义为WTCON的地址0x53000000*/
.start = S3C24XX_PA_WATCHDOG,
.end = S3C24XX_PA_WATCHDOG + S3C24XX_SZ_WATCHDOG - 1,
/*1M的地址空间*/
.flags = IORESOURCE_MEM, /*I/O内存资源*/
},
[1] = {
.start = IRQ_WDT, /*看门狗的开始中断号,被定义为80*/
.end = IRQ_WDT, /*看门狗的结束中断号*/
.flags = IORESOURCE_IRQ, /*中断的IRQ资源*/
}

};

struct platform_device s3c_device_wdt = {
.name = "s3c2410-wdt",
.id = -1,
.num_resources = ARRAY_SIZE(s3c_wdt_resource), //资源的数目
.resource = s3c_wdt_resource,
};
/* Watchdog */
static struct resource s3c_wdt_resource[] = {
[0] = {
/*看门狗I/O内存开始位置,被定义为WTCON的地址0x53000000*/
.start = S3C24XX_PA_WATCHDOG,
.end = S3C24XX_PA_WATCHDOG + S3C24XX_SZ_WATCHDOG - 1,
/*1M的地址空间*/
.flags = IORESOURCE_MEM, /*I/O内存资源*/
},
[1] = {
.start = IRQ_WDT, /*看门狗的开始中断号,被定义为80*/
.end = IRQ_WDT, /*看门狗的结束中断号*/
.flags = IORESOURCE_IRQ, /*中断的IRQ资源*/
}

};

struct platform_device s3c_device_wdt = {
.name = "s3c2410-wdt",
.id = -1,
.num_resources = ARRAY_SIZE(s3c_wdt_resource), //资源的数目
.resource = s3c_wdt_resource,
};

当使用platform_bus_type的platform_match对s3c2410wdt_driver与s3c_device_wdt匹配成功时,调用s3c2410_wdt_probe函数,下面来看s3c2410_wdt_probe的实现:

view plaincopy to clipboardprint?
static int s3c2410wdt_probe(struct platform_device *pdev)
{
struct resource *res;
struct device *dev;
unsigned int wtcon;
int started = 0;
int ret;
int size;

DBG("%s: probe=%p/n", __func__, pdev);
/*平台设备中的设备结构体device*/
dev = &pdev->dev;
wdt_dev = &pdev->dev;

/* get the memory region for the watchdog timer */
/*获得看门狗的内存资源*/
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
/*获取失败则推出*/
if (res == NULL) {
dev_err(dev, "no memory resource specified/n");
return -ENOENT;
}
/*内存资源所占的字节数*/
size = (res->end - res->start) + 1;
/*申请一块IO内存,对应看门狗的3个寄存器*/
wdt_mem = request_mem_region(res->start, size, pdev->name);
if (wdt_mem == NULL) {
dev_err(dev, "failed to get memory region/n");
ret = -ENOENT;
goto err_req;
}
/*获得虚拟地址*/
wdt_base = ioremap(res->start, size);
if (wdt_base == NULL) {
dev_err(dev, "failed to ioremap() region/n");
ret = -EINVAL;
goto err_req;
}

DBG("probe: mapped wdt_base=%p/n", wdt_base);
/*申请中断*/
wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
if (wdt_irq == NULL) {
dev_err(dev, "no irq resource specified/n");
ret = -ENOENT;
goto err_map;
}
/*并注册中断处理函数*/
ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev);
if (ret != 0) {
dev_err(dev, "failed to install irq (%d)/n", ret);
goto err_map;
}
/*获得看门狗时钟*/
wdt_clock = clk_get(&pdev->dev, "watchdog");
if (IS_ERR(wdt_clock)) {
dev_err(dev, "failed to find watchdog clock source/n");
ret = PTR_ERR(wdt_clock);
goto err_irq;
}
/时钟使能/
clk_enable(wdt_clock);

/* see if we can actually set the requested timer margin, and if
* not, try the default value */
/*设置看门狗复位时间,如果成功返回0*/
if (s3c2410wdt_set_heartbeat(tmr_margin)) {
/*如果不成功,看门狗的复位时间设置成默认值*/
started = s3c2410wdt_set_heartbeat(
CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
if (started == 0)
dev_info(dev,
"tmr_margin value out of range, default %d used/n",
CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
else
dev_info(dev, "default timer value is out of range, cannot start/n");
}
/*注册混杂设备*/
ret = misc_register(&s3c2410wdt_miscdev);
if (ret) {
dev_err(dev, "cannot register miscdev on minor=%d (%d)/n",
WATCHDOG_MINOR, ret);
goto err_clk;
}
/*如果开机的时候就启动看门狗*/
if (tmr_atboot && started == 0) {
dev_info(dev, "starting watchdog timer/n");
s3c2410wdt_start(); //启动看门狗
} else if (!tmr_atboot) {
/* if we're not enabling the watchdog, then ensure it is
* disabled if it has been left running from the bootloader
* or other source */

s3c2410wdt_stop(); //关闭看门狗
}
/* print out a statement of readiness */
/*读出看门狗控制寄存器的值*/
wtcon = readl(wdt_base + S3C2410_WTCON);
/*打印看门狗是否使能,是否允许发出复位信号,是否允许发出中断信号*/
dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled/n",
(wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
(wtcon & S3C2410_WTCON_RSTEN) ? "" : "dis",
(wtcon & S3C2410_WTCON_INTEN) ? "" : "en");

return 0;
err_clk:
clk_disable(wdt_clock);
clk_put(wdt_clock);
err_irq:
free_irq(wdt_irq->start, pdev);
err_map:
iounmap(wdt_base);
err_req:
release_resource(wdt_mem);
kfree(wdt_mem);
return ret;
}
static int s3c2410wdt_probe(struct platform_device *pdev)
{
struct resource *res;
struct device *dev;
unsigned int wtcon;
int started = 0;
int ret;
int size;

DBG("%s: probe=%p/n", __func__, pdev);
/*平台设备中的设备结构体device*/
dev = &pdev->dev;
wdt_dev = &pdev->dev;

/* get the memory region for the watchdog timer */
/*获得看门狗的内存资源*/
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
/*获取失败则推出*/
if (res == NULL) {
dev_err(dev, "no memory resource specified/n");
return -ENOENT;
}
/*内存资源所占的字节数*/
size = (res->end - res->start) + 1;
/*申请一块IO内存,对应看门狗的3个寄存器*/
wdt_mem = request_mem_region(res->start, size, pdev->name);
if (wdt_mem == NULL) {
dev_err(dev, "failed to get memory region/n");
ret = -ENOENT;
goto err_req;
}
/*获得虚拟地址*/
wdt_base = ioremap(res->start, size);
if (wdt_base == NULL) {
dev_err(dev, "failed to ioremap() region/n");
ret = -EINVAL;
goto err_req;
}

DBG("probe: mapped wdt_base=%p/n", wdt_base);
/*申请中断*/
wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
if (wdt_irq == NULL) {
dev_err(dev, "no irq resource specified/n");
ret = -ENOENT;
goto err_map;
}
/*并注册中断处理函数*/
ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev);
if (ret != 0) {
dev_err(dev, "failed to install irq (%d)/n", ret);
goto err_map;
}
/*获得看门狗时钟*/
wdt_clock = clk_get(&pdev->dev, "watchdog");
if (IS_ERR(wdt_clock)) {
dev_err(dev, "failed to find watchdog clock source/n");
ret = PTR_ERR(wdt_clock);
goto err_irq;
}
/时钟使能/
clk_enable(wdt_clock);

/* see if we can actually set the requested timer margin, and if
* not, try the default value */
/*设置看门狗复位时间,如果成功返回0*/
if (s3c2410wdt_set_heartbeat(tmr_margin)) {
/*如果不成功,看门狗的复位时间设置成默认值*/
started = s3c2410wdt_set_heartbeat(
CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
if (started == 0)
dev_info(dev,
"tmr_margin value out of range, default %d used/n",
CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
else
dev_info(dev, "default timer value is out of range, cannot start/n");
}
/*注册混杂设备*/
ret = misc_register(&s3c2410wdt_miscdev);
if (ret) {
dev_err(dev, "cannot register miscdev on minor=%d (%d)/n",
WATCHDOG_MINOR, ret);
goto err_clk;
}
/*如果开机的时候就启动看门狗*/
if (tmr_atboot && started == 0) {
dev_info(dev, "starting watchdog timer/n");
s3c2410wdt_start(); //启动看门狗
} else if (!tmr_atboot) {
/* if we're not enabling the watchdog, then ensure it is
* disabled if it has been left running from the bootloader
* or other source */

s3c2410wdt_stop(); //关闭看门狗
}
/* print out a statement of readiness */
/*读出看门狗控制寄存器的值*/
wtcon = readl(wdt_base + S3C2410_WTCON);
/*打印看门狗是否使能,是否允许发出复位信号,是否允许发出中断信号*/
dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled/n",
(wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
(wtcon & S3C2410_WTCON_RSTEN) ? "" : "dis",
(wtcon & S3C2410_WTCON_INTEN) ? "" : "en");

return 0;
err_clk:
clk_disable(wdt_clock);
clk_put(wdt_clock);
err_irq:
free_irq(wdt_irq->start, pdev);
err_map:
iounmap(wdt_base);
err_req:
release_resource(wdt_mem);
kfree(wdt_mem);
return ret;
}

下面看一下刚才调用的那个设置看门狗复位时间的方法:

view plaincopy to clipboardprint?
static int s3c2410wdt_set_heartbeat(int timeout)
{
/*首先获得看门狗的时钟*/
unsigned int freq = clk_get_rate(wdt_clock);
unsigned int count;
unsigned int divisor = 1;
unsigned long wtcon;

if (timeout < 1)
return -EINVAL;
/divider为128/
freq /= 128;
/*秒数乘以每秒的时间滴答等于计数值*/
count = timeout * freq;

DBG("%s: count=%d, timeout=%d, freq=%d/n",
__func__, count, timeout, freq);

/* if the count is bigger than the watchdog register,
then work out what we need to do (and if) we can
actually make this value
*/
/*计数值不能大于WTCNT的最大范围,WTCNT是一个16位的计数器,最大值是0x10000*/
if (count >= 0x10000) {
/*0x100为256,即从1~256找一个合适的预分频值*/
for (divisor = 1; divisor <= 0x100; divisor++) {
if ((count / divisor) < 0x10000)
break;
}
/*未找到返回错误*/
if ((count / divisor) >= 0x10000) {
dev_err(wdt_dev, "timeout %d too big/n", timeout);
return -EINVAL;
}
}
/*看门狗的喂狗时间*/
tmr_margin = timeout;

DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)/n",
__func__, timeout, divisor, count, count/divisor);
/*分频后最终的计数值*/
count /= divisor;
wdt_count = count;

/* update the pre-scaler */
wtcon = readl(wdt_base + S3C2410_WTCON); //读看门狗的控制寄存器
wtcon &= ~S3C2410_WTCON_PRESCALE_MASK; //看门狗控制器高8位清零,也就是预分频部分清零
wtcon |= S3C2410_WTCON_PRESCALE(divisor-1); //填入预分频系数

writel(count, wdt_base + S3C2410_WTDAT); //填入计数值
writel(wtcon, wdt_base + S3C2410_WTCON); //填入控制寄存器的值

return 0;
}
static int s3c2410wdt_set_heartbeat(int timeout)
{
/*首先获得看门狗的时钟*/
unsigned int freq = clk_get_rate(wdt_clock);
unsigned int count;
unsigned int divisor = 1;
unsigned long wtcon;

if (timeout < 1)
return -EINVAL;
/divider为128/
freq /= 128;
/*秒数乘以每秒的时间滴答等于计数值*/
count = timeout * freq;

DBG("%s: count=%d, timeout=%d, freq=%d/n",
__func__, count, timeout, freq);

/* if the count is bigger than the watchdog register,
then work out what we need to do (and if) we can
actually make this value
*/
/*计数值不能大于WTCNT的最大范围,WTCNT是一个16位的计数器,最大值是0x10000*/
if (count >= 0x10000) {
/*0x100为256,即从1~256找一个合适的预分频值*/
for (divisor = 1; divisor <= 0x100; divisor++) {
if ((count / divisor) < 0x10000)
break;
}
/*未找到返回错误*/
if ((count / divisor) >= 0x10000) {
dev_err(wdt_dev, "timeout %d too big/n", timeout);
return -EINVAL;
}
}
/*看门狗的喂狗时间*/
tmr_margin = timeout;

DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)/n",
__func__, timeout, divisor, count, count/divisor);
/*分频后最终的计数值*/
count /= divisor;
wdt_count = count;

/* update the pre-scaler */
wtcon = readl(wdt_base + S3C2410_WTCON); //读看门狗的控制寄存器
wtcon &= ~S3C2410_WTCON_PRESCALE_MASK; //看门狗控制器高8位清零,也就是预分频部分清零
wtcon |= S3C2410_WTCON_PRESCALE(divisor-1); //填入预分频系数

writel(count, wdt_base + S3C2410_WTDAT); //填入计数值
writel(wtcon, wdt_base + S3C2410_WTCON); //填入控制寄存器的值

return 0;
}

平台驱动的移除函数:

view plaincopy to clipboardprint?
static int s3c2410wdt_remove(struct platform_device *dev)
{
release_resource(wdt_mem); //释放平台资源
kfree(wdt_mem); //释放I/O内存
wdt_mem = NULL;

free_irq(wdt_irq->start, dev); //释放中断号
wdt_irq = NULL;

clk_disable(wdt_clock); //关闭时钟
clk_put(wdt_clock); //减少时钟引用计数
wdt_clock = NULL;

iounmap(wdt_base); //关闭内存映射
misc_deregister(&s3c2410wdt_miscdev); //注销混杂设备
return 0;
}
static int s3c2410wdt_remove(struct platform_device *dev)
{
release_resource(wdt_mem); //释放平台资源
kfree(wdt_mem); //释放I/O内存
wdt_mem = NULL;

free_irq(wdt_irq->start, dev); //释放中断号
wdt_irq = NULL;

clk_disable(wdt_clock); //关闭时钟
clk_put(wdt_clock); //减少时钟引用计数
wdt_clock = NULL;

iounmap(wdt_base); //关闭内存映射
misc_deregister(&s3c2410wdt_miscdev); //注销混杂设备
return 0;
}

平台驱动中的关闭函数:

view plaincopy to clipboardprint?
static void s3c2410wdt_shutdown(struct platform_device *dev)
{
s3c2410wdt_stop();
}
static void s3c2410wdt_shutdown(struct platform_device *dev)
{
s3c2410wdt_stop();
}

平台驱动中的电源管理部分:

view plaincopy to clipboardprint?
#ifdef CONFIG_PM

static unsigned long wtcon_save;
static unsigned long wtdat_save;

static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
{
/*只要保存S3C2410_WTDAT就可以了,不需要保存S3C2410_WTCNT,S3C2410_WTCNT的值会在系统还原的时候直接赋为S3C2410_WTDAT中的值*/
wtcon_save = readl(wdt_base + S3C2410_WTCON);
wtdat_save = readl(wdt_base + S3C2410_WTDAT);

/* Note that WTCNT doesn't need to be saved. */
s3c2410wdt_stop();

return 0;
}

static int s3c2410wdt_resume(struct platform_device *dev)
{
/* Restore watchdog state. */

writel(wtdat_save, wdt_base + S3C2410_WTDAT);
writel(wtdat_save, wdt_base + S3C2410_WTCNT); /* Reset count */
writel(wtcon_save, wdt_base + S3C2410_WTCON);

printk(KERN_INFO PFX "watchdog %sabled/n",
(wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");

return 0;
}

#else
#define s3c2410wdt_suspend NULL
#define s3c2410wdt_resume NULL
#endif /* CONFIG_PM */
#ifdef CONFIG_PM

static unsigned long wtcon_save;
static unsigned long wtdat_save;

static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
{
/*只要保存S3C2410_WTDAT就可以了,不需要保存S3C2410_WTCNT,S3C2410_WTCNT的值会在系统还原的时候直接赋为S3C2410_WTDAT中的值*/
wtcon_save = readl(wdt_base + S3C2410_WTCON);
wtdat_save = readl(wdt_base + S3C2410_WTDAT);

/* Note that WTCNT doesn't need to be saved. */
s3c2410wdt_stop();

return 0;
}

static int s3c2410wdt_resume(struct platform_device *dev)
{
/* Restore watchdog state. */

writel(wtdat_save, wdt_base + S3C2410_WTDAT);
writel(wtdat_save, wdt_base + S3C2410_WTCNT); /* Reset count */
writel(wtcon_save, wdt_base + S3C2410_WTCON);

printk(KERN_INFO PFX "watchdog %sabled/n",
(wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");

return 0;
}

#else
#define s3c2410wdt_suspend NULL
#define s3c2410wdt_resume NULL
#endif /* CONFIG_PM */

来看看看门狗驱动作为字符驱动的file_operations结构:

view plaincopy to clipboardprint?
static const struct file_operations s3c2410wdt_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.write = s3c2410wdt_write,
.unlocked_ioctl = s3c2410wdt_ioctl,
.open = s3c2410wdt_open,
.release = s3c2410wdt_release,
};
static const struct file_operations s3c2410wdt_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.write = s3c2410wdt_write,
.unlocked_ioctl = s3c2410wdt_ioctl,
.open = s3c2410wdt_open,
.release = s3c2410wdt_release,
};

看门狗作为字符设备的打开函数:

view plaincopy to clipboardprint?
static int s3c2410wdt_open(struct inode *inode, struct file *file)
{
/*检查open_lock的第0位,如果open_lock的第0位为0,则表示test_and_set_bit的返回值为0,
表示wdt设备没有被其他进程打开,如果为1,表示被其他进程打开,返回EBUSY*/
if (test_and_set_bit(0, &open_lock))
return -EBUSY;
/*如果决不允许关闭看门狗,增加引用计数*/
if (nowayout)
__module_get(THIS_MODULE);
/*设为不允许关闭*/
allow_close = CLOSE_STATE_NOT;

/*开启看门狗*/
s3c2410wdt_start();
/*这些寄存器不需要像文件一样对位置进行寻址*/
return nonseekable_open(inode, file);
}
static int s3c2410wdt_open(struct inode *inode, struct file *file)
{
/*检查open_lock的第0位,如果open_lock的第0位为0,则表示test_and_set_bit的返回值为0,
表示wdt设备没有被其他进程打开,如果为1,表示被其他进程打开,返回EBUSY*/
if (test_and_set_bit(0, &open_lock))
return -EBUSY;
/*如果决不允许关闭看门狗,增加引用计数*/
if (nowayout)
__module_get(THIS_MODULE);
/*设为不允许关闭*/
allow_close = CLOSE_STATE_NOT;

/*开启看门狗*/
s3c2410wdt_start();
/*这些寄存器不需要像文件一样对位置进行寻址*/
return nonseekable_open(inode, file);
}

下面看一下开启看门狗的函数:

view plaincopy to clipboardprint?
static void s3c2410wdt_start(void)
{
unsigned long wtcon;
spin_lock(&wdt_lock);
/*首先停止看门狗*/
__s3c2410wdt_stop();
/*读看门狗的控制寄存器*/
wtcon = readl(wdt_base + S3C2410_WTCON);
/*使能看门狗,设置时钟分频值为128*/
wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
/*上边说过看门狗一个作为一个正常的16位内部定时器也可作为复位硬件*/
if (soft_noboot) { //如果作为内部定时器
wtcon |= S3C2410_WTCON_INTEN; //开中断使能
wtcon &= ~S3C2410_WTCON_RSTEN; //关闭复位使能
} else { //如果作为复位硬件
wtcon &= ~S3C2410_WTCON_INTEN; //关闭中断使能
wtcon |= S3C2410_WTCON_RSTEN; //开复位使能
}

DBG("%s: wdt_count=0x%08x, wtcon=%08lx/n",
__func__, wdt_count, wtcon);
/*这里为什么要设置WTCNT的值,不是WTDAT中的值自动载入WTCNT吗?看看datasheet就知道了,看门狗定时器最初使能的时候,WTDAT寄存器的值不会自动载入时 间计数器,所以WTCNT寄存器必须在使能它之前设置一个初始值*/
writel(wdt_count, wdt_base + S3C2410_WTDAT); //设置计数值
writel(wdt_count, wdt_base + S3C2410_WTCNT); //设置计数值
writel(wtcon, wdt_base + S3C2410_WTCON); //设置WTCON,刚才的使能为开启了看门狗
spin_unlock(&wdt_lock);
}
static void s3c2410wdt_start(void)
{
unsigned long wtcon;
spin_lock(&wdt_lock);
/*首先停止看门狗*/
__s3c2410wdt_stop();
/*读看门狗的控制寄存器*/
wtcon = readl(wdt_base + S3C2410_WTCON);
/*使能看门狗,设置时钟分频值为128*/
wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
/*上边说过看门狗一个作为一个正常的16位内部定时器也可作为复位硬件*/
if (soft_noboot) { //如果作为内部定时器
wtcon |= S3C2410_WTCON_INTEN; //开中断使能
wtcon &= ~S3C2410_WTCON_RSTEN; //关闭复位使能
} else { //如果作为复位硬件
wtcon &= ~S3C2410_WTCON_INTEN; //关闭中断使能
wtcon |= S3C2410_WTCON_RSTEN; //开复位使能
}

DBG("%s: wdt_count=0x%08x, wtcon=%08lx/n",
__func__, wdt_count, wtcon);
/*这里为什么要设置WTCNT的值,不是WTDAT中的值自动载入WTCNT吗?看看datasheet就知道了,看门狗定时器最初使能的时候,WTDAT寄存器的值不会自动载入时 间计数器,所以WTCNT寄存器必须在使能它之前设置一个初始值*/
writel(wdt_count, wdt_base + S3C2410_WTDAT); //设置计数值
writel(wdt_count, wdt_base + S3C2410_WTCNT); //设置计数值
writel(wtcon, wdt_base + S3C2410_WTCON); //设置WTCON,刚才的使能为开启了看门狗
spin_unlock(&wdt_lock);
}

关闭函数:

view plaincopy to clipboardprint?
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 (allow_close == CLOSE_STATE_ALLOW) //看门狗为允许关闭状态
s3c2410wdt_stop(); //关闭看门狗
else {
dev_err(wdt_dev, "Unexpected close, not stopping watchdog/n");
s3c2410wdt_keepalive(); //否则喂狗
}
allow_close = CLOSE_STATE_NOT; //设为不允许关闭
clear_bit(0, &open_lock); //将open_lock的第0位设为0,是原子操作
return 0;
}
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 (allow_close == CLOSE_STATE_ALLOW) //看门狗为允许关闭状态
s3c2410wdt_stop(); //关闭看门狗
else {
dev_err(wdt_dev, "Unexpected close, not stopping watchdog/n");
s3c2410wdt_keepalive(); //否则喂狗
}
allow_close = CLOSE_STATE_NOT; //设为不允许关闭
clear_bit(0, &open_lock); //将open_lock的第0位设为0,是原子操作
return 0;
}

下边是关闭函数中调用的看门狗停止函数,可以看出实际关闭看门狗的操作是由__s3c2410wdt_stop函数完成的。

view plaincopy to clipboardprint?
static void s3c2410wdt_stop(void)
{
spin_lock(&wdt_lock);
__s3c2410wdt_stop();
spin_unlock(&wdt_lock);
}

static void __s3c2410wdt_stop(void)
{
unsigned long wtcon;
wtcon = readl(wdt_base + S3C2410_WTCON);
wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
writel(wtcon, wdt_base + S3C2410_WTCON);
}
static void s3c2410wdt_stop(void)
{
spin_lock(&wdt_lock);
__s3c2410wdt_stop();
spin_unlock(&wdt_lock);
}

static void __s3c2410wdt_stop(void)
{
unsigned long wtcon;
wtcon = readl(wdt_base + S3C2410_WTCON);
wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
writel(wtcon, wdt_base + S3C2410_WTCON);
}

写函数:

view plaincopy to clipboardprint?
static ssize_t s3c2410wdt_write(struct file *file, const char __user *data,
size_t len, loff_t *ppos)
{
/*
* Refresh the timer.
*/
if (len) { //有数据写入len不为0
if (!nowayout) { //允许关闭
size_t i;

/* In case it was set long ago */
allow_close = CLOSE_STATE_NOT; //关闭允许关闭状态

for (i = 0; i != len; i++) {
char c;

if (get_user(c, data + i))
return -EFAULT;
if (c == 'V') //如果向设备写入'V',就允许关闭设备
allow_close = CLOSE_STATE_ALLOW;
}
}
s3c2410wdt_keepalive();
}
return len;
}
static ssize_t s3c2410wdt_write(struct file *file, const char __user *data,
size_t len, loff_t *ppos)
{
/*
* Refresh the timer.
*/
if (len) { //有数据写入len不为0
if (!nowayout) { //允许关闭
size_t i;

/* In case it was set long ago */
allow_close = CLOSE_STATE_NOT; //关闭允许关闭状态

for (i = 0; i != len; i++) {
char c;

if (get_user(c, data + i))
return -EFAULT;
if (c == 'V') //如果向设备写入'V',就允许关闭设备
allow_close = CLOSE_STATE_ALLOW;
}
}
s3c2410wdt_keepalive();
}
return len;
}

io控制函数:

view plaincopy to clipboardprint?
static long s3c2410wdt_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
void __user *argp = (void __user *)arg;
int __user *p = argp;
int new_margin;

switch (cmd) {
case WDIOC_GETSUPPORT: //获得看门狗设备的信息
return copy_to_user(argp, &s3c2410_wdt_ident,
sizeof(s3c2410_wdt_ident)) ? -EFAULT : 0;
case WDIOC_GETSTATUS: //获得门狗设备的信息
case WDIOC_GETBOOTSTATUS:
return put_user(0, p);
case WDIOC_KEEPALIVE: //对看门狗进行喂狗
s3c2410wdt_keepalive();
return 0;
case WDIOC_SETTIMEOUT: //设置看门狗的超时时间
if (get_user(new_margin, p))
return -EFAULT;
if (s3c2410wdt_set_heartbeat(new_margin))
return -EINVAL;
s3c2410wdt_keepalive();
return put_user(tmr_margin, p);
case WDIOC_GETTIMEOUT: //获得门狗设备的信息
return put_user(tmr_margin, p);
default:
return -ENOTTY;
}
}
static long s3c2410wdt_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
void __user *argp = (void __user *)arg;
int __user *p = argp;
int new_margin;

switch (cmd) {
case WDIOC_GETSUPPORT: //获得看门狗设备的信息
return copy_to_user(argp, &s3c2410_wdt_ident,
sizeof(s3c2410_wdt_ident)) ? -EFAULT : 0;
case WDIOC_GETSTATUS: //获得门狗设备的信息
case WDIOC_GETBOOTSTATUS:
return put_user(0, p);
case WDIOC_KEEPALIVE: //对看门狗进行喂狗
s3c2410wdt_keepalive();
return 0;
case WDIOC_SETTIMEOUT: //设置看门狗的超时时间
if (get_user(new_margin, p))
return -EFAULT;
if (s3c2410wdt_set_heartbeat(new_margin))
return -EINVAL;
s3c2410wdt_keepalive();
return put_user(tmr_margin, p);
case WDIOC_GETTIMEOUT: //获得门狗设备的信息
return put_user(tmr_margin, p);
default:
return -ENOTTY;
}
}

如果选择了看门狗作为内部定时器,则当计数值为0时调用中断处理函数,中断处理函数的主要功能就是喂狗:

view plaincopy to clipboardprint?
static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
{
dev_info(wdt_dev, "watchdog timer expired (irq)/n");
/*中断处理中调用喂狗*/
s3c2410wdt_keepalive();
return IRQ_HANDLED;
}
static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
{
dev_info(wdt_dev, "watchdog timer expired (irq)/n");
/*中断处理中调用喂狗*/
s3c2410wdt_keepalive();
return IRQ_HANDLED;
}

喂狗函数:

view plaincopy to clipboardprint?
static void s3c2410wdt_keepalive(void)
{
spin_lock(&wdt_lock);
writel(wdt_count, wdt_base + S3C2410_WTCNT);
spin_unlock(&wdt_lock);
}
static void s3c2410wdt_keepalive(void)
{
spin_lock(&wdt_lock);
writel(wdt_count, wdt_base + S3C2410_WTCNT);
spin_unlock(&wdt_lock);
}

总结一下:看门狗设备可以在系统启动的时候开启也可以在打开设备的时候启动,看门狗设备不是用来读取或者写入神马数据的,只可写入一个'V'用来允许关闭看门狗设备,打开看门狗设备后主要就是通过ioctl来发各种命令,进行获得门狗设备的信息,门狗设备的信息,门狗设备的信息,设置看门狗的超时时间,对看门狗进行喂狗等操作在内核和用户空间之间传递信息。

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/woshixingaaa/archive/2011/06/03/6525504.aspx
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: