1 From fa7de9a76b91e1a2c4fe623e5b6fbbb704b76c5f Mon Sep 17 00:00:00 2001
2 From: Dave Stevenson <dave.stevenson@raspberrypi.com>
3 Date: Tue, 10 Nov 2020 11:21:56 +0000
4 Subject: [PATCH 0264/1085] drm/panel/raspberrypi-ts: Insert delay before
5 polling for startup state
7 In switching to the hardware I2C controller there is an issue
8 where we seem to not get back the correct state from the Pi
10 Insert a delay before polling to avoid this condition.
12 Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
14 drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c | 1 +
15 1 file changed, 1 insertion(+)
17 --- a/drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c
18 +++ b/drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c
19 @@ -298,6 +298,7 @@ static int rpi_touchscreen_prepare(struc
22 rpi_touchscreen_i2c_write(ts, REG_POWERON, 1);
23 + usleep_range(20000, 25000);
24 /* Wait for nPWRDWN to go low to indicate poweron is done. */
25 for (i = 0; i < 100; i++) {
26 if (rpi_touchscreen_i2c_read(ts, REG_PORTB) & 1)