From d0fb80c3021e15853895e9ae45ab9368d0fb52fa Mon Sep 17 00:00:00 2001 From: wdenk Date: Sat, 11 Jan 2003 09:48:40 +0000 Subject: * Restrict baudrate settings on LWMON to higher speeds when watchdog is on * Update baudrate in bd_info when it gets changed * Add watchdog trigger points while waiting for serial port (so far only 8xx -- needed on LWMON with 100ms watchdog) * Improve command line tool to access the U-Boot's environment (figuration of the utility, using a config file) --- include/configs/lwmon.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'include/configs') diff --git a/include/configs/lwmon.h b/include/configs/lwmon.h index dc0099de4..66c79356f 100644 --- a/include/configs/lwmon.h +++ b/include/configs/lwmon.h @@ -203,7 +203,14 @@ #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */ -#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } +/* + * When the watchdog is enabled, output must be fast enough in Linux. + */ +#ifdef CONFIG_WATCHDOG +#define CFG_BAUDRATE_TABLE { 38400, 57600, 115200 } +#else +#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } +#endif /* * Low Level Configuration Settings -- cgit v1.2.3