- 论坛徽章:
- 0
|
/*这段代码是一个用户模式下的DEMO,它负责把按键的键值打印输出*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
int main(void)
{
int buttons_fd;
int key_value;
buttons_fd = open("/dev/buttons", 0);
if (buttons_fd
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define DEVICE_NAME "buttons"
#define BUTTON_MAJOR 232
static struct key_info {
int irq_no;
unsigned int gpio_port;
int key_no;
} key_info_tab[4] = {
{ IRQ_EINT1, GPIO_F1, 1 },
{ IRQ_EINT2, GPIO_F2, 2 },
{ IRQ_EINT3, GPIO_F3, 3 },
{ IRQ_EINT7, GPIO_F7, 4 },
};
static int ready = 0;
static int key_value = 0;
static DECLARE_WAIT_QUEUE_HEAD(buttons_wait);
static void buttons_irq(int irq, void *dev_id, struct pt_regs *reg)
{
struct key_info *k;
int i;
int found = 0;
int up;
int flags;
for (i = 0; i irq_no == irq) {
found = 1;
break;
}
}
if (!found) {
printk("bad irq %d in button\n", irq);
return;
}
save_flags(flags);
cli();
set_gpio_mode_user(k->gpio_port, GPIO_MODE_IN);
up = read_gpio_bit(k->gpio_port);
set_external_irq(k->irq_no, EXT_BOTH_EDGES, GPIO_PULLUP_DIS);
restore_flags(flags);
if (up) {
key_value = k->key_no + 0x80;
} else {
key_value = k->key_no;
}
ready = 1;
wake_up_interruptible(&buttons_wait);
}
static int request_irqs(void)
{
struct key_info *k;
int i;
for (i = 0; i irq_no, EXT_BOTH_EDGES, GPIO_PULLUP_DIS);
if (request_irq(k->irq_no, &buttons_irq, SA_INTERRUPT, DEVICE_NAME, &buttons_irq)) {
return -1;
}
}
return 0;
}
static void free_irqs(void)
{
struct key_info *k;
int i;
for (i = 0; i irq_no, buttons_irq);
}
}
static int matrix4_buttons_read(struct file * file, char * buffer, size_t count, loff_t *ppos)
{
static int key;
int flags;
int repeat;
if (!ready)
return -EAGAIN;
if (count != sizeof key_value)
return -EINVAL;
save_flags(flags);
if (key != key_value) {
key = key_value;
repeat = 0;
} else {
repeat = 1;
}
restore_flags(flags);
if (repeat) {
return -EAGAIN;
}
copy_to_user(buffer, &key, sizeof key);
ready = 0;
return sizeof key_value;
}
static unsigned int matrix4_buttons_select(
struct file *file,
struct poll_table_struct *wait)
{
if (ready)
return 1;
poll_wait(file, &buttons_wait, wait);
return 0;
}
static int matrix4_buttons_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
{
switch(cmd) {
default:
return -EINVAL;
}
}
static struct file_operations matrix4_buttons_fops = {
owner: THIS_MODULE,
ioctl: matrix4_buttons_ioctl,
poll: matrix4_buttons_select,
read: matrix4_buttons_read,
};
static devfs_handle_t devfs_handle;
static int __init matrix4_buttons_init(void)
{
int ret;
ready = 0;
ret = register_chrdev(BUTTON_MAJOR, DEVICE_NAME, &matrix4_buttons_fops);
if (ret
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/8800/showart_112682.html |
|