diff options
| author | Armando Visconti <armando.visconti@st.com> | 2012-12-06 00:04:18 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2012-12-11 13:17:32 -0700 | 
| commit | ea31b7a7be738d7f4048f9fbe20fe02356999d44 (patch) | |
| tree | 72b03fc0b499ed632123eb44b66419cc24802e29 /drivers/i2c | |
| parent | 5b8439bbdea9ad8c120cda408a97ed2e55e943d3 (diff) | |
| download | olio-uboot-2014.01-ea31b7a7be738d7f4048f9fbe20fe02356999d44.tar.xz olio-uboot-2014.01-ea31b7a7be738d7f4048f9fbe20fe02356999d44.zip | |
designware_i2c.h: Fixed the correct values for SCL low/high time
Signed-off-by: Armando Visconti <armando.visconti@st.com>
Diffstat (limited to 'drivers/i2c')
| -rw-r--r-- | drivers/i2c/designware_i2c.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/i2c/designware_i2c.h b/drivers/i2c/designware_i2c.h index e004152ac..0dc8884ed 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 |