diff options
| author | Michael Burr <michael.burr@logicpd.com> | 2013-09-23 22:35:45 +0000 | 
|---|---|---|
| committer | Heiko Schocher <hs@denx.de> | 2013-10-17 07:20:25 +0200 | 
| commit | e66587495d75ad82c34e9f04af03d3c5741644d3 (patch) | |
| tree | 1d85f260218908d96c9fc6ed0f4e3ab4ae019db4 /include/i2c.h | |
| parent | b089d039b1971fc3abfe1d9bcebd0d35245fb110 (diff) | |
| download | olio-uboot-2014.01-e66587495d75ad82c34e9f04af03d3c5741644d3.tar.xz olio-uboot-2014.01-e66587495d75ad82c34e9f04af03d3c5741644d3.zip | |
i2c: Zynq: Support for TI PCA9548 bus multiplexer
(Interface is not quite the same as Phillips PCA9547.)
Signed-off-by: Michael Burr <michael.burr@logicpd.com>
Cc: Heiko Schocher <hs@denx.de>
Cc: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'include/i2c.h')
| -rw-r--r-- | include/i2c.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/include/i2c.h b/include/i2c.h index 8fd17d190..c1be533d5 100644 --- a/include/i2c.h +++ b/include/i2c.h @@ -135,6 +135,8 @@ extern struct i2c_bus_hose	i2c_bus[];  #define I2C_MUX_PCA9544		{I2C_MUX_PCA9544_ID, "PCA9544A"}  #define I2C_MUX_PCA9547_ID	4  #define I2C_MUX_PCA9547		{I2C_MUX_PCA9547_ID, "PCA9547A"} +#define I2C_MUX_PCA9548_ID	5 +#define I2C_MUX_PCA9548		{I2C_MUX_PCA9548_ID, "PCA9548"}  #endif  #ifndef I2C_SOFT_DECLARATIONS |