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_UDS_PARAM_H 8 #define __IA_CSS_UDS_PARAM_H 9 10 #include "sh_css_uds.h" 11 12 /* uds (Up and Down scaling) */ 13 struct ia_css_uds_config { 14 struct sh_css_crop_pos crop_pos; 15 struct sh_css_uds_info uds; 16 }; 17 18 struct sh_css_sp_uds_params { 19 struct sh_css_crop_pos crop_pos; 20 struct sh_css_uds_info uds; 21 }; 22 23 #endif /* __IA_CSS_UDS_PARAM_H */ 24