projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a07a94
)
drm: bridge: dw-hdmi: Fix overflow workaround for Rockchip SoCs
author
Jonas Karlman
<jonas@kwiboo.se>
Wed, 20 Feb 2019 07:52:31 +0000
(07:52 +0000)
committer
Andrzej Hajda
<a.hajda@samsung.com>
Fri, 12 Apr 2019 06:15:55 +0000
(08:15 +0200)
The Rockchip RK3288 SoC (v2.00a) and RK3328/RK3399 SoCs (v2.11a) have
also been identified as needing this workaround with a single iteration.
Fixes:
be41fc55f1aa
("drm: bridge: dw-hdmi: Handle overflow workaround based on device version")
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Tested-by: Heiko Stueber <heiko@sntech.de>
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/AM3PR03MB0966818FAAAE6192FF4ED11AAC7D0@AM3PR03MB0966.eurprd03.prod.outlook.com
drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
index
db76132
..
b74ccb6
100644
(file)
--- a/
drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
+++ b/
drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
@@
-1800,6
+1800,8
@@
static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
* iteration for others.
* The Amlogic Meson GX SoCs (v2.01a) have been identified as needing
* the workaround with a single iteration.
+ * The Rockchip RK3288 SoC (v2.00a) and RK3328/RK3399 SoCs (v2.11a) have
+ * been identified as needing the workaround with a single iteration.
*/
switch (hdmi->version) {
@@
-1808,7
+1810,9
@@
static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
break;
case 0x131a:
case 0x132a:
+ case 0x200a:
case 0x201a:
+ case 0x211a:
case 0x212a:
count = 1;
break;