/* SPDX-License-Identifier: GPL-2.0 */ /* * Support for Intel Camera Imaging ISP subsystem. * Copyright (c) 2015, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ /* For MIPI_PORT0_ID to MIPI_PORT2_ID */ #include "system_global.h" #ifndef __IA_CSS_INPUT_PORT_H #define __IA_CSS_INPUT_PORT_H /* @file * This file contains information about the possible input ports for CSS */ /* Backward compatible for CSS API 2.0 only * TO BE REMOVED when all drivers move to CSS API 2.1 */ #define IA_CSS_CSI2_PORT_4LANE … #define IA_CSS_CSI2_PORT_1LANE … #define IA_CSS_CSI2_PORT_2LANE … /* The CSI2 interface supports 2 types of compression or can * be run without compression. */ enum ia_css_csi2_compression_type { … }; struct ia_css_csi2_compression { … }; /* Input port structure. */ struct ia_css_input_port { … }; #endif /* __IA_CSS_INPUT_PORT_H */