From: Armando Visconti Date: Thu, 6 Dec 2012 00:04:18 +0000 (+0000) Subject: designware_i2c.h: Fixed the correct values for SCL low/high time X-Git-Tag: v2013.01-rc2~51 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ea31b7a7be738d7f4048f9fbe20fe02356999d44;p=u-boot designware_i2c.h: Fixed the correct values for SCL low/high time Signed-off-by: Armando Visconti --- diff --git a/drivers/i2c/designware_i2c.h b/drivers/i2c/designware_i2c.h index e004152ac3..0dc8884eda 100644 --- a/drivers/i2c/designware_i2c.h +++ b/drivers/i2c/designware_i2c.h @@ -65,9 +65,9 @@ struct i2c_regs { /* High and low times in different speed modes (in ns) */ #define MIN_SS_SCL_HIGHTIME 4000 -#define MIN_SS_SCL_LOWTIME 5000 -#define MIN_FS_SCL_HIGHTIME 800 -#define MIN_FS_SCL_LOWTIME 1700 +#define MIN_SS_SCL_LOWTIME 4700 +#define MIN_FS_SCL_HIGHTIME 600 +#define MIN_FS_SCL_LOWTIME 1300 #define MIN_HS_SCL_HIGHTIME 60 #define MIN_HS_SCL_LOWTIME 160