1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef _FSP_INFO_HEADER_H_ 4 #define _FSP_INFO_HEADER_H_ 5 6 #if CONFIG_UDK_VERSION == CONFIG_UDK_2017_VERSION 7 #include <vendorcode/intel/edk2/UDK2017/IntelFsp2Pkg/Include/Guid/FspHeaderFile.h> 8 #elif CONFIG_UDK_VERSION == CONFIG_UDK_202005_VERSION 9 #include <vendorcode/intel/edk2/edk2-stable202005/IntelFsp2Pkg/Include/Guid/FspHeaderFile.h> 10 #elif CONFIG_UDK_VERSION == CONFIG_UDK_202111_VERSION 11 #include <vendorcode/intel/edk2/edk2-stable202111/IntelFsp2Pkg/Include/Guid/FspHeaderFile.h> 12 #elif CONFIG_UDK_VERSION == CONFIG_UDK_202302_VERSION 13 #include <vendorcode/intel/edk2/edk2-stable202302/IntelFsp2Pkg/Include/Guid/FspHeaderFile.h> 14 #else 15 #error "Unknown UDK_VESION!" 16 #endif 17 18 #endif /* _FSP_INFO_HEADER_H_ */ 19