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_QPLANE_HOST_H 8 #define __IA_CSS_QPLANE_HOST_H 9 10 #include <ia_css_frame_public.h> 11 #include <ia_css_binary.h> 12 13 #if 0 14 /* Cannot be included, since sh_css_internal.h is too generic 15 * e.g. for FW generation. 16 */ 17 #include "sh_css_internal.h" /* sh_css_sp_pipeline */ 18 #endif 19 20 #include "ia_css_qplane_types.h" 21 #include "ia_css_qplane_param.h" 22 23 int ia_css_qplane_config(struct sh_css_isp_qplane_isp_config *to, 24 const struct ia_css_qplane_configuration *from, 25 unsigned int size); 26 27 int ia_css_qplane_configure(const struct sh_css_sp_pipeline *pipe, 28 const struct ia_css_binary *binary, 29 const struct ia_css_frame_info *from); 30 31 #endif /* __IA_CSS_QPLANE_HOST_H */ 32