Commit 8814444e authored by Kuro Chung's avatar Kuro Chung Committed by Robert Foss

drm/bridge: it6505: update usleep_range for RC circuit charge time

The spec of timing between IVDD/OVDD and SYSRTEN is 10ms, but SYSRSTN RC
circuit need at least 25ms for rising time, update for match spec
Signed-off-by: default avatarKuro Chung <kuro.chung@ite.com.tw>
Signed-off-by: default avatarHermes Wu <hermes.wu@ite.com.tw>
Reviewed-by: default avatarRobert Foss <rfoss@kernel.org>
Signed-off-by: default avatarRobert Foss <rfoss@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240604024405.1122488-1-kuro.chung@ite.com.tw
parent 9a8ac1ec
...@@ -2615,7 +2615,7 @@ static int it6505_poweron(struct it6505 *it6505) ...@@ -2615,7 +2615,7 @@ static int it6505_poweron(struct it6505 *it6505)
gpiod_set_value_cansleep(pdata->gpiod_reset, 0); gpiod_set_value_cansleep(pdata->gpiod_reset, 0);
usleep_range(1000, 2000); usleep_range(1000, 2000);
gpiod_set_value_cansleep(pdata->gpiod_reset, 1); gpiod_set_value_cansleep(pdata->gpiod_reset, 1);
usleep_range(10000, 20000); usleep_range(25000, 35000);
} }
it6505->powered = true; it6505->powered = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment