Linux字符设备驱动之中断按键

看了上一篇文章后,相信你们对按键有个基本的了解,在这个驱动之前写的驱动跟51是没有什么区别的,上篇文章中的读按键是一直在进行,特别是对CPU的消耗会非常大,我们一般不采用这种方法,这章我们采用中断实现按键操作。当有按键产生了我们才去读,没有按键产生就休眠。还是直接上代码。

上一篇文章的链接:http://blog.csdn.net/qq_21792169/article/details/48414765

驱动程序:

#include <linux/module.h> /*模块有关的*/
#include <linux/kernel.h>/*内核有关的*/
#include <linux/fs.h>/*文件系统有关的*/
#include <linux/init.h>
#include <linux/device.h>
#include <linux/miscdevice.h>
#include <linux/delay.h>
#include <linux/irq.h>
#include <linux/interrupt.h>/*linux中断*/
#include <linux/poll.h>
#include <asm/io.h>
#include <asm/irq.h>
#include <asm/uaccess.h>  //copy_to_user
#include <mach/regs-gpio.h>/*寄存器设置*/S3C2410_GPF0等的定义
#include <mach/hardware.h>//s3c2410_gpio_getpin等的定义
#include <mach/irqs.h> //IRQ_EINT0等的定义
#include <asm/system.h>

volatile unsigned long *GPFCON=NULL;
volatile unsigned long *GPFDAT=NULL;

static DECLARE_WAIT_QUEUE_HEAD(button_waitq);

/* 中断事件标志, 中断服务程序将它置1,third_drv_read将它清0 */
static volatile int ev_press = 0;

#define DEVICE_NAME  "buttons"

static struct class *buttons_class;

struct pin_desc{
unsigned int pin;
unsigned int key_val;
};

static unsigned char keyval;//jianzhi

/* 键值: 按下时, 0x01, 0x02, 0x03, 0x04 */
/* 键值: 松开时, 0x81, 0x82, 0x83, 0x84 */

struct pin_desc pins_desc[4] = {
{S3C2410_GPF0, 0x01},
{S3C2410_GPF2, 0x02},
{S3C2410_GPF3, 0x03},
{S3C2410_GPF4, 0x04},
};

static irqreturn_t buttons_irq(int irq, void *dev_id)
{
//static int cnt=0;
//printk(KERN_INFO "%d  this is test\n",cnt++);//优先级尽量用上
struct pin_desc *pindesc = (struct pin_desc *)dev_id;
unsigned int pinval;

pinval = s3c2410_gpio_getpin(pindesc->pin);

if (pinval)
{
/* 松开 */
keyval = 0x80 | pindesc->key_val;
}
else
{
/* 按下 */
keyval = pindesc->key_val;
}
ev_press = 1;                  /* 表示中断发生了 */
wake_up_interruptible(&button_waitq);   /* 唤醒休眠的进程 */
return IRQ_HANDLED;
}

static int third_drv_open(struct inode *inode, struct file *file)
{
request_irq(IRQ_EINT0,  buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING, "S2", &pins_desc[0]);
request_irq(IRQ_EINT2,  buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING, "S3", &pins_desc[1]);
request_irq(IRQ_EINT3,  buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING, "S4", &pins_desc[2]);
request_irq(IRQ_EINT4,  buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING, "S5", &pins_desc[3]);
    return 0;
}

ssize_t third_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, &keyval, 1);
ev_press = 0;//继续休眠
return 0;
}

int third_drv_close(struct inode *inode, struct file *file)
{
free_irq(IRQ_EINT0, &pins_desc[0]);
free_irq(IRQ_EINT2, &pins_desc[1]);
free_irq(IRQ_EINT3, &pins_desc[2]);
free_irq(IRQ_EINT4, &pins_desc[3]);
return 0;
}

static struct file_operations three_drv_fops = {
    .owner   =  THIS_MODULE,    /* 这是一个宏,推向编译模块时自动创建的__this_module变量 */
    .open    =  third_drv_open,     
.read =third_drv_read,
  
.release =  third_drv_close,  
};

int major;
static int third_drv_init(void)
{
major = register_chrdev(0, DEVICE_NAME, &three_drv_fops);
       buttons_class= class_create(THIS_MODULE, DEVICE_NAME);
device_create(buttons_class, NULL, MKDEV(major, 0), NULL, "buttons"); 
GPFCON = (volatile unsigned long *)ioremap(0x56000050, 16);
GPFDAT= GPFCON + 1;
return 0;
}

static void third_drv_exit(void)
{
unregister_chrdev(major, "third_drv");
device_destroy(buttons_class,MKDEV(major, 0));
class_destroy(buttons_class);
iounmap(GPFCON);
}

module_init(third_drv_init);
module_exit(third_drv_exit);
MODULE_LICENSE("GPL");

测试程序:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>

/* thirddrvtest 
  */
int main(int argc, char **argv)
{
int fd;
unsigned char key_val=100;

fd = open("/dev/buttons", O_RDWR);
if (fd < 0)
{
printf("can't open!\n");
}

while (1)
{
read(fd, &key_val, 1);
printf("key_val = 0x%x\n", key_val);
//sleep(5);
}
return 0;
}

Makefile:

Makefile其他的部分是不变的,只需要修改文件名字就可以了。

