mb/amd/parmer: 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: Ic3fda4e598af8df9c9ddc97f7eb7fdcdaff6580b Reviewed-on: https://review.coreboot.org/c/coreboot/+/38879 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
938ae2655f
commit
44db2f6012
|
@ -13,14 +13,10 @@
|
|||
# GNU General Public License for more details.
|
||||
#
|
||||
|
||||
config BOARD_AMD_PARMER
|
||||
def_bool n
|
||||
|
||||
if BOARD_AMD_PARMER
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
#select ROMCC_BOOTBLOCK
|
||||
select CPU_AMD_AGESA_FAMILY15_TN
|
||||
select NORTHBRIDGE_AMD_AGESA_FAMILY15_TN
|
||||
select SOUTHBRIDGE_AMD_AGESA_HUDSON
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#config BOARD_AMD_PARMER
|
||||
# bool"Parmer"
|
||||
config BOARD_AMD_PARMER
|
||||
bool "Parmer"
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
# GNU General Public License for more details.
|
||||
#
|
||||
|
||||
bootblock-y += bootblock.c
|
||||
|
||||
romstage-y += buildOpts.c
|
||||
romstage-y += BiosCallOuts.c
|
||||
romstage-y += OemCustomize.c
|
||||
|
|
|
@ -13,14 +13,9 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <bootblock_common.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <northbridge/amd/agesa/state_machine.h>
|
||||
#include <southbridge/amd/agesa/hudson/hudson.h>
|
||||
|
||||
void board_BeforeAgesa(struct sysinfo *cb)
|
||||
void bootblock_mainboard_early_init(void)
|
||||
{
|
||||
pci_devfn_t dev = PCI_DEV(0, 0x14, 3);
|
||||
|
||||
/* For serial port option, plug-in card on LPC. */
|
||||
pci_write_config32(dev, 0x44, 0xff03ffd5);
|
||||
}
|
Loading…
Reference in New Issue