initial commit with v2.6.9
[linux-2.6.9-moxart.git] / include / asm-arm / arch-shark / serial.h
blob2edfa7540eb663b6c8194a2ae4c25fe01692c747
1 /*
2 * linux/include/asm-arm/arch-ebsa110/serial.h
4 * Copyright (c) 1996,1997,1998 Russell King.
6 * Changelog:
7 * 15-10-1996 RMK Created
8 */
9 #ifndef __ASM_ARCH_SERIAL_H
10 #define __ASM_ARCH_SERIAL_H
13 * This assumes you have a 1.8432 MHz clock for your UART.
15 * It'd be nice if someone built a serial card with a 24.576 MHz
16 * clock, since the 16550A is capable of handling a top speed of 1.5
17 * megabits/second; but this requires the faster clock.
19 #define BASE_BAUD (1843200 / 16)
21 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
23 /* UART CLK PORT IRQ FLAGS */
24 #define STD_SERIAL_PORT_DEFNS \
25 { 0, BASE_BAUD, 0x3F8, 4, STD_COM_FLAGS }, /* ttyS0 */ \
26 { 0, BASE_BAUD, 0x2F8, 3, STD_COM_FLAGS }, /* ttyS1 */
28 #define EXTRA_SERIAL_PORT_DEFNS
30 #endif