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_CTC_HOST_H 8 #define __IA_CSS_CTC_HOST_H 9 10 #include "sh_css_params.h" 11 12 #include "ia_css_ctc_param.h" 13 #include "ia_css_ctc_table.host.h" 14 15 extern const struct ia_css_ctc_config default_ctc_config; 16 17 void 18 ia_css_ctc_vamem_encode( 19 struct sh_css_isp_ctc_vamem_params *to, 20 const struct ia_css_ctc_table *from, 21 unsigned int size); 22 23 void 24 ia_css_ctc_debug_dtrace( 25 const struct ia_css_ctc_config *config, unsigned int level) 26 ; 27 28 #endif /* __IA_CSS_CTC_HOST_H */ 29