summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mainboard/supermicro/x11-lga1151-series/Kconfig1
-rw-r--r--src/mainboard/supermicro/x11-lga1151-series/bootblock.c7
2 files changed, 2 insertions, 6 deletions
diff --git a/src/mainboard/supermicro/x11-lga1151-series/Kconfig b/src/mainboard/supermicro/x11-lga1151-series/Kconfig
index da8038ba5cfa..a3ed8af972ed 100644
--- a/src/mainboard/supermicro/x11-lga1151-series/Kconfig
+++ b/src/mainboard/supermicro/x11-lga1151-series/Kconfig
@@ -13,6 +13,7 @@ config BOARD_SUPERMICRO_BASEBOARD_X11_LGA1151_SERIES
select GENERATE_SMBIOS_TABLES
select IPMI_KCS
select MAINBOARD_NO_FSP_GOP
+ select SUPERIO_ASPEED_HAS_UART_DELAY_WORKAROUND
if BOARD_SUPERMICRO_BASEBOARD_X11_LGA1151_SERIES
diff --git a/src/mainboard/supermicro/x11-lga1151-series/bootblock.c b/src/mainboard/supermicro/x11-lga1151-series/bootblock.c
index 27653f5ae036..fe76512de1bb 100644
--- a/src/mainboard/supermicro/x11-lga1151-series/bootblock.c
+++ b/src/mainboard/supermicro/x11-lga1151-series/bootblock.c
@@ -32,13 +32,8 @@ static void early_config_gpio(void)
static void early_config_superio(void)
{
const pnp_devfn_t serial_dev = PNP_DEV(0x2e, AST2400_SUART1);
- if (CONFIG(CONSOLE_SERIAL)) {
+ if (CONFIG(CONSOLE_SERIAL))
aspeed_enable_serial(serial_dev, CONFIG_TTYS0_BASE);
- /* The serial output is garbeled before this timeout.
- * FIXME: Find out why and remove delay.
- */
- mdelay(1000);
- }
}
void bootblock_mainboard_early_init(void)