diff options
author | Marc Jones <marc.jones@se-eng.com> | 2015-07-21 17:15:25 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-07-21 19:49:41 +0200 |
commit | 477d3284f755acbdcda9a2eebd86cd220b651635 (patch) | |
tree | 746a46f651480abacb7192565c5bd314f4feab40 | |
parent | f92a1891510e8087ee5df4f04ee7163957f89e77 (diff) | |
download | coreboot-477d3284f755acbdcda9a2eebd86cd220b651635.tar.xz |
Revert "northbridge/amd/pi: Add support for memory settings"
This is breaking the build right now. Reapply once the correct headers are in place.
This reverts commit 406effd59075cab212c5bf9c1a12759c8fad50a4.
Change-Id: I34b8717820ed58b462d4e7793711ee98fb8b882f
Reviewed-on: http://review.coreboot.org/11020
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | src/northbridge/amd/pi/agesawrapper.c | 15 | ||||
-rw-r--r-- | src/northbridge/amd/pi/def_callouts.c | 3 |
2 files changed, 0 insertions, 18 deletions
diff --git a/src/northbridge/amd/pi/agesawrapper.c b/src/northbridge/amd/pi/agesawrapper.c index e716f9bc88..255b31d4c8 100644 --- a/src/northbridge/amd/pi/agesawrapper.c +++ b/src/northbridge/amd/pi/agesawrapper.c @@ -26,9 +26,6 @@ #include <heapManager.h> #include <northbridge/amd/pi/agesawrapper.h> #include <northbridge/amd/pi/BiosCallOuts.h> -#include <PlatformMemoryConfiguration.h> - -extern const PSO_ENTRY PlatformMemoryConfiguration[]; VOID FchInitS3LateRestore (IN FCH_DATA_BLOCK *FchDataPtr); VOID FchInitS3EarlyRestore (IN FCH_DATA_BLOCK *FchDataPtr); @@ -139,18 +136,6 @@ AGESA_STATUS agesawrapper_amdinitpost(void) AmdCreateStruct (&AmdParamStruct); PostParams = (AMD_POST_PARAMS *)AmdParamStruct.NewStructPtr; - /* - * A PlatformMemoryConfiguration[] table must be added in the - * mainboard folder to any boards that need the memory configuation - * settings altered from the standard settings. Examples of boards - * requiring this change might be boards with soldered down memory, - * or boards that use a non-standard memory clock routing scheme - * There are PlatformMemoryConfiguration[] tables in many existing - * mainboards that can be used as an example. - */ - if (PlatformMemoryConfiguration[0] != PSO_END) - PostParams->MemConfig.PlatformMemoryConfiguration = (PSO_ENTRY *)PlatformMemoryConfiguration; - // Do not use IS_ENABLED here. CONFIG_GFXUMA should always have a value. Allow // the compiler to flag the error if CONFIG_GFXUMA is not set. PostParams->MemConfig.UmaMode = CONFIG_GFXUMA ? UMA_AUTO : UMA_NONE; diff --git a/src/northbridge/amd/pi/def_callouts.c b/src/northbridge/amd/pi/def_callouts.c index 389742cb09..8a4472ccc4 100644 --- a/src/northbridge/amd/pi/def_callouts.c +++ b/src/northbridge/amd/pi/def_callouts.c @@ -27,9 +27,6 @@ #include "agesawrapper.h" #include "BiosCallOuts.h" #include "dimmSpd.h" -#include <PlatformMemoryConfiguration.h> - -const PSO_ENTRY __attribute__((weak)) PlatformMemoryConfiguration[] = { PSO_END }; AGESA_STATUS GetBiosCallout (UINT32 Func, UINT32 Data, VOID *ConfigPtr) { |