summaryrefslogtreecommitdiff
path: root/src/mainboard/asus/p3b-f/romstage.c
diff options
context:
space:
mode:
authorKeith Hui <buurin@gmail.com>2017-09-02 18:33:20 -0400
committerKyösti Mälkki <kyosti.malkki@gmail.com>2017-09-13 17:22:33 +0000
commite14d7def4f2b77e676ca8997a4e1505998b7d53d (patch)
tree8981cc4c2303ba8d88c5f0f8edbee123006e3d18 /src/mainboard/asus/p3b-f/romstage.c
parentd0301c1a012ec9c656affcc8b904fe68d032f025 (diff)
downloadcoreboot-e14d7def4f2b77e676ca8997a4e1505998b7d53d.tar.xz
asus/p2b-ls,asus/p3b-f: Move to EARLY_CBMEM_INIT
These two boards have been boot tested with EARLY_CBMEM_INIT and is good to go. Change-Id: I2e69901ed83502894f6794b3c1d7bab9aab95e51 Signed-off-by: Keith Hui <buurin@gmail.com> Reviewed-on: https://review.coreboot.org/21351 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/mainboard/asus/p3b-f/romstage.c')
-rw-r--r--src/mainboard/asus/p3b-f/romstage.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/asus/p3b-f/romstage.c b/src/mainboard/asus/p3b-f/romstage.c
index 0bb5bca314..a474907d7e 100644
--- a/src/mainboard/asus/p3b-f/romstage.c
+++ b/src/mainboard/asus/p3b-f/romstage.c
@@ -25,6 +25,7 @@
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
#include <superio/winbond/w83977tf/w83977tf.h>
#include <lib.h>
+#include <cbmem.h>
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
@@ -79,4 +80,5 @@ void mainboard_romstage_entry(unsigned long bist)
sdram_initialize();
disable_spd();
+ cbmem_initialize_empty();
}