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_BNR_PARAM_H 8 #define __IA_CSS_BNR_PARAM_H 9 10 #include "type_support.h" 11 12 /* BNR (Bayer Noise Reduction) */ 13 struct sh_css_isp_bnr_params { 14 s32 gain_all; 15 s32 gain_dir; 16 s32 threshold_low; 17 s32 threshold_width_log2; 18 s32 threshold_width; 19 s32 clip; 20 }; 21 22 #endif /* __IA_CSS_BNR_PARAM_H */ 23