Linux驱动子系统之输入子系统


[内容概要]

介绍了input-subsystem的三个组成部分,并对主要结构体和函数进行了分析以及它们如何关联。

[概述]

内核的输入子系统是对分散的、多种不同类别的输入设备(如键盘、鼠标、跟踪球、操作杆、触摸屏、加速计和手写板)进行统一处理的驱动程序。输入子系统带来的好处:

统一了物理形态各异的相似的输入设备的处理功能。例如,各种鼠标,不论是PS/2、USB,还是蓝牙,都做同样的处理;

提供了用于分发输入报告给用户应用程序的简单的事件接口;

抽取出了输入驱动程序的通用部分,简化了驱动程序,并引入了一致性。

[input-subsystem架构图]

 

[input-core]

核心层对下提供了设备驱动层的编程接口,对上有提供了事件处理层的编程接口。

[相关文件]

Driver/input/input.c

Include/linux/input.h

[关键的数据结构]

Struct input_dev     物理输入设备的基本数据结构,包含了设备相关的一些信息;

  1. struct input_dev {  
  2.          const char *name;  
  3.          constchar *phys;  
  4.          constchar *uniq;  
  5.          struct input_id id;  
  6.    
  7.          unsigned long evbit[BITS_TO_LONGS(EV_CNT)];  
  8.    
  9.          unsigned long keybit[BITS_TO_LONGS(KEY_CNT)];  
  10.          unsignedlong relbit[BITS_TO_LONGS(REL_CNT)];  
  11.          unsignedlong absbit[BITS_TO_LONGS(ABS_CNT)];  
  12.          unsignedlong mscbit[BITS_TO_LONGS(MSC_CNT)];  
  13.          unsignedlong ledbit[BITS_TO_LONGS(LED_CNT)];  
  14.          unsignedlong sndbit[BITS_TO_LONGS(SND_CNT)];  
  15.          unsignedlong ffbit[BITS_TO_LONGS(FF_CNT)];  
  16.          unsignedlong swbit[BITS_TO_LONGS(SW_CNT)];  
  17.         ……..  
  18.          struct device dev;  
  19.    
  20.          struct list_head        h_list;  
  21.          struct list_head        node;  
  22. };  
Name 输入设备名字;

Evbit 事件支持的位图;

Kerbit 按键支持的位图;

Dev 内嵌的设备结构体;

h_list 链表 表示与这个input_dev相联系的前后一个handler;

node链表 将此Input_dev连接到全局的input_dev_list链表中,www.bkjia.com内核中所有的Input_dev都连接在其上;

Struct input_handler  事件处理结构体,定义处理事件的方法;

  1. struct input_handler {  
  2.          void*private;  
  3.    
  4.          void (*event)(struct input_handle *handle, unsigned inttype, unsigned int code, int value);  
  5.          int (*connect)(struct input_handler *handler, structinput_dev *dev, const struct input_device_id *id);  
  6.          void(*disconnect)(struct input_handle *handle);  
  7.          void(*start)(struct input_handle *handle);  
  8.    
  9.          conststruct file_operations *fops;  
  10.          intminor;  
  11.          constchar *name;  
  12.    
  13.          conststruct input_device_id *id_table;  
  14.          conststruct input_device_id *blacklist;  
  15.    
  16.          struct list_head        h_list;  
  17.          struct list_head        node;  
  18. };  
Event()函数被输入子系统用于处理发送给设备的事件;

Connet()用来连接handler和Input_dev;

h_list链表 表示与这个Input_handler相联系的前后一个handler;

node链表 将此Input_handler连接到全局的input_handler_list链表中,内核中所有的Input_handler都连接在其上;

Struct input_handle   用来创建input_dev和Input_handler之间关系的结构体;

  1. struct input_handle {  
  2.          void*private;  
  3.          intopen;  
  4.          constchar *name;  
  5.    
  6.          structinput_dev *dev;  
  7.          structinput_handler *handler;  
  8.    
  9.          struct list_head        d_node;  
  10.          struct list_head        h_node;  
  11. };  
d_node 将handle放到设备相关的链表中,也就是放到input_dev->h_list表示的链表中;

h_node 将handle放到input_handler相关的链表中,也就是放到input_handler->h_list表示的链表中;

