[3c90x] Remove src/drivers/3c90x.txt
[gpxe.git] / src / config / serial.h
blob984a7a9c0d7cb6feddffd4afcda66483c1c8707c
1 #ifndef CONFIG_SERIAL_H
2 #define CONFIG_SERIAL_H
4 /** @file
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.
19 #undef COMPRESERVE
21 #ifndef COMPRESERVE
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 */
26 #endif
28 #endif /* CONFIG_SERIAL_H */