linux驱动的异步通知(kill_fasync,fasync)---- 驱动程序向应用程序发送信号
应用程序
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <stdio.h>
- #include <poll.h>
- #include <signal.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <fcntl.h>
- /* fifthdrvtest
- */
- int fd;
- //信号处理函数
- void my_signal_fun(int signum)
- {
- unsigned char key_val;
- read(fd, &key_val, 1);
- printf("key_val: 0x%x\n", key_val);
- }
- int main(int argc, char **argv)
- {
- unsigned char key_val;
- int ret;
- int Oflags;
- //在应用程序中捕捉SIGIO信号(由驱动程序发送)
- signal(SIGIO, my_signal_fun);
- fd = open("/dev/buttons", O_RDWR);
- if (fd < 0)
- {
- printf("can't open!\n");
- }
- //将当前进程PID设置为fd文件所对应驱动程序将要发送SIGIO,SIGUSR信号进程PID
- fcntl(fd, F_SETOWN, getpid());
- //获取fd的打开方式
- Oflags = fcntl(fd, F_GETFL);
- //将fd的打开方式设置为FASYNC --- 即 支持异步通知
- // 该行代码执行会触发 驱动程序中 file_operations->fasync 函数 ------fasync函数调用 fasync_helper初始化一个fasync_struct结构体,该结构体描述了将要发送信号的进程 PID (fasync_struct->fa_file->f_owner->pid)
- fcntl(fd, F_SETFL, Oflags | FASYNC);
- while (1)
- {
- sleep(1000);
- }
- return 0;
- }
驱动程序
- #include <linux/module.h>
- #include <linux/kernel.h>
- #include <linux/fs.h>
- #include <linux/init.h>
- #include <linux/delay.h>
- #include <linux/irq.h>
- #include <asm/uaccess.h>
- #include <asm/irq.h>
- #include <asm/io.h>
- #include <asm/arch/regs-gpio.h>
- #include <asm/hardware.h>
- #include <linux/poll.h>
- static struct class *fifthdrv_class;
- static struct class_device *fifthdrv_class_dev;
- //volatile unsigned long *gpfcon;
- //volatile unsigned long *gpfdat;
- static DECLARE_WAIT_QUEUE_HEAD(button_waitq);
- /* 中断事件标志, 中断服务程序将它置1,fifth_drv_read将它清0 */
- static volatile int ev_press = 0;
- static struct fasync_struct *button_async;
- struct pin_desc{
- unsigned int pin;
- unsigned int key_val;
- };
- /* 键值: 按下时, 0x01, 0x02, 0x03, 0x04 */
- /* 键值: 松开时, 0x81, 0x82, 0x83, 0x84 */
- static unsigned char key_val;
- /*
- * K1,K2,K3,K4对应GPG0,GPG3,GPG5,GPG6
- */
- struct pin_desc pins_desc[4] = {
- {S3C2410_GPG0, 0x01},
- {S3C2410_GPG3, 0x02},
- {S3C2410_GPG5, 0x03},
- {S3C2410_GPG6, 0x04},
- };
- /*
- * 确定按键值
- */
- static irqreturn_t buttons_irq(int irq, void *dev_id)
- {
- struct pin_desc * pindesc = (struct pin_desc *)dev_id;
- unsigned int pinval;
- pinval = s3c2410_gpio_getpin(pindesc->pin);
- if (pinval)
- {
- /* 松开 */
- key_val = 0x80 | pindesc->key_val;
- }
- else
- {
- /* 按下 */
- key_val = pindesc->key_val;
- }
- ev_press = 1; /* 表示中断发生了 */
- wake_up_interruptible(&button_waitq); /* 唤醒休眠的进程 */
- //发送信号SIGIO信号给fasync_struct 结构体所描述的PID,触发应用程序的SIGIO信号处理函数
- kill_fasync (&button_async, SIGIO, POLL_IN);
- return IRQ_RETVAL(IRQ_HANDLED);
- }
- static int fifth_drv_open(struct inode *inode, struct file *file)
- {
- /* GPG0,GPG3,GPG5,GPG6为中断引脚: EINT8,EINT11,EINT13,EINT14 */
- request_irq(IRQ_EINT8, buttons_irq, IRQT_BOTHEDGE, "K1", &pins_desc[0]);
- request_irq(IRQ_EINT11, buttons_irq, IRQT_BOTHEDGE, "K2", &pins_desc[1]);
- request_irq(IRQ_EINT13, buttons_irq, IRQT_BOTHEDGE, "K3", &pins_desc[2]);
- request_irq(IRQ_EINT14, buttons_irq, IRQT_BOTHEDGE, "K4", &pins_desc[3]);
- return 0;
- }
- ssize_t fifth_drv_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
- {
- if (size != 1)
- return -EINVAL;
- /* 如果没有按键动作, 休眠 */
- wait_event_interruptible(button_waitq, ev_press);
- /* 如果有按键动作, 返回键值 */
- copy_to_user(buf, &key_val, 1);
- ev_press = 0;
- return 1;
- }
- int fifth_drv_close(struct inode *inode, struct file *file)
- {
- free_irq(IRQ_EINT8, &pins_desc[0]);
- free_irq(IRQ_EINT11, &pins_desc[1]);
- free_irq(IRQ_EINT13, &pins_desc[2]);
- free_irq(IRQ_EINT14, &pins_desc[3]);
- return 0;
- }
- static unsigned fifth_drv_poll(struct file *file, poll_table *wait)
- {
- unsigned int mask = 0;
- poll_wait(file, &button_waitq, wait); // 不会立即休眠
- if (ev_press)
- mask |= POLLIN | POLLRDNORM;
- return mask;
- }
- static int fifth_drv_fasync (int fd, struct file *filp, int on)
- {
- printk("driver: fifth_drv_fasync\n");
- //初始化/释放 fasync_struct 结构体 (fasync_struct->fa_file->f_owner->pid)
- return fasync_helper (fd, filp, on, &button_async);
- }
- static struct file_operations sencod_drv_fops = {
- .owner = THIS_MODULE, /* 这是一个宏,推向编译模块时自动创建的__this_module变量 */
- .open = fifth_drv_open,
- .read = fifth_drv_read,
- .release = fifth_drv_close,
- .poll = fifth_drv_poll,
- .fasync = fifth_drv_fasync,
- };
- int major;
- static int fifth_drv_init(void)
- {
- major = register_chrdev(0, "fifth_drv", &sencod_drv_fops);
- fifthdrv_class = class_create(THIS_MODULE, "fifth_drv");
- fifthdrv_class_dev = class_device_create(fifthdrv_class, NULL, MKDEV(major, 0), NULL, "buttons"); /* /dev/buttons */
- // gpfcon = (volatile unsigned long *)ioremap(0x56000050, 16);
- // gpfdat = gpfcon + 1;
- return 0;
- }
- static void fifth_drv_exit(void)
- {
- unregister_chrdev(major, "fifth_drv");
- class_device_unregister(fifthdrv_class_dev);
- class_destroy(fifthdrv_class);
- // iounmap(gpfcon);
- return 0;
- }
- module_init(fifth_drv_init);
- module_exit(fifth_drv_exit);
- MODULE_LICENSE("GPL");
http://blog.csdn.net/psvoldemort/article/details/21184525
linux驱动的异步通知(kill_fasync,fasync)---- 驱动程序向应用程序发送信号的更多相关文章
- Linux驱动之异步通知的应用
前面的按键驱动方式都是应用程序通过主动查询的方式获得按键值的: 1.查询方式 2.中断方式 3.poll机制 下面介绍第四种按键驱动的方式 4.异步通知:它可以做到应用程序不用随时去查询按键的状态,而 ...
- 蜕变成蝶~Linux设备驱动之异步通知和异步I/O
在设备驱动中使用异步通知可以使得对设备的访问可进行时,由驱动主动通知应用程序进行访问.因此,使用无阻塞I/O的应用程序无需轮询设备是否可访问,而阻塞访问也可以被类似“中断”的异步通知所取代.异步通知类 ...
- Linux通信之异步通知模式
[参考]韦东山 教学笔记 为了使设备支持异步通知机制,驱动程序中涉及以下3项工作:1. 支持F_SETOWN命令,能在这个控制命令处理中设置filp->f_owner为对应进程ID. 不过此项工 ...
- linux下使用异步通知
阻塞式I/O是一直等待直到设备可以访问,非阻塞式I/O是定期轮询设备是否可以访问. 异步通知则是当设备可以访问时才主动通知应用程序,有点像设备的硬中断. 并不是所有的设备都支持异步通知,应用程序通常假 ...
- Linux驱动之异步OR同步,阻塞OR非阻塞概念介绍
链接:https://www.zhihu.com/question/19732473/answer/20851256 1.同步与异步同步和异步关注的是消息通信机制 (synchronous commu ...
- Linux设备驱动中的异步通知与异步I/O
异步通知概念: 异步通知的意识是,一旦设备就绪,则主动通知应用程序,这样应用程序根本就不需要查询设备状态,这一点非常类似于硬件上的“中断”概念,比较准确的称谓是“信号驱动的异步IO”,信号是在软件层次 ...
- Linux 进程间通信 --- 信号通信 --- signal --- signal(SIGINT, my_func); --- 按键驱动异步通知(转)
信号 ( signal ) 机制是 UNIX 系统中最为古老的进程间通信机制,很多条件可以产生一个信号. 信号的产生: 1,当用户按下某些按键时,产生信号. 2,硬件异常产生信号:除数为 0 ,无效 ...
- linux异步通知
简述 linux下异步方式有两种:异步通知和异步IO(AIO),aio请参考:linux异步IO--aio 异步通知的含义是:一旦设备就绪,则主动通知应用程序,这样应用程序就不需要查询设备状态,准确称 ...
- Linux内核开发之异步通知与异步I/O(一)
“小王,听说过锦上添花吧..”我拍拍下王的头说. “还锦上添花你,为你上次提的几个东东,我是头上长包..”小王气愤地瞪着我. “啊,为啥这样呢,本来还特意拒绝了MM的月份,抽出时间打算给你说点高级的东 ...
随机推荐
- android中通过代码来设置蓝牙永久可见性
废话不多说,直接阐述: 前段时间在搞一个android项目,其中有一个功能要求需要蓝牙可见性永久打开,但是开发过android蓝牙的程序员应该都知道,goole提供的api中没有设置蓝牙永久可见性的接 ...
- figure margins too large错误解决
使用Rstudio,遇到下面这个错误: figure margins too large 这是因为界面右下角的“plot”窗口太小,显示不了,将右下角的窗口调大就能解决
- 如何使用 TP中的公共函数 (定义在common/common.php中的函数)
如何使用 TP中的公共函数 (定义在common/common.php中的函数) (2011-09-30 15:32:09) 转载▼ 标签: 杂谈 1.在common/common.php 中有个 ...
- MFC中调用chm帮助文档(使用相对路径)
主要就一句话: ShellExecute(NULL,L"Open",path,NULL,NULL,SW_SHOWMAXIMIZED); 常用的显示方式是SW_SHOWNORMAL和 ...
- [Unity基础]移动平台下的文件读写
From:http://blog.csdn.net/lyh916/article/details/52161633 参考链接: http://www.cnblogs.com/murongxiaopif ...
- iOS学习笔记(十)——iOS真机调试
前面一直使用模拟器运行,今天使用了真机调试,这一篇介绍一下真机调试.真机调试需要99$注册,如果有注册过的账号,也可以使用注册账号邀请你加入一个账号下,注册账号可以给你分配权限,我也是使用的邀请成为开 ...
- hdu1754(splay tree 单点更新,成段查询)
题意就是简单的点更新,成段查询. splay tree 果真是常数比较大的log(n)操作. 比线段树还慢了这么多. // // main.cpp // splay // // Created by ...
- Restoring Road Network
D - Restoring Road Network Time limit : 2sec / Memory limit : 256MB Score : 500 points Problem State ...
- EasyNVR depends on ffmpeg,yasm/nasm not found or too old. Use --disable-yasm for a crippledbuild
安装ffmpeg过程中,执行./configure时,报yasm/nasm not found or too old. Use --disable-yasm for a crippledbuild错误 ...
- 密钥管理服务KMS
密钥管理服务 KMS - 腾讯云 https://cloud.tencent.com/product/kms