xref: /linux/drivers/staging/media/atomisp/pci/isp/kernels/dp/dp_1.0/ia_css_dp_param.h (revision c771600c6af14749609b49565ffb4cac2959710d) !
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_DP_PARAM_H
8 #define __IA_CSS_DP_PARAM_H
9 
10 #include "type_support.h"
11 #include "bnr/bnr_1.0/ia_css_bnr_param.h"
12 
13 /* DP (Defect Pixel Correction) */
14 struct sh_css_isp_dp_params {
15 	s32 threshold_single;
16 	s32 threshold_2adjacent;
17 	s32 gain;
18 	s32 coef_rr_gr;
19 	s32 coef_rr_gb;
20 	s32 coef_bb_gb;
21 	s32 coef_bb_gr;
22 	s32 coef_gr_rr;
23 	s32 coef_gr_bb;
24 	s32 coef_gb_bb;
25 	s32 coef_gb_rr;
26 };
27 
28 #endif /* __IA_CSS_DP_PARAM_H */
29