Chinaunix首页 | 论坛 | 博客
  • 博客访问: 778126
  • 博文数量: 135
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1664
  • 用 户 组: 普通用户
  • 注册时间: 2013-07-09 16:16
个人简介

围城

文章分类

全部博文(135)

文章存档

2019年(3)

2018年(7)

2017年(14)

2016年(15)

2015年(34)

2014年(9)

2013年(53)

我的朋友

分类: LINUX

2016-07-25 23:07:02

I2C体系架构的硬件实体包括两部分:
  • 硬件I2C Adapter:硬件I2C Adapter表示一个硬件I2C适配器,也就是I2C控制器。一般是SOC中的一个接口,也可以用GPIO模拟。硬件I2C Adapter主要用来在I2C接口上产生I2C时钟信号和数据信号。
  • 硬件I2C Device:表示一个I2C从设备,I2C从设备并行的挂接在I2C总线上,通过I2C接口与I2C主控制器通信。
Linux的I2C体系架构包括6个部分:
  • I2C Core,定义了一些函数和数据结构,用于支持I2C控制器驱动(I2C Adapter drvier)和I2C设备驱动(I2C client driver)。I2C Core的存在使I2C控制器驱动和I2C设备驱动独立开来,具有更好的可移置性,同时简化了驱动开发的工作量。但是,I2C Core的存在也使Linux I2C体系结构理解起来更有难度。
  • I2C Adapter,代表一个I2C控制器,用struct i2c_adapter来表示。
  • Algorithm,访问I2C控制器的接口,Algorithm直接操作I2C控制器的硬件寄存器来执行数据的发送和接收。它提供操作I2C控制器的最底层操作函数。每个I2C Adapter都有自己的Algorithm,每个I2C Adapter通过自己的Algorithm与挂接在该控制器上的I2C从设备进行通信。
  • I2C Client,代表一个挂接在I2C总线上的I2C设备。
  • I2C设备驱动(I2C client driver)
  • I2C-dev,I2C控制器的设备文件,通常命名为i2c-0、i2c-1等等,是I2C控制器的应用层访问接口。
 
一、I2C相关数据结构
I2C控制器(例如S3C2440 I2C控制器)对应的数据结构是i2c_adapter,i2c_adapter结构定义在include/linux/i2c.h文件中,从注释可以看出,i2c_adapter代表一条物理的I2C总线,同时还包括访问该I2C总线的方法。其内容如下:
  1. 409/* 
  2. 410 * i2c_adapter is the structure used to identify a physical i2c bus along 
  3. 411 * with the access algorithms necessary to access it. 
  4. 412 */  
  5. 413struct i2c_adapter {  
  6. 414    struct module *owner;  
  7. 415    unsigned int class;       /* classes to allow probing for */  
  8. 416    const struct i2c_algorithm *algo; /* the algorithm to access the bus */  
  9. 417    void *algo_data;  
  10. 418  
  11. 419    /* data fields that are valid for all devices   */  
  12. 420    struct rt_mutex bus_lock;  
  13. 421  
  14. 422    int timeout;            /* in jiffies */  
  15. 423    int retries;  
  16. 424    struct device dev;      /* the adapter device */  
  17. 425  
  18. 426    int nr;  
  19. 427    char name[48];  
  20. 428    struct completion dev_released;  
  21. 429  
  22. 430    struct mutex userspace_clients_lock;  
  23. 431    struct list_head userspace_clients;  
  24. 432  
  25. 433    struct i2c_bus_recovery_info *bus_recovery_info;  
  26. 434};  
i2c_algorithm定义在include/linux/i2c.h文件中,其内容如下:
  1. 347/* 
  2. 348 * The following structs are for those who like to implement new bus drivers: 
  3. 349 * i2c_algorithm is the interface to a class of hardware solutions which can 
  4. 350 * be addressed using the same bus algorithms - i.e. bit-banging or the PCF8584 
  5. 351 * to name two of the most common. 
  6. 352 */  
  7. 353struct i2c_algorithm {  
  8. 354    /* If an adapter algorithm can't do I2C-level access, set master_xfer 
  9. 355       to NULL. If an adapter algorithm can do SMBus access, set 
  10. 356       smbus_xfer. If set to NULL, the SMBus protocol is simulated 
  11. 357       using common I2C messages */  
  12. 358    /* master_xfer should return the number of messages successfully 
  13. 359       processed, or a negative value on error */  
  14. 360    int (*master_xfer)(struct i2c_adapter *adap, struct i2c_msg *msgs,  
  15. 361               int num);  
  16. 362    int (*smbus_xfer) (struct i2c_adapter *adap, u16 addr,  
  17. 363               unsigned short flags, char read_write,  
  18. 364               u8 command, int size, union i2c_smbus_data *data);  
  19. 365  
  20. 366    /* To determine what the adapter supports */  
  21. 367    u32 (*functionality) (struct i2c_adapter *);  
  22. 368};  
struct i2c_client代表一个I2C设备,该结构体定义在include/linux/i2c.h文件中,其内容如下:
  1. 200/** 
  2. 201 * struct i2c_client - represent an I2C slave device 
  3. 202 * @flags: I2C_CLIENT_TEN indicates the device uses a ten bit chip address; 
  4. 203 *  I2C_CLIENT_PEC indicates it uses SMBus Packet Error Checking 
  5. 204 * @addr: Address used on the I2C bus connected to the parent adapter. 
  6. 205 * @name: Indicates the type of the device, usually a chip name that's 
  7. 206 *  generic enough to hide second-sourcing and compatible revisions. 
  8. 207 * @adapter: manages the bus segment hosting this I2C device 
  9. 208 * @driver: device's driver, hence pointer to access routines 
  10. 209 * @dev: Driver model device node for the slave. 
  11. 210 * @irq: indicates the IRQ generated by this device (if any) 
  12. 211 * @detected: member of an i2c_driver.clients list or i2c-core's 
  13. 212 *  userspace_devices list 
  14. 213 * 
  15. 214 * An i2c_client identifies a single device (i.e. chip) connected to an 
  16. 215 * i2c bus. The behaviour exposed to Linux is defined by the driver 
  17. 216 * managing the device. 
  18. 217 */  
  19. 218struct i2c_client {  
  20. 219    unsigned short flags;       /* div., see below      */  
  21. 220    unsigned short addr;        /* chip address - NOTE: 7bit    */  
  22. 221                    /* addresses are stored in the  */  
  23. 222                    /* _LOWER_ 7 bits       */  
  24. 223    char name[I2C_NAME_SIZE];  
  25. 224    struct i2c_adapter *adapter;    /* the adapter we sit on    */  
  26. 225    struct i2c_driver *driver;  /* and our access routines  */  
  27. 226    struct device dev;      /* the device structure     */  
  28. 227    int irq;            /* irq issued by device     */  
  29. 228    struct list_head detected;  
  30. 229};  
