aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/bridge/synopsys/dw-hdmi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
index db761329a1e3..b74ccb6a24c2 100644
--- 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)
1800 * iteration for others. 1800 * iteration for others.
1801 * The Amlogic Meson GX SoCs (v2.01a) have been identified as needing 1801 * The Amlogic Meson GX SoCs (v2.01a) have been identified as needing
1802 * the workaround with a single iteration. 1802 * the workaround with a single iteration.
1803 * The Rockchip RK3288 SoC (v2.00a) and RK3328/RK3399 SoCs (v2.11a) have
1804 * been identified as needing the workaround with a single iteration.
1803 */ 1805 */
1804 1806
1805 switch (hdmi->version) { 1807 switch (hdmi->version) {
@@ -1808,7 +1810,9 @@ static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
1808 break; 1810 break;
1809 case 0x131a: 1811 case 0x131a:
1810 case 0x132a: 1812 case 0x132a:
1813 case 0x200a:
1811 case 0x201a: 1814 case 0x201a:
1815 case 0x211a:
1812 case 0x212a: 1816 case 0x212a:
1813 count = 1; 1817 count = 1;
1814 break; 1818 break;