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_CROP_PARAM_H
8 #define __IA_CSS_CROP_PARAM_H
9 
10 #include <type_support.h>
11 #include "dma.h"
12 #include "sh_css_internal.h" /* sh_css_crop_pos */
13 
14 /* Crop frame */
15 struct sh_css_isp_crop_isp_config {
16 	u32 width_a_over_b;
17 	struct dma_port_config port_b;
18 };
19 
20 struct sh_css_isp_crop_isp_params {
21 	struct sh_css_crop_pos crop_pos;
22 };
23 
24 #endif /* __IA_CSS_CROP_PARAM_H */
25