soc/intel/fsp_broadwell_de: Move early_mainboard_romstage_entry()
Move early_mainboard_romstage_entry before console_init. Allows to setup a SuperIO, if any, for serial console. Change-Id: I370263a6197a4c0c805352f07fedddbee1b8e247 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/30828 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
95c021b63a
commit
aa6d388597
|
@ -40,6 +40,7 @@ void early_mainboard_romstage_entry(void)
|
|||
*/
|
||||
msr_t msr = rdmsr(IA32_FEATURE_CONTROL);
|
||||
if (msr.lo & 1) {
|
||||
console_init();
|
||||
printk(BIOS_EMERG, "Detected broken platform state. Issuing full reset\n");
|
||||
full_reset();
|
||||
}
|
||||
|
|
|
@ -68,14 +68,16 @@ void *asmlinkage main(FSP_INFO_HEADER *fsp_info_header)
|
|||
pci_write_config16(PCI_DEV(0x0, LPC_DEV, LPC_FUNC),
|
||||
LPC_EN, 0x340f);
|
||||
}
|
||||
console_init();
|
||||
init_rtc();
|
||||
setup_gpio_io_address();
|
||||
|
||||
/* Call into mainboard. */
|
||||
post_code(0x41);
|
||||
early_mainboard_romstage_entry();
|
||||
|
||||
post_code(0x42);
|
||||
console_init();
|
||||
init_rtc();
|
||||
setup_gpio_io_address();
|
||||
|
||||
/*
|
||||
* Call early init to initialize memory and chipset. This function returns
|
||||
* to the romstage_main_continue function with a pointer to the HOB
|
||||
|
|
Loading…
Reference in New Issue