drm/amd/display: fix Infoframe byte 28-31 doesn't get written out to register
authorTony Cheng <tony.cheng@amd.com>
Thu, 5 Jan 2017 16:29:27 +0000 (11:29 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 21:08:51 +0000 (17:08 -0400)
Signed-off-by: Tony Cheng <tony.cheng@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c
drivers/gpu/drm/amd/display/dc/inc/hw/stream_encoder.h

index 8156c6a..c510e95 100644 (file)
@@ -137,8 +137,8 @@ static void dce110_update_generic_info_packet(
                REG_WRITE(AFMT_GENERIC_3, *content++);
                REG_WRITE(AFMT_GENERIC_4, *content++);
                REG_WRITE(AFMT_GENERIC_5, *content++);
-               REG_WRITE(AFMT_GENERIC_6, *content);
-               REG_WRITE(AFMT_GENERIC_7, 0);
+               REG_WRITE(AFMT_GENERIC_6, *content++);
+               REG_WRITE(AFMT_GENERIC_7, *content);
        }
 
        if (!REG(AFMT_VBI_PACKET_CONTROL1)) {
index 8b4a304..cb369af 100644 (file)
@@ -19,7 +19,7 @@ struct encoder_info_packet {
        uint8_t hb1;
        uint8_t hb2;
        uint8_t hb3;
-       uint8_t sb[28];
+       uint8_t sb[32];
 };
 
 struct encoder_info_frame {