在linux中获取指向结构设备指针的更简洁方法是什么?

时间:2011-10-03 15:02:10

标签: linux-kernel linux-device-driver device device-tree

我需要获取指向linux中注册的特定设备的指针。简而言之,此设备代表mii_bus个对象。问题是这个设备似乎不属于总线(它的dev->busNULL)所以我不能使用例如函数bus_for_each_dev。然而,该设备由Open Firmware层注册,我可以在of_device中看到相对/sys/bus/of_platform(我感兴趣的设备的父亲)。我的设备也在class注册,因此我可以在/sys/class/mdio_bus中找到它。现在的问题是:

  1. 可以使用指向我们想要的设备的父of_device的指针来获取指针吗?

  2. 如何通过仅使用名称来获取指向已经实例化的类的指针?如果有可能,我可以迭代该类的设备。

  3. 任何其他建议都非常有用!谢谢大家。

1 个答案:

答案 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;
}