免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3946 | 回复: 5
打印 上一主题 下一主题

[驱动] insmod驱动模块时 内核会自动重启 提示:kernel BUG at kernel/timer.c:662! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-08-27 17:56 |只看该作者 |倒序浏览
本帖最后由 牡丹岩 于 2014-08-27 17:59 编辑

# insmod inputk2_drv.ko    Linux内核2.6.35.7 加载驱动模块时直接导致系统自动重启,请教为何?

有高手请速回!小弟急死了。。。
input: gec_input as /devices/virtual/input/input1
kernel BUG at kernel/timer.c:662!
[ 1051.330588] Unable to handle kernel NULL pointer dereference at virtual address 00000000

论坛徽章:
22
丑牛
日期:2014-08-15 14:32:0015-16赛季CBA联赛之同曦
日期:2017-12-14 15:28:14黑曼巴
日期:2017-08-10 08:14:342017金鸡报晓
日期:2017-02-08 10:39:42黑曼巴
日期:2016-11-15 15:48:38CU十四周年纪念徽章
日期:2016-11-09 13:19:1015-16赛季CBA联赛之同曦
日期:2016-04-08 18:00:03平安夜徽章
日期:2015-12-26 00:06:30程序设计版块每日发帖之星
日期:2015-12-03 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-09 06:20:002015亚冠之吉达阿赫利
日期:2015-07-03 08:39:42
2 [报告]
发表于 2014-08-28 08:49 |只看该作者
这是kernel通过BUG()打印出来的,你看看源代码。也可对比主线上的代码,可能问题已经修复了

论坛徽章:
0
3 [报告]
发表于 2014-08-28 13:26 |只看该作者
本帖最后由 牡丹岩 于 2014-08-28 13:30 编辑

这是我的bug代码,不是每次insmod都会出错的,问题真心难找,麻烦各位大仙看看!谢过~
  1. [size=6][size=5][code]
  2. #include <linux/module.h>
  3. #include <linux/init.h>
  4. #include <linux/input.h>
  5. #include <linux/interrupt.h>
  6. #include <asm/gpio.h>
  7. #include <linux/timer.h>


  8. static struct input_dev *p_button_dev = NULL;//定义输入设备

  9. struct timer_list my_timer;//定义定时器


  10. //定义定时器超时处理函数
  11. void timer_func(unsigned long data)
  12. {
  13.         int key_value = gpio_get_value(S5PV210_GPH2(0));

  14.         //上报事件给input核心层
  15.         input_report_key(p_button_dev, KEY_A, !key_value);//按下为1,释放为0

  16.              //告诉input子系统上报已经完成
  17.         input_sync(p_button_dev);
  18. }

  19. //中断处理函数
  20. static irqreturn_t button_interrupt(int irq, void *dev_id)
  21. {
  22.              mod_timer(&my_timer, jiffies + 5);//启动定时器以及设置超时时间
  23.    
  24.         return IRQ_HANDLED;
  25. }

  26. //初始化按钮
  27. static int __init button_init(void)
  28. {
  29.         int ret;
  30.         ret = gpio_request(S5PV210_GPH2(0), "key2");
  31.         if (ret)
  32.              {
  33.                 printk(KERN_ERR "gpio_request Failed to register device\r\n");

  34.                           goto error1;
  35.         }
  36.    
  37.              //为新输入设备分配内存并初始化
  38.         p_button_dev = input_allocate_device();
  39.         if (!p_button_dev)
  40.              {
  41.                 printk(KERN_ERR "can't allocate input mem!\r\n");

  42.                          goto error2;
  43.         }
  44.    
  45.         p_button_dev->name = "gec_input";
  46.         p_button_dev->id.bustype = 0x1;
  47.         p_button_dev->id.product = 0x2;
  48.         p_button_dev->id.vendor  = 0x3;
  49.         p_button_dev->id.version = 0x4;
  50.         p_button_dev->evbit[BIT_WORD(EV_KEY)] = BIT_MASK(EV_KEY);       
  51.              p_button_dev->keybit[BIT_WORD(KEY_A)] = BIT_MASK(KEY_A);   
  52.              //注册一个输入设备
  53.         ret = input_register_device(p_button_dev);
  54.         if (ret)
  55.              {
  56.                 printk(KERN_ERR "Failed to register device\r\n");

  57.                           goto error3;
  58.         }
  59.    
  60.                //申请中断注册中断处理函数
  61.         ret = request_irq(IRQ_EINT(16), button_interrupt,
  62.                                  IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING | IRQF_DISABLED,
  63.                                       "button", NULL);
  64.         if (ret)
  65.         {
  66.                 printk(KERN_ERR "Can't request irq %d\r\n", IRQ_EINT(16));

  67.                           goto error4;
  68.         }   
  69.    
  70.         //定时器
  71.         init_timer(&my_timer);//初始化定时器
  72.         my_timer.function = timer_func;//注册定时器超时处理函数

  73.          return 0;
  74.    

  75. error4:
  76.             free_irq(IRQ_EINT(16), NULL);//释放分配给已定中断的内存
  77.          input_unregister_device(p_button_dev);
  78.    
  79. error3:
  80.             input_free_device(p_button_dev);

  81. error2:
  82.            ret = -ENOMEM;

  83. error1:
  84.            gpio_free(S5PV210_GPH2(0));
  85.    
  86.            return ret;
  87. }

  88. static void __exit button_exit(void)
  89. {
  90.         gpio_free(S5PV210_GPH2(0));       
  91.         free_irq(IRQ_EINT(16), NULL);
  92.         input_unregister_device(p_button_dev);
  93.         del_timer(&my_timer);//删除内核定时器
  94. }

  95. module_init(button_init);
  96. module_exit(button_exit);

  97. MODULE_LICENSE("Dual BSD/GPL");
  98. MODULE_LICENSE("GPL");

复制代码
[/code]

论坛徽章:
0
4 [报告]
发表于 2014-08-28 13:54 |只看该作者
应该先初始化定时器,然后再注册中断处理函数
如果注册完中断,中断就来了,这个时候定时器还没初始化,就会出错

论坛徽章:
0
5 [报告]
发表于 2014-08-28 15:48 |只看该作者
zszkismet 发表于 2014-08-28 13:54
应该先初始化定时器,然后再注册中断处理函数
如果注册完中断,中断就来了,这个时候定时器还没初始化,就 ...


我的中断是通过按按键产生的,不太可能出现你说的情况哦。
insmod 导致自动重启的情况 也不是每次都会出现,这是最蛋碎的地方,
等测试确定了再交流!
谢了!

论坛徽章:
0
6 [报告]
发表于 2014-09-04 09:14 |只看该作者
回复 4# zszkismet


    说的有道理,或者终端注册完成以后,先把irq disable掉,等timer初始化以后再enable irq。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP