]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - doc/README.serial_multi
Prepare v2015.07-rc2
[karo-tx-uboot.git] / doc / README.serial_multi
index a8d48fc4d99258e58e17a166b365c93fba2f99fd..ad61d4261b66a00564c741db0176ca51ecece408 100644 (file)
@@ -35,7 +35,7 @@ just after switching the console:
        setenv sout serial_scc; setenv baudrate 38400
 
 After that press 'enter' at the SCC console. Note that baudrates <38400
-are not allowed on LWMON with watchdog enabled (see CFG_BAUDRATE_TABLE in
+are not allowed on LWMON with watchdog enabled (see CONFIG_SYS_BAUDRATE_TABLE in
 include/configs/lwmon.h).
 
 
@@ -52,3 +52,29 @@ PPC4XX Specific
        setenv stdout serial0
        setenv stderr serial0
        setenv stdin serial0
+
+MPC5xxx Specific
+================
+
+Up to two PSCs can be used as console.
+
+Support for hardware handshake has not been implemented yet.
+
+*) The first (default) console port is defined by:
+       #define CONFIG_PSC_CONSOLE <PSC number>
+
+*) The second (alternative) console port is defined by:
+       #define CONFIG_PSC_CONSOLE2 <PSC number>
+
+*) Commands to switch to the second console:
+       setenv stdout serial1
+       setenv stderr serial1
+       setenv stdin serial1
+
+*) Commands to switch to the first console:
+       setenv stdout serial0
+       setenv stderr serial0
+       setenv stdin serial0
+
+*) If a file descriptor is set to "serial" then the
+   current serial device will be used.