struct i2c_driver代表一个I2C设备驱动程序,该结构体定义在include/linux/i2c.h文件中,其内容如下:
  1. 124/** 
  2. 125 * struct i2c_driver - represent an I2C device driver 
  3. 126 * @class: What kind of i2c device we instantiate (for detect) 
  4. 127 * @attach_adapter: Callback for bus addition (deprecated) 
  5. 128 * @probe: Callback for device binding 
  6. 129 * @remove: Callback for device unbinding 
  7. 130 * @shutdown: Callback for device shutdown 
  8. 131 * @suspend: Callback for device suspend 
  9. 132 * @resume: Callback for device resume 
  10. 133 * @alert: Alert callback, for example for the SMBus alert protocol 
  11. 134 * @command: Callback for bus-wide signaling (optional) 
  12. 135 * @driver: Device driver model driver 
  13. 136 * @id_table: List of I2C devices supported by this driver 
  14. 137 * @detect: Callback for device detection 
  15. 138 * @address_list: The I2C addresses to probe (for detect) 
  16. 139 * @clients: List of detected clients we created (for i2c-core use only) 
  17. 140 * 
  18. 141 * The driver.owner field should be set to the module owner of this driver. 
  19. 142 * The driver.name field should be set to the name of this driver. 
  20. 143 * 
  21. 144 * For automatic device detection, both @detect and @address_list must 
  22. 145 * be defined. @class should also be set, otherwise only devices forced 
  23. 146 * with module parameters will be created. The detect function must 
  24. 147 * fill at least the name field of the i2c_board_info structure it is 
  25. 148 * handed upon successful detection, and possibly also the flags field. 
  26. 149 * 
  27. 150 * If @detect is missing, the driver will still work fine for enumerated 
  28. 151 * devices. Detected devices simply won't be supported. This is expected 
  29. 152 * for the many I2C/SMBus devices which can't be detected reliably, and 
  30. 153 * the ones which can always be enumerated in practice. 
  31. 154 * 
  32. 155 * The i2c_client structure which is handed to the @detect callback is 
  33. 156 * not a real i2c_client. It is initialized just enough so that you can 
  34. 157 * call i2c_smbus_read_byte_data and friends on it. Don't do anything 
  35. 158 * else with it. In particular, calling dev_dbg and friends on it is 
  36. 159 * not allowed. 
  37. 160 */  
  38. 161struct i2c_driver {  
  39. 162    unsigned int class;  
  40. 163  
  41. 164    /* Notifies the driver that a new bus has appeared. You should avoid 
  42. 165     * using this, it will be removed in a near future. 
  43. 166     */  
  44. 167    int (*attach_adapter)(struct i2c_adapter *) __deprecated;  
  45. 168  
  46. 169    /* Standard driver model interfaces */  
  47. 170    int (*probe)(struct i2c_client *, const struct i2c_device_id *);  
  48. 171    int (*remove)(struct i2c_client *);  
  49. 172  
  50. 173    /* driver model interfaces that don't relate to enumeration  */  
  51. 174    void (*shutdown)(struct i2c_client *);  
  52. 175    int (*suspend)(struct i2c_client *, pm_message_t mesg);  
  53. 176    int (*resume)(struct i2c_client *);  
  54. 177  
  55. 178    /* Alert callback, for example for the SMBus alert protocol. 
  56. 179     * The format and meaning of the data value depends on the protocol. 
  57. 180     * For the SMBus alert protocol, there is a single bit of data passed 
  58. 181     * as the alert response's low bit ("event flag"). 
  59. 182     */  
  60. 183    void (*alert)(struct i2c_client *, unsigned int data);  
  61. 184  
  62. 185    /* a ioctl like command that can be used to perform specific functions 
  63. 186     * with the device. 
  64. 187     */  
  65. 188    int (*command)(struct i2c_client *client, unsigned int cmd, void *arg);  
  66. 189  
  67. 190    struct device_driver driver;  
  68. 191    const struct i2c_device_id *id_table;  
  69. 192  
  70. 193    /* Device detection callback for automatic device creation */  
  71. 194    int (*detect)(struct i2c_client *, struct i2c_board_info *);  
  72. 195    const unsigned short *address_list;  
  73. 196    struct list_head clients;  
  74. 197};  
 
二、i2c_adapter的注册
i2c_add_adapter和i2c_add_numbered_adapter函数都可以注册I2C adapter,这两个函数的区别是,i2c_add_adapter动态分配一个bus number,而i2c_add_numbered_adapter使用i2c_adapter.nr指定的bus number。
下面是i2c_add_adapter函数的定义,它定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 1099/** 
  2. 1100 * i2c_add_adapter - declare i2c adapter, use dynamic bus number 
  3. 1101 * @adapter: the adapter to add 
  4. 1102 * Context: can sleep 
  5. 1103 * 
  6. 1104 * This routine is used to declare an I2C adapter when its bus number 
  7. 1105 * doesn't matter or when its bus number is specified by an dt alias. 
  8. 1106 * Examples of bases when the bus number doesn't matter: I2C adapters 
  9. 1107 * dynamically added by USB links or PCI plugin cards. 
  10. 1108 * 
  11. 1109 * When this returns zero, a new bus number was allocated and stored 
  12. 1110 * in adap->nr, and the specified adapter became available for clients. 
  13. 1111 * Otherwise, a negative errno value is returned. 
  14. 1112 */  
  15. 1113int i2c_add_adapter(struct i2c_adapter *adapter)  
  16. 1114{  
  17. 1115    struct device *dev = &adapter->dev;  
  18. 1116    int id;  
  19. 1117  
  20. 1118    if (dev->of_node) {  
  21. 1119        id = of_alias_get_id(dev->of_node, "i2c");  
  22. 1120        if (id >= 0) {  
  23. 1121            adapter->nr = id;  
  24. 1122            return __i2c_add_numbered_adapter(adapter);  
  25. 1123        }  
  26. 1124    }  
  27. 1125  
  28. 1126    mutex_lock(&core_lock);  
  29. 1127    id = idr_alloc(&i2c_adapter_idr, adapter,  
  30. 1128               __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);  
  31. 1129    mutex_unlock(&core_lock);  
  32. 1130    if (id < 0)  
  33. 1131        return id;  
  34. 1132  
  35. 1133    adapter->nr = id;  
  36. 1134  
  37. 1135    return i2c_register_adapter(adapter);  
  38. 1136}  
