[coreboot-gerrit] New patch to review for coreboot: a145841 asus/m5a88-v: Fix southbridge init

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Fri Oct 17 15:44:06 CEST 2014


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7104

-gerrit

commit a1458416041a96b44d995fbd3be7164d603b9210
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Fri Oct 17 16:44:48 2014 +0300

    asus/m5a88-v: Fix southbridge init
    
    This amdfam10 board was by mistake modified with commit
    
       b6f3da4 AGESA CIMx: Move late init out of get_bus_conf()
    
    Change-Id: I8edf6f7f4cc635d31e7e485e3f6de57ef8ed7b1e
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 src/mainboard/asus/m5a88-v/get_bus_conf.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/mainboard/asus/m5a88-v/get_bus_conf.c b/src/mainboard/asus/m5a88-v/get_bus_conf.c
index 3a9133c..f90c6b8 100644
--- a/src/mainboard/asus/m5a88-v/get_bus_conf.c
+++ b/src/mainboard/asus/m5a88-v/get_bus_conf.c
@@ -27,6 +27,9 @@
 #include <cpu/amd/multicore.h>
 #endif
 #include <cpu/amd/amdfam10_sysconf.h>
+#if CONFIG_AMD_SB_CIMX
+#include <sb_cimx.h>
+#endif
 
 /* Global variables for MB layouts and these will be shared by irqtable mptable
 * and acpi_tables busnum is default.
@@ -132,4 +135,7 @@ void get_bus_conf(void)
 #endif
 	apicid_sb800 = apicid_base + 0;
 
+#if CONFIG_AMD_SB_CIMX
+	sb_Late_Post();
+#endif
 }



More information about the coreboot-gerrit mailing list