[子系统初始化函数]

  1. static int __init input_init(void)  
  2. {  
  3.          interr;  
  4.    
  5.          input_init_abs_bypass();  
  6.    
  7.          err= class_register(&input_class);  
  8.          if(err) {  
  9.                    printk(KERN_ERR"input: unable to register input_dev class\n");  
  10.                    returnerr;  
  11.          }  
  12.    
  13.          err= input_proc_init();  
  14.          if(err)  
  15.                    gotofail1;  
  16.    
  17.          err= register_chrdev(INPUT_MAJOR, "input", &input_fops);  
  18.          if(err) {  
  19.                    printk(KERN_ERR"input: unable to register char major %d", INPUT_MAJOR);  
  20.                    gotofail2;  
  21.          }  
  22.    
  23.          return0;  
  24.    
  25.  fail2:       input_proc_exit();  
  26.  fail1:       class_unregister(&input_class);  
  27.          return err;  
  28. }  
初始化函数将完成三个工作:

1、  class_register(&input_class) 注册一个Input类;

2、  input_proc_init() 在proc下建立相关的交互文件;

3、  register_chrdev(INPUT_MAJOR, "input", &input_fops) 注册为字符设备。 

[file_operations]

  1. static const struct file_operationsinput_fops = {  
  2.          .owner= THIS_MODULE,  
  3.          .open= input_open_file,  
  4. };  
你会感到会奇怪为什么file_operations中只实现了open方法,OK,我们来看下input_open_file的源代码
  1. static int input_open_file(struct inode*inode, struct file *file)  
  2. {  
  3.          structinput_handler *handler;  
  4.          conststruct file_operations *old_fops, *new_fops = NULL;  
  5.          interr;  
  6.    
  7.          lock_kernel();  
  8.          /*No load-on-demand here? */  
  9.          handler= input_table[iminor(inode) >> 5];  
  10.          if(!handler || !(new_fops = fops_get(handler->fops))) {  
  11.                    err= -ENODEV;  
  12.                    gotoout;  
  13.          }  
  14.    
  15.          /* 
  16.           * That's _really_ odd. Usually NULL ->openmeans "nothing special", 
  17.           * not "no device". Oh, well... 
  18.           */  
  19.          if(!new_fops->open) {  
  20.                    fops_put(new_fops);  
  21.                    err= -ENODEV;  
  22.                    gotoout;  
  23.          }  
  24.          old_fops= file->f_op;  
  25.          file->f_op= new_fops;  
  26.    
  27.          err= new_fops->open(inode, file);  
  28.    
  29.          if(err) {  
  30.                    fops_put(file->f_op);  
  31.                    file->f_op= fops_get(old_fops);  
  32.          }  
  33.          fops_put(old_fops);  
  34. out:  
  35.          unlock_kernel();  
  36.          returnerr;  
  37. }  
这个open方法完成了两个工作:

1、  将file->fops重定向到Input_handler->fops,因为input_handler->fops定义了对具体的事件的操作方法;通过file->fops我们就能对不同的设备进行操作;

2、  用input_handler->fops的open方法开打设备。 

[inputdevice drivers]

驱动层提供对硬件各寄存器的读写访问和讲底层硬件对用户输入访问的响应转换为标准的输入事件,再通过核心层提交给事件处理层。

[相关文件]

Driver/input/mouse

Drvier/input/touchscreen

Driver/input/joystick

……

[input_dev]

Struct input_dev 代表一个输入设备,驱动层主要的结构体,www.bkjia.com我们所做的工作就是填充此结构体。

[分配一个输入设备]

struct input_dev*input_allocate_device(void)

[注册和注销]

int input_register_device(struct input_dev*dev)

void input_unregister_device(structinput_dev *dev)

[input_register_device分析]

  1. int input_register_device(struct input_dev*dev)  
  2. {  
  3.          staticatomic_t input_no = ATOMIC_INIT(0);  
  4.          structinput_handler *handler;  
  5.          constchar *path;  
  6.          interror;  
  7.    
  8.          __set_bit(EV_SYN, dev->evbit);    /* support all event */  
  9.    
  10.          /* 
  11.           * If delay and period are pre-set by thedriver, then autorepeating 
  12.           * is handled by the driver itself and we don'tdo it in input.c. 
  13.           */  
  14.    
  15.          init_timer(&dev->timer);  
  16.          if(!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD]) {  
  17.                    dev->timer.data= (long) dev;  
  18.                   dev->timer.function =input_repeat_key;  
  19.                    dev->rep[REP_DELAY]= 250;  
  20.                    dev->rep[REP_PERIOD]= 33;  
  21.          }  
  22.    
  23.          if(!dev->getkeycode)  
  24.                    dev->getkeycode= input_default_getkeycode;  
  25.    
  26.          if(!dev->setkeycode)  
  27.                    dev->setkeycode= input_default_setkeycode;  
  28.    
  29.          dev_set_name(&dev->dev,"input%ld",  
  30.                         (unsigned long)atomic_inc_return(&input_no) - 1);  
  31.    
  32.          error = device_add(&dev->dev);  
  33.          if(error)  
  34.                    returnerror;  
  35.    
  36.          path= kobject_get_path(&dev->dev.kobj, GFP_KERNEL);  
  37.          printk(KERN_INFO"input: %s as %s\n",  
  38.                    dev->name? dev->name : "Unspecified device", path ? path :"N/A");  
  39.          kfree(path);  
  40.    
  41.          error= mutex_lock_interruptible(&input_mutex);  
  42.          if(error) {  
  43.                    device_del(&dev->dev);  
  44.                    returnerror;  
  45.          }  
  46.    
  47.          list_add_tail(&dev->node,&input_dev_list);  
  48.    
  49.          list_for_each_entry(handler,&input_handler_list, node)  
  50.                    input_attach_handler(dev,handler);  
  51.    
  52.          input_wakeup_procfs_readers();  
  53.    
  54.          mutex_unlock(&input_mutex);  
  55.    
  56.          return0;  
  57. }  
