diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-02-20 01:16:08 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-02-20 01:16:08 -0800 |
| commit | 05de55a47c534d4aefd2c6f381d1e562fec039eb (patch) | |
| tree | aec5bf18625b46341514155dd46a835d50567dcb /include/linux | |
| parent | 56880b138eccc57e70336c623ca69c911f158c3a (diff) | |
| parent | 6ed7173458c11f11a248cfafe390f3c38a835216 (diff) | |
Merge bk://bk.linux1394.org/ieee1394-2.6
into ppc970.osdl.org:/home/torvalds/v2.5/linux
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/serial_core.h | 1 | ||||
| -rw-r--r-- | include/linux/serial_reg.h | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 8e09c20be413..da998dc9389d 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -46,6 +46,7 @@ * separate so any additions to the old serial.c that occur before * we are merged can be easily merged here. */ +#define PORT_PXA 31 #define PORT_AMBA 32 #define PORT_CLPS711X 33 #define PORT_SA1100 34 diff --git a/include/linux/serial_reg.h b/include/linux/serial_reg.h index 947da230a189..f2fee651085f 100644 --- a/include/linux/serial_reg.h +++ b/include/linux/serial_reg.h @@ -141,6 +141,21 @@ #define UART_MSR_ANY_DELTA 0x0F /* Any of the delta bits! */ /* + * The Intel PXA2xx chip defines those bits + */ +#define UART_IER_DMAE 0x80 /* DMA Requests Enable */ +#define UART_IER_UUE 0x40 /* UART Unit Enable */ +#define UART_IER_NRZE 0x20 /* NRZ coding Enable */ +#define UART_IER_RTOIE 0x10 /* Receiver Time Out Interrupt Enable */ + +#define UART_IIR_TOD 0x08 /* Character Timeout Indication Detected */ + +#define UART_FCR_PXAR1 0x00 /* receive FIFO treshold = 1 */ +#define UART_FCR_PXAR8 0x40 /* receive FIFO treshold = 8 */ +#define UART_FCR_PXAR16 0x80 /* receive FIFO treshold = 16 */ +#define UART_FCR_PXAR32 0xc0 /* receive FIFO treshold = 32 */ + +/* * These are the definitions for the Extended Features Register * (StarTech 16C660 only, when DLAB=1) */ |
