Embeded linux之probe

一、基于linux-3.18.20、mac驱动

二、启动时机:

  所谓的"probe”,是指在Linux内核中,如果存在相同名称的device和device_driver,内核就会执行device_driver中的probe回调函数,而该函数就是所有driver的入口,可以执行诸如硬件设备初始化、字符设备注册、设备文件操作ops注册等动作("remove”是它的反操作,发生在device或者device_driver任何一方从内核注销时。

  • 将struct device类型的变量注册到内核中时自动触发(device_register,device_add,device_create_vargs,device_create)
  • 将struct device_driver类型的变量注册到内核中时自动触发(driver_register)
  • 手动查找同一bus下的所有device_driver,如果有和指定device同名的driver,执行probe操作(device_attach)
  • 手动查找同一bus下的所有device,如果有和指定driver同名的device,执行probe操作(driver_attach)
  • 自行调用driver的probe接口,并在该接口中将该driver绑定到某个device结构中----即设置dev->driver(device_bind_driver)

三、流程

  3.1 注册平台驱动

  ret = platform_driver_register(&usrmac_dev_driver);

  #define platform_driver_register(drv) platform_driver_register(drv, THIS_MODULE)

  __platform_driver_register(drv, THIS_MODULE)

  {

    ...

    return driver_register(&drv->driver);

  }

  int driver_attach(struct device_driver *drv)

  {

    ...

    ret = bus_add_driver(drv);

    ...

  }

  int bus_add_driver(struct device_driver *drv)

  {

    ...

    return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);

    ...

  }

  本函数没有给__driver_attach传递参数。

  int bus_for_each_dev(struct bus_type *bus, struct device *start, void *data, int (*fn)(struct device *, void *))

  {

    ....

    klist_iter_init_node(&bus->p->klist_devices, &i,(start ? &start->p->knode_bus : NULL));

    while ((dev = next_device(&i)) && !error)
      error = fn(dev, data);

    ....

  }

  分支一:赋值i->i_klist、i->i_cur

  因为start为NULL,故传递的第三个参数n为NULL

  void klist_iter_init_node(struct klist *k, struct klist_iter *i,

  struct klist_node *n)
  {
    i->i_klist = k;
    i->i_cur = n;
    if (n)
      kref_get(&n->n_ref);
  }

  其中

  i->i_klist = k = &bus->p->klist_devices

  i->i_cur = n = (start ? &start->p->knode_bus : NULL) = NULL;

  分之二:

  static struct device *next_device(struct klist_iter *i)

  {
    struct klist_node *n = klist_next(i);
    struct device *dev = NULL;
    struct device_private *dev_prv;

    if (n)

    {
      dev_prv = to_device_private_bus(n);
      dev = dev_prv->device;
    }
    return dev;
  }

  #define to_device_private_bus(obj)  container_of(obj, struct device_private, knode_bus)

  参数:

  i为

  struct klist_iter {
    struct klist *i_klist;
    struct klist_node *i_cur;
  };

  被赋值为

  i->i_klist = k;
  i->i_cur = n;

  next_device(&i),因为第一个节点为头节点,需要从下一个开始

  struct klist_node *n = klist_next(i);

  n为

  struct klist_node {
    void *n_klist; /* never access directly */
    struct list_head n_node;
    struct kref n_ref;
  };

  struct kref {
    atomic_t refcount;
  };

  

  klist_iter_init_node(&bus->p->klist_devices, &i,(start ?&start->p->knode_bus : NULL))作用是定义个klist_iter指向此klist,以便以后直接使用

  

  struct klist_node *klist_next(struct klist_iter *i)

  {

    ...

    struct klist_node *last = i->i_cur;

    if (last)

    {

      //此处不执行
    }

    else
      next = to_klist_node(i->i_klist->k_list.next);

    i->i_cur = NULL;

    while (next != to_klist_node(&i->i_klist->k_list))

    {
      if (likely(!knode_dead(next)))

      {
        kref_get(&next->n_ref);
        i->i_cur = next;
        break;
      }
      next = to_klist_node(next->n_node.next);
    }

    ...

  }

  static struct klist_node *to_klist_node(struct list_head *n)

  {
    return container_of(n, struct klist_node, n_node);
  }

  取出了包含i->i_klist->k_list.next的n_node指针,不过next所指的和n_node地址偏差一个head指针(list_head包括head和next俩指针)。

  while循环是从第一个目标to_klist_node(i->i_klist->k_list.next)循环,当再次循环到头节点to_klist_node(&i->i_klist->k_list)时截止(这是个循环链表,总会再次循环回来的)。

  还一个结束的条件,当循环到knode_dead(next)为真时break,不过,likely说明了next通常不会是dead的。

  Klist_iter找到合适的即停止搜索,找到此处的device_private的device。

  此结构即为传入probe函数的参数。

  找到参数后,继续执行return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);中error = fn(dev, data);即__driver_attach函数。

  第一个参数dev为刚刚while ((dev = next_device(&i)) && !error)索引产生。

  static int __driver_attach(struct device *dev, void *data)

  {

    ...

    if (!dev->driver)
      driver_probe_device(drv, dev);

    ...

  }

  int driver_probe_device(struct device_driver *drv, struct device *dev)

  {

    ...

    ret = really_probe(dev, drv);

    ...

  }

  static int really_probe(struct device *dev, struct device_driver *drv)

  {

    ...

    if (dev->bus->probe)

    {

      ret = dev->bus->probe(dev);
      if (ret)
      goto probe_failed;
    }

    else if (drv->probe)

    {
      ret = drv->probe(dev);
      if (ret)
      goto probe_failed;
    }

    ...

  }

  static struct platform_driver usrmac_dev_driver = {

    .probe = usrmac_dev_probe,
    .remove = usrmac_dev_remove,
    .suspend = usrmac_dev_suspend,
    .resume = usrmac_dev_resume,
    .driver =

    {
      .owner = THIS_MODULE,
      .name = USRMAC_DRIVER_NAME,
      .of_match_table = usrmac_of_match,
    },
  };

  static int usrmac_dev_probe(struct platform_device *pdev)

  {

    //struct platform_device *pdev即Klist_iter找到的

  }

