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_HOST_H 8 #define __IA_CSS_DP_HOST_H 9 10 #include "ia_css_dp_types.h" 11 #include "ia_css_dp_param.h" 12 13 extern const struct ia_css_dp_config default_dp_config; 14 15 /* ISP2401 */ 16 extern const struct ia_css_dp_config default_dp_10bpp_config; 17 18 void 19 ia_css_dp_encode( 20 struct sh_css_isp_dp_params *to, 21 const struct ia_css_dp_config *from, 22 unsigned int size); 23 24 void 25 ia_css_dp_dump( 26 const struct sh_css_isp_dp_params *dp, 27 unsigned int level); 28 29 void 30 ia_css_dp_debug_dtrace( 31 const struct ia_css_dp_config *config, 32 unsigned int level); 33 34 void 35 ia_css_init_dp_state( 36 void/*struct sh_css_isp_dp_vmem_state*/ * state, 37 size_t size); 38 39 #endif /* __IA_CSS_DP_HOST_H */ 40