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_PARAM_H
8 #define __IA_CSS_QPLANE_PARAM_H
9 
10 #include <type_support.h>
11 #include "dma.h"
12 
13 /* qplane channel */
14 struct sh_css_isp_qplane_isp_config {
15 	u32 width_a_over_b;
16 	struct dma_port_config port_b;
17 	u32 inout_port_config;
18 	u32 input_needs_raw_binning;
19 	u32 format; /* enum ia_css_frame_format */
20 };
21 
22 #endif /* __IA_CSS_QPLANE_PARAM_H */
23