Commit af5fdf80 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'i2c-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging

* 'i2c-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging:
  at24: Use timeout also for read
  i2c: Fix userspace_device list corruption
  MAINTAINERS: Add missing i2c files
  i2c/tsl2550: Fix lux value in extended mode
parents 07a6d5a4 4d29196c
...@@ -2562,8 +2562,7 @@ S: Maintained ...@@ -2562,8 +2562,7 @@ S: Maintained
F: Documentation/i2c/ F: Documentation/i2c/
F: drivers/i2c/ F: drivers/i2c/
F: include/linux/i2c.h F: include/linux/i2c.h
F: include/linux/i2c-dev.h F: include/linux/i2c-*.h
F: include/linux/i2c-id.h
I2C-TINY-USB DRIVER I2C-TINY-USB DRIVER
M: Till Harbaum <till@harbaum.org> M: Till Harbaum <till@harbaum.org>
......
...@@ -257,6 +257,7 @@ static DEVICE_ATTR(operating_mode, S_IWUSR | S_IRUGO, ...@@ -257,6 +257,7 @@ static DEVICE_ATTR(operating_mode, S_IWUSR | S_IRUGO,
static ssize_t __tsl2550_show_lux(struct i2c_client *client, char *buf) static ssize_t __tsl2550_show_lux(struct i2c_client *client, char *buf)
{ {
struct tsl2550_data *data = i2c_get_clientdata(client);
u8 ch0, ch1; u8 ch0, ch1;
int ret; int ret;
...@@ -274,6 +275,8 @@ static ssize_t __tsl2550_show_lux(struct i2c_client *client, char *buf) ...@@ -274,6 +275,8 @@ static ssize_t __tsl2550_show_lux(struct i2c_client *client, char *buf)
ret = tsl2550_calculate_lux(ch0, ch1); ret = tsl2550_calculate_lux(ch0, ch1);
if (ret < 0) if (ret < 0)
return ret; return ret;
if (data->operating_mode == 1)
ret *= 5;
return sprintf(buf, "%d\n", ret); return sprintf(buf, "%d\n", ret);
} }
......
...@@ -762,6 +762,7 @@ int i2c_del_adapter(struct i2c_adapter *adap) ...@@ -762,6 +762,7 @@ int i2c_del_adapter(struct i2c_adapter *adap)
{ {
int res = 0; int res = 0;
struct i2c_adapter *found; struct i2c_adapter *found;
struct i2c_client *client, *next;
/* First make sure that this adapter was ever added */ /* First make sure that this adapter was ever added */
mutex_lock(&core_lock); mutex_lock(&core_lock);
...@@ -781,6 +782,16 @@ int i2c_del_adapter(struct i2c_adapter *adap) ...@@ -781,6 +782,16 @@ int i2c_del_adapter(struct i2c_adapter *adap)
if (res) if (res)
return res; return res;
/* Remove devices instantiated from sysfs */
list_for_each_entry_safe(client, next, &userspace_devices, detected) {
if (client->adapter == adap) {
dev_dbg(&adap->dev, "Removing %s at 0x%x\n",
client->name, client->addr);
list_del(&client->detected);
i2c_unregister_device(client);
}
}
/* Detach any active clients. This can't fail, thus we do not /* Detach any active clients. This can't fail, thus we do not
checking the returned value. */ checking the returned value. */
res = device_for_each_child(&adap->dev, NULL, __unregister_client); res = device_for_each_child(&adap->dev, NULL, __unregister_client);
......
...@@ -158,6 +158,7 @@ static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf, ...@@ -158,6 +158,7 @@ static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf,
struct i2c_msg msg[2]; struct i2c_msg msg[2];
u8 msgbuf[2]; u8 msgbuf[2];
struct i2c_client *client; struct i2c_client *client;
unsigned long timeout, read_time;
int status, i; int status, i;
memset(msg, 0, sizeof(msg)); memset(msg, 0, sizeof(msg));
...@@ -183,47 +184,60 @@ static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf, ...@@ -183,47 +184,60 @@ static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf,
if (count > io_limit) if (count > io_limit)
count = io_limit; count = io_limit;
/* Smaller eeproms can work given some SMBus extension calls */
if (at24->use_smbus) { if (at24->use_smbus) {
/* Smaller eeproms can work given some SMBus extension calls */
if (count > I2C_SMBUS_BLOCK_MAX) if (count > I2C_SMBUS_BLOCK_MAX)
count = I2C_SMBUS_BLOCK_MAX; count = I2C_SMBUS_BLOCK_MAX;
status = i2c_smbus_read_i2c_block_data(client, offset, } else {
count, buf); /*
dev_dbg(&client->dev, "smbus read %zu@%d --> %d\n", * When we have a better choice than SMBus calls, use a
count, offset, status); * combined I2C message. Write address; then read up to
return (status < 0) ? -EIO : status; * io_limit data bytes. Note that read page rollover helps us
* here (unlike writes). msgbuf is u8 and will cast to our
* needs.
*/
i = 0;
if (at24->chip.flags & AT24_FLAG_ADDR16)
msgbuf[i++] = offset >> 8;
msgbuf[i++] = offset;
msg[0].addr = client->addr;
msg[0].buf = msgbuf;
msg[0].len = i;
msg[1].addr = client->addr;
msg[1].flags = I2C_M_RD;
msg[1].buf = buf;
msg[1].len = count;
} }
/* /*
* When we have a better choice than SMBus calls, use a combined * Reads fail if the previous write didn't complete yet. We may
* I2C message. Write address; then read up to io_limit data bytes. * loop a few times until this one succeeds, waiting at least
* Note that read page rollover helps us here (unlike writes). * long enough for one entire page write to work.
* msgbuf is u8 and will cast to our needs.
*/ */
i = 0; timeout = jiffies + msecs_to_jiffies(write_timeout);
if (at24->chip.flags & AT24_FLAG_ADDR16) do {
msgbuf[i++] = offset >> 8; read_time = jiffies;
msgbuf[i++] = offset; if (at24->use_smbus) {
status = i2c_smbus_read_i2c_block_data(client, offset,
msg[0].addr = client->addr; count, buf);
msg[0].buf = msgbuf; } else {
msg[0].len = i; status = i2c_transfer(client->adapter, msg, 2);
if (status == 2)
status = count;
}
dev_dbg(&client->dev, "read %zu@%d --> %d (%ld)\n",
count, offset, status, jiffies);
msg[1].addr = client->addr; if (status == count)
msg[1].flags = I2C_M_RD; return count;
msg[1].buf = buf;
msg[1].len = count;
status = i2c_transfer(client->adapter, msg, 2); /* REVISIT: at HZ=100, this is sloooow */
dev_dbg(&client->dev, "i2c read %zu@%d --> %d\n", msleep(1);
count, offset, status); } while (time_before(read_time, timeout));
if (status == 2) return -ETIMEDOUT;
return count;
else if (status >= 0)
return -EIO;
else
return status;
} }
static ssize_t at24_read(struct at24_data *at24, static ssize_t at24_read(struct at24_data *at24,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment