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_YNR2_PARAM_H 8 #define __IA_CSS_YNR2_PARAM_H 9 10 #include "type_support.h" 11 12 /* YNR (Y Noise Reduction), YEE (Y Edge Enhancement) */ 13 struct sh_css_isp_yee2_params { 14 s32 edge_sense_gain_0; 15 s32 edge_sense_gain_1; 16 s32 corner_sense_gain_0; 17 s32 corner_sense_gain_1; 18 }; 19 20 /* Fringe Control */ 21 struct sh_css_isp_fc_params { 22 s32 gain_exp; 23 u16 coring_pos_0; 24 u16 coring_pos_1; 25 u16 coring_neg_0; 26 u16 coring_neg_1; 27 s32 gain_pos_0; 28 s32 gain_pos_1; 29 s32 gain_neg_0; 30 s32 gain_neg_1; 31 s32 crop_pos_0; 32 s32 crop_pos_1; 33 s32 crop_neg_0; 34 s32 crop_neg_1; 35 }; 36 37 #endif /* __IA_CSS_YNR2_PARAM_H */ 38