1118-1124行,跳过。
1127-1128行,调用idr_alloc动态分配一个idr entry,并用返回的id作为bus number。
1135行,调用i2c_register_adapter函数。这个函数我们后面再分析。
下面是i2c_add_numbered_adapter函数的定义,它同样定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 1139/** 
  2. 1140 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number 
  3. 1141 * @adap: the adapter to register (with adap->nr initialized) 
  4. 1142 * Context: can sleep 
  5. 1143 * 
  6. 1144 * This routine is used to declare an I2C adapter when its bus number 
  7. 1145 * matters.  For example, use it for I2C adapters from system-on-chip CPUs, 
  8. 1146 * or otherwise built in to the system's mainboard, and where i2c_board_info 
  9. 1147 * is used to properly configure I2C devices. 
  10. 1148 * 
  11. 1149 * If the requested bus number is set to -1, then this function will behave 
  12. 1150 * identically to i2c_add_adapter, and will dynamically assign a bus number. 
  13. 1151 * 
  14. 1152 * If no devices have pre-been declared for this bus, then be sure to 
  15. 1153 * register the adapter before any dynamically allocated ones.  Otherwise 
  16. 1154 * the required bus ID may not be available. 
  17. 1155 * 
  18. 1156 * When this returns zero, the specified adapter became available for 
  19. 1157 * clients using the bus number provided in adap->nr.  Also, the table 
  20. 1158 * of I2C devices pre-declared using i2c_register_board_info() is scanned, 
  21. 1159 * and the appropriate driver model device nodes are created.  Otherwise, a 
  22. 1160 * negative errno value is returned. 
  23. 1161 */  
  24. 1162int i2c_add_numbered_adapter(struct i2c_adapter *adap)  
  25. 1163{  
  26. 1164    if (adap->nr == -1) /* -1 means dynamically assign bus id */  
  27. 1165        return i2c_add_adapter(adap);  
  28. 1166  
  29. 1167    return __i2c_add_numbered_adapter(adap);  
  30. 1168}  
可以看到如果adap->nr的值为-1,则调用i2c_add_adapter动态分配一个bus number并注册。否则,调用__i2c_add_numbered_adapter函数,该函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 1078/** 
  2. 1079 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1 
  3. 1080 * @adap: the adapter to register (with adap->nr initialized) 
  4. 1081 * Context: can sleep 
  5. 1082 * 
  6. 1083 * See i2c_add_numbered_adapter() for details. 
  7. 1084 */  
  8. 1085static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)  
  9. 1086{  
  10. 1087    int id;  
  11. 1088  
  12. 1089    mutex_lock(&core_lock);  
  13. 1090    id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1,  
  14. 1091               GFP_KERNEL);  
  15. 1092    mutex_unlock(&core_lock);  
  16. 1093    if (id < 0)  
  17. 1094        return id == -ENOSPC ? -EBUSY : id;  
  18. 1095  
  19. 1096    return i2c_register_adapter(adap);  
  20. 1097}  
1090行,调用idr_alloc函数用指定的daap->nr作为bus number分配一个idr entry。
1096行,调用i2c_register_adapter函数。
所以,不论是用i2c_add_adapter还是用i2c_add_numbered_adapter函数注册i2c_adapter,最终都会调用i2c_register_adapter函数完成注册。
i2c_register_adapter函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1.  980static int i2c_register_adapter(struct i2c_adapter *adap)  
  2.  981{  
  3.  982    int res = 0;  
  4.  983  
  5.  984    /* Can't register until after driver model init */  
  6.  985    if (unlikely(WARN_ON(!i2c_bus_type.p))) {  
  7.  986        res = -EAGAIN;  
  8.  987        goto out_list;  
  9.  988    }  
  10.  989  
  11.  990    /* Sanity checks */  
  12.  991    if (unlikely(adap->name[0] == '\0')) {  
  13.  992        pr_err("i2c-core: Attempt to register an adapter with "  
  14.  993               "no name!\n");  
  15.  994        return -EINVAL;  
  16.  995    }  
  17.  996    if (unlikely(!adap->algo)) {  
  18.  997        pr_err("i2c-core: Attempt to register adapter '%s' with "  
  19.  998               "no algo!\n", adap->name);  
  20.  999        return -EINVAL;  
  21. 1000    }  
  22. 1001  
  23. 1002    rt_mutex_init(&adap->bus_lock);  
  24. 1003    mutex_init(&adap->userspace_clients_lock);  
  25. 1004    INIT_LIST_HEAD(&adap->userspace_clients);  
  26. 1005  
  27. 1006    /* Set default timeout to 1 second if not already set */  
  28. 1007    if (adap->timeout == 0)  
  29. 1008        adap->timeout = HZ;  
  30. 1009  
  31. 1010    dev_set_name(&adap->dev, "i2c-%d", adap->nr);  
  32. 1011    adap->dev.bus = &i2c_bus_type;  
  33. 1012    adap->dev.type = &i2c_adapter_type;  
  34. 1013    res = device_register(&adap->dev);  
  35. 1014    if (res)  
  36. 1015        goto out_list;  
  37. 1016  
  38. 1017    dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);  
  39. 1018  
  40. 1019#ifdef CONFIG_I2C_COMPAT  
  41. 1020    res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,  
  42. 1021                       adap->dev.parent);  
  43. 1022    if (res)  
  44. 1023        dev_warn(&adap->dev,  
  45. 1024             "Failed to create compatibility class link\n");  
  46. 1025#endif  
  47. 1026  
  48. 1027    /* bus recovery specific initialization */  
  49. 1028    if (adap->bus_recovery_info) {  
  50. 1029        struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;  
  51. 1030  
  52. 1031        if (!bri->recover_bus) {  
  53. 1032            dev_err(&adap->dev, "No recover_bus() found, not using recovery\n");  
  54. 1033            adap->bus_recovery_info = NULL;  
  55. 1034            goto exit_recovery;  
  56. 1035        }  
  57. 1036  
  58. 1037        /* Generic GPIO recovery */  
  59. 1038        if (bri->recover_bus == i2c_generic_gpio_recovery) {  
  60. 1039            if (!gpio_is_valid(bri->scl_gpio)) {  
  61. 1040                dev_err(&adap->dev, "Invalid SCL gpio, not using recovery\n");  
  62. 1041                adap->bus_recovery_info = NULL;  
  63. 1042                goto exit_recovery;  
  64. 1043            }  
  65. 1044  
  66. 1045            if (gpio_is_valid(bri->sda_gpio))  
  67. 1046                bri->get_sda = get_sda_gpio_value;  
  68. 1047            else  
  69. 1048                bri->get_sda = NULL;  
  70. 1049  
  71. 1050            bri->get_scl = get_scl_gpio_value;  
  72. 1051            bri->set_scl = set_scl_gpio_value;  
  73. 1052        } else if (!bri->set_scl || !bri->get_scl) {  
  74. 1053            /* Generic SCL recovery */  
  75. 1054            dev_err(&adap->dev, "No {get|set}_gpio() found, not using recovery\n");  
  76. 1055            adap->bus_recovery_info = NULL;  
  77. 1056        }  
  78. 1057    }  
  79. 1058  
  80. 1059exit_recovery:  
  81. 1060    /* create pre-declared device nodes */  
  82. 1061    if (adap->nr < __i2c_first_dynamic_bus_num)  
  83. 1062        i2c_scan_static_board_info(adap);  
  84. 1063  
  85. 1064    /* Notify drivers */  
  86. 1065    mutex_lock(&core_lock);  
  87. 1066    bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);  
  88. 1067    mutex_unlock(&core_lock);  
  89. 1068  
  90. 1069    return 0;  
  91. 1070  
  92. 1071out_list:  
  93. 1072    mutex_lock(&core_lock);  
  94. 1073    idr_remove(&i2c_adapter_idr, adap->nr);  
  95. 1074    mutex_unlock(&core_lock);  
  96. 1075    return res;  
  97. 1076}  
