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>
This commit is contained in:
parent
d0301c1a01
commit
e14d7def4f
|
@ -18,7 +18,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
||||||
def_bool y
|
def_bool y
|
||||||
select CPU_INTEL_SLOT_1
|
select CPU_INTEL_SLOT_1
|
||||||
select NORTHBRIDGE_INTEL_I440BX
|
select NORTHBRIDGE_INTEL_I440BX
|
||||||
select LATE_CBMEM_INIT
|
|
||||||
select SOUTHBRIDGE_INTEL_I82371EB
|
select SOUTHBRIDGE_INTEL_I82371EB
|
||||||
select SUPERIO_WINBOND_W83977TF
|
select SUPERIO_WINBOND_W83977TF
|
||||||
select HAVE_PIRQ_TABLE
|
select HAVE_PIRQ_TABLE
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
/* FIXME: The ASUS P2B-LS has a Winbond W83977EF, actually. */
|
/* FIXME: The ASUS P2B-LS has a Winbond W83977EF, actually. */
|
||||||
#include <superio/winbond/w83977tf/w83977tf.h>
|
#include <superio/winbond/w83977tf/w83977tf.h>
|
||||||
#include <lib.h>
|
#include <lib.h>
|
||||||
|
#include <cbmem.h>
|
||||||
|
|
||||||
#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
|
#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
|
||||||
|
|
||||||
|
@ -41,4 +42,5 @@ void mainboard_romstage_entry(unsigned long bist)
|
||||||
|
|
||||||
enable_smbus();
|
enable_smbus();
|
||||||
sdram_initialize();
|
sdram_initialize();
|
||||||
|
cbmem_initialize_empty();
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
||||||
def_bool y
|
def_bool y
|
||||||
select CPU_INTEL_SLOT_1
|
select CPU_INTEL_SLOT_1
|
||||||
select NORTHBRIDGE_INTEL_I440BX
|
select NORTHBRIDGE_INTEL_I440BX
|
||||||
select LATE_CBMEM_INIT
|
|
||||||
select SOUTHBRIDGE_INTEL_I82371EB
|
select SOUTHBRIDGE_INTEL_I82371EB
|
||||||
select SUPERIO_WINBOND_W83977TF
|
select SUPERIO_WINBOND_W83977TF
|
||||||
select HAVE_PIRQ_TABLE
|
select HAVE_PIRQ_TABLE
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
|
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
|
||||||
#include <superio/winbond/w83977tf/w83977tf.h>
|
#include <superio/winbond/w83977tf/w83977tf.h>
|
||||||
#include <lib.h>
|
#include <lib.h>
|
||||||
|
#include <cbmem.h>
|
||||||
|
|
||||||
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
|
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
|
||||||
#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
|
#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
|
||||||
|
@ -79,4 +80,5 @@ void mainboard_romstage_entry(unsigned long bist)
|
||||||
sdram_initialize();
|
sdram_initialize();
|
||||||
|
|
||||||
disable_spd();
|
disable_spd();
|
||||||
|
cbmem_initialize_empty();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue