历史上的今天
今天是:2024年10月12日(星期六)
2018年10月12日 | Tiny210驱动之按键中断实验
2018-10-12 来源:eefocus
third_drv.c驱动源码:
#include "linux/device.h"
#include "linux/interrupt.h"
#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 "mach/gpio.h"
static struct class *thirddrv_class;
volatile unsigned long *gph2con;
volatile unsigned long *gph2dat;
volatile unsigned long *gph3con;
volatile unsigned long *gph3dat;
static DECLARE_WAIT_QUEUE_HEAD(button_waitq);
// 中断事件标志, 中断服务程序将它置1,third_drv_read将它清0
static volatile int ev_press = 0;
struct pin_desc{
unsigned int pin;
unsigned int key_val;
};
// 键值: 按下时, 0x01, 0x02, 0x03, 0x04, 0x05
// 键值: 松开时, 0x81, 0x82, 0x83, 0x84, 0x85
static unsigned char key_val;
struct pin_desc pins_desc[5] = {
{S5PV210_GPH2(3), 0x01},
{S5PV210_GPH3(0), 0x02},
{S5PV210_GPH3(1), 0x03},
{S5PV210_GPH3(2), 0x04},
{S5PV210_GPH3(3), 0x05},
};
// 确定按键值
static irqreturn_t buttons_irq(int irq, void *dev_id)
{
struct pin_desc * pindesc = (struct pin_desc *)dev_id;
unsigned int pinval;
pinval = gpio_get_value(pindesc->pin);
if (pinval)
{
// 松开
key_val = 0x80 | pindesc->key_val;
}
else
{
// 按下
key_val = pindesc->key_val;
}
ev_press = 1; // 表示中断发生了
wake_up_interruptible(&button_waitq); // 唤醒休眠的进程
return IRQ_RETVAL(IRQ_HANDLED);
}
static int third_drv_open(struct inode *inode, struct file *file)
{
// 注册中断
request_irq(IRQ_EINT(19), buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING,
"K4", &pins_desc[0]);
request_irq(IRQ_EINT(24), buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING,
"K5", &pins_desc[1]);
request_irq(IRQ_EINT(25), buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING,
"K6", &pins_desc[2]);
request_irq(IRQ_EINT(26), buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING,
"K7", &pins_desc[3]);
request_irq(IRQ_EINT(27), buttons_irq, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING,
"K8", &pins_desc[4]);
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, &key_val, 1);
ev_press = 0;
return 1;
}
int third_drv_close(struct inode *inode, struct file *file)
{
free_irq(IRQ_EINT(19), &pins_desc[0]);
free_irq(IRQ_EINT(24), &pins_desc[1]);
free_irq(IRQ_EINT(25), &pins_desc[2]);
free_irq(IRQ_EINT(26), &pins_desc[3]);
free_irq(IRQ_EINT(27), &pins_desc[4]);
return 0;
}
static struct file_operations sencod_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, "third_drv", &sencod_drv_fops);
thirddrv_class = class_create(THIS_MODULE, "third_drv");
device_create(thirddrv_class, NULL, MKDEV(major, 0), NULL, "buttons"); // /dev/buttons
gph2con = (volatile unsigned long *)ioremap(0xe0200c40, 16);
gph2dat = gph2con + 1;
gph3con = (volatile unsigned long *)ioremap(0xE0200C60, 16);
gph3dat = gph3con + 1;
return 0;
}
static void third_drv_exit(void)
{
unregister_chrdev(major, "third_drv");
device_destroy(thirddrv_class, MKDEV(major, 0));
class_destroy(thirddrv_class);
iounmap(gph2con);
iounmap(gph3con);
return 0;
}
module_init(third_drv_init);
module_exit(third_drv_exit);
MODULE_LICENSE("GPL");
===================================================================
thirddrvtest.c测试程序:
#include "sys/types.h"
#include "sys/stat.h"
#include "fcntl.h"
#include "stdio.h"
// thirddrvtest
int main(int argc, char **argv)
{
int fd;
unsigned char key_val;
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);
}
return 0;
}
下一篇:Tiny210驱动之KEY测试
史海拾趣
|
WinCE5.0挂接IDE硬盘的疑惑? 有个项目,想使用IDE44pin接口挂接最少64GB的外部存储器,现有如下问题和大家讨论: 1.工作电压: 现在手头上的IDE电路是直接从S3C2440上IO口引出,鉴于3.3V的IO电压,似乎不能正常驱 ...… 查看全部问答> |
|
求binArrayStart和binArrayEnd的定义的线索 问题描述: 大家好。我最近在修改Boot程序。在bootinit.c文件中有如下定义: IMPORT UCHAR binArrayStart []; & ...… 查看全部问答> |
|
在dialog中有个tab control,在每个tab的dialog中有个group box, group box中有个按钮。 现在的现实结果是tab control和group box都显示正常,按钮没有显示,什么原因? app方面菜鸟一个,期待大家指点… 查看全部问答> |
|
一、USB型51/AVR单片机编程器元器件清单 二、AVR ATmega16单片机学习板元器件清单 [ 本帖最后由 tiankai001 于 2010-8-8 15:35 编辑 ]… 查看全部问答> |
|
因为刚学DSP,做的是用2407产生6路3对对称PWM,一开始摸索的时候程序老是编译有问题,今天才把程序搞好``却发现我的板子出了问题,因为编的第一个程序所以没有把挖想放上来大家帮我看看这样写是不是能产生6路3对对称PWM``` 主程序如下 #include \\" ...… 查看全部问答> |




