diff options
author | Leif Lindholm <leif.lindholm@linaro.org> | 2018-02-08 19:21:23 +0000 |
---|---|---|
committer | Leif Lindholm <leif.lindholm@linaro.org> | 2018-02-09 09:29:49 +0000 |
commit | 327e14208451f1f97932b3e9e8a44fcc1c9ea8f8 (patch) | |
tree | 05ca32c7454dbd451c848448d7db0560f7a5e667 /Silicon | |
parent | 69f992e8543128df4e40ae6d7418e6dab8b6a8fa (diff) | |
download | edk2-platforms-327e14208451f1f97932b3e9e8a44fcc1c9ea8f8.tar.xz |
Platform/(AMD|LeMaker|SoftIron), Silicon/AMD: drop unused PcdCacheEnabled
PcdCacheEnabled was never useful for these platforms, but they copied it
over from other platforms used as templates.
Delete it here to keep the platforms building once the Pcd is removed
from EmbeddedPkg.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Diffstat (limited to 'Silicon')
-rw-r--r-- | Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLib.inf | 3 | ||||
-rw-r--r-- | Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLibSec.inf | 3 | ||||
-rw-r--r-- | Silicon/AMD/Styx/Library/AmdStyxLib/StyxMem.c | 6 |
3 files changed, 1 insertions, 11 deletions
diff --git a/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLib.inf b/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLib.inf index 6b7481ec6d..3a38f294eb 100644 --- a/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLib.inf +++ b/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLib.inf @@ -53,9 +53,6 @@ [Ppis]
gArmMpCoreInfoPpiGuid
-[FeaturePcd]
- gEmbeddedTokenSpaceGuid.PcdCacheEnable
-
[Pcd]
gArmTokenSpaceGuid.PcdSystemMemoryBase
gArmTokenSpaceGuid.PcdSystemMemorySize
diff --git a/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLibSec.inf b/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLibSec.inf index b313d4baad..b24ffd469a 100644 --- a/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLibSec.inf +++ b/Silicon/AMD/Styx/Library/AmdStyxLib/AmdStyxLibSec.inf @@ -49,9 +49,6 @@ [Guids]
gAmdStyxMpCoreInfoGuid ## CONSUMER
-[FeaturePcd]
- gEmbeddedTokenSpaceGuid.PcdCacheEnable
-
[Ppis]
gArmMpCoreInfoPpiGuid
diff --git a/Silicon/AMD/Styx/Library/AmdStyxLib/StyxMem.c b/Silicon/AMD/Styx/Library/AmdStyxLib/StyxMem.c index 3b82132d08..479a40627d 100644 --- a/Silicon/AMD/Styx/Library/AmdStyxLib/StyxMem.c +++ b/Silicon/AMD/Styx/Library/AmdStyxLib/StyxMem.c @@ -78,11 +78,7 @@ ArmPlatformGetVirtualMemoryMap ( return;
}
- if (FeaturePcdGet(PcdCacheEnable) == TRUE) {
- CacheAttributes = DDR_ATTRIBUTES_CACHED;
- } else {
- CacheAttributes = DDR_ATTRIBUTES_UNCACHED;
- }
+ CacheAttributes = DDR_ATTRIBUTES_CACHED;
DEBUG ((EFI_D_ERROR, " Memory Map\n------------------------------------------------------------------------\n"));
DEBUG ((EFI_D_ERROR, "Description : START - END [ SIZE ] { ATTR }\n"));
|