984-1013行,完成基本的检查和初始化工作后,注册i2c_adapter.dev。
1027-1059行,如果有必要,为bus recovery作一些准备工作。
1060-1062行,如果有预先声明的i2c设备,则注册对应的i2c_client。
先看1061行,判断adap->nr是否小于__i2c_first_dynamic_bus_num,只有是使用i2c_add_numbered_adapter注册i2c_adapter时,该判断才会成立。用i2c_add_adapter函数注册i2c_adapter时,动态分配的bus number一定是大于或等于__i2c_first_dynamic_bus_num的。
如果1061行的判断成立,说明是使用预先定义的bus number,因此,就可能会有预置的I2C设备信息。所以1062行,调用i2c_scan_static_board_info函数,遍历预置I2C设备信息列表,创建对应的i2c_client。
i2c_scan_static_board_info函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 941static void i2c_scan_static_board_info(struct i2c_adapter *adapter)  
  2. 942{  
  3. 943    struct i2c_devinfo  *devinfo;  
  4. 944  
  5. 945    down_read(&__i2c_board_lock);  
  6. 946    list_for_each_entry(devinfo, &__i2c_board_list, list) {  
  7. 947        if (devinfo->busnum == adapter->nr  
  8. 948                && !i2c_new_device(adapter,  
  9. 949                        &devinfo->board_info))  
  10. 950            dev_err(&adapter->dev,  
  11. 951                "Can't create device at 0x%02x\n",  
  12. 952                devinfo->board_info.addr);  
  13. 953    }  
  14. 954    up_read(&__i2c_board_lock);  
  15. 955}  
该函数遍历__i2c_board_list链表,如果某个节点的devinfo->busnum等于adapter->nr,即该I2C设备属于这个注册的I2C adapter,则调用i2c_new_device创建并注册该I2C设备对应的i2c_client。
i2c_new_device定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 612/** 
  2. 613 * i2c_new_device - instantiate an i2c device 
  3. 614 * @adap: the adapter managing the device 
  4. 615 * @info: describes one I2C device; bus_num is ignored 
  5. 616 * Context: can sleep 
  6. 617 * 
  7. 618 * Create an i2c device. Binding is handled through driver model 
  8. 619 * probe()/remove() methods.  A driver may be bound to this device when we 
  9. 620 * return from this function, or any later moment (e.g. maybe hotplugging will 
  10. 621 * load the driver module).  This call is not appropriate for use by mainboard 
  11. 622 * initialization logic, which usually runs during an arch_initcall() long 
  12. 623 * before any i2c_adapter could exist. 
  13. 624 * 
  14. 625 * This returns the new i2c client, which may be saved for later use with 
  15. 626 * i2c_unregister_device(); or NULL to indicate an error. 
  16. 627 */  
  17. 628struct i2c_client *  
  18. 629i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)  
  19. 630{  
  20. 631    struct i2c_client   *client;  
  21. 632    int         status;  
  22. 633  
  23. 634    client = kzalloc(sizeof *client, GFP_KERNEL);  
  24. 635    if (!client)  
  25. 636        return NULL;  
  26. 637  
  27. 638    client->adapter = adap;  
  28. 639  
  29. 640    client->dev.platform_data = info->platform_data;  
  30. 641  
  31. 642    if (info->archdata)  
  32. 643        client->dev.archdata = *info->archdata;  
  33. 644  
  34. 645    client->flags = info->flags;  
  35. 646    client->addr = info->addr;  
  36. 647    client->irq = info->irq;  
  37. 648  
  38. 649    strlcpy(client->name, info->type, sizeof(client->name));  
  39. 650  
  40. 651    /* Check for address validity */  
  41. 652    status = i2c_check_client_addr_validity(client);  
  42. 653    if (status) {  
  43. 654        dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",  
  44. 655            client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);  
  45. 656        goto out_err_silent;  
  46. 657    }  
  47. 658  
  48. 659    /* Check for address business */  
  49. 660    status = i2c_check_addr_busy(adap, client->addr);  
  50. 661    if (status)  
  51. 662        goto out_err;  
  52. 663  
  53. 664    client->dev.parent = &client->adapter->dev;  
  54. 665    client->dev.bus = &i2c_bus_type;  
  55. 666    client->dev.type = &i2c_client_type;  
  56. 667    client->dev.of_node = info->of_node;  
  57. 668    ACPI_HANDLE_SET(&client->dev, info->acpi_node.handle);  
  58. 669  
  59. 670    /* For 10-bit clients, add an arbitrary offset to avoid collisions */  
  60. 671    dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),  
  61. 672             client->addr | ((client->flags & I2C_CLIENT_TEN)  
  62. 673                     ? 0xa000 : 0));  
  63. 674    status = device_register(&client->dev);  
  64. 675    if (status)  
  65. 676        goto out_err;  
  66. 677  
  67. 678    dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",  
  68. 679        client->name, dev_name(&client->dev));  
  69. 680  
  70. 681    return client;  
  71. 682  
  72. 683out_err:  
  73. 684    dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "  
  74. 685        "(%d)\n", client->name, client->addr, status);  
  75. 686out_err_silent:  
  76. 687    kfree(client);  
  77. 688    return NULL;  
  78. 689}  
