当前位置:   article > 正文

Linux驱动开发6 阻塞与非阻塞_linux 驱动 阻塞线程

linux 驱动 阻塞线程
阻塞和非阻塞 IO Linux 驱动开发里面很常见的两种设备访问模式,在编写驱动的时候
一定要考虑到阻塞和非阻塞。本章我们就来学习一下阻塞和非阻塞 IO ,以及如何在驱动程序中
处理阻塞与非阻塞,如何在驱动程序使用等待队列和 poll 机制。
这里的IO是对文件的IO操作
当应用程序对设备驱动进行操作的时候,如果不能获取到设备资源,
那么阻塞式 IO 就会将应用程序对应的线程挂起,直到设备资源可以获取为止。 应用程序使用open 打开驱动文件,默认是阻塞方式打开
对于非阻塞 IO,应用程序对应的线程不会挂起,它要么一直轮询等待,直到设备资源可以使用,要么就直接放弃。 应用程序使用open 函数打开“/dev/xxx_dev”设备文件的时候添加了参数“O_NONBLOCK”,表示以非阻塞方式打开设备,这样从设备中读取数据的时候就是非阻塞方式的

等待队列(步骤):这一节主要讲非阻塞

1、等待队列头

阻塞访问最大的好处就是当设备文件不可操作的时候进程可以进入休眠态,这样可以将
CPU 资源让出来。但是,当设备文件可以操作的时候就必须唤醒进程,一般在中断函数里面完
成唤醒工作。 Linux 内核提供了等待队列(wait queue) 来实现阻塞进程的唤醒工作,如果我们要
在驱动中使用等待队列,必须创建并初始化一个 等待队列头 ,等待队列头使用结构体
wait_queue_head_t 表示, wait_queue_head_t 结构体定义在文件 include/linux/wait.h 中,结构体内容如下所示:
 
2 、等待队列项
等待队列头就是一个等待队列的头部,每个访问设备的进程都是一个队列项,当设备不可
用的时候就要将这些进程对应的等待队列项添加到等待队列里面。结构体 wait_queue_t 表示等
待队列项,结构体内容如下:
3 、将队列项添加 / 移除等待队列头
当设备不可访问的时候就需要将进程对应的等待队列项添加到前面创建的等待队列头中
只有添加到等待队列头中以后进程才能进入休眠态 。当设备可以访问以后再将进程对应的等待
队列项从等待队列头中移除即可,等待队列项添加 API 函数如下:
4 、等待唤醒(主动唤醒)
当设备可以使用的时候就要唤醒进入休眠态的进程,唤醒可以使用如下两个函数:
void wake_up(wait_queue_head_t *q)
void wake_up_interruptible(wait_queue_head_t *q)
参数 q 就是要唤醒的等待队列头,这两个函数会将这个等待队列头中的所有进程都唤醒。
wake_up 函数可以唤醒处于 TASK_INTERRUPTIBLE TASK_UNINTERRUPTIBLE 状态的进
程,而 wake_up_interruptible 函数只能唤醒处于 TASK_INTERRUPTIBLE 状态的进程。
5 、等待事件(被动唤醒)
除了主动唤醒以外,也可以设置等待队列等待某个事件,当这个事件满足以后就自动唤醒
等待队列中的进程,和等待事件有关的 API 函数如表 52.1.2.1 所示:

轮询(POLL函数)

应用程序的调用的函数都可以看man手册,很重要

如果用户应用程序以非阻塞的方式访问设备,设备驱动程序就要提供非阻塞的处理方式,
也就是轮询。 poll epoll select 可以用于处理轮询,应用程序通过 select epoll poll 函数来
查询设备是否可以操作,如果可以操作的话就从设备读取或者向设备写入数据。当应用程序调
select epoll poll 函数的时候设备驱动程序中的 poll 函数就会执行,因此需要在设备驱动
程序中编写 poll 函数。我们先来看一下应用程序中使用的 select、poll 和 epoll 这三个函数。
但是统一对应到驱动程序中时就一个poll函数
poll 函数
在单个线程中, select 函数能够监视的文件描述符数量有最大的限制,一般为 1024 ,可以
修改内核将监视的文件描述符数量改大,但是这样会降低效率!这个时候就可以使用 poll 函数,
poll 函数本质上和 select 没有太大的差别, 但是 poll 函数没有最大文件描述符限制 Linux 应用
程序中 poll 函数原型如下所示:

