aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/linux-yocto-4.14.71/4202-drm-amd-display-Move-dp_pixel_encoding_type-to-strea.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/linux-yocto-4.14.71/4202-drm-amd-display-Move-dp_pixel_encoding_type-to-strea.patch')
-rw-r--r--common/recipes-kernel/linux/linux-yocto-4.14.71/4202-drm-amd-display-Move-dp_pixel_encoding_type-to-strea.patch87
1 files changed, 87 insertions, 0 deletions
diff --git a/common/recipes-kernel/linux/linux-yocto-4.14.71/4202-drm-amd-display-Move-dp_pixel_encoding_type-to-strea.patch b/common/recipes-kernel/linux/linux-yocto-4.14.71/4202-drm-amd-display-Move-dp_pixel_encoding_type-to-strea.patch
new file mode 100644
index 00000000..b8083a02
--- /dev/null
+++ b/common/recipes-kernel/linux/linux-yocto-4.14.71/4202-drm-amd-display-Move-dp_pixel_encoding_type-to-strea.patch
@@ -0,0 +1,87 @@
+From 4c0fc5f66b68f053eb80b5af79c5997a29b000de Mon Sep 17 00:00:00 2001
+From: Eric Bernstein <eric.bernstein@amd.com>
+Date: Tue, 3 Apr 2018 11:23:11 -0400
+Subject: [PATCH 4202/5725] drm/amd/display: Move dp_pixel_encoding_type to
+ stream_encoder include
+
+Signed-off-by: Eric Bernstein <eric.bernstein@amd.com>
+Reviewed-by: Nikola Cornij <Nikola.Cornij@amd.com>
+Acked-by: Harry Wentland <harry.wentland@amd.com>
+---
+ drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h | 17 -----------------
+ .../gpu/drm/amd/display/dc/inc/hw/stream_encoder.h | 19 +++++++++++++++++++
+ 2 files changed, 19 insertions(+), 17 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h b/drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h
+index 9fe7302..cf7433e 100644
+--- a/drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h
++++ b/drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h
+@@ -186,23 +186,6 @@ enum controller_dp_test_pattern {
+ CONTROLLER_DP_TEST_PATTERN_COLORSQUARES_CEA
+ };
+
+-enum dp_pixel_encoding_type {
+- DP_PIXEL_ENCODING_TYPE_RGB444 = 0x00000000,
+- DP_PIXEL_ENCODING_TYPE_YCBCR422 = 0x00000001,
+- DP_PIXEL_ENCODING_TYPE_YCBCR444 = 0x00000002,
+- DP_PIXEL_ENCODING_TYPE_RGB_WIDE_GAMUT = 0x00000003,
+- DP_PIXEL_ENCODING_TYPE_Y_ONLY = 0x00000004,
+- DP_PIXEL_ENCODING_TYPE_YCBCR420 = 0x00000005
+-};
+-
+-enum dp_component_depth {
+- DP_COMPONENT_PIXEL_DEPTH_6BPC = 0x00000000,
+- DP_COMPONENT_PIXEL_DEPTH_8BPC = 0x00000001,
+- DP_COMPONENT_PIXEL_DEPTH_10BPC = 0x00000002,
+- DP_COMPONENT_PIXEL_DEPTH_12BPC = 0x00000003,
+- DP_COMPONENT_PIXEL_DEPTH_16BPC = 0x00000004
+-};
+-
+ enum dc_lut_mode {
+ LUT_BYPASS,
+ LUT_RAM_A,
+diff --git a/drivers/gpu/drm/amd/display/dc/inc/hw/stream_encoder.h b/drivers/gpu/drm/amd/display/dc/inc/hw/stream_encoder.h
+index 5c21336..cfa7ec9 100644
+--- a/drivers/gpu/drm/amd/display/dc/inc/hw/stream_encoder.h
++++ b/drivers/gpu/drm/amd/display/dc/inc/hw/stream_encoder.h
+@@ -29,11 +29,29 @@
+ #define STREAM_ENCODER_H_
+
+ #include "audio_types.h"
++#include "hw_shared.h"
+
+ struct dc_bios;
+ struct dc_context;
+ struct dc_crtc_timing;
+
++enum dp_pixel_encoding_type {
++ DP_PIXEL_ENCODING_TYPE_RGB444 = 0x00000000,
++ DP_PIXEL_ENCODING_TYPE_YCBCR422 = 0x00000001,
++ DP_PIXEL_ENCODING_TYPE_YCBCR444 = 0x00000002,
++ DP_PIXEL_ENCODING_TYPE_RGB_WIDE_GAMUT = 0x00000003,
++ DP_PIXEL_ENCODING_TYPE_Y_ONLY = 0x00000004,
++ DP_PIXEL_ENCODING_TYPE_YCBCR420 = 0x00000005
++};
++
++enum dp_component_depth {
++ DP_COMPONENT_PIXEL_DEPTH_6BPC = 0x00000000,
++ DP_COMPONENT_PIXEL_DEPTH_8BPC = 0x00000001,
++ DP_COMPONENT_PIXEL_DEPTH_10BPC = 0x00000002,
++ DP_COMPONENT_PIXEL_DEPTH_12BPC = 0x00000003,
++ DP_COMPONENT_PIXEL_DEPTH_16BPC = 0x00000004
++};
++
+ struct encoder_info_frame {
+ /* auxiliary video information */
+ struct dc_info_packet avi;
+@@ -138,6 +156,7 @@ struct stream_encoder_funcs {
+
+ void (*set_avmute)(
+ struct stream_encoder *enc, bool enable);
++
+ };
+
+ #endif /* STREAM_ENCODER_H_ */
+--
+2.7.4
+