这个函数很直接,就是初始化i2c_client的各个成员,并最终注册client->dev,从而完成对i2c设备的注册。
这里要说明一下,预置的i2c设备信息是通过调用i2c_register_board_info函数完成的,该函数定义在drivers/i2c/i2c-boardinfo.c文件中,其内容如下:
  1. 42/** 
  2. 43 * i2c_register_board_info - statically declare I2C devices 
  3. 44 * @busnum: identifies the bus to which these devices belong 
  4. 45 * @info: vector of i2c device descriptors 
  5. 46 * @len: how many descriptors in the vector; may be zero to reserve 
  6. 47 *  the specified bus number. 
  7. 48 * 
  8. 49 * Systems using the Linux I2C driver stack can declare tables of board info 
  9. 50 * while they initialize.  This should be done in board-specific init code 
  10. 51 * near arch_initcall() time, or equivalent, before any I2C adapter driver is 
  11. 52 * registered.  For example, mainboard init code could define several devices, 
  12. 53 * as could the init code for each daughtercard in a board stack. 
  13. 54 * 
  14. 55 * The I2C devices will be created later, after the adapter for the relevant 
  15. 56 * bus has been registered.  After that moment, standard driver model tools 
  16. 57 * are used to bind "new style" I2C drivers to the devices.  The bus number 
  17. 58 * for any device declared using this routine is not available for dynamic 
  18. 59 * allocation. 
  19. 60 * 
  20. 61 * The board info passed can safely be __initdata, but be careful of embedded 
  21. 62 * pointers (for platform_data, functions, etc) since that won't be copied. 
  22. 63 */  
  23. 64int __init  
  24. 65i2c_register_board_info(int busnum,  
  25. 66    struct i2c_board_info const *info, unsigned len)  
  26. 67{  
  27. 68    int status;  
  28. 69  
  29. 70    down_write(&__i2c_board_lock);  
  30. 71  
  31. 72    /* dynamic bus numbers will be assigned after the last static one */  
  32. 73    if (busnum >= __i2c_first_dynamic_bus_num)  
  33. 74        __i2c_first_dynamic_bus_num = busnum + 1;  
  34. 75  
  35. 76    for (status = 0; len; len--, info++) {  
  36. 77        struct i2c_devinfo  *devinfo;  
  37. 78  
  38. 79        devinfo = kzalloc(sizeof(*devinfo), GFP_KERNEL);  
  39. 80        if (!devinfo) {  
  40. 81            pr_debug("i2c-core: can't register boardinfo!\n");  
  41. 82            status = -ENOMEM;  
  42. 83            break;  
  43. 84        }  
  44. 85  
  45. 86        devinfo->busnum = busnum;  
  46. 87        devinfo->board_info = *info;  
  47. 88        list_add_tail(&devinfo->list, &__i2c_board_list);  
  48. 89    }  
  49. 90  
  50. 91    up_write(&__i2c_board_lock);  
  51. 92  
  52. 93    return status;  
  53. 94}  
可以看到,该函数将预置的i2c设备信息保存在__i2c_board_list链表中。
回到i2c_register_adapter函数:
1066行,调用bus_for_each_drv函数,该函数定义在drivers/base/bus.c文件中,其内容如下:
  1. 417/** 
  2. 418 * bus_for_each_drv - driver iterator 
  3. 419 * @bus: bus we're dealing with. 
  4. 420 * @start: driver to start iterating on. 
  5. 421 * @data: data to pass to the callback. 
  6. 422 * @fn: function to call for each driver. 
  7. 423 * 
  8. 424 * This is nearly identical to the device iterator above. 
  9. 425 * We iterate over each driver that belongs to @bus, and call 
  10. 426 * @fn for each. If @fn returns anything but 0, we break out 
  11. 427 * and return it. If @start is not NULL, we use it as the head 
  12. 428 * of the list. 
  13. 429 * 
  14. 430 * NOTE: we don't return the driver that returns a non-zero 
  15. 431 * value, nor do we leave the reference count incremented for that 
  16. 432 * driver. If the caller needs to know that info, it must set it 
  17. 433 * in the callback. It must also be sure to increment the refcount 
  18. 434 * so it doesn't disappear before returning to the caller. 
  19. 435 */  
  20. 436int bus_for_each_drv(struct bus_type *bus, struct device_driver *start,  
  21. 437             void *data, int (*fn)(struct device_driver *, void *))  
  22. 438{  
  23. 439    struct klist_iter i;  
  24. 440    struct device_driver *drv;  
  25. 441    int error = 0;  
  26. 442  
  27. 443    if (!bus)  
  28. 444        return -EINVAL;  
  29. 445  
  30. 446    klist_iter_init_node(&bus->p->klist_drivers, &i,  
  31. 447                 start ? &start->p->knode_bus : NULL);  
  32. 448    while ((drv = next_driver(&i)) && !error)  
  33. 449        error = fn(drv, data);  
  34. 450    klist_iter_exit(&i);  
  35. 451    return error;  
  36. 452}  
这个函数我们在《Linux设备模型分析之device(基于3.10.1内核)》一文中已经分析过了。448-449行,这个while循环依次遍历bus->p->klist_drivers中的所有device_driver,对于每个device_driver,调用fn(drv,data)函数。这里,传递过来的fn参数是__process_new_adapter,data参数是adap。这个循环是一个关键点,注册一个新的i2c_adapter后,要为该i2c_adapter上的i2c设备匹配驱动程序,这个匹配过程就是通过这个循环调用__process_new_adapter函数完成的。
__process_new_adapter函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 975static int __process_new_adapter(struct device_driver *d, void *data)  
  2. 976{  
  3. 977    return i2c_do_add_adapter(to_i2c_driver(d), data);  
  4. 978}  
注意i2c_do_add_adapter函数的第一个参数,从device_driver转换为i2c_driver。
i2c_do_add_adapter函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 957static int i2c_do_add_adapter(struct i2c_driver *driver,  
  2. 958                  struct i2c_adapter *adap)  
  3. 959{  
  4. 960    /* Detect supported devices on that bus, and instantiate them */  
  5. 961    i2c_detect(adap, driver);  
  6. 962  
  7. 963    /* Let legacy drivers scan this bus for matching devices */  
  8. 964    if (driver->attach_adapter) {  
  9. 965        dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",  
  10. 966             driver->driver.name);  
  11. 967        dev_warn(&adap->dev, "Please use another way to instantiate "  
  12. 968             "your i2c_client\n");  
  13. 969        /* We ignore the return code; if it fails, too bad */  
  14. 970        driver->attach_adapter(adap);  
  15. 971    }  
  16. 972    return 0;  
  17. 973}  
