xref: /linux/drivers/staging/media/atomisp/pci/isp/kernels/dpc2/ia_css_dpc2.host.h (revision c771600c6af14749609b49565ffb4cac2959710d)
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_DPC2_HOST_H
8 #define __IA_CSS_DPC2_HOST_H
9 
10 #include "ia_css_dpc2_types.h"
11 #include "ia_css_dpc2_param.h"
12 
13 void
14 ia_css_dpc2_encode(
15     struct ia_css_isp_dpc2_params *to,
16     const struct ia_css_dpc2_config *from,
17     size_t size);
18 
19 void
20 ia_css_init_dpc2_state(
21     void *state,
22     size_t size);
23 
24 #ifndef IA_CSS_NO_DEBUG
25 void
26 ia_css_dpc2_debug_dtrace(
27     const struct ia_css_dpc2_config *config,
28     unsigned int level);
29 #endif
30 
31 #endif /* __IA_CSS_DPC2_HOST_H */
32