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_TDF_HOST_H
8 #define __IA_CSS_TDF_HOST_H
9 
10 #include "ia_css_tdf_types.h"
11 #include "ia_css_tdf_param.h"
12 
13 void
14 ia_css_tdf_vmem_encode(
15     struct ia_css_isp_tdf_vmem_params *to,
16     const struct ia_css_tdf_config *from,
17     size_t size);
18 
19 void
20 ia_css_tdf_encode(
21     struct ia_css_isp_tdf_dmem_params *to,
22     const struct ia_css_tdf_config *from,
23     size_t size);
24 
25 void
26 ia_css_tdf_debug_dtrace(
27     const struct ia_css_tdf_config *config, unsigned int level)
28 ;
29 
30 #endif /* __IA_CSS_TDF_HOST_H */
31