[U-Boot] [PATCH 19/31] i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c

Heiko Schocher hs at denx.de
Wed Jan 28 11:54:22 CET 2009


Hello Joakim,

Joakim Tjernlund wrote:
>> This patch adds the possibility to call a board specific
>> i2c bus reset routine for the fsl_i2c bus driver, and adds
>> this option for the keymile kmeter1 board.
>>
[...]
>> @@ -478,6 +480,17 @@ static int i2c_make_abort (void)
>>   */
>>  void i2c_init_board(void)
>>  {
>> +#if defined(CONFIG_KMETER1)
>> +   struct fsl_i2c *dev;
>> +   dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET);
>> +   uchar   dummy;
>> +
>> +   out_8 (&dev->cr, (I2C_CR_MSTA));
>> +   out_8 (&dev->cr, (I2C_CR_MEN | I2C_CR_MSTA));
>> +   dummy = in_8(&dev->dr);
>> +   out_8 (&dev->cr, (I2C_CR_MEN));
> 
> Are you sure this will generate a proper I2C reset sequence? We also
> use this controller and I tried to do it too but didn't find a way. I then 
> asked
> Freescale and they could not come up with a solution either.

?
This routine is decribed in the MPC8260ERM.pdf §15.5.7 on page 15-23
from Freescale!

15.5.7 Generation of SCLn when SDAn is Negated
It is sometimes necessary to force the I2C module to become the I2C bus master out of reset and drive
SCLn (even though SDAn may already be driven, which indicates that the bus is busy). This can occur
when a system reset does not cause all I2C devices to be reset. Thus, SDAn can be negated low by another
I2C device while this I2C module is coming out of reset and will stay low indefinitely. The following
procedure can be used to force this I2C module to generate SCLn so that the device driving SDAn can
finish its transaction:
1. Disable the I2C module and set the master bit by setting I2CnCR to 0x20.
2. Enable the I2C module by setting I2CnCR to 0xA0.
3. Read I2CnDR.
4. Return the I2C module to slave mode by setting I2CnCR to 0x80.

And this worked fine on our Hardware ...

bye
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany


More information about the U-Boot mailing list