mb/amd/inagua: Switch away from ROMCC_BOOTBLOCK

Warning: Not tested on hardware.

Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Signed-off-by: Mike Banon <mikebdp2@gmail.com>
Change-Id: I55bf3004c728bb42ee51dfa917c58d97c56502cd
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38876
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Mike Banon 2020-02-13 16:20:08 +00:00 committed by Patrick Georgi
parent 24c1f94258
commit ebdf298ec2
4 changed files with 6 additions and 10 deletions

View File

@ -13,14 +13,10 @@
# GNU General Public License for more details.
#
config BOARD_AMD_INAGUA
def_bool n
if BOARD_AMD_INAGUA
config BOARD_SPECIFIC_OPTIONS
def_bool y
#select ROMCC_BOOTBLOCK
select CPU_AMD_AGESA_FAMILY14
select NORTHBRIDGE_AMD_AGESA_FAMILY14
select SOUTHBRIDGE_AMD_CIMX_SB800

View File

@ -1,2 +1,2 @@
#config BOARD_AMD_INAGUA
# bool"Inagua"
config BOARD_AMD_INAGUA
bool "Inagua"

View File

@ -20,6 +20,8 @@ pci$(stripped_ahcibios_id).rom-file := $(call strip_quotes,$(CONFIG_AHCI_BIOS_FI
pci$(stripped_ahcibios_id).rom-type := optionrom
endif
bootblock-y += bootblock.c
romstage-y += buildOpts.c
romstage-y += BiosCallOuts.c
romstage-y += OemCustomize.c

View File

@ -13,15 +13,13 @@
* GNU General Public License for more details.
*/
#include <northbridge/amd/agesa/state_machine.h>
#include <bootblock_common.h>
#include <superio/smsc/kbc1100/kbc1100.h>
#include <sb_cimx.h>
#define SERIAL_DEV PNP_DEV(0x2e, SMSCSUPERIO_SP1)
void board_BeforeAgesa(struct sysinfo *cb)
void bootblock_mainboard_early_init(void)
{
sb_Poweron_Init();
kbc1100_early_init(0x2e);
kbc1100_early_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
}