=========================================================================
Linux 驱动下的 poll 操作函数
当应用程序调用 select poll 函数来对驱动程序进行非阻塞访问的时候,驱动程序
file_operations 操作集中的 poll 函数就会执行。所以驱动程序的编写者需要提供对应的 poll
数, poll 函数原型如下所示:
unsigned int (*poll) (struct file *filp, struct poll_table_struct *wait)
函数参数和返回值含义如下:
filp 要打开的设备文件 ( 文件描述符 )
wait 结构体 poll_table_struct 类型指针,由应用程序传递进来的。一般将此参数传递给
poll_wait 函数。
返回值 : 向应用程序返回设备或者资源状态,可以返回的资源状态如下:
POLLIN 有数据可以读取。
POLLPRI 有紧急的数据需要读取。
POLLOUT 可以写数据。
POLLERR 指定的文件描述符发生错误。
POLLHUP 指定的文件描述符挂起。
POLLNVAL 无效的请求。
POLLRDNORM 等同于 POLLIN ,普通数据可读
我们需要在驱动程序的 poll 函数中调用 poll_wait 函数, poll_wait 函数不会引起阻塞,只是
将应用程序添加到 poll_table 中, poll_wait 函数原型如下:
void poll_wait(struct file * filp, wait_queue_head_t * wait_address, poll_table *p)
参数 wait_address 是要添加到 poll_table 中的等待队列头,参数 p 就是 poll_table ,就是
file_operations poll 函数的 wait 参数。
在中断实验基础上完成
1、阻塞式访问使CPU占用率降低
非阻塞(应用反复问驱动直到可读为止),阻塞(驱动让应用先滚一边,等可读了在过来读)

