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_YNR_PARAM_H
8 #define __IA_CSS_YNR_PARAM_H
9 
10 #include "type_support.h"
11 
12 /* YNR (Y Noise Reduction) */
13 struct sh_css_isp_ynr_params {
14 	s32 threshold;
15 	s32 gain_all;
16 	s32 gain_dir;
17 	s32 threshold_cb;
18 	s32 threshold_cr;
19 };
20 
21 /* YEE (Y Edge Enhancement) */
22 struct sh_css_isp_yee_params {
23 	s32 dirthreshold_s;
24 	s32 dirthreshold_g;
25 	s32 dirthreshold_width_log2;
26 	s32 dirthreshold_width;
27 	s32 detailgain;
28 	s32 coring_s;
29 	s32 coring_g;
30 	s32 scale_plus_s;
31 	s32 scale_plus_g;
32 	s32 scale_minus_s;
33 	s32 scale_minus_g;
34 	s32 clip_plus_s;
35 	s32 clip_plus_g;
36 	s32 clip_minus_s;
37 	s32 clip_minus_g;
38 	s32 Yclip;
39 };
40 
41 #endif /* __IA_CSS_YNR_PARAM_H */
42