diff options
author | Michael Lawnick <ml.lawnick@gmx.de> | 2010-08-11 12:21:02 -0400 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2010-08-11 12:21:02 -0400 |
commit | 0826374bff57411d239f2fcb15da3c35af0a93cd (patch) | |
tree | 514d4361cfc9cc546306612de3464def7fe8a7cd /include/linux/i2c.h | |
parent | dafc50d141c27959dbd3a1cfe9857a86d23402a7 (diff) |
i2c: Multiplexed I2C bus core support
Add multiplexed bus core support. I2C multiplexer and switches
like pca954x get instantiated as new adapters per port.
Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
Acked-by: Rodolfo Giometti <giometti@linux.it>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'include/linux/i2c.h')
-rw-r--r-- | include/linux/i2c.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 798bad8741e4..4bae0b72ed3c 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
@@ -37,6 +37,7 @@ | |||
37 | #include <linux/of.h> /* for struct device_node */ | 37 | #include <linux/of.h> /* for struct device_node */ |
38 | 38 | ||
39 | extern struct bus_type i2c_bus_type; | 39 | extern struct bus_type i2c_bus_type; |
40 | extern struct device_type i2c_adapter_type; | ||
40 | 41 | ||
41 | /* --- General options ------------------------------------------------ */ | 42 | /* --- General options ------------------------------------------------ */ |
42 | 43 | ||
@@ -383,6 +384,13 @@ static inline void i2c_set_adapdata(struct i2c_adapter *dev, void *data) | |||
383 | dev_set_drvdata(&dev->dev, data); | 384 | dev_set_drvdata(&dev->dev, data); |
384 | } | 385 | } |
385 | 386 | ||
387 | static inline int i2c_parent_is_i2c_adapter(const struct i2c_adapter *adapter) | ||
388 | { | ||
389 | return adapter->dev.parent != NULL | ||
390 | && adapter->dev.parent->bus == &i2c_bus_type | ||
391 | && adapter->dev.parent->type == &i2c_adapter_type; | ||
392 | } | ||
393 | |||
386 | /* Adapter locking functions, exported for shared pin cases */ | 394 | /* Adapter locking functions, exported for shared pin cases */ |
387 | void i2c_lock_adapter(struct i2c_adapter *); | 395 | void i2c_lock_adapter(struct i2c_adapter *); |
388 | void i2c_unlock_adapter(struct i2c_adapter *); | 396 | void i2c_unlock_adapter(struct i2c_adapter *); |