]> git.baikalelectronics.ru Git - kernel.git/commit
i2c: fix bus recovery stop mode timing
authorRussell King <rmk+kernel@armlinux.org.uk>
Sun, 15 Dec 2019 16:39:05 +0000 (16:39 +0000)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 9 Jan 2020 21:21:08 +0000 (22:21 +0100)
commitbbe824149d26d57bad29c2e8253de1a483b700ee
tree8b3afdb2fa09a0a1ae660a53f8799bc3239746f4
parent86184096fcce6272d81e2c7eaacd73fd1d3d156c
i2c: fix bus recovery stop mode timing

The I2C specification states that tsu:sto for standard mode timing must
be at minimum 4us. Pictographically, this is:

SCL: ____/~~~~~~~~~
SDA: _________/~~~~
       ->|    |<- 4us minimum

We are currently waiting 2.5us between asserting SCL and SDA, which is
in violation of the standard. Adjust the timings to ensure that we meet
what is stipulated as the minimum timings to ensure that all devices
correctly interpret the STOP bus transition.

This is more important than trying to generate a square wave with even
duty cycle.

Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/i2c-core-base.c