|
@@ -41,6 +41,15 @@
|
|
/* All functions assume that Tsi108 I2C block is the only master on the bus */
|
|
/* All functions assume that Tsi108 I2C block is the only master on the bus */
|
|
/* I2C read helper function */
|
|
/* I2C read helper function */
|
|
|
|
|
|
|
|
+void i2c_init(int speed, int slaveaddr)
|
|
|
|
+{
|
|
|
|
+ /*
|
|
|
|
+ * The TSI108 has a fixed I2C clock rate and doesn't support slave
|
|
|
|
+ * operation. This function only exists as a stub to fit into the
|
|
|
|
+ * U-Boot I2C API.
|
|
|
|
+ */
|
|
|
|
+}
|
|
|
|
+
|
|
static int i2c_read_byte (
|
|
static int i2c_read_byte (
|
|
uint i2c_chan, /* I2C channel number: 0 - main, 1 - SDC SPD */
|
|
uint i2c_chan, /* I2C channel number: 0 - main, 1 - SDC SPD */
|
|
uchar chip_addr,/* I2C device address on the bus */
|
|
uchar chip_addr,/* I2C device address on the bus */
|