SecRamInitData.c 557 B

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