diff options
author | Vitaly Prosyak | 2019-03-26 23:34:00 +0100 |
---|---|---|
committer | Alex Deucher | 2019-06-22 16:34:09 +0200 |
commit | adb732d66cf13b6c4276b498fab5dc5a09bebce1 (patch) | |
tree | cf79d1ed7c566ccb94295c7b4cbbcdf2b68e7d6c /drivers/gpu/drm/amd/display/modules | |
parent | drm/amd/display: Make sure DSC slice height is divisible by 2 for 4:2:0 color... (diff) | |
download | kernel-qcow2-linux-adb732d66cf13b6c4276b498fab5dc5a09bebce1.tar.gz kernel-qcow2-linux-adb732d66cf13b6c4276b498fab5dc5a09bebce1.tar.xz kernel-qcow2-linux-adb732d66cf13b6c4276b498fab5dc5a09bebce1.zip |
drm/amd/display: Add some tm3dlut flags
Move flags from color_gamma.h to mod_shared.h
and add more options and setting structures
Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Reviewed-by: Aric Cyr <Aric.Cyr@amd.com>
Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Acked-by: Vitaly Prosyak <Vitaly.Prosyak@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/modules')
-rw-r--r-- | drivers/gpu/drm/amd/display/modules/color/color_gamma.h | 12 | ||||
-rw-r--r-- | drivers/gpu/drm/amd/display/modules/inc/mod_shared.h | 37 |
2 files changed, 37 insertions, 12 deletions
diff --git a/drivers/gpu/drm/amd/display/modules/color/color_gamma.h b/drivers/gpu/drm/amd/display/modules/color/color_gamma.h index c56c203abfcb..369953fafadf 100644 --- a/drivers/gpu/drm/amd/display/modules/color/color_gamma.h +++ b/drivers/gpu/drm/amd/display/modules/color/color_gamma.h @@ -82,18 +82,6 @@ struct freesync_hdr_tf_params { unsigned int skip_tm; // skip tm }; -union tm3dlut_flags { - unsigned int raw; - struct { - unsigned int dochroma_scale :1; - unsigned int spec_version :3; - unsigned int less_than_dcip3 :1; - unsigned int exp_shaper_max :6; - unsigned int zero_display_black :1; - unsigned int reseved :20; - } bits; -}; - void setup_x_points_distribution(void); void precompute_pq(void); void precompute_de_pq(void); diff --git a/drivers/gpu/drm/amd/display/modules/inc/mod_shared.h b/drivers/gpu/drm/amd/display/modules/inc/mod_shared.h index b711e7e6c204..5a631854efda 100644 --- a/drivers/gpu/drm/amd/display/modules/inc/mod_shared.h +++ b/drivers/gpu/drm/amd/display/modules/inc/mod_shared.h @@ -45,5 +45,42 @@ enum vrr_packet_type { PACKET_TYPE_VTEM }; +#if defined(CONFIG_DRM_AMD_DC_DCN2_0) +union tm3dlut_internal_flags { + unsigned int raw; + struct { + unsigned int dochroma_scale :1; + unsigned int spec_version :3; + unsigned int use_zero_display_black :1; + unsigned int use_zero_source_black :1; + unsigned int force_display_black :6; + unsigned int apply_display_gamma :1; + unsigned int exp_shaper_max :6; + unsigned int unity3dlut :1; + unsigned int bypass3dlut :1; + unsigned int use3dlut :1; + unsigned int less_than_dcip3 :1; + unsigned int override_lum :1; + unsigned int reseved :8; + } bits; +}; + +enum tm_show_option_internal { + tm_show_option_internal_single_file = 0,/*flags2 not in use*/ + tm_show_option_internal_duplicate_file,/*use flags2*/ + tm_show_option_internal_duplicate_sidebyside/*use flags2*/ +}; + +struct tm3dlut_settings { + unsigned char version; + union tm3dlut_internal_flags flags; + union tm3dlut_internal_flags flags2; + enum tm_show_option_internal option; + unsigned int min_lum;/*multiplied by 100*/ + unsigned int max_lum; + unsigned int min_lum2; + unsigned int max_lum2; +}; +#endif #endif /* MOD_SHARED_H_ */ |