961行,调用i2c_detect函数,探测并初始化该i2c总线上的i2c设备。该函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 1730static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)  
  2. 1731{  
  3. 1732    const unsigned short *address_list;  
  4. 1733    struct i2c_client *temp_client;  
  5. 1734    int i, err = 0;  
  6. 1735    int adap_id = i2c_adapter_id(adapter);  
  7. 1736  
  8. 1737    address_list = driver->address_list;  
  9. 1738    if (!driver->detect || !address_list)  
  10. 1739        return 0;  
  11. 1740  
  12. 1741    /* Stop here if the classes do not match */  
  13. 1742    if (!(adapter->class & driver->class))  
  14. 1743        return 0;  
  15. 1744  
  16. 1745    /* Set up a temporary client to help detect callback */  
  17. 1746    temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);  
  18. 1747    if (!temp_client)  
  19. 1748        return -ENOMEM;  
  20. 1749    temp_client->adapter = adapter;  
  21. 1750  
  22. 1751    for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {  
  23. 1752        dev_dbg(&adapter->dev, "found normal entry for adapter %d, "  
  24. 1753            "addr 0x%02x\n", adap_id, address_list[i]);  
  25. 1754        temp_client->addr = address_list[i];  
  26. 1755        err = i2c_detect_address(temp_client, driver);  
  27. 1756        if (unlikely(err))  
  28. 1757            break;  
  29. 1758    }  
  30. 1759  
  31. 1760    kfree(temp_client);  
  32. 1761    return err;  
  33. 1762}  
1755行,调用i2c_detect_address,探测指定的地址上的I2C设备是否存在,如果存在,注册该i2c设备。i2c_detect_address函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 1675static int i2c_detect_address(struct i2c_client *temp_client,  
  2. 1676                  struct i2c_driver *driver)  
  3. 1677{  
  4. 1678    struct i2c_board_info info;  
  5. 1679    struct i2c_adapter *adapter = temp_client->adapter;  
  6. 1680    int addr = temp_client->addr;  
  7. 1681    int err;  
  8. 1682  
  9. 1683    /* Make sure the address is valid */  
  10. 1684    err = i2c_check_addr_validity(addr);  
  11. 1685    if (err) {  
  12. 1686        dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",  
  13. 1687             addr);  
  14. 1688        return err;  
  15. 1689    }  
  16. 1690  
  17. 1691    /* Skip if already in use */  
  18. 1692    if (i2c_check_addr_busy(adapter, addr))  
  19. 1693        return 0;  
  20. 1694  
  21. 1695    /* Make sure there is something at this address */  
  22. 1696    if (!i2c_default_probe(adapter, addr))  
  23. 1697        return 0;  
  24. 1698  
  25. 1699    /* Finally call the custom detection function */  
  26. 1700    memset(&info, 0, sizeof(struct i2c_board_info));  
  27. 1701    info.addr = addr;  
  28. 1702    err = driver->detect(temp_client, &info);  
  29. 1703    if (err) {  
  30. 1704        /* -ENODEV is returned if the detection fails. We catch it 
  31. 1705           here as this isn't an error. */  
  32. 1706        return err == -ENODEV ? 0 : err;  
  33. 1707    }  
  34. 1708  
  35. 1709    /* Consistency check */  
  36. 1710    if (info.type[0] == '\0') {  
  37. 1711        dev_err(&adapter->dev, "%s detection function provided "  
  38. 1712            "no name for 0x%x\n", driver->driver.name,  
  39. 1713            addr);  
  40. 1714    } else {  
  41. 1715        struct i2c_client *client;  
  42. 1716  
  43. 1717        /* Detection succeeded, instantiate the device */  
  44. 1718        dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",  
  45. 1719            info.type, info.addr);  
  46. 1720        client = i2c_new_device(adapter, &info);  
  47. 1721        if (client)  
  48. 1722            list_add_tail(&client->detected, &driver->clients);  
  49. 1723        else  
  50. 1724            dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",  
  51. 1725                info.type, info.addr);  
  52. 1726    }  
  53. 1727    return 0;  
  54. 1728}  
1702行,调用driver->detect。
1720行,如果探测到i2c设备确实存在,调用i2c_new_device函数初始化对应的i2c_client结构体并注册。i2c_new_device函数我们在前面已经分析过。
至此,i2c_adapter的注册过程我们就清楚了。
 
三、i2c_driver的注册
i2c_driver的注册是通过调用i2c_add_driver宏完成的,该宏定义在include/linux/i2c.h文件中:
  1. 497/* use a define to avoid include chaining to get THIS_MODULE */  
  2. 498#define i2c_add_driver(driver) \  
  3. 499    i2c_register_driver(THIS_MODULE, driver)  
i2c_register_driver函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 1307/* 
  2. 1308 * An i2c_driver is used with one or more i2c_client (device) nodes to access 
  3. 1309 * i2c slave chips, on a bus instance associated with some i2c_adapter. 
  4. 1310 */  
  5. 1311  
  6. 1312int i2c_register_driver(struct module *owner, struct i2c_driver *driver)  
  7. 1313{  
  8. 1314    int res;  
  9. 1315  
  10. 1316    /* Can't register until after driver model init */  
  11. 1317    if (unlikely(WARN_ON(!i2c_bus_type.p)))  
  12. 1318        return -EAGAIN;  
  13. 1319  
  14. 1320    /* add the driver to the list of i2c drivers in the driver core */  
  15. 1321    driver->driver.owner = owner;  
  16. 1322    driver->driver.bus = &i2c_bus_type;  
  17. 1323  
  18. 1324    /* When registration returns, the driver core 
  19. 1325     * will have called probe() for all matching-but-unbound devices. 
  20. 1326     */  
  21. 1327    res = driver_register(&driver->driver);  
  22. 1328    if (res)  
  23. 1329        return res;  
  24. 1330  
  25. 1331    /* Drivers should switch to dev_pm_ops instead. */  
  26. 1332    if (driver->suspend)  
  27. 1333        pr_warn("i2c-core: driver [%s] using legacy suspend method\n",  
  28. 1334            driver->driver.name);  
  29. 1335    if (driver->resume)  
  30. 1336        pr_warn("i2c-core: driver [%s] using legacy resume method\n",  
  31. 1337            driver->driver.name);  
  32. 1338  
  33. 1339    pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);  
  34. 1340  
  35. 1341    INIT_LIST_HEAD(&driver->clients);  
  36. 1342    /* Walk the adapters that are already present */  
  37. 1343    i2c_for_each_dev(driver, __process_new_driver);  
  38. 1344  
  39. 1345    return 0;  
  40. 1346}  
