- 论坛徽章:
- 0
|
本帖最后由 牡丹岩 于 2014-08-28 13:30 编辑
这是我的bug代码,不是每次insmod都会出错的,问题真心难找,麻烦各位大仙看看!谢过~- [size=6][size=5][code]
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/input.h>
- #include <linux/interrupt.h>
- #include <asm/gpio.h>
- #include <linux/timer.h>
- static struct input_dev *p_button_dev = NULL;//定义输入设备
- struct timer_list my_timer;//定义定时器
- //定义定时器超时处理函数
- void timer_func(unsigned long data)
- {
- int key_value = gpio_get_value(S5PV210_GPH2(0));
- //上报事件给input核心层
- input_report_key(p_button_dev, KEY_A, !key_value);//按下为1,释放为0
- //告诉input子系统上报已经完成
- input_sync(p_button_dev);
- }
- //中断处理函数
- static irqreturn_t button_interrupt(int irq, void *dev_id)
- {
- mod_timer(&my_timer, jiffies + 5);//启动定时器以及设置超时时间
-
- return IRQ_HANDLED;
- }
- //初始化按钮
- static int __init button_init(void)
- {
- int ret;
- ret = gpio_request(S5PV210_GPH2(0), "key2");
- if (ret)
- {
- printk(KERN_ERR "gpio_request Failed to register device\r\n");
- goto error1;
- }
-
- //为新输入设备分配内存并初始化
- p_button_dev = input_allocate_device();
- if (!p_button_dev)
- {
- printk(KERN_ERR "can't allocate input mem!\r\n");
- goto error2;
- }
-
- p_button_dev->name = "gec_input";
- p_button_dev->id.bustype = 0x1;
- p_button_dev->id.product = 0x2;
- p_button_dev->id.vendor = 0x3;
- p_button_dev->id.version = 0x4;
- p_button_dev->evbit[BIT_WORD(EV_KEY)] = BIT_MASK(EV_KEY);
- p_button_dev->keybit[BIT_WORD(KEY_A)] = BIT_MASK(KEY_A);
- //注册一个输入设备
- ret = input_register_device(p_button_dev);
- if (ret)
- {
- printk(KERN_ERR "Failed to register device\r\n");
- goto error3;
- }
-
- //申请中断注册中断处理函数
- ret = request_irq(IRQ_EINT(16), button_interrupt,
- IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING | IRQF_DISABLED,
- "button", NULL);
- if (ret)
- {
- printk(KERN_ERR "Can't request irq %d\r\n", IRQ_EINT(16));
- goto error4;
- }
-
- //定时器
- init_timer(&my_timer);//初始化定时器
- my_timer.function = timer_func;//注册定时器超时处理函数
- return 0;
-
- error4:
- free_irq(IRQ_EINT(16), NULL);//释放分配给已定中断的内存
- input_unregister_device(p_button_dev);
-
- error3:
- input_free_device(p_button_dev);
- error2:
- ret = -ENOMEM;
- error1:
- gpio_free(S5PV210_GPH2(0));
-
- return ret;
- }
- static void __exit button_exit(void)
- {
- gpio_free(S5PV210_GPH2(0));
- free_irq(IRQ_EINT(16), NULL);
- input_unregister_device(p_button_dev);
- del_timer(&my_timer);//删除内核定时器
- }
- module_init(button_init);
- module_exit(button_exit);
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_LICENSE("GPL");
复制代码 [/code] |
|