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@gmail.com>
Reviewed-on: http://review.coreboot.org/7104
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Kyösti Mälkki 2014-10-17 16:44:48 +03:00
parent de72d439bf
commit 81da09e889
1 changed files with 6 additions and 0 deletions

View File

@ -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
}