Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 199716
b: refs/heads/master
c: 656b876
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare committed Jun 3, 2010
1 parent 7b3a556 commit cf65b12
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3a89db5f30576654bf1b0036af9b50ed5ab1b6c5
refs/heads/master: 656b8761ab21715eb1a35bb078dfd05e901be4ec
28 changes: 25 additions & 3 deletions trunk/drivers/i2c/i2c-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,27 @@ static int i2c_check_client_addr_validity(const struct i2c_client *client)
return 0;
}

/* And this is a strict address validity check, used when probing. If a
* device uses a reserved address, then it shouldn't be probed. 7-bit
* addressing is assumed, 10-bit address devices are rare and should be
* explicitly enumerated. */
static int i2c_check_addr_validity(unsigned short addr)
{
/*
* Reserved addresses per I2C specification:
* 0x00 General call address / START byte
* 0x01 CBUS address
* 0x02 Reserved for different bus format
* 0x03 Reserved for future purposes
* 0x04-0x07 Hs-mode master code
* 0x78-0x7b 10-bit slave addressing
* 0x7c-0x7f Reserved for future purposes
*/
if (addr < 0x08 || addr > 0x77)
return -EINVAL;
return 0;
}

/**
* i2c_new_device - instantiate an i2c device
* @adap: the adapter managing the device
Expand Down Expand Up @@ -1340,10 +1361,11 @@ static int i2c_detect_address(struct i2c_client *temp_client,
int err;

/* Make sure the address is valid */
if (addr < 0x03 || addr > 0x77) {
err = i2c_check_addr_validity(addr);
if (err) {
dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
addr);
return -EINVAL;
return err;
}

/* Skip if already in use */
Expand Down Expand Up @@ -1446,7 +1468,7 @@ i2c_new_probed_device(struct i2c_adapter *adap,

for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
/* Check address validity */
if (addr_list[i] < 0x03 || addr_list[i] > 0x77) {
if (i2c_check_addr_validity(addr_list[i]) < 0) {
dev_warn(&adap->dev, "Invalid 7-bit address "
"0x%02x\n", addr_list[i]);
continue;
Expand Down

0 comments on commit cf65b12

Please sign in to comment.