platform设备注册的时候,去platform总线上寻找相应驱动的流程

platform设备注册的时候,去platform总线上寻找相应驱动的流程:

platform_device_register->platform_device_add->device_add中,首先会调用bus_add_device将设备调加到总线上(即platform总线platform_bus_type),然后调用bus_probe_device去调用设备对用的驱动的probe函数;
bus_probe_device中调用device_attach去绑定总线上的驱动和此设备,其流程和(platform驱动注册时,去总线上寻找设备)就一样了
,参考:http://blog.csdn.net/ufo714/article/details/8595021。

platform驱动和设备进行bind时的匹配方法:

driver/base/platform.c: platform_match()

1、首先通过设备树(dt)的方式进行匹配

/* Attempt an OF style match first */

if (of_driver_match_device(dev, drv))
return 1;

2、在通过id_table的方式匹配,一个驱动的id_table可以有多个名字,对应一个系列的设备(比如 adm1021_id
/* Then try to match against the id table */
if (pdrv->id_table)
return platform_match_id(pdrv->id_table, pdev) != NULL;

3、最后通过比对pdev(platform-device)和driver的名字。
/* fall-back to driver name match */
return (strcmp(pdev->name, drv->name) == 0);

你可能感兴趣的:(驱动加载,设备注册,驱动注册)