usbdebug: Make the EHCI debug console work in the bootblock
Currently this needlessly initializes the hardware in the both the romstage and the bootblock, but it works. Build option is renamed to USBDEBUG_IN_PRE_RAM to reflect the use better, related support files can be built to pre-ram stages regardless of usbdebug being enabled or not. Tested on Google/peppy (adapted to C_ENVIRONMENT_BOOTBLOCK). Change-Id: Ib77f2fc7f3d8fa524405601bae15cce9f76ffc6f Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/30480 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
committed by
Felix Held
parent
085a226808
commit
adc4753a8d
@@ -61,7 +61,8 @@ ramstage-y += systemagent.c
|
||||
ramstage-y += tsc_freq.c
|
||||
romstage-y += tsc_freq.c
|
||||
smm-y += tsc_freq.c
|
||||
romstage-$(CONFIG_USBDEBUG_IN_ROMSTAGE) += usb_debug.c
|
||||
bootblock-$(CONFIG_USBDEBUG) += usb_debug.c
|
||||
romstage-$(CONFIG_USBDEBUG) += usb_debug.c
|
||||
ramstage-$(CONFIG_USBDEBUG) += usb_debug.c
|
||||
ramstage-y += ehci.c
|
||||
ramstage-y += xhci.c
|
||||
|
@@ -227,7 +227,7 @@ void romstage_main_continue(EFI_STATUS status, void *hob_list_ptr)
|
||||
__func__, (u32) status, (u32) hob_list_ptr);
|
||||
|
||||
/* FSP reconfigures USB, so reinit it to have debug */
|
||||
if (IS_ENABLED(CONFIG_USBDEBUG_IN_ROMSTAGE))
|
||||
if (IS_ENABLED(CONFIG_USBDEBUG_IN_PRE_RAM))
|
||||
usbdebug_hw_init(true);
|
||||
|
||||
printk(BIOS_DEBUG, "FSP Status: 0x%0x\n", (u32)status);
|
||||
|
@@ -103,7 +103,7 @@ void romstage_main_continue(EFI_STATUS status, void *hob_list_ptr)
|
||||
__func__, (u32) status, (u32) hob_list_ptr);
|
||||
|
||||
/* FSP reconfigures USB, so reinit it to have debug */
|
||||
if (IS_ENABLED(CONFIG_USBDEBUG_IN_ROMSTAGE))
|
||||
if (IS_ENABLED(CONFIG_USBDEBUG_IN_PRE_RAM))
|
||||
usbdebug_hw_init(true);
|
||||
|
||||
printk(BIOS_DEBUG, "FSP Status: 0x%0x\n", (u32)status);
|
||||
|
Reference in New Issue
Block a user