网络安全参考 | UNIX参考 | GPS参考 | 无线参考 | 在线手册 | OSBUG.ORG | SUNNY-NETWORK.COM
天线制作 GPS 地标
网站地图 RSS订阅
高级搜索 收藏本站
Home | 业界动态 | Open source | GNU | Linux | BSD | Solaris | AIX | HP-UX | IRIX | Mac OS X | Minix | Tru64 | SCO UNIX | Network | Security | X-Window | Database | 应用服务 | Programming | 经典著作 | 永远的纪念 | 杂项
 当前位置: Home > Linux > 设备驱动 > 文章  
Linux设备驱动编程之定时器
文章来源: 天极开发 文章作者: 宋宝华 发布时间: 2006-10-26   字体: [ ]  
 

  Linux内核中定义了一个timer_list结构,我们在驱动程序中可以利用之:

struct timer_list {
 struct list_head list;
 unsigned long expires; //定时器到期时间
 unsigned long data; //作为参数被传入定时器处理函数
 void (*function)(unsigned long);
};

  下面是关于timer的API函数:

  增加定时器

void add_timer(struct timer_list * timer);

  删除定时器

int del_timer(struct timer_list * timer);

  修改定时器的expire

int mod_timer(struct timer_list *timer, unsigned long expires);

  使用定时器的一般流程为:

  (1)timer、编写function;
  (2)为timer的expires、data、function赋值;
  (3)调用add_timer将timer加入列表;
  (4)在定时器到期时,function被执行;
  (5)在程序中涉及timer控制的地方适当地调用del_timer、mod_timer删除timer或修改timer的expires。

  我们可以参考drivers/char/keyboard.c中键盘的驱动中关于timer的部分:


#include <linux/timer.h>

static struct timer_list key_autorepeat_timer =
{
 function: key_callback
};


static void

kbd_processkeycode(unsigned char keycode, char up_flag, int autorepeat)
{
 char raw_mode = (kbd->kbdmode == VC_RAW);
 if (up_flag) {
  rep = 0;
  if(!test_and_clear_bit(keycode, key_down))
   up_flag = kbd_unexpected_up(keycode);
 } else {
  rep = test_and_set_bit(keycode, key_down);
  /* If the keyboard autorepeated for us, ignore it.
  * We do our own autorepeat processing.
  */
  if (rep && !autorepeat)
   return;
 }
 if (kbd_repeatkeycode == keycode || !up_flag || raw_mode) {
  kbd_repeatkeycode = -1;
  del_timer(&key_autorepeat_timer);
 }
 …
 /*
 * Calculate the next time when we have to do some autorepeat
 * processing. Note that we do not do autorepeat processing
 * while in raw mode but we do do autorepeat processing in
 * medium raw mode.
 */
 if (!up_flag && !raw_mode) {
  kbd_repeatkeycode = keycode;
  if (vc_kbd_mode(kbd, VC_REPEAT)) {
   if (rep)
    key_autorepeat_timer.expires = jiffies + kbd_repeatinterval;
   else
    key_autorepeat_timer.expires = jiffies + kbd_repeattimeout;
    add_timer(&key_autorepeat_timer);
  }
 }
 …
}

--
原文链接: http://dev.yesky.com/220/2637720.shtml

 
推荐文章
·让arm-linux支持普通USB摄像头
·Linux设备驱动编程之结构化设备
·Linux设备驱动编程之复杂设备驱
·深入浅出Linux设备驱动之并发控
·深入浅出Linux设备驱动之字符设
·深入浅出Linux设备驱动编程之内
·深入浅出Linux设备驱动编程之引
·Linux设备驱动编程之中断处理
·Linux设备驱动编程之异步通知
·Linux设备驱动编程之阻塞与非阻
·Linux设备驱动编程之内存与I/O操
·摄像头(WebCam)在Linux操作系
·中星微芯片(301,302)USB 摄像头
·Linux的I2C驱动架构
 
 
↑返回顶部   打印本页   关闭窗口↓  

Google
 
Web oldhand.org unixreference.net meshmea.org
相关分类
热点文章
·摄像头(WebCam)在Linu
·在Linux中使用中星微301
·中星微芯片(301,302)USB
·Linux设备驱动编程之内
·深入浅出Linux设备驱动
·Linux培训园地:Linux下
·Linux的I2C驱动架构
·让arm-linux支持普通USB
相关文章
·深入浅出Linux设备驱动
·Linux设备驱动编程之中
·深入浅出Linux设备驱动
·Linux设备驱动编程之异
·深入浅出Linux设备驱动
·Linux设备驱动编程之阻
·深入浅出Linux设备驱动
·Linux设备驱动编程之内
更多...
 
 

Copyright(c) 2001-2009 OLDHAND ORGANIZATION, All Rights reserved.
Power by DedeCms 织梦内容管理系统