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_RAW_HOST_H 8 #define __IA_CSS_RAW_HOST_H 9 10 #include "ia_css_binary.h" 11 12 #include "ia_css_raw_types.h" 13 #include "ia_css_raw_param.h" 14 15 int ia_css_raw_config(struct sh_css_isp_raw_isp_config *to, 16 const struct ia_css_raw_configuration *from, 17 unsigned int size); 18 19 int ia_css_raw_configure(const struct sh_css_sp_pipeline *pipe, 20 const struct ia_css_binary *binary, 21 const struct ia_css_frame_info *in_info, 22 const struct ia_css_frame_info *internal_info, 23 bool two_ppc, 24 bool deinterleaved); 25 26 #endif /* __IA_CSS_RAW_HOST_H */ 27