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_DE2_PARAM_H 8 #define __IA_CSS_DE2_PARAM_H 9 10 #include "type_support.h" 11 12 /* Reuse DE1 params and extend them */ 13 #include "../de_1.0/ia_css_de_param.h" 14 15 /* DE (Demosaic) */ 16 struct sh_css_isp_ecd_params { 17 s32 zip_strength; 18 s32 fc_strength; 19 s32 fc_debias; 20 }; 21 22 #endif /* __IA_CSS_DE2_PARAM_H */ 23