时间: 2024-10-07 00:46:32

Embeded linux之probe的相关文章

linux驱动probe函数的实现框架思考

linux驱动probe函数的实现框架思考 .probe函数实现无非就是1)创建一个私有的driver_data用于区分不同的device,因为一个driver可以管理多个device,2)parse device tree,并根据配置申请资源.io resource.memory:3)初始化设备4)注册对应的子系统暴露对应的接口,子系统相关的底层函数需要你实现,实现/dev/设备的file_operation.sysfs.proc接口.:5)dev_set_drvdata 绑定私有结构和设备的

Embeded linux之地址映射

一.板级文件 通常会由MACHINE_START到板级文件 MACHINE_START(Chipname, "Chipname") .atag_offset  = 0x100, .map_io  = Chipname_map_io, .init_early = Chipname_init_early, .init_irq = Chipname_gic_init_irq, .handle_irq = gic_handle_irq, .timer   = &Chipname_sys

Embeded linux 之 cifs文件系统

待整理 转自: http://blog.csdn.net/yuanbinquan/article/details/51734705 简介 CIFS (Common Internet File System) 通用Internet文件系统 在windows主机之间进行网络文件共享是通过使用微软公司自己的CIFS服务实现的. 功能 CIFS 可以使您达到以下功能: 1.访问服务器本地文件并读写这些文件 2.与其它用户一起共享一些文件块 3.在断线时自动恢复与网络的连接 4.使用统一码(Unicode

Embeded linux之内核编译错误警告汇总

错误A: WARNING: drivers/spi/hi_spi.o(.data+0x0): Section mismatch in reference from the variable hi_spi_platform_driver to the function .init.text:hi_spi_probe()The variable hi_spi_platform_driver referencesthe function __init hi_spi_probe()If the refe

Embeded linux之Uboot参数与内核

一.内核查参方式: 1.1 mtd方式 文件形式,待补 1.2 ioremap 驱动+应用,待补 1.3 mtd_debug 软件移植,待补 1.4 fw_printenv 1.4.1 工具生成方法: uboot_source_tree # make ARCH=arm CROSS_COMPILE=arm-linux-gcc env uboot_source_tree/tools/env下得到fw_printenv与fw_env.config 1.4.2 将工具与配置文件放到板子文件系统上 1.4

Embeded linux之调试内核

KGDB: 注意:Linux内核从 2.6.26开始已经在内部集成kgdb,只需要配置kgdb并重新编译2.6.26(或更高)内核即可 本文使用内核3.0.35.CPU为imx6 1.配置内核支持kdb make menuconfig Kernel hacking  ---> [*] KGDB: kernel debugger  ---> <*> KGDB: use kgdb over the serial console  [*] KGDB: internal test suit

Embeded linux之RTL8188EU/RTL8188ETV使用

一.kernel:3.18.20 [*] Networking support  ---> -*-   Wireless  ---> <*> cfg80211 - wireless configuration API [*] nl80211 testmode command [*] enable developer warnings [*] cfg80211 regulatory debugging [*] enable powersave by default  [*] cfg8

Embeded linux之移植dropbear

红字加粗为编译器不同.路径不同需要注意修改的地方 一.源码包下载: zlib官方下载:http://www.zlib.net/ dropbear官方下载:https://matt.ucc.asn.au/dropbear/dropbear.html 本文使用版本: zlib-1.2.8 dropbear-2016.74 下面链接有已上传的配置好的源码包 二.创建工作目录 安装路径: /opt/dropbear_ssh/install/ 源码路径: /opt/dropbear_ssh/source/

Embeded linux之移植iptables

一.内核环境: linux-3.4.35 -*- Networking support  ---> Networking options  ---> [*] Network packet filtering framework (Netfilter)  ---> IP: Netfilter Configuration  ---> <*> IP tables support (required for filtering/masq/NAT) //iptables <