3

我正在编写一个内核模块,旨在对 ARM+FPGA SOC 系统的设备驱动程序内核模块进行功能测试。我的方法涉及通过查询设备树来查找设备驱动程序正在使用哪些中断。在设备驱动程序本身中,我使用注册平台驱动程序,platform_driver_register并在.probe函数中传递了一个platform_device*包含该指针的device指针。有了这个,我可以调用of_match_deviceand irq_of_parse_and_map,检索 irq 号码。

我不想注册第二个平台驱动程序只是为了在测试模块中以这种方式查询设备树。有没有其他方法可以查询设备树(也许更直接,也许是按名称?)

4

1 回答 1

3

这是我到目前为止发现的,它似乎有效。of_find_compatible_node做我想做的事。一旦我有了device_node*,我就可以打电话irq_of_parse_and_map(因为of_irq_get_byname似乎没有为我编译)。我可以像下面这样使用它:

#include <linux/of.h>
#include <linux/of_irq.h>
....
int get_dut_irq(char* dev_compatible_name)
{
    struct device_node* dev_node;
    int irq = -1;
    dev_node = of_find_compatible_node(NULL, NULL, dev_compatible_name);
    if (!dev_node)
        return -1;
    irq = irq_of_parse_and_map(dev_node, 0);
    of_node_put(dev_node);
    return irq;
}
于 2014-11-06T19:01:06.700 回答