2

我正在尝试了解 Linux Kernel 上的设备驱动程序,为此我创建了三个模块:

  • 总线型
  • 设备驱动程序
  • 一个现在什么都不做的假设备,只是被注册了

一切正常,我可以加载总线、驱动程序和创建设备的模块。一切都出现在 sysfs 上,包括设备和设备驱动程序之间的链接,表明它们已绑定。

当驱动程序和设备被加载时,我可以看到使用udevadm monitor它也会引发一些事件:

KERNEL[1275564332.144997] add      /module/bustest_driver (module)
KERNEL[1275564332.145289] add      /bus/bustest/drivers/bustest_example (drivers)
UDEV  [1275564332.157428] add      /module/bustest_driver (module)
UDEV  [1275564332.157483] add      /bus/bustest/drivers/bustest_example (drivers)
KERNEL[1275564337.656650] add      /module/bustest_device (module)
KERNEL[1275564337.656817] add      /devices/bustest_device (bustest)
UDEV  [1275564337.658294] add      /module/bustest_device (module)
UDEV  [1275564337.664707] add      /devices/bustest_device (bustest)

但毕竟,该设备没有出现在 hal 上。hal 还需要什么设备才能看到?

4

1 回答 1

0

该设备似乎一切正常,问题是 Hal 需要为每个子系统提供一个处理程序(处理程序列表可以在 中找到hald/linux/device.c),显然,hal 不支持bustest为这种情况发明的子系统。

如果总线使用名称“pseudo”而不是“bustest”注册,hal 使用为假设备定义的一组处理程序来初始化数据库条目,注册它并发送DeviceAdded事件。

于 2010-06-03T15:50:11.543 回答