From: Sunmi Lee Date: Mon, 11 Jun 2018 07:51:35 +0000 (+0900) Subject: [COMMON] fimc-is2: Added new features to support updated setfile X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=89f793a7c4cf7f8e2071f47edaf8f35ac1d87357;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [COMMON] fimc-is2: Added new features to support updated setfile From the version of TUNING_PARAM_VER is 0x14027432, scaler setfile structures is going to changed. - New features were added - UVSP and CAC of mc-scaler - Scaler coefficients and clamp for bchs can be adjusted by setfile Change-Id: I4eeabe5ccedfeb66eb2b2148c240f4e18b0c0946 Signed-off-by: Sunmi Lee --- diff --git a/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-djag.h b/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-djag.h index 56a2ad87ef04..b15129f814c5 100644 --- a/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-djag.h +++ b/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-djag.h @@ -73,4 +73,7 @@ struct djag_setfile_contents { struct djag_cp_config cp_cfg; }; +struct djag_wb_thres_cfg { + u32 dither_wb_thres; +}; #endif diff --git a/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-mcscaler-v2.h b/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-mcscaler-v2.h index a7c93ea5d361..663e8efa98ec 100644 --- a/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-mcscaler-v2.h +++ b/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-mcscaler-v2.h @@ -14,6 +14,7 @@ #include "fimc-is-hw-control.h" #include "fimc-is-hw-tdnr.h" #include "fimc-is-hw-djag.h" +#include "fimc-is-hw-uvsp-cac.h" #include "fimc-is-interface-library.h" #include "fimc-is-param.h" @@ -86,6 +87,23 @@ struct scaler_setfile_contents { u32 c_gain11; }; +struct scaler_coef_cfg { + u32 ratio_x8_8; /* x8/8, Ratio <= 1048576 (~8:8) */ + u32 ratio_x7_8; /* x7/8, 1048576 < Ratio <= 1198373 (~7/8) */ + u32 ratio_x6_8; /* x6/8, 1198373 < Ratio <= 1398101 (~6/8) */ + u32 ratio_x5_8; /* x5/8, 1398101 < Ratio <= 1677722 (~5/8) */ + u32 ratio_x4_8; /* x4/8, 1677722 < Ratio <= 2097152 (~4/8) */ + u32 ratio_x3_8; /* x3/8, 2097152 < Ratio <= 2796203 (~3/8) */ + u32 ratio_x2_8; /* x2/8, 2796203 < Ratio <= 4194304 (~2/8) */ +}; + +struct scaler_bchs_clamp_cfg { + u32 y_max; + u32 y_min; + u32 c_max; + u32 c_min; +}; + struct hw_api_scaler_setfile { u32 setfile_version; @@ -106,6 +124,13 @@ struct hw_api_scaler_setfile { */ struct djag_setfile_contents djag[MAX_SCALINGRATIOINDEX_DEPENDED_CONFIGS]; #endif +#if (MCSC_USE_TUNING_PARAM_VER >= 0x14027432) + struct scaler_bchs_clamp_cfg sc_bchs[2]; /* 0: YUV_FULL, 1: YUV_NARROW */ + struct scaler_coef_cfg sc_coef; + struct djag_wb_thres_cfg djag_wb[MAX_SCALINGRATIOINDEX_DEPENDED_CONFIGS]; + struct cac_setfile_contents cac; + struct uvsp_setfile_contents uvsp; +#endif }; /** diff --git a/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-uvsp-cac.h b/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-uvsp-cac.h new file mode 100644 index 000000000000..773f32fb25f9 --- /dev/null +++ b/drivers/media/platform/exynos/fimc-is2/hardware/fimc-is-hw-uvsp-cac.h @@ -0,0 +1,108 @@ +/* + * Samsung EXYNOS FIMC-IS (Imaging Subsystem) driver + * + * Copyright (C) 2018 Samsung Electronics Co., Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef FIMC_IS_HW_UVSP_H +#define FIMC_IS_HW_UVSP_H + +#define CAC_MAX_NI_DEPENDED_CFG (9) +struct cac_map_thr_cfg { + u32 map_spot_thr_l; + u32 map_spot_thr_h; + u32 map_spot_thr; + u32 map_spot_nr_strength; +}; + +struct cac_crt_thr_cfg { + u32 crt_color_thr_l_dot; + u32 crt_color_thr_l_line; + u32 crt_color_thr_h; +}; + +struct cac_cfg_by_ni { + struct cac_map_thr_cfg map_thr_cfg; + struct cac_crt_thr_cfg crt_thr_cfg; +}; + +struct cac_setfile_contents { + u32 ni_max; + u32 ni_vals[CAC_MAX_NI_DEPENDED_CFG]; + struct cac_cfg_by_ni cfgs[CAC_MAX_NI_DEPENDED_CFG]; +}; + +#define UVSP_MAX_NI_DEPENDED_CONFIGS (6) +struct uvsp_radial_cfg { + u32 radial_biquad_shift; + + bool radial_random_en; + u32 radial_random_power; + bool radial_refine_en; + u32 radial_refine_luma_min; + u32 radial_refine_denom; + + bool radial_alpha_gain_add_en; + bool radial_alpha_green_en; + u32 radial_alpha_r; + u32 radial_alpha_g; + u32 radial_alpha_b; +}; + +struct uvsp_pedestal_cfg { + u32 pedestal_r; + u32 pedestal_g; + u32 pedestal_b; +}; + +struct uvsp_offset_cfg { + u32 ofs_r; + u32 ofs_g; + u32 ofs_b; +}; + +struct uvsp_desat_cfg { + bool desat_ctrl_en; + bool desat_ctrl_singleSide; + u32 desat_ctrl_luma_offset; + u32 desat_ctrl_gain_offset; + + u32 desat_y_shift; + u32 desat_y_luma_max; + u32 desat_u_low; + u32 desat_u_high; + u32 desat_v_low; + u32 desat_v_high; +}; + +struct uvsp_rgb2yuv_coef_cfg { + u32 r2y_coef_00; + u32 r2y_coef_01; + u32 r2y_coef_02; + u32 r2y_coef_10; + u32 r2y_coef_11; + u32 r2y_coef_12; + u32 r2y_coef_20; + u32 r2y_coef_21; + u32 r2y_coef_22; + u32 r2y_coef_shift; +}; + +struct uvsp_cfg_by_ni { + struct uvsp_radial_cfg radial_cfg; + struct uvsp_pedestal_cfg pedestal_cfg; + struct uvsp_offset_cfg offset_cfg; + struct uvsp_desat_cfg desat_cfg; + struct uvsp_rgb2yuv_coef_cfg rgb2yuv_coef_cfg; +}; + +struct uvsp_setfile_contents { + u32 ni_max; + u32 ni_vals[UVSP_MAX_NI_DEPENDED_CONFIGS]; + struct uvsp_cfg_by_ni cfgs[UVSP_MAX_NI_DEPENDED_CONFIGS]; +}; +#endif