Re: [U-Boot] [PATCH v3 1/2] i2c:soft:multi: Support for multiple soft I2C buses at Samsung boards

2012-09-04 Thread Lukasz Majewski
Hi Heiko, > Common definition of I2C_{0|1} I2C buses is provided at . > +/* Multi I2C busses handling */ > +#ifdef CONFIG_SOFT_I2C_MULTI_BUS > +enum { > + I2C_0, > + I2C_1, > +}; > + I've got a second thought about this numbering. In the case of Trats: I2C_0 in reality is I2C_5 (this fr

[U-Boot] [PATCH v3 1/2] i2c:soft:multi: Support for multiple soft I2C buses at Samsung boards

2012-09-03 Thread Lukasz Majewski
Support for multiple soft I2C buses. The goal is achieved by defining get_multi_{sda|scl}_pin functions to switch between multiple "soft" I2C buses. Common definition of I2C_{0|1} I2C buses is provided at . TEST HW: Samsung's Exynos4210 evt.0.1 - Trats development board Signed-off-by: Luka