obj-m :=buttons.o
KERNELDIR ?= /home/work/Linux/linux-2.6.28.7
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
clean:
rm -f  *o  *.mod.o  *mod.c  *.symvers *.order

时间: 2024-10-26 12:20:05

Linux字符设备驱动之中断按键的相关文章

Linux字符设备驱动

1.预备知识: 应用程序.库.内核.驱动程序的关系 应用程序调用应用程序函数库完成功能应用程序以文件形式访问各种资源应用程序函数库部分函数直接完成功能     部分函数通过系统调用由内核完成   内核处理系统调用,调用设备驱动程序   设备驱动直接与硬件通信 设备类型 字符设备     对字符设备发出读/写请求时,实际的硬件I/O操作一般紧接着发生 块设备     块设备与之相反,它利用系统内存作为缓冲区 网络设备     网络设备是一类特殊的设备,它不像字符设备或块设备那样通过对应的设备文件节

linux驱动-linux字符设备驱动求助:设备号无法释放

问题描述 linux字符设备驱动求助:设备号无法释放 我在驱动中,资源释放时调用了unregister_chrdev_region函数,为什么用rmmod卸载驱动模块之后,/proc/devices里边仍能够显示我的驱动设备啊? lsmod中已经没有我写的驱动模块了. 是因为设备号没能正确释放么? 解决方案 当应用程序打开设备节点时,内核调用相应驱动程序的open()函数.可以在shell中执行以下代码来触发cmos_open()的执行: bash> cat /dev/cmos/0 当应用程序关

Linux 字符设备驱动框架详细介绍_Linux

Linux 字符设备驱动框架 字符设备是Linux三大设备之一(另外两种是块设备,网络设备),字符设备就是字节流形式通讯的I/O设备,绝大部分设备都是字符设备,常见的字符设备包括鼠标.键盘.显示器.串口等等,当我们执行ls -l /dev的时候,就能看到大量的设备文件,c就是字符设备,b就是块设备,网络设备没有对应的设备文件.编写一个外部模块的字符设备驱动,除了要实现编写一个模块所需要的代码之外,还需要编写作为一个字符设备的代码. 驱动模型 Linux一切皆文件,那么作为一个设备文件,它的操作方

Linux字符设备驱动之异步通知

学习到这里到这里我们觉得这下这个驱动应该就很完善了吧,但是不仅然,我们是不是想当有按键按下的时候,这个时候再去通知用户空间的read函数来读,这样是不是更方便的都,免得函数也老是在哪里休眠.在这里说下:我是不会讲代码的,这些代码比较简单,这只是一些基础的字符设备驱动驱动,到以后我也会讲一些高级点的驱动.这些代码已经讲得很清楚了,全是本人自己写的,是没有错误的,只是自己写的时候注意下自己的内核版本就可以了,以免有一些函数是不能被发现. 上一篇文章的链接:http://blog.csdn.net/q

linux字符设备驱动开发模板及Makefile

linux2.6字符设备驱动开发模板 #include <linux/init.h> #include <linux/module.h> #include <linux/fs.h> #include <linux/cdev.h> #include <linux/device.h> //=======================字符设备驱动模板开始 ===========================// #define CHAR_DEV_D

Linux字符设备驱动之cdev_init()

1.内核中每个字符设备都对应一个 cdev 结构的变量,下面是它的定义: linux-2.6.22/include/linux/cdev.h struct cdev {  13        struct kobject kobj;  14        struct module *owner;  15        const struct file_operations *ops;  16        struct list_head list;  17        dev_t dev

Linux字符设备驱动编写基本流程

  ---简介 Linux下的MISC简单字符设备驱动虽然使用简单,但却不灵活. 只能建立主设备号为10的设备文件.字符设备比较容易理解,同时也能够满足大多数简单的硬件设备,字符设备通过文件系          统中的名字来读取.这些名字就是文件系统中的特殊文件或者称为设备文件.文件系统的简单结点,一般位于/dev/目录下          使用ls进行查看会显示以C开头证明这是字符设备文件crw--w---- 1 root tty 4, 0 4月 14 11:05 tty0.第一个数字是主设备

Linux字符设备驱动框架

字符设备是Linux三大设备之一(另外两种是块设备,网络设备),字符设备就是字节流形式通讯的I/O设备,绝大部分设备都是字符设备,常见的字符设备包括鼠标.键盘.显示器.串口等等,当我们执行ls -l /dev的时候,就能看到大量的设备文件,c就是字符设备,b就是块设备,网络设备没有对应的设备文件.编写一个外部模块的字符设备驱动,除了要实现编写一个模块所需要的代码之外,还需要编写作为一个字符设备的代码. 驱动模型 Linux一切皆文件,那么作为一个设备文件,它的操作方法接口封装在struct fi

Linux字符设备驱动总结程序(二)

前面我们讲解了字符设备驱动的一些写法,但是那样写出来的程序只能我们自己用或者自己公司用.因为你没有统一接口,别人不知道你的设备接口是什么,现在我们讲解几种常用的设设备模型. 第一:input输入子系统(键盘,鼠标,触摸屏等等) static struct input_dev *s3c_ts_dev;//定义一个 input_dev结构体s3c_ts_dev = input_allocate_device();//分配input_dev结构体input_register_device(s3c_ts