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. */ 28 #define FSL_SOC_MIPI_DSI_DRIVER_VERSION (MAKE_VERSION(2, 0, 0)) 29 /*@}*/ 30 31 /* PLL VCO output frequency max value is 1.5GHz, VCO output is (refClk / CN ) * CM. */ 32 #define DSI_DPHY_PLL_VCO_MAX 1500000000U 33 #define DSI_DPHY_PLL_VCO_MIN 640000000U 34 /******************************************************************************* 35 * API 36 ******************************************************************************/ 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 42 #ifdef __cplusplus 43 } 44 #endif 45 46 /*! 47 * @} 48 */ 49 50 #endif /* FSL_SOC_MIPI_DSI_H_ */ 51