mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-07-23 23:33:01 +00:00
i2c: mxs: Fix TIMING2 register value
According to FSL, the value in the TIMING2 register shall be 0x00300030 instead of what's written in the datasheet. This new value correlates with older STMP36xx datasheet. Issues were detected in Linux when this register was misconfigured, so write this correct value. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Stefano Babic <sbabic@denx.de> Cc: Fabio Estevam <fabio.estevam@freescale.com>
This commit is contained in:
parent
a157e0d5f6
commit
aff36ea92e
1 changed files with 2 additions and 2 deletions
|
@ -267,8 +267,8 @@ int i2c_set_bus_speed(unsigned int speed)
|
|||
writel(spd->timing0, &i2c_regs->hw_i2c_timing0);
|
||||
writel(spd->timing1, &i2c_regs->hw_i2c_timing1);
|
||||
|
||||
writel((0x0015 << I2C_TIMING2_BUS_FREE_OFFSET) |
|
||||
(0x000d << I2C_TIMING2_LEADIN_COUNT_OFFSET),
|
||||
writel((0x0030 << I2C_TIMING2_BUS_FREE_OFFSET) |
|
||||
(0x0030 << I2C_TIMING2_LEADIN_COUNT_OFFSET),
|
||||
&i2c_regs->hw_i2c_timing2);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue