From 3b6c527322259d6ae7878411ca26ee6dd9374b3c Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Tue, 11 Nov 2008 14:26:03 +0000 Subject: Always enable serial before SMBus (or as early as possible), as the SMBus enable may do printk()s which result in a 2 minute delay on some boards. Fix this on all boards which currently do smbus_enable() before enabling the serial console. Thanks to Elia Yehuda for tracking this bug down. Signed-off-by: Uwe Hermann Acked-by: Peter Stuge Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3742 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/via/epia-m/auto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainboard/via/epia-m') diff --git a/src/mainboard/via/epia-m/auto.c b/src/mainboard/via/epia-m/auto.c index ac50b96373..04ef1a74e7 100644 --- a/src/mainboard/via/epia-m/auto.c +++ b/src/mainboard/via/epia-m/auto.c @@ -108,12 +108,12 @@ static void main(unsigned long bist) pci_write_config8(dev, 0x15, 0x1c); } - enable_smbus(); - enable_vt8235_serial(); uart_init(); console_init(); + enable_smbus(); + print_spew("In auto.c:main()\r\n"); /* Halt if there was a built in self test failure */ -- cgit v1.2.3