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_OB2_HOST_H 8 #define __IA_CSS_OB2_HOST_H 9 10 #include "ia_css_ob2_types.h" 11 #include "ia_css_ob2_param.h" 12 13 extern const struct ia_css_ob2_config default_ob2_config; 14 15 void 16 ia_css_ob2_encode( 17 struct sh_css_isp_ob2_params *to, 18 const struct ia_css_ob2_config *from, 19 unsigned int size); 20 21 #ifndef IA_CSS_NO_DEBUG 22 void 23 ia_css_ob2_dump( 24 const struct sh_css_isp_ob2_params *ob2, 25 unsigned int level); 26 27 void 28 ia_css_ob2_debug_dtrace( 29 const struct ia_css_ob2_config *config, unsigned int level); 30 #endif 31 32 #endif /* __IA_CSS_OB2_HOST_H */ 33