]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
drm/amd/display: Add bypass case for PQ transfer function
authorAmy Zhang <Amy.Zhang@amd.com>
Thu, 16 Feb 2017 16:04:48 +0000 (11:04 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 21:15:18 +0000 (17:15 -0400)
- Source and destination color space should be the same for
  app control case
- Bypass degamma, regamma, and gamut remap
- Add hdr supported check for info frame

Signed-off-by: Amy Zhang <Amy.Zhang@amd.com>
Reviewed-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/core/dc_resource.c
drivers/gpu/drm/amd/display/dc/dc.h
drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c

index 991828f503aa1336649e8b0f7ceab01989388372..4d556b379524c5b9980307768116ec07ddcef275 100644 (file)
@@ -1675,7 +1675,7 @@ static void set_hdr_static_info_packet(
 
        hdr_metadata = surface->public.hdr_static_ctx;
 
-       if (!hdr_metadata.is_hdr)
+       if (!hdr_metadata.hdr_supported)
                return;
 
        if (dc_is_hdmi_signal(signal)) {
index 13e7134fccb8f2d5b77ddbd0992325c84a441021..71d7dde79ae0d6169cb15d7afe53ef627b09e432 100644 (file)
@@ -186,6 +186,7 @@ enum {
 };
 
 struct dc_hdr_static_metadata {
+       bool hdr_supported;
        bool is_hdr;
 
        /* display chromaticities and white point in units of 0.00001 */
@@ -207,6 +208,7 @@ struct dc_hdr_static_metadata {
 enum dc_transfer_func_type {
        TF_TYPE_PREDEFINED,
        TF_TYPE_DISTRIBUTED_POINTS,
+       TF_TYPE_BYPASS
 };
 
 struct dc_transfer_func_distributed_points {
index 9b6d251a1c22474aaf6b07d2eff0ff3249e9e3b6..9c9183f96e04e41bad6f165f8ea1ae58399c6fe6 100644 (file)
@@ -279,6 +279,8 @@ static bool dce110_set_input_transfer_func(
                        result = false;
                        break;
                }
+       } else if (tf->public.type == TF_TYPE_BYPASS) {
+               ipp->funcs->ipp_set_degamma(ipp, IPP_DEGAMMA_MODE_BYPASS);
        } else {
                /*TF_TYPE_DISTRIBUTED_POINTS - Not supported in DCE 11*/
                result = false;
@@ -428,7 +430,8 @@ static bool dce110_translate_regamma_to_hw_format(const struct dc_transfer_func
        int32_t segment_start, segment_end;
        uint32_t i, j, k, seg_distr[16], increment, start_index, hw_points;
 
-       if (output_tf == NULL || regamma_params == NULL)
+       if (output_tf == NULL || regamma_params == NULL ||
+                       output_tf->type == TF_TYPE_BYPASS)
                return false;
 
        arr_points = regamma_params->arr_points;