我需要获取指向linux中注册的特定设备的指针。简而言之,此设备代表mii_bus
个对象。问题是这个设备似乎不属于总线(它的dev->bus
是NULL
)所以我不能使用例如函数bus_for_each_dev
。然而,该设备由Open Firmware层注册,我可以在of_device
中看到相对/sys/bus/of_platform
(我感兴趣的设备的父亲)。我的设备也在class
注册,因此我可以在/sys/class/mdio_bus
中找到它。现在的问题是:
可以使用指向我们想要的设备的父of_device
的指针来获取指针吗?
如何通过仅使用名称来获取指向已经实例化的类的指针?如果有可能,我可以迭代该类的设备。
任何其他建议都非常有用!谢谢大家。
答案 0 :(得分:5)
我找到了方法。我简要解释一下,也许它可能有用。我们可以使用的方法是device_find_child
。该方法将第三个参数作为指向实现比较逻辑的函数的指针。如果在使用特定设备作为第一个参数调用时函数返回非零,device_find_child
将返回该指针。
#include <linux/device.h>
#include <linux/of_platform.h>
static int custom_match_dev(struct device *dev, void *data)
{
/* this function implements the comaparison logic. Return not zero if device
pointed by dev is the device you are searching for.
*/
}
static struct device *find_dev()
{
struct device *ofdev = bus_find_device_by_name(&of_platform_bus_type,
NULL, "OF_device_name");
if (ofdev)
{
/* of device is the parent of device we are interested in */
struct device *real_dev = device_find_child(ofdev,
NULL, /* passed in the second param to custom_match_dev */
custom_match_dev);
if (real_dev)
return real_dev;
}
return NULL;
}