2014-07-24 08:52:43 +02:00
|
|
|
/** @file
|
|
|
|
Sample to provide TempRamInitParams data.
|
|
|
|
|
|
|
|
Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:04:09 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2014-07-24 08:52:43 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
|
|
|
|
GLOBAL_REMOVE_IF_UNREFERENCED CONST UINT32 TempRamInitParams[4] = {
|
|
|
|
((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchAddress) + FixedPcdGet32 (PcdFlashMicroCodeOffset)),
|
|
|
|
((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchRegionSize) - FixedPcdGet32 (PcdFlashMicroCodeOffset)),
|
|
|
|
FixedPcdGet32 (PcdFlashCodeCacheAddress),
|
|
|
|
FixedPcdGet32 (PcdFlashCodeCacheSize)
|
|
|
|
};
|