Hi Jacob, On Mon, 11 Oct 2010 16:10:35 -0700, jacob.jun.pan@xxxxxxxxxxxxxxx wrote: > From: Jacob Pan <jacob.jun.pan@xxxxxxxxxxxxxxx> > > If the address of a given device is already provided by platform init > code, e.g. from system firmware, there is no need to call the driver's > detect() function for finding the matching address from the driver's > address list. > > Avoiding such detection might save boot time. i2c_detect() is a no-op if adapter->class is 0, and if you have platform init data describing the chips on your I2C adapter then you certainly don't want to set the adapter class to anything other than 0. So I'd rather avoid optimizing a case which isn't supposed to happen in the first place. The only optimization which I think would be valuable is checking the class before allocating the temporary i2c_client structure. I'll send a patch doing that in a minute. > > Signed-off-by: Jacob Pan <jacob.jun.pan@xxxxxxxxxxxxxxx> > --- > drivers/i2c/i2c-core.c | 32 ++++++++++++++++++++++++++++++++ > 1 files changed, 32 insertions(+), 0 deletions(-) > > diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c > index 6649176..e4f7feb 100644 > --- a/drivers/i2c/i2c-core.c > +++ b/drivers/i2c/i2c-core.c > @@ -1499,6 +1499,31 @@ static int i2c_detect_address(struct i2c_client *temp_client, > return 0; > } > > +static int i2c_scan_board_info(struct i2c_adapter *adapter, struct i2c_driver *driver) > +{ > + struct i2c_devinfo *devinfo; > + int ret = -ENODEV; > + > + down_read(&__i2c_board_lock); > + list_for_each_entry(devinfo, &__i2c_board_list, list) { > + if (!strncmp(devinfo->board_info.type, driver->driver.name, > + I2C_NAME_SIZE)) { This is wrong anyway. Comparing device names with driver names only works in rare cases and shouldn't be relied upon. > + dev_info(&adapter->dev, "found i2c board info %s\n", > + driver->driver.name); > + if (devinfo->board_info.addr) { > + ret = 0; > + goto scan_exit; > + } > + } > + } > + > +scan_exit: > + up_read(&__i2c_board_lock); > + > + return ret; > +} > + > + > static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver) > { > const unsigned short *address_list; > @@ -1506,6 +1531,13 @@ static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver) > int i, err = 0; > int adap_id = i2c_adapter_id(adapter); > > + /* There is no need to detect i2c address if board info is provided */ > + if (!i2c_scan_board_info(adapter, driver)) { > + dev_info(&adapter->dev, "Skip address detection for %s\n", > + driver->driver.name); > + return 0; > + } > + > address_list = driver->address_list; > if (!driver->detect || !address_list) > return 0; -- Jean Delvare -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html