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_TYPES_H 8 #define __IA_CSS_RAW_TYPES_H 9 10 #include <ia_css_frame_public.h> 11 #include "sh_css_internal.h" 12 13 /* Raw frame 14 * 15 * ISP block: Raw frame 16 */ 17 18 struct ia_css_raw_configuration { 19 const struct sh_css_sp_pipeline *pipe; 20 const struct ia_css_frame_info *in_info; 21 const struct ia_css_frame_info *internal_info; 22 bool two_ppc; 23 enum atomisp_input_format stream_format; 24 bool deinterleaved; 25 u8 enable_left_padding; 26 }; 27 28 #endif /* __IA_CSS_RAW_TYPES_H */ 29