1 #ifndef CONFIG_SERIAL_H
2 #define CONFIG_SERIAL_H
6 * Serial port configuration
8 * These options affect the operation of the serial console. They
9 * take effect only if the serial console is included using the
10 * CONSOLE_SERIAL option.
14 #define COMCONSOLE 0x3f8 /* I/O port address */
16 /* Keep settings from a previous user of the serial port (e.g. lilo or
17 * LinuxBIOS), ignoring COMSPEED, COMDATA, COMPARITY and COMSTOP.
22 #define COMSPEED 115200 /* Baud rate */
23 #define COMDATA 8 /* Data bits */
24 #define COMPARITY 0 /* Parity: 0=None, 1=Odd, 2=Even */
25 #define COMSTOP 1 /* Stop bits */
28 #endif /* CONFIG_SERIAL_H */