分析linux-2.6.32/driver/net/davinci_emac.c 的davinci_emac_probe()是怎样被调用的,了解驱动模型。
platform_driver_register()主要调用 driver_register()
driver_register()主要调用 bus_add_driver()
bus_add_driver()主要调用 driver_attach()
driver_attach(),将驱动绑写到设备上
分析bus_for_each_dev(struct bus_type *bus, struct device *start,void *data, int (*fn)(struct device *, void *)) 在类型为bus的总线中查找设备,如果start不为null,则从start结点开始查找,如果start为null,则从总线的开头查找,有设备就执行fn()回调函数。
fn()回调函数回调到__driver_attach() ,分析__driver_attach()函数
再看driver_probe_device()
ret = drv->probe(dev)离davinci_emac_probe被执行已经很近了。最后又晕了,它的参数dev是哪里得到的呢?原来是在 bus_for_each_dev()里的dev = next_device(&i)) 得到的。猜想:这里应该是在某个总线上找设备,是哪个总线呢?迟点再看看