1 /** @file 2 Sample to provide TempRamInitParams data. 3 4 Copyright (c) 2014, Intel Corporation. All rights reserved.<BR> 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 7 **/ 8 9 #include <Library/PcdLib.h> 10 11 GLOBAL_REMOVE_IF_UNREFERENCED CONST UINT32 TempRamInitParams[4] = { 12 ((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchAddress) + FixedPcdGet32 (PcdFlashMicroCodeOffset)), 13 ((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchRegionSize) - FixedPcdGet32 (PcdFlashMicroCodeOffset)), 14 FixedPcdGet32 (PcdFlashCodeCacheAddress), 15 FixedPcdGet32 (PcdFlashCodeCacheSize) 16 }; 17