blob: cdfbb1bc209950e95ace9e795044a0c6e19dd48a [file] [log] [blame]
Stefan Reinauer85b0fa12010-12-17 00:08:21 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2003 Eric Biederman
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Kyösti Mälkkibea6bf02014-01-30 15:45:16 +020020#ifndef UART8250REG_H
21#define UART8250REG_H
Eric Biederman8ca8d762003-04-22 19:02:15 +000022
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000023/* Data */
24#define UART_RBR 0x00
25#define UART_TBR 0x00
26
27/* Control */
28#define UART_IER 0x01
29#define UART_IER_MSI 0x08 /* Enable Modem status interrupt */
30#define UART_IER_RLSI 0x04 /* Enable receiver line status interrupt */
31#define UART_IER_THRI 0x02 /* Enable Transmitter holding register int. */
32#define UART_IER_RDI 0x01 /* Enable receiver data interrupt */
33
34#define UART_IIR 0x02
35#define UART_IIR_NO_INT 0x01 /* No interrupts pending */
36#define UART_IIR_ID 0x06 /* Mask for the interrupt ID */
37
38#define UART_IIR_MSI 0x00 /* Modem status interrupt */
39#define UART_IIR_THRI 0x02 /* Transmitter holding register empty */
40#define UART_IIR_RDI 0x04 /* Receiver data interrupt */
41#define UART_IIR_RLSI 0x06 /* Receiver line status interrupt */
42
43#define UART_FCR 0x02
44#define UART_FCR_FIFO_EN 0x01 /* Fifo enable */
45#define UART_FCR_CLEAR_RCVR 0x02 /* Clear the RCVR FIFO */
46#define UART_FCR_CLEAR_XMIT 0x04 /* Clear the XMIT FIFO */
47#define UART_FCR_DMA_SELECT 0x08 /* For DMA applications */
48#define UART_FCR_TRIGGER_MASK 0xC0 /* Mask for the FIFO trigger range */
49#define UART_FCR_TRIGGER_1 0x00 /* Mask for trigger set at 1 */
50#define UART_FCR_TRIGGER_4 0x40 /* Mask for trigger set at 4 */
51#define UART_FCR_TRIGGER_8 0x80 /* Mask for trigger set at 8 */
52#define UART_FCR_TRIGGER_14 0xC0 /* Mask for trigger set at 14 */
53
54#define UART_FCR_RXSR 0x02 /* Receiver soft reset */
55#define UART_FCR_TXSR 0x04 /* Transmitter soft reset */
56
57#define UART_LCR 0x03
58#define UART_LCR_WLS_MSK 0x03 /* character length select mask */
59#define UART_LCR_WLS_5 0x00 /* 5 bit character length */
60#define UART_LCR_WLS_6 0x01 /* 6 bit character length */
61#define UART_LCR_WLS_7 0x02 /* 7 bit character length */
62#define UART_LCR_WLS_8 0x03 /* 8 bit character length */
63#define UART_LCR_STB 0x04 /* Number of stop Bits, off = 1, on = 1.5 or 2) */
Martin Roth0cb07e32013-07-09 21:46:01 -060064#define UART_LCR_PEN 0x08 /* Parity enable */
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000065#define UART_LCR_EPS 0x10 /* Even Parity Select */
66#define UART_LCR_STKP 0x20 /* Stick Parity */
67#define UART_LCR_SBRK 0x40 /* Set Break */
68#define UART_LCR_BKSE 0x80 /* Bank select enable */
69#define UART_LCR_DLAB 0x80 /* Divisor latch access bit */
70
71#define UART_MCR 0x04
72#define UART_MCR_DTR 0x01 /* DTR */
73#define UART_MCR_RTS 0x02 /* RTS */
74#define UART_MCR_OUT1 0x04 /* Out 1 */
75#define UART_MCR_OUT2 0x08 /* Out 2 */
76#define UART_MCR_LOOP 0x10 /* Enable loopback test mode */
77
78#define UART_MCR_DMA_EN 0x04
79#define UART_MCR_TX_DFR 0x08
80
81#define UART_DLL 0x00
82#define UART_DLM 0x01
83
84/* Status */
85#define UART_LSR 0x05
86#define UART_LSR_DR 0x01 /* Data ready */
87#define UART_LSR_OE 0x02 /* Overrun */
88#define UART_LSR_PE 0x04 /* Parity error */
89#define UART_LSR_FE 0x08 /* Framing error */
90#define UART_LSR_BI 0x10 /* Break */
91#define UART_LSR_THRE 0x20 /* Xmit holding register empty */
92#define UART_LSR_TEMT 0x40 /* Xmitter empty */
93#define UART_LSR_ERR 0x80 /* Error */
94
95#define UART_MSR 0x06
96#define UART_MSR_DCD 0x80 /* Data Carrier Detect */
97#define UART_MSR_RI 0x40 /* Ring Indicator */
98#define UART_MSR_DSR 0x20 /* Data Set Ready */
99#define UART_MSR_CTS 0x10 /* Clear to Send */
100#define UART_MSR_DDCD 0x08 /* Delta DCD */
101#define UART_MSR_TERI 0x04 /* Trailing edge ring indicator */
102#define UART_MSR_DDSR 0x02 /* Delta DSR */
103#define UART_MSR_DCTS 0x01 /* Delta CTS */
104
105#define UART_SCR 0x07
Stefan Reinauer4885daa2011-04-26 23:47:04 +0000106#define UART_SPR 0x07
Stefan Reinauer85b0fa12010-12-17 00:08:21 +0000107
Kyösti Mälkkibea6bf02014-01-30 15:45:16 +0200108#endif /* UART8250REG_H */