编写基本键盘中断处理程序,抛出“Unknown key released”

时间:2011-08-19 13:37:09

标签: linux-kernel

我写了一个基本的键盘中断处理程序。它使用共享中断,用于打印到按下键的/ var / log / messages。但是当我尝试使用箭头键并且其余键正常工作时,我收到以下错误。

8月19日18:59:06 vim内核:[112.485102] atkbd serio0:发布了未知密钥(已翻译的集2,代码0xe0在isa0060 / serio0上)。 8月19日18:59:06 vim内核:[112.485108] atkbd serio0:使用'setkeycodes e060'让它知道。

粘贴代码。

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <asm/io.h>

/* This function services keyboard interrupts */
irq_handler_t irq_handler (int irq, void *dev_id, struct pt_regs *regs) {
  static unsigned char scancode;

  /*
    Read keyboard status
  */
  scancode = inb (0x60);

  if ((scancode == 0x01) || (scancode == 0x81))
    {
      printk ("You pressed Esc !\n");
    }
  }

  return (irq_handler_t) IRQ_HANDLED;
}

/* Initialize the module and Register the IRQ handler */
static int __init keybrd_int_register(void)
{
  int result;
  /* Request IRQ 1, the keyboard IRQ */    
  result = request_irq (1, (irq_handler_t) irq_handler, IRQF_SHARED, "keyboard_stats_irq", (void *)(irq_handler));

  if (result)
    printk(KERN_INFO "can't get shared interrupt for keyboard\n");

  return result;
}

/* Remove the interrupt handler */
static void __exit keybrd_int_unregister(void) {
  free_irq(1, (void *)(irq_handler)); /* i can't pass NULL, this is a shared interrupt handler! */
}

MODULE_LICENSE ("GPL");
module_init(keybrd_int_register);
module_exit(keybrd_int_unregister);

任何人都可以给我一些线索,说明当我插入模块并开始工作时,为什么这个箭头键停止工作?我删除了它们?

我正在虚拟机上运行我的代码。

1 个答案:

答案 0 :(得分:3)

原因是由于某些VM搞砸了。它在基本Linux主机上运行良好。你可以看到代码的完整实现(天真)@ https://github.com/vigith/Linux-Device-Drivers/tree/master/keyboard