mb/lippert/toucan-af: 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: I22774a6d6a32c2fb8340f5ac678befe0d5f8ad75 Reviewed-on: https://review.coreboot.org/c/coreboot/+/38878 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
c896df7f15
commit
6ed9df448b
|
@ -13,14 +13,10 @@
|
|||
# GNU General Public License for more details.
|
||||
#
|
||||
|
||||
config BOARD_LIPPERT_TOUCAN_AF
|
||||
def_bool n
|
||||
|
||||
if BOARD_LIPPERT_TOUCAN_AF
|
||||
|
||||
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
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#config BOARD_LIPPERT_TOUCAN_AF
|
||||
# bool"Toucan-AF aka cExpress-GFR (+W83627DHG SIO)"
|
||||
config BOARD_LIPPERT_TOUCAN_AF
|
||||
bool "Toucan-AF aka cExpress-GFR (+W83627DHG SIO)"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -13,15 +13,13 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <northbridge/amd/agesa/state_machine.h>
|
||||
#include <bootblock_common.h>
|
||||
#include <superio/winbond/common/winbond.h>
|
||||
#include <superio/winbond/w83627dhg/w83627dhg.h>
|
||||
#include <sb_cimx.h>
|
||||
|
||||
#define SERIAL_DEV PNP_DEV(0x4e, W83627DHG_SP1)
|
||||
|
||||
void board_BeforeAgesa(struct sysinfo *cb)
|
||||
void bootblock_mainboard_early_init(void)
|
||||
{
|
||||
sb_Poweron_Init();
|
||||
winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
|
||||
}
|
|
@ -1123,7 +1123,6 @@ DefinitionBlock (
|
|||
External (TOM2)
|
||||
Name(_HID, EISAID("PNP0A08")) /* PCI Express Root Bridge */
|
||||
Name(_CID, EISAID("PNP0A03")) /* PCI Root Bridge */
|
||||
Name(_ADR, 0x00180000) /* Dev# = BSP Dev#, Func# = 0 */
|
||||
|
||||
/* Operating System Capabilities Method */
|
||||
Method (_OSC, 4)
|
||||
|
|
Loading…
Reference in New Issue