projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a8ac1e
)
drm/bridge: it6505: update usleep_range for RC circuit charge time
author
Kuro Chung
<kuro.chung@ite.com.tw>
Tue, 4 Jun 2024 02:44:05 +0000
(10:44 +0800)
committer
Robert Foss
<rfoss@kernel.org>
Mon, 10 Jun 2024 14:36:45 +0000
(16:36 +0200)
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: Kuro Chung <kuro.chung@ite.com.tw>
Signed-off-by: Hermes Wu <hermes.wu@ite.com.tw>
Reviewed-by: Robert Foss <rfoss@kernel.org>
Signed-off-by: Robert Foss <rfoss@kernel.org>
Link:
https://patchwork.freedesktop.org/patch/msgid/20240604024405.1122488-1-kuro.chung@ite.com.tw
drivers/gpu/drm/bridge/ite-it6505.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/bridge/ite-it6505.c
b/drivers/gpu/drm/bridge/ite-it6505.c
index cd1b5057ddfb476929c0c7f0336e7677c1a6a6d7..1e1c06fdf206457a71c24deb03d12678649f6aad 100644
(file)
--- a/
drivers/gpu/drm/bridge/ite-it6505.c
+++ b/
drivers/gpu/drm/bridge/ite-it6505.c
@@
-2615,7
+2615,7
@@
static int it6505_poweron(struct it6505 *it6505)
gpiod_set_value_cansleep(pdata->gpiod_reset, 0);
usleep_range(1000, 2000);
gpiod_set_value_cansleep(pdata->gpiod_reset, 1);
- usleep_range(
10000, 20
000);
+ usleep_range(
25000, 35
000);
}
it6505->powered = true;