bus, device和driver的概念在nand driver中的实例

这是在linux2.6中采用新的sysfs管理设备驱动时出现的概念,可以在/sys目录下得到直观的认识。
bus表示总线类型,例如i2c, ide, usb...很多用platform这种bus类型,包括mtd设备;
device记录设备资源,具体到nand driver中,就是在board-osk.c中添加的struct platform_device osk5912_nand_device;
driver记录设备驱动操作,具体到nand driver中,就是osk-nand-flash.c中提供的probe, remove, ...等函数接口的实现。

参考文档:
linux 2.6 device model
介绍的很清晰
blogimg.chinaunix.net/blog/upfile2/071102181442.pdf

Linux 2.6内核的设备模型
http://www.linuxdiyf.com/bbs/viewthread.php?tid=20245

miscdevice、platform_device、platform_driver的区别??大侠指教
http://bbs.driverdevelop.com/simple/index.php?t102207.html

你可能感兴趣的:(c,linux,struct,ide,文档)