[coreboot-gerrit] Patch set updated for coreboot: 0b4f876 vendorcode/amd/agesa/f16kb: Enable support for AM1 socket

Sergej Ivanov (getinaks@gmail.com) gerrit at coreboot.org
Mon Apr 6 15:08:24 CEST 2015


Sergej Ivanov (getinaks at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9291

-gerrit

commit 0b4f87647e1cf5745c13a15039d4c3a669202472
Author: Sergej Ivanov <getinaks at gmail.com>
Date:   Fri Apr 3 16:53:49 2015 +0300

    vendorcode/amd/agesa/f16kb: Enable support for AM1 socket
    
    Add check for AGESA_AM1_HACK to disable package check.
    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 will support AM1
    
    Change-Id: I99e9cec5cd558087092cf195094df20489f6d3b5
    Signed-off-by: Sergej Ivanov <getinaks at gmail.com>
---
 src/vendorcode/amd/agesa/f16kb/Proc/Mem/Ps/mp.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

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..7132ce9 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_AGESA_AM1_HACK))
+    return TRUE;
+  else
+    return FALSE;
 }
 
 /* -----------------------------------------------------------------------------*/



More information about the coreboot-gerrit mailing list