我正在尝试了解 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 还需要什么设备才能看到?