Input_register_device函数做了两个工作:

1、  把input_dev包含的device结构注册到linux设备模型中;

device_add(&dev->dev);

2、  调用list_add_tail函数将input_dev加入到Input_dev_list链表中,input_dev_list链表包含了系统中所有的input_dev设备。

List_for_each_entry函数用来遍历input_handler_list;

Input_attch_handler函数用来匹配input_dev和handler,只有匹配成功了,才会调用connect函数,使input_dev和handler处理器关联起来;

[inputevent driver]

Input event driver 也就是eventhandler,事件处理层;

为用户空间的应用程序提供了统一访问设备的接口和驱动层提交来的事件处理。

[相关文件]

Drivers/input/evdev.c

Drivers/input/joydev.c

Drivers/input/mousedev.c

……

 

[注册input_handler]

  1. int input_register_handler(structinput_handler *handler)  
  2. {  
  3.          structinput_dev *dev;  
  4.          intretval;  
  5.    
  6.          retval= mutex_lock_interruptible(&input_mutex);  
  7.          if(retval)  
  8.                    returnretval;  
  9.    
  10.          INIT_LIST_HEAD(&handler->h_list);  
  11.    
  12.          if(handler->fops != NULL) {  
  13.                    if(input_table[handler->minor >> 5]) {  
  14.                             retval= -EBUSY;  
  15.                             gotoout;  
  16.                    }  
  17.                    input_table[handler->minor>> 5] = handler;  
  18.          }  
  19.    
  20.          list_add_tail(&handler->node,&input_handler_list);  
  21.    
  22.          list_for_each_entry(dev,&input_dev_list, node)  
  23.                    input_attach_handler(dev,handler);  
  24.    
  25.          input_wakeup_procfs_readers();  
  26.    
  27.  out:  
  28.          mutex_unlock(&input_mutex);  
  29.          returnretval;  
  30. }  
注册一个新的input_handler处理器

list_add_tail(&handler->node, &input_handler_list)把handler加入到全局链表input_handler_list中;

List_for_each_entry函数用来遍历input_dev_list;

Input_attch_handler函数用来匹配input_dev和handler,只有匹配成功了,才会调用connect函数,使input_dev和handler处理器关联起来; 

[input_register_handle]

  1. int input_register_handle(struct input_handle*handle)  
  2. {  
  3.          structinput_handler *handler = handle->handler;  
  4.          structinput_dev *dev = handle->dev;  
  5.          interror;  
  6.    
  7.          /* 
  8.           * We take dev->mutex here to prevent racewith 
  9.           * input_release_device(). 
  10.           */  
  11.          error= mutex_lock_interruptible(&dev->mutex);  
  12.          if(error)  
  13.                    returnerror;  
  14.          list_add_tail_rcu(&handle->d_node,&dev->h_list);  
  15.          mutex_unlock(&dev->mutex);  
  16.    
  17.          list_add_tail(&handle->h_node,&handler->h_list);  
  18.    
  19.          if(handler->start)  
  20.                    handler->start(handle);  
  21.    
  22.          return0;  
  23. }  
Input_register_handle函数主要工作是将input_dev和Input_handler关联起来,和设备、驱动、总线的驱动模型非常相似。  

[input_dev、handler和handle三者的关系]

Input_register_device、input_register_handler和input_register_handle的关系在下图有很好的体现:

 


 if you have any questions, please contact me<cjok.liao@gmail.com> or leave a comment, we will exchange views, it's good for us, so great!              

  • 1
  • 2
  • 3
  • 下一页
【内容导航】
第1页:input-subsystem 第2页:按键实例
第3页:gpio-keys

相关内容