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_CNR2_PARAM_H
8 #define __IA_CSS_CNR2_PARAM_H
9 
10 #include "type_support.h"
11 
12 /* CNR (Chroma Noise Reduction) */
13 struct sh_css_isp_cnr_params {
14 	s32 coring_u;
15 	s32 coring_v;
16 	s32 sense_gain_vy;
17 	s32 sense_gain_vu;
18 	s32 sense_gain_vv;
19 	s32 sense_gain_hy;
20 	s32 sense_gain_hu;
21 	s32 sense_gain_hv;
22 };
23 
24 #endif /* __IA_CSS_CNR2_PARAM_H */
25