1327行,调用driver_register注册i2c_driver.driver。参考《 Linux设备模型分析之device_driver(基于3.10.1内核)》对Linux设备模型的分析,在driver_register执行过程中,如果I2C总线上找到了与该驱动匹配的I2C设备,则i2c_driver.probe函数会被调用执行。
1343行,调用i2c_for_each_dev遍历所有已存在的i2c_adapter。该函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:
  1. 1288int i2c_for_each_dev(void *data, int (*fn)(struct device *, void *))  
  2. 1289{  
  3. 1290    int res;  
  4. 1291  
  5. 1292    mutex_lock(&core_lock);  
  6. 1293    res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);  
  7. 1294    mutex_unlock(&core_lock);  
  8. 1295  
  9. 1296    return res;  
  10. 1297}  

1293行,调用bus_for_each_dev,这个函数定义在drivers/base/bus.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 286intbus_for_each_dev(struct bus_type *bus, struct device *start,  
  2. 287            void *data, int (*fn)(struct device *, void *))  
  3. 288{  
  4. 289   struct klist_iter i;  
  5. 290   struct device *dev;  
  6. 291   int error = 0;  
  7. 292  
  8. 293   if (!bus || !bus->p)  
  9. 294       return -EINVAL;  
  10. 295  
  11. 296   klist_iter_init_node(&bus->p->klist_devices, &i,  
  12. 297                 (start ?&start->p->knode_bus : NULL));  
  13. 298   while ((dev = next_device(&i)) && !error)  
  14. 299       error = fn(dev, data);  
  15. 300   klist_iter_exit(&i);  
  16. 301   return error;  
  17. 302}  



我们在《 Linux设备模型分析之device_driver(基于3.10.1内核)》一文中已经分析过这个函数。这里,传递过来的data参数是要注册的i2c_driver,fn参数是__process_new_driver函数,所以我们来看__process_new_driver函数,该函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 1300static int __process_new_driver(structdevice *dev, void *data)  
  2. 1301{  
  3. 1302   if (dev->type != &i2c_adapter_type)  
  4. 1303       return 0;  
  5. 1304   return i2c_do_add_adapter(data, to_i2c_adapter(dev));  
  6. 1305}  



i2c_do_add_adapter函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 957static int i2c_do_add_adapter(structi2c_driver *driver,  
  2. 958                  struct i2c_adapter *adap)  
  3. 959{  
  4. 960   /* Detect supported devices on that bus, and instantiate them */  
  5. 961   i2c_detect(adap, driver);  
  6. 962  
  7. 963   /* Let legacy drivers scan this bus for matching devices */  
  8. 964   if (driver->attach_adapter) {  
  9. 965       dev_warn(&adap->dev, "%s: attach_adapter method isdeprecated\n",  
  10. 966            driver->driver.name);  
  11. 967       dev_warn(&adap->dev, "Please use another way to instantiate"  
  12. 968            "your i2c_client\n");  
  13. 969       /* We ignore the return code; if it fails, too bad */  
  14. 970       driver->attach_adapter(adap);  
  15. 971    }  
  16. 972   return 0;  
  17. 973}  



这个函数我们在分析i2c_adapter的注册过程时已经分析过了,它主要完成i2c_driver与i2c_adapter上的i2c设备的匹配工作,如果匹配成功,初始化并注册对应的i2c_client。

至此,i2c_driver的注册过程我们就清楚了。

 

四、i2c_bus_type分析

i2c_init 函数完成Linux i2c框架的初始化工作,该函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 1429static int __init i2c_init(void)  
  2. 1430{  
  3. 1431   int retval;  
  4. 1432  
  5. 1433   retval = bus_register(&i2c_bus_type);  
  6. 1434   if (retval)  
  7. 1435       return retval;  
  8. 1436#ifdef CONFIG_I2C_COMPAT  
  9. 1437   i2c_adapter_compat_class =class_compat_register("i2c-adapter");  
  10. 1438   if (!i2c_adapter_compat_class) {  
  11. 1439       retval = -ENOMEM;  
  12. 1440       goto bus_err;  
  13. 1441   }  
  14. 1442#endif  
  15. 1443   retval = i2c_add_driver(&dummy_driver);  
  16. 1444   if (retval)  
  17. 1445       goto class_err;  
  18. 1446   return 0;  
  19. 1447  
  20. 1448class_err:  
  21. 1449#ifdef CONFIG_I2C_COMPAT  
  22. 1450   class_compat_unregister(i2c_adapter_compat_class);  
  23. 1451bus_err:  
  24. 1452#endif  
  25. 1453   bus_unregister(&i2c_bus_type);  
  26. 1454   return retval;  
  27. 1455}  



1433行,调用bus_register注册了i2c_bus_type。i2c_bus_tpye定义在drivers/i2c/i2c-core.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 442structbus_type i2c_bus_type = {  
  2. 443   .name       = "i2c",  
  3. 444   .match      = i2c_device_match,  
  4. 445   .probe      = i2c_device_probe,  
  5. 446   .remove     = i2c_device_remove,  
  6. 447   .shutdown   = i2c_device_shutdown,  
  7. 448   .pm     = &i2c_device_pm_ops,  
  8. 449};  



其类型是bus_type,所以它代表i2c总线。我们来关注一下i2c_device_match和i2c_device_probe函数。

i2c_device_match函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 72static int i2c_device_match(struct device *dev, struct device_driver*drv)  
  2.  73{  
  3. 74    struct i2c_client   *client = i2c_verify_client(dev);  
  4. 75    struct i2c_driver   *driver;  
  5.  76  
  6. 77    if (!client)  
  7. 78        return 0;  
  8.  79  
  9. 80    /* Attempt an OF style match*/  
  10. 81    if(of_driver_match_device(dev, drv))  
  11. 82        return 1;  
  12.  83  
  13. 84    /* Then ACPI style match */  
  14. 85    if(acpi_driver_match_device(dev, drv))  
  15. 86        return 1;  
  16.  87  
  17. 88    driver = to_i2c_driver(drv);  
  18. 89    /* match on an id table ifthere is one */  
  19. 90    if (driver->id_table)  
  20. 91        returni2c_match_id(driver->id_table, client) != NULL;  
  21.  92  
  22. 93    return 0;  
  23.  94}  



88行,将device_driver转换为i2c_driver。

