mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
mxc_i2c: finish adding CONFIG_I2C_MULTI_BUS support
Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
This commit is contained in:
parent
96c19bd3ef
commit
9815326d04
1 changed files with 17 additions and 0 deletions
|
@ -416,6 +416,23 @@ static int i2c_idle_bus(void *base)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_I2C_MULTI_BUS
|
||||
unsigned int i2c_get_bus_num(void)
|
||||
{
|
||||
return srdata.curr_i2c_bus;
|
||||
}
|
||||
|
||||
int i2c_set_bus_num(unsigned bus_idx)
|
||||
{
|
||||
if (bus_idx >= ARRAY_SIZE(srdata.i2c_data))
|
||||
return -1;
|
||||
if (!srdata.i2c_data[bus_idx].base)
|
||||
return -1;
|
||||
srdata.curr_i2c_bus = bus_idx;
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
int i2c_read(uchar chip, uint addr, int alen, uchar *buf, int len)
|
||||
{
|
||||
return bus_i2c_read(get_base(), chip, addr, alen, buf, len);
|
||||
|
|
Loading…
Reference in a new issue