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_COPY_OUTPUT_HOST_H
8 #define __IA_CSS_COPY_OUTPUT_HOST_H
9 
10 #include "type_support.h"
11 #include "ia_css_binary.h"
12 
13 #include "ia_css_copy_output_param.h"
14 
15 void
16 ia_css_copy_output_config(
17     struct sh_css_isp_copy_output_isp_config      *to,
18     const struct ia_css_copy_output_configuration *from,
19     unsigned int size);
20 
21 int ia_css_copy_output_configure(const struct ia_css_binary     *binary,
22 				 bool enable);
23 
24 #endif /* __IA_CSS_COPY_OUTPUT_HOST_H */
25