summaryrefslogtreecommitdiff
path: root/src/southbridge
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-07 15:06:00 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-14 19:48:51 +0200
commitb6f3da4ddcd306b8039743f1101d41b648e0194d (patch)
treeaf77b453d49e948841218b1e156c22394d2d144a /src/southbridge
parent232ae17718a3d183a4effb0eb4c8633ac87505b7 (diff)
downloadcoreboot-b6f3da4ddcd306b8039743f1101d41b648e0194d.tar.xz
AGESA CIMx: Move late init out of get_bus_conf()
Followup deals further with Fam15 case. For unknown reasons calls were commented out for amd/dinar and they remain that way. Change-Id: Ie0a25fbb6f5378019fbf0f19a02acf024d79817e Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/6237 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/amd/cimx/sb900/early.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/southbridge/amd/cimx/sb900/early.c b/src/southbridge/amd/cimx/sb900/early.c
index 237137f98b..6e4e44e169 100644
--- a/src/southbridge/amd/cimx/sb900/early.c
+++ b/src/southbridge/amd/cimx/sb900/early.c
@@ -100,6 +100,7 @@ void sb_before_pci_init(void)
void sb_After_Pci_Init(void)
{
+#if !CONFIG_BOARD_AMD_DINAR
AMDSBCFG sb_early_cfg;
printk(BIOS_SPEW, "SB900 - Early.c - sb_After_Pci_Init - Start.\n");
@@ -111,6 +112,7 @@ void sb_After_Pci_Init(void)
// VerifyImage() will fail, LocateImage() take minitues to find the image.
sbAfterPciInit(&sb_early_cfg);
printk(BIOS_SPEW, "SB900 - Early.c - sb_After_Pci_Init - End.\n");
+#endif
}
void sb_Mid_Post_Init(void)
@@ -130,6 +132,7 @@ void sb_Mid_Post_Init(void)
void sb_Late_Post(void)
{
+#if !CONFIG_BOARD_AMD_DINAR
AMDSBCFG sb_early_cfg;
u8 data;
@@ -160,4 +163,5 @@ void sb_Late_Post(void)
}
printk(BIOS_SPEW, "SB900 - Early.c - sb_Late_Post - End.\n");
+#endif
}