我正在开发用于 x86 linux 的设备驱动程序。该设备有一个引脚连接到 PCH 上的 GPIO 以产生中断。如何请求与该 GPIO 引脚关联的 IRQ 并安装中断处理程序?

最佳答案

你要找的头文件是

#include <linux/gpio.h>

您需要做的第一件事是分配特定的 GPIO。您可以使用此调用来执行此操作:
#define GPIO //gpio number

...

if(gpio_request(GPIO, "Description"))
    //fail
    ...

自己拿到GPIO pin后,就可以为它获取IRQ
int irq = 0;
if((irq = gpio_to_irq(GPIO)) < 0 /*irq number can't be less than zero*/)
    //fail
    ...

现在您使用通常的内核例程注册一个 IRQ 处理程序。
#include <linux/interrupt.h>
...
int result = request_irq(irq, handler_function,
                         IRQF_TRIGGER_LOW, /*here is where you set up on what event should the irq occur*/
                         "Description", "Device description");
if(result)
    //fail
    ...

在进行模块清理时,请记住 free_irqgpio_free。如果您不这样做,您将无法再次分配该 GPIO 引脚。

关于linux - 如何为 x86 linux 实现 GPIO 中断处理程序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18673647/

10-16 20:37