阻塞实验例程

  1. #include <linux/types.h>
  2. #include <linux/kernel.h>
  3. #include <linux/delay.h>
  4. #include <linux/ide.h>
  5. #include <linux/init.h>
  6. #include <linux/module.h>
  7. #include <linux/errno.h>
  8. #include <linux/gpio.h>
  9. #include <linux/cdev.h>
  10. #include <linux/device.h>
  11. #include <linux/of.h>
  12. #include <linux/of_address.h>
  13. #include <linux/of_gpio.h>
  14. #include <linux/semaphore.h>
  15. #include <linux/timer.h>
  16. #include <linux/of_irq.h>
  17. #include <linux/irq.h>
  18. #include <asm/mach/map.h>
  19. #include <asm/uaccess.h>
  20. #include <asm/io.h>
  21. /***************************************************************
  22. Copyright © ALIENTEK Co., Ltd. 1998-2029. All rights reserved.
  23. 文件名 : block.c
  24. 作者 : 左忠凯
  25. 版本 : V1.0
  26. 描述 : 阻塞IO访问
  27. 其他 : 无
  28. 论坛 : www.openedv.com
  29. 日志 : 初版V1.0 2019/7/26 左忠凯创建
  30. ***************************************************************/
  31. #define IMX6UIRQ_CNT 1 /* 设备号个数 */
  32. #define IMX6UIRQ_NAME "blockio" /* 名字 */
  33. #define KEY0VALUE 0X01 /* KEY0按键值 */
  34. #define INVAKEY 0XFF /* 无效的按键值 */
  35. #define KEY_NUM 1 /* 按键数量 */
  36. /* 中断IO描述结构体 */
  37. struct irq_keydesc {
  38. int gpio; /* gpio */
  39. int irqnum; /* 中断号 */
  40. unsigned char value; /* 按键对应的键值 */
  41. char name[10]; /* 名字 */
  42. irqreturn_t (*handler)(int, void *); /* 中断服务函数 */
  43. };
  44. /* imx6uirq设备结构体 */
  45. struct imx6uirq_dev{
  46. dev_t devid; /* 设备号 */
  47. struct cdev cdev; /* cdev */
  48. struct class *class; /* 类 */
  49. struct device *device; /* 设备 */
  50. int major; /* 主设备号 */
  51. int minor; /* 次设备号 */
  52. struct device_node *nd; /* 设备节点 */
  53. atomic_t keyvalue; /* 有效的按键键值 */
  54. atomic_t releasekey; /* 标记是否完成一次完成的按键,包括按下和释放 */
  55. struct timer_list timer;/* 定义一个定时器*/
  56. struct irq_keydesc irqkeydesc[KEY_NUM]; /* 按键init述数组 */
  57. unsigned char curkeynum; /* 当前init按键号 */
  58. //
  59. wait_queue_head_t r_wait; /* 读等待队列头 */
  60. };
  61. struct imx6uirq_dev imx6uirq; /* irq设备 */
  62. /* @description : 中断服务函数,开启定时器
  63. * 定时器用于按键消抖。
  64. * @param - irq : 中断号
  65. * @param - dev_id : 设备结构。
  66. * @return : 中断执行结果
  67. */
  68. static irqreturn_t key0_handler(int irq, void *dev_id)
  69. {
  70. struct imx6uirq_dev *dev = (struct imx6uirq_dev*)dev_id;
  71. dev->curkeynum = 0;
  72. dev->timer.data = (volatile long)dev_id;
  73. mod_timer(&dev->timer, jiffies + msecs_to_jiffies(10)); /* 10ms定时 */
  74. return IRQ_RETVAL(IRQ_HANDLED);
  75. }
  76. /* @description : 定时器服务函数,用于按键消抖,定时器到了以后
  77. * 再次读取按键值,如果按键还是处于按下状态就表示按键有效。
  78. * @param - arg : 设备结构变量
  79. * @return : 无
  80. */
  81. void timer_function(unsigned long arg)
  82. {
  83. unsigned char value;
  84. unsigned char num;
  85. struct irq_keydesc *keydesc;
  86. struct imx6uirq_dev *dev = (struct imx6uirq_dev *)arg;
  87. num = dev->curkeynum;
  88. keydesc = &dev->irqkeydesc[num];
  89. value = gpio_get_value(keydesc->gpio); /* 读取IO值 */
  90. if(value == 0){ /* 按下按键 */
  91. atomic_set(&dev->keyvalue, keydesc->value);
  92. }
  93. else{ /* 按键松开 */
  94. atomic_set(&dev->keyvalue, 0x80 | keydesc->value);
  95. atomic_set(&dev->releasekey, 1); /* 标记松开按键,即完成一次完整的按键过程 */
  96. }
  97. ///
  98. /* 唤醒进程 */
  99. if(atomic_read(&dev->releasekey)) { /* 完成一次按键过程 */
  100. /* wake_up(&dev->r_wait); */
  101. wake_up_interruptible(&dev->r_wait);
  102. }
  103. }
  104. /*
  105. * @description : 按键IO初始化(我发现了 这里面基本都是一些初始化操作)
  106. * @param : 无
  107. * @return : 无
  108. */
  109. static int keyio_init(void)
  110. {
  111. unsigned char i = 0;
  112. char name[10];
  113. int ret = 0;
  114. imx6uirq.nd = of_find_node_by_path("/key");
  115. if (imx6uirq.nd== NULL){
  116. printk("key node not find!\r\n");
  117. return -EINVAL;
  118. }
  119. /* 提取GPIO */
  120. for (i = 0; i < KEY_NUM; i++) {
  121. imx6uirq.irqkeydesc[i].gpio = of_get_named_gpio(imx6uirq.nd ,"key-gpio", i);
  122. if (imx6uirq.irqkeydesc[i].gpio < 0) {
  123. printk("can't get key%d\r\n", i);
  124. }
  125. }
  126. /* 初始化key所使用的IO,并且设置成中断模式 */
  127. for (i = 0; i < KEY_NUM; i++) {
  128. memset(imx6uirq.irqkeydesc[i].name, 0, sizeof(name)); /* 缓冲区清零 */
  129. sprintf(imx6uirq.irqkeydesc[i].name, "KEY%d", i); /* 组合名字 */
  130. gpio_request(imx6uirq.irqkeydesc[i].gpio, name);
  131. gpio_direction_input(imx6uirq.irqkeydesc[i].gpio);
  132. imx6uirq.irqkeydesc[i].irqnum = irq_of_parse_and_map(imx6uirq.nd, i);
  133. #if 0
  134. imx6uirq.irqkeydesc[i].irqnum = gpio_to_irq(imx6uirq.irqkeydesc[i].gpio);
  135. #endif
  136. }
  137. /* 申请中断 */
  138. imx6uirq.irqkeydesc[0].handler = key0_handler;
  139. imx6uirq.irqkeydesc[0].value = KEY0VALUE;
  140. for (i = 0; i < KEY_NUM; i++) {
  141. ret = request_irq(imx6uirq.irqkeydesc[i].irqnum, imx6uirq.irqkeydesc[i].handler,
  142. IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING, imx6uirq.irqkeydesc[i].name, &imx6uirq);
  143. if(ret < 0){
  144. printk("irq %d request failed!\r\n", imx6uirq.irqkeydesc[i].irqnum);
  145. return -EFAULT;
  146. }
  147. }
  148. /* 创建定时器 */
  149. init_timer(&imx6uirq.timer);
  150. imx6uirq.timer.function = timer_function;
  151. /* 初始化等待队列头 */
  152. init_waitqueue_head(&imx6uirq.r_wait);
  153. return 0;
  154. }
  155. /*
  156. * @description : 打开设备
  157. * @param - inode : 传递给驱动的inode
  158. * @param - filp : 设备文件,file结构体有个叫做private_data的成员变量
  159. * 一般在open的时候将private_data指向设备结构体。
  160. * @return : 0 成功;其他 失败
  161. */
  162. static int imx6uirq_open(struct inode *inode, struct file *filp)
  163. {
  164. filp->private_data = &imx6uirq; /* 设置私有数据 */
  165. return 0;
  166. }
  167. /*
  168. * @description : 从设备读取数据
  169. * @param - filp : 要打开的设备文件(文件描述符)
  170. * @param - buf : 返回给用户空间的数据缓冲区
  171. * @param - cnt : 要读取的数据长度
  172. * @param - offt : 相对于文件首地址的偏移
  173. * @return : 读取的字节数,如果为负值,表示读取失败
  174. */
  175. static ssize_t imx6uirq_read(struct file *filp, char __user *buf, size_t cnt, loff_t *offt)
  176. {
  177. int ret = 0;
  178. unsigned char keyvalue = 0;
  179. unsigned char releasekey = 0;
  180. struct imx6uirq_dev *dev = (struct imx6uirq_dev *)filp->private_data;
  181. #if 0
  182. /* 加入等待队列,等待被唤醒,也就是有按键按下
  183. 此函数会将进程设置为TASK——UNINTERRUPTIBLE状态
  184. 等待按键有效-有效-唤醒
  185. wait_event_interruptible 是被动等待事件发生*/
  186. ret = wait_event_interruptible(dev->r_wait, atomic_read(&dev->releasekey));
  187. if (ret) {
  188. goto wait_error;
  189. }
  190. #endif
  191. // 当设备不可访问的时候需要将进程对应的 等待队列项 添加到 等待队列头 中
  192. DECLARE_WAITQUEUE(wait, current); /* 定义一个等待队列 */
  193. if(atomic_read(&dev->releasekey) == 0) { /* 没有按键按下 则置为休眠状态*/
  194. add_wait_queue(&dev->r_wait, &wait); /* 将等待队列添加到等待队列头(休眠) */
  195. __set_current_state(TASK_INTERRUPTIBLE);/* 设置任务状态为可被打断的状态 */
  196. schedule(); /* 进行一次任务切换 */
  197. // 唤醒以后从这运行
  198. // 由于设置了可被中断唤醒,所以需要判断
  199. // 1.被按键中断唤醒。2.被信号唤醒
  200. if(signal_pending(current)) { /* 判断是否为信号引起的唤醒 */
  201. // 无效的信号量
  202. ret = -ERESTARTSYS;
  203. goto wait_error; //goto的意思是直接跳转至wait_error即247行 中间的不执行了
  204. }
  205. // 有效的按键值
  206. __set_current_state(TASK_RUNNING); /* 将当前任务设置为运行状态 */
  207. remove_wait_queue(&dev->r_wait, &wait); /* 将对应的队列项从等待队列头删除 */
  208. }
  209. keyvalue = atomic_read(&dev->keyvalue);
  210. releasekey = atomic_read(&dev->releasekey);
  211. if (releasekey) { /* 有按键按下 */
  212. if (keyvalue & 0x80) {
  213. keyvalue &= ~0x80;
  214. ret = copy_to_user(buf, &keyvalue, sizeof(keyvalue));
  215. } else {
  216. goto data_error;
  217. }
  218. atomic_set(&dev->releasekey, 0);/* 按下标志清零 */
  219. } else {
  220. goto data_error;
  221. }
  222. return 0;
  223. wait_error:
  224. set_current_state(TASK_RUNNING); /* 设置任务为运行态 */
  225. remove_wait_queue(&dev->r_wait, &wait); /* 将等待队列移除 */
  226. return ret;
  227. data_error:
  228. return -EINVAL;
  229. }
  230. /* 设备操作函数 */
  231. static struct file_operations imx6uirq_fops = {
  232. .owner = THIS_MODULE,
  233. .open = imx6uirq_open,
  234. .read = imx6uirq_read,
  235. };
  236. /*
  237. * @description : 驱动入口函数
  238. * @param : 无
  239. * @return : 无
  240. */
  241. static int __init imx6uirq_init(void)
  242. {
  243. /* 1、构建设备号 */
  244. if (imx6uirq.major) {
  245. imx6uirq.devid = MKDEV(imx6uirq.major, 0);
  246. register_chrdev_region(imx6uirq.devid, IMX6UIRQ_CNT, IMX6UIRQ_NAME);
  247. } else {
  248. alloc_chrdev_region(&imx6uirq.devid, 0, IMX6UIRQ_CNT, IMX6UIRQ_NAME);
  249. imx6uirq.major = MAJOR(imx6uirq.devid);
  250. imx6uirq.minor = MINOR(imx6uirq.devid);
  251. }
  252. /* 2、注册字符设备 */
  253. cdev_init(&imx6uirq.cdev, &imx6uirq_fops);
  254. cdev_add(&imx6uirq.cdev, imx6uirq.devid, IMX6UIRQ_CNT);
  255. /* 3、创建类 */
  256. imx6uirq.class = class_create(THIS_MODULE, IMX6UIRQ_NAME);
  257. if (IS_ERR(imx6uirq.class)) {
  258. return PTR_ERR(imx6uirq.class);
  259. }
  260. /* 4、创建设备 */
  261. imx6uirq.device = device_create(imx6uirq.class, NULL, imx6uirq.devid, NULL, IMX6UIRQ_NAME);
  262. if (IS_ERR(imx6uirq.device)) {
  263. return PTR_ERR(imx6uirq.device);
  264. }
  265. /* 5、始化按键 */
  266. atomic_set(&imx6uirq.keyvalue, INVAKEY);
  267. atomic_set(&imx6uirq.releasekey, 0);
  268. keyio_init();
  269. return 0;
  270. }
  271. /*
  272. * @description : 驱动出口函数
  273. * @param : 无
  274. * @return : 无
  275. */
  276. static void __exit imx6uirq_exit(void)
  277. {
  278. unsigned i = 0;
  279. /* 删除定时器 */
  280. del_timer_sync(&imx6uirq.timer); /* 删除定时器 */
  281. /* 释放中断 */
  282. for (i = 0; i < KEY_NUM; i++) {
  283. free_irq(imx6uirq.irqkeydesc[i].irqnum, &imx6uirq);
  284. gpio_free(imx6uirq.irqkeydesc[i].gpio);
  285. }
  286. cdev_del(&imx6uirq.cdev);
  287. unregister_chrdev_region(imx6uirq.devid, IMX6UIRQ_CNT);
  288. device_destroy(imx6uirq.class, imx6uirq.devid);
  289. class_destroy(imx6uirq.class);
  290. }
  291. module_init(imx6uirq_init);
  292. module_exit(imx6uirq_exit);
  293. MODULE_LICENSE("GPL");

