Sergej Ivanov (getinaks@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9291
-gerrit
commit d0f77232c93a1a5b0b3571923a0a1441ac801844 Author: Sergej Ivanov getinaks@gmail.com Date: Fri Apr 3 16:53:49 2015 +0300
vendorcode/amd/agesa/f16kb: Enable support for AM1 socket
Adds option FORCE_AM1_SOCKET_SUPPORT to disable package type mismatch check between cpu and northbridge. Default agesa for kabini doesn't know about AM1 socket so it returns FALSE, that stops memory config code. With this hack current agesa version supports the AM1 socket.
Change-Id: I99e9cec5cd558087092cf195094df20489f6d3b5 Signed-off-by: Sergej Ivanov getinaks@gmail.com --- src/cpu/amd/agesa/family16kb/Kconfig | 11 +++++++++++ src/vendorcode/amd/agesa/f16kb/Proc/Mem/Ps/mp.c | 5 ++++- 2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/src/cpu/amd/agesa/family16kb/Kconfig b/src/cpu/amd/agesa/family16kb/Kconfig index d36652b..b360dd6 100644 --- a/src/cpu/amd/agesa/family16kb/Kconfig +++ b/src/cpu/amd/agesa/family16kb/Kconfig @@ -62,4 +62,15 @@ config HIGH_SCRATCH_MEMORY_SIZE # Assume the maximum size of stack as (0xA0000 - 0x30000 + 0x1000) default 0xA1000
+config FORCE_AM1_SOCKET_SUPPORT + bool + default n + help + Force AGESA to ignore package type mismatch between CPU and northbridge + in memory code. This enables Socket AM1 support with current AGESA + version for Kabini platform. + Enable this option only if you have Socket AM1 board. + Note that the AGESA release shipped with coreboot does not officially + support the AM1 socket. Selecting that option might be damage your hardware. + endif diff --git a/src/vendorcode/amd/agesa/f16kb/Proc/Mem/Ps/mp.c b/src/vendorcode/amd/agesa/f16kb/Proc/Mem/Ps/mp.c index 348f704..b4a60a1 100644 --- a/src/vendorcode/amd/agesa/f16kb/Proc/Mem/Ps/mp.c +++ b/src/vendorcode/amd/agesa/f16kb/Proc/Mem/Ps/mp.c @@ -489,7 +489,10 @@ MemPIsIdSupported ( return TRUE; } } - return FALSE; + if (IS_ENABLED(CONFIG_FORCE_AM1_SOCKET_SUPPORT)) + return TRUE; + else + return FALSE; }
/* -----------------------------------------------------------------------------*/