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_OUTPUT_PARAM_H 8 #define __IA_CSS_OUTPUT_PARAM_H 9 10 #include <type_support.h> 11 #include "dma.h" 12 #include "ia_css_frame_comm.h" /* ia_css_frame_sp_info */ 13 14 /* output frame */ 15 struct sh_css_isp_output_isp_config { 16 u32 width_a_over_b; 17 u32 height; 18 u32 enable; 19 struct ia_css_frame_sp_info info; 20 struct dma_port_config port_b; 21 }; 22 23 struct sh_css_isp_output_params { 24 u8 enable_hflip; 25 u8 enable_vflip; 26 }; 27 28 #endif /* __IA_CSS_OUTPUT_PARAM_H */ 29