非阻塞实验例程

  1. #include <linux/types.h>
  2. #include <linux/kernel.h>
  3. #include <linux/delay.h>
  4. #include <linux/ide.h>
  5. #include <linux/init.h>
  6. #include <linux/module.h>
  7. #include <linux/errno.h>
  8. #include <linux/gpio.h>
  9. #include <linux/cdev.h>
  10. #include <linux/device.h>
  11. #include <linux/of.h>
  12. #include <linux/of_address.h>
  13. #include <linux/of_gpio.h>
  14. #include <linux/semaphore.h>
  15. #include <linux/timer.h>
  16. #include <linux/of_irq.h>
  17. #include <linux/irq.h>
  18. #include <linux/wait.h>
  19. #include <linux/poll.h>
  20. #include <asm/mach/map.h>
  21. #include <asm/uaccess.h>
  22. #include <asm/io.h>
  23. /***************************************************************
  24. Copyright © ALIENTEK Co., Ltd. 1998-2029. All rights reserved.
  25. 文件名 : noblock.c
  26. 作者 : 左忠凯
  27. 版本 : V1.0
  28. 描述 : 非阻塞IO访问
  29. 其他 : 无
  30. 论坛 : www.openedv.com
  31. 日志 : 初版V1.0 2019/7/26 左忠凯创建
  32. ***************************************************************/
  33. #define IMX6UIRQ_CNT 1 /* 设备号个数 */
  34. #define IMX6UIRQ_NAME "noblockio" /* 名字 */
  35. #define KEY0VALUE 0X01 /* KEY0按键值 */
  36. #define INVAKEY 0XFF /* 无效的按键值 */
  37. #define KEY_NUM 1 /* 按键数量 */
  38. /* 中断IO描述结构体 */
  39. struct irq_keydesc {
  40. int gpio; /* gpio */
  41. int irqnum; /* 中断号 */
  42. unsigned char value; /* 按键对应的键值 */
  43. char name[10]; /* 名字 */
  44. irqreturn_t (*handler)(int, void *); /* 中断服务函数 */
  45. };
  46. /* imx6uirq设备结构体 */
  47. struct imx6uirq_dev{
  48. dev_t devid; /* 设备号 */
  49. struct cdev cdev; /* cdev */
  50. struct class *class; /* 类 */
  51. struct device *device; /* 设备 */
  52. int major; /* 主设备号 */
  53. int minor; /* 次设备号 */
  54. struct device_node *nd; /* 设备节点 */
  55. atomic_t keyvalue; /* 有效的按键键值 */
  56. atomic_t releasekey; /* 标记是否完成一次完成的按键,包括按下和释放 */
  57. struct timer_list timer;/* 定义一个定时器*/
  58. struct irq_keydesc irqkeydesc[KEY_NUM]; /* 按键init述数组 */
  59. unsigned char curkeynum; /* 当前init按键号 */
  60. wait_queue_head_t r_wait; /* 读等待队列头 */
  61. };
  62. struct imx6uirq_dev imx6uirq; /* irq设备 */
  63. /* @description : 中断服务函数,开启定时器
  64. * 定时器用于按键消抖。
  65. * @param - irq : 中断号
  66. * @param - dev_id : 设备结构。
  67. * @return : 中断执行结果
  68. */
  69. static irqreturn_t key0_handler(int irq, void *dev_id)
  70. {
  71. struct imx6uirq_dev *dev = (struct imx6uirq_dev*)dev_id;
  72. dev->curkeynum = 0;
  73. dev->timer.data = (volatile long)dev_id;
  74. mod_timer(&dev->timer, jiffies + msecs_to_jiffies(10)); /* 10ms定时 */
  75. return IRQ_RETVAL(IRQ_HANDLED);
  76. }
  77. /* @description : 定时器服务函数,用于按键消抖,定时器到了以后
  78. * 再次读取按键值,如果按键还是处于按下状态就表示按键有效。
  79. * @param - arg : 设备结构变量
  80. * @return : 无
  81. */
  82. void timer_function(unsigned long arg)
  83. {
  84. unsigned char value;
  85. unsigned char num;
  86. struct irq_keydesc *keydesc;
  87. struct imx6uirq_dev *dev = (struct imx6uirq_dev *)arg;
  88. num = dev->curkeynum;
  89. keydesc = &dev->irqkeydesc[num];
  90. value = gpio_get_value(keydesc->gpio); /* 读取IO值 */
  91. if(value == 0){ /* 按下按键 */
  92. atomic_set(&dev->keyvalue, keydesc->value);
  93. }
  94. else{ /* 按键松开 */
  95. atomic_set(&dev->keyvalue, 0x80 | keydesc->value);
  96. atomic_set(&dev->releasekey, 1); /* 标记松开按键,即完成一次完整的按键过程 */
  97. }
  98. //
  99. /* 唤醒进程 */
  100. // 唤醒和初始化操作和代码位置与阻塞例程相同
  101. if(atomic_read(&dev->releasekey)) { /* 完成一次按键过程 */
  102. /* wake_up(&dev->r_wait); */
  103. wake_up_interruptible(&dev->r_wait);
  104. }
  105. }
  106. /*
  107. * @description : 按键IO初始化
  108. * @param : 无
  109. * @return : 无
  110. */
  111. static int keyio_init(void)
  112. {
  113. unsigned char i = 0;
  114. char name[10];
  115. int ret = 0;
  116. imx6uirq.nd = of_find_node_by_path("/key");
  117. if (imx6uirq.nd== NULL){
  118. printk("key node not find!\r\n");
  119. return -EINVAL;
  120. }
  121. /* 提取GPIO */
  122. for (i = 0; i < KEY_NUM; i++) {
  123. imx6uirq.irqkeydesc[i].gpio = of_get_named_gpio(imx6uirq.nd ,"key-gpio", i);
  124. if (imx6uirq.irqkeydesc[i].gpio < 0) {
  125. printk("can't get key%d\r\n", i);
  126. }
  127. }
  128. /* 初始化key所使用的IO,并且设置成中断模式 */
  129. for (i = 0; i < KEY_NUM; i++) {
  130. memset(imx6uirq.irqkeydesc[i].name, 0, sizeof(name)); /* 缓冲区清零 */
  131. sprintf(imx6uirq.irqkeydesc[i].name, "KEY%d", i); /* 组合名字 */
  132. gpio_request(imx6uirq.irqkeydesc[i].gpio, name);
  133. gpio_direction_input(imx6uirq.irqkeydesc[i].gpio);
  134. imx6uirq.irqkeydesc[i].irqnum = irq_of_parse_and_map(imx6uirq.nd, i);
  135. #if 0
  136. imx6uirq.irqkeydesc[i].irqnum = gpio_to_irq(imx6uirq.irqkeydesc[i].gpio);
  137. #endif
  138. }
  139. /* 申请中断 */
  140. imx6uirq.irqkeydesc[0].handler = key0_handler;
  141. imx6uirq.irqkeydesc[0].value = KEY0VALUE;
  142. for (i = 0; i < KEY_NUM; i++) {
  143. ret = request_irq(imx6uirq.irqkeydesc[i].irqnum, imx6uirq.irqkeydesc[i].handler,
  144. IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING, imx6uirq.irqkeydesc[i].name, &imx6uirq);
  145. if(ret < 0){
  146. printk("irq %d request failed!\r\n", imx6uirq.irqkeydesc[i].irqnum);
  147. return -EFAULT;
  148. }
  149. }
  150. /* 创建定时器 */
  151. init_timer(&imx6uirq.timer);
  152. imx6uirq.timer.function = timer_function;
  153. /* 初始化等待队列头 */
  154. init_waitqueue_head(&imx6uirq.r_wait);
  155. return 0;
  156. }
  157. /*
  158. * @description : 打开设备
  159. * @param - inode : 传递给驱动的inode
  160. * @param - filp : 设备文件,file结构体有个叫做private_data的成员变量
  161. * 一般在open的时候将private_data指向设备结构体。
  162. * @return : 0 成功;其他 失败
  163. */
  164. static int imx6uirq_open(struct inode *inode, struct file *filp)
  165. {
  166. filp->private_data = &imx6uirq; /* 设置私有数据 */
  167. return 0;
  168. }
  169. /*
  170. * @description : 从设备读取数据
  171. * @param - filp : 要打开的设备文件(文件描述符)
  172. * @param - buf : 返回给用户空间的数据缓冲区
  173. * @param - cnt : 要读取的数据长度
  174. * @param - offt : 相对于文件首地址的偏移
  175. * @return : 读取的字节数,如果为负值,表示读取失败
  176. */
  177. static ssize_t imx6uirq_read(struct file *filp, char __user *buf, size_t cnt, loff_t *offt)
  178. {
  179. int ret = 0;
  180. unsigned char keyvalue = 0;
  181. unsigned char releasekey = 0;
  182. struct imx6uirq_dev *dev = (struct imx6uirq_dev *)filp->private_data;
  183. ///
  184. if (filp->f_flags & O_NONBLOCK) { /* 非阻塞访问 */
  185. if(atomic_read(&dev->releasekey) == 0) /* 没有按键按下,返回-EAGAIN */
  186. return -EAGAIN;
  187. } else { /* 否则阻塞访问 */
  188. /* 加入等待队列,等待被唤醒,也就是有按键按下 */
  189. ret = wait_event_interruptible(dev->r_wait, atomic_read(&dev->releasekey));
  190. if (ret) {
  191. goto wait_error;
  192. }
  193. }
  194. ///
  195. keyvalue = atomic_read(&dev->keyvalue);
  196. releasekey = atomic_read(&dev->releasekey);
  197. if (releasekey) { /* 有按键按下 */
  198. if (keyvalue & 0x80) {
  199. keyvalue &= ~0x80;
  200. ret = copy_to_user(buf, &keyvalue, sizeof(keyvalue));
  201. } else {
  202. goto data_error;
  203. }
  204. atomic_set(&dev->releasekey, 0);/* 按下标志清零 */
  205. } else {
  206. goto data_error;
  207. }
  208. return 0;
  209. wait_error:
  210. return ret;
  211. data_error:
  212. return -EINVAL;
  213. }
  214. /* 非阻塞的关键,在驱动层定义poll函数
  215. 以非阻塞方式读取,还需要改APP.c文件
  216. * @description : poll函数,用于处理非阻塞访问
  217. * @param - filp : 要打开的设备文件(文件描述符)
  218. * @param - wait : 等待列表(poll_table)
  219. * @return : 设备或者资源状态,
  220. */
  221. unsigned int imx6uirq_poll(struct file *filp, struct poll_table_struct *wait)
  222. {
  223. unsigned int mask = 0;
  224. struct imx6uirq_dev *dev = (struct imx6uirq_dev *)filp->private_data;
  225. poll_wait(filp, &dev->r_wait, wait); /* 将等待队列头添加到poll_table中 */
  226. // 是否可读
  227. if(atomic_read(&dev->releasekey)) { /* 为真则代表按键按下,可读 */
  228. mask = POLLIN | POLLRDNORM; /* 返回PLLIN */
  229. }
  230. return mask;
  231. }
  232. /* 设备操作函数 */
  233. static struct file_operations imx6uirq_fops = {
  234. .owner = THIS_MODULE,
  235. .open = imx6uirq_open,
  236. .read = imx6uirq_read,
  237. .poll = imx6uirq_poll, //注意这里,多了一个poll函数
  238. };
  239. /*
  240. * @description : 驱动入口函数
  241. * @param : 无
  242. * @return : 无
  243. */
  244. static int __init imx6uirq_init(void)
  245. {
  246. /* 1、构建设备号 */
  247. if (imx6uirq.major) {
  248. imx6uirq.devid = MKDEV(imx6uirq.major, 0);
  249. register_chrdev_region(imx6uirq.devid, IMX6UIRQ_CNT, IMX6UIRQ_NAME);
  250. } else {
  251. alloc_chrdev_region(&imx6uirq.devid, 0, IMX6UIRQ_CNT, IMX6UIRQ_NAME);
  252. imx6uirq.major = MAJOR(imx6uirq.devid);
  253. imx6uirq.minor = MINOR(imx6uirq.devid);
  254. }
  255. /* 2、注册字符设备 */
  256. cdev_init(&imx6uirq.cdev, &imx6uirq_fops);
  257. cdev_add(&imx6uirq.cdev, imx6uirq.devid, IMX6UIRQ_CNT);
  258. /* 3、创建类 */
  259. imx6uirq.class = class_create(THIS_MODULE, IMX6UIRQ_NAME);
  260. if (IS_ERR(imx6uirq.class)) {
  261. return PTR_ERR(imx6uirq.class);
  262. }
  263. /* 4、创建设备 */
  264. imx6uirq.device = device_create(imx6uirq.class, NULL, imx6uirq.devid, NULL, IMX6UIRQ_NAME);
  265. if (IS_ERR(imx6uirq.device)) {
  266. return PTR_ERR(imx6uirq.device);
  267. }
  268. /* 5、始化按键 */
  269. atomic_set(&imx6uirq.keyvalue, INVAKEY);
  270. atomic_set(&imx6uirq.releasekey, 0);
  271. keyio_init();
  272. return 0;
  273. }
  274. /*
  275. * @description : 驱动出口函数
  276. * @param : 无
  277. * @return : 无
  278. */
  279. static void __exit imx6uirq_exit(void)
  280. {
  281. unsigned i = 0;
  282. /* 删除定时器 */
  283. del_timer_sync(&imx6uirq.timer); /* 删除定时器 */
  284. /* 释放中断 */
  285. for (i = 0; i < KEY_NUM; i++) {
  286. free_irq(imx6uirq.irqkeydesc[i].irqnum, &imx6uirq);
  287. gpio_free(imx6uirq.irqkeydesc[i].gpio);
  288. }
  289. cdev_del(&imx6uirq.cdev);
  290. unregister_chrdev_region(imx6uirq.devid, IMX6UIRQ_CNT);
  291. device_destroy(imx6uirq.class, imx6uirq.devid);
  292. class_destroy(imx6uirq.class);
  293. }
  294. module_init(imx6uirq_init);
  295. module_exit(imx6uirq_exit);
  296. MODULE_LICENSE("GPL");

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/770222
推荐阅读
相关标签
  

闽ICP备14008679号