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_EED1_8_HOST_H
8 #define __IA_CSS_EED1_8_HOST_H
9 
10 #include "ia_css_eed1_8_types.h"
11 #include "ia_css_eed1_8_param.h"
12 
13 void
14 ia_css_eed1_8_vmem_encode(
15     struct eed1_8_vmem_params *to,
16     const struct ia_css_eed1_8_config *from,
17     size_t size);
18 
19 void
20 ia_css_eed1_8_encode(
21     struct eed1_8_dmem_params *to,
22     const struct ia_css_eed1_8_config *from,
23     size_t size);
24 
25 void
26 ia_css_init_eed1_8_state(
27     void *state,
28     size_t size);
29 
30 #ifndef IA_CSS_NO_DEBUG
31 void
32 ia_css_eed1_8_debug_dtrace(
33     const struct ia_css_eed1_8_config *config,
34     unsigned int level);
35 #endif
36 
37 #endif /* __IA_CSS_EED1_8_HOST_H */
38