1 /* 2 * Copyright 2023 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 #ifndef _FSL_SOC_MIPI_DSI_H_ 7 #define _FSL_SOC_MIPI_DSI_H_ 8 9 #include "fsl_common.h" 10 11 /*! 12 * @addtogroup soc_mipi_dsi 13 * @{ 14 */ 15 16 /******************************************************************************* 17 * Definitions 18 ******************************************************************************/ 19 20 /* Component ID definition, used by tools. */ 21 #ifndef FSL_COMPONENT_ID 22 #define FSL_COMPONENT_ID "platform.drivers.soc_mipi_dsi" 23 #endif 24 25 /*! @name Driver version */ 26 /*@{*/ 27 /*! @brief Driver version 2.0.0. */ 28 #define FSL_SOC_MIPI_DSI_DRIVER_VERSION (MAKE_VERSION(2, 0, 0)) 29 30 /* PLL VCO output frequency max value is 1.5GHz, VCO output is (refClk / CN ) * CM. */ 31 #define DSI_DPHY_PLL_VCO_MAX 1500000000U 32 #define DSI_DPHY_PLL_VCO_MIN 640000000U 33 /*@}*/ 34 35 /******************************************************************************* 36 * API 37 ******************************************************************************/ 38 39 #ifdef __cplusplus 40 extern "C" { 41 #endif 42 43 #ifdef __cplusplus 44 } 45 #endif 46 47 /*! 48 * @} 49 */ 50 51 #endif /* _FSL_SOC_MIPI_DSI_H_ */ 52