1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Support for Intel Camera Imaging ISP subsystem. 4 * Copyright (c) 2015, Intel Corporation. 5 */ 6 7 #ifndef __IA_CSS_BNR2_2_PARAM_H 8 #define __IA_CSS_BNR2_2_PARAM_H 9 10 #include "type_support.h" 11 12 /* BNR (Bayer Noise Reduction) ISP parameters */ 13 struct sh_css_isp_bnr2_2_params { 14 s32 d_var_gain_r; 15 s32 d_var_gain_g; 16 s32 d_var_gain_b; 17 s32 d_var_gain_slope_r; 18 s32 d_var_gain_slope_g; 19 s32 d_var_gain_slope_b; 20 s32 n_var_gain_r; 21 s32 n_var_gain_g; 22 s32 n_var_gain_b; 23 s32 n_var_gain_slope_r; 24 s32 n_var_gain_slope_g; 25 s32 n_var_gain_slope_b; 26 s32 dir_thres; 27 s32 dir_thres_w; 28 s32 var_offset_coef; 29 s32 dir_gain; 30 s32 detail_gain; 31 s32 detail_gain_divisor; 32 s32 detail_level_offset; 33 s32 d_var_th_min; 34 s32 d_var_th_max; 35 s32 n_var_th_min; 36 s32 n_var_th_max; 37 }; 38 39 #endif /* __IA_CSS_BNR2_2_PARAM_H */ 40