90-91行,如果driver->id_table不为空,则调用i2c_match_id函数,该函数定义在drivers/i2c/i2c-core.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 61static const struct i2c_device_id *i2c_match_id(const structi2c_device_id *id,  
  2. 62                        const struct i2c_client *client)  
  3.  63{  
  4. 64    while (id->name[0]) {  
  5. 65        if(strcmp(client->name, id->name) == 0)  
  6. 66            return id;  
  7. 67        id++;  
  8. 68    }  
  9. 69    return NULL;  
  10.  70}  



可以看到,如果client->name和id->name相同,则匹配成功,返回id。如果返回NULL,则表示匹配失败。

分析到这里,我们要回顾一下分析Linux设备模型时涉及到的一个函数driver_match_device,该函数定义在drivers/base/base.h文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 116static inline intdriver_match_device(struct device_driver *drv,  
  2. 117                      struct device *dev)  
  3. 118{  
  4. 119   return drv->bus->match ? drv->bus->match(dev, drv) : 1;  
  5. 120}  



当进行device和device_driver的匹配时,会调用这个函数,该函数返回值为0,表示match失败。只有match成功时,才会进一步进行probe。

可以看到,如果drv->bus->match存在,会调用drv->bus->match(dev,drv)。所以,当i2c设备(i2c_client)和i2c驱动(i2c_driver)进行匹配操作时,就会调用i2c_device_match函数。

在分析i2c_device_probe函数之前,我们要回顾一下分析Linux设备模型时涉及到的一个函数driver_probe_device,device_driver探测支持的device时,会调用到这个函数,它又会进一步调用really_probe函数,really_probe函数定义在drivers/base/dd.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 265static int really_probe(struct device*dev, struct device_driver *drv)  
  2. 266{  
  3. 267   int ret = 0;  
  4. 268  
  5. 269   atomic_inc(&probe_count);  
  6. 270   pr_debug("bus: '%s': %s: probing driver %s with device %s\n",  
  7. 271        drv->bus->name, __func__, drv->name, dev_name(dev));  
  8. 272   WARN_ON(!list_empty(&dev->devres_head));  
  9. 273  
  10. 274   dev->driver = drv;  
  11. 275  
  12. 276   /* If using pinctrl, bind pins now before probing */  
  13. 277   ret = pinctrl_bind_pins(dev);  
  14. 278   if (ret)  
  15. 279       goto probe_failed;  
  16. 280  
  17. 281   if (driver_sysfs_add(dev)) {  
  18. 282       printk(KERN_ERR "%s: driver_sysfs_add(%s) failed\n",  
  19. 283            __func__, dev_name(dev));  
  20. 284       goto probe_failed;  
  21. 285   }  
  22. 286  
  23. 287   if (dev->bus->probe) {  
  24. 288       ret = dev->bus->probe(dev);  
  25. 289       if (ret)  
  26. 290            goto probe_failed;  
  27. 291   } else if (drv->probe) {  
  28. 292       ret = drv->probe(dev);  
  29. 293       if (ret)  
  30. 294            goto probe_failed;  
  31. 295   }  
  32. 296  
  33. 297   driver_bound(dev);  
  34. 298   ret = 1;  
  35. 299   pr_debug("bus: '%s': %s: bound device %s to driver %s\n",  
  36. 300        drv->bus->name, __func__, dev_name(dev), drv->name);  
  37. 301   goto done;  
  38. 302  
  39. 303probe_failed:  
  40. 304   devres_release_all(dev);  
  41. 305   driver_sysfs_remove(dev);  
  42. 306   dev->driver = NULL;  
  43. 307   dev_set_drvdata(dev, NULL);  
  44. 308  
  45. 309   if (ret == -EPROBE_DEFER) {  
  46. 310       /* Driver requested deferred probing */  
  47. 311       dev_info(dev, "Driver %s requests probe deferral\n",drv->name);  
  48. 312       driver_deferred_probe_add(dev);  
  49. 313   } else if (ret != -ENODEV && ret != -ENXIO) {  
  50. 314       /* driver matched but the probe failed */  
  51. 315       printk(KERN_WARNING  
  52. 316               "%s: probe of %s failedwith error %d\n",  
  53. 317               drv->name, dev_name(dev),ret);  
  54. 318   } else {  
  55. 319       pr_debug("%s: probe of %s rejects match %d\n",  
  56. 320               drv->name, dev_name(dev),ret);  
  57. 321   }  
  58. 322   /* 
  59. 323    * Ignore errors returned by ->probe so that the next driver can try 
  60. 324    * its luck. 
  61. 325    */  
  62. 326   ret = 0;  
  63. 327done:  
  64. 328   atomic_dec(&probe_count);  
  65. 329   wake_up(&probe_waitqueue);  
  66. 330   return ret;  
  67. 331}  



这个函数我们现在需要关注的是287-295行,如果dev->bus->probe存在,则调用dev->bus->probe(dev),如果dev->bus->probe不存在,并且drv->probe存在,才会调用drv->probe(dev)。所以,对于i2c设备和i2c驱动,探测设备时会优先调用i2c_bus_type.probe函数。而i2c_bus_type.probe即i2c_device_probe会转而调用i2c_driver.probe函数。

现在我们可以来看i2c_device_probe函数了,它定义在drivers/i2c/i2c-core.c文件中,其内容如下:


[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 233staticint i2c_device_probe(struct device *dev)  
  2. 234{  
  3. 235   struct i2c_client   *client =i2c_verify_client(dev);  
  4. 236   struct i2c_driver   *driver;  
  5. 237   int status;  
  6. 238  
  7. 239   if (!client)  
  8. 240       return 0;  
  9. 241  
  10. 242   driver = to_i2c_driver(dev->driver);  
  11. 243   if (!driver->probe || !driver->id_table)  
  12. 244       return -ENODEV;  
  13. 245   client->driver = driver;  
  14. 246   if (!device_can_wakeup(&client->dev))  
  15. 247       device_init_wakeup(&client->dev,  
  16. 248                    client->flags &I2C_CLIENT_WAKE);  
  17. 249   dev_dbg(dev, "probe\n");  
  18. 250  
  19. 251   status = driver->probe(client, i2c_match_id(driver->id_table,client));  
  20. 252   if (status) {  
  21. 253       client->driver = NULL;  
  22. 254        i2c_set_clientdata(client, NULL);  
  23. 255    }  
  24. 256   return status;  
  25. 257}  



242行,取得i2c_driver。

243行,如果i2c_driver没有定义probe或者i2c_driver没有定义id_table,则直接退出。所以我们在写i2c驱动时,必须定义i2c_driver.probe和i2c_driver.id_table。

251行,调用i2c_driver.probe。这时,我们的i2c驱动程序定义的probe函数就会执行。

阅读(2463) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~