mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
Defining the next two configs allows to switch the serial port from the console using the setenv stdin and stdout 1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */ 2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */ Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
546b103290
commit
039594a430
2 changed files with 4 additions and 2 deletions
|
@ -40,7 +40,8 @@ struct serial_device *__default_serial_console (void)
|
|||
return &serial_scc_device;
|
||||
#elif defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \
|
||||
|| defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_405EX) \
|
||||
|| defined(CONFIG_MPC5xxx)
|
||||
|| defined(CONFIG_MPC5xxx) || defined(CONFIG_MPC83xx) \
|
||||
|| defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
|
||||
#if defined(CONFIG_CONS_INDEX) && defined(CONFIG_SYS_NS16550_SERIAL)
|
||||
#if (CONFIG_CONS_INDEX==1)
|
||||
return &eserial1_device;
|
||||
|
|
|
@ -24,7 +24,8 @@ extern struct serial_device * default_serial_console (void);
|
|||
|
||||
#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) || \
|
||||
defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_405EX) || \
|
||||
defined(CONFIG_MPC5xxx)
|
||||
defined(CONFIG_MPC5xxx) || defined(CONFIG_MPC83xx) || \
|
||||
defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
|
||||
extern struct serial_device serial0_device;
|
||||
extern struct serial_device serial1_device;
|
||||
#if defined(CONFIG_SYS_NS16550_SERIAL)
|
||||
|
|
Loading…
Add table
Reference in a new issue