1 |
27 |
unneback |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// io/serial/mips/idt79s334a/mipsidt_serial.h
|
4 |
|
|
//
|
5 |
|
|
// MIPS IDT79S334A Serial I/O definitions.
|
6 |
|
|
//
|
7 |
|
|
//==========================================================================
|
8 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
9 |
|
|
// -------------------------------------------
|
10 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
11 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
12 |
|
|
//
|
13 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
14 |
|
|
// the terms of the GNU General Public License as published by the Free
|
15 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
16 |
|
|
//
|
17 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
18 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
19 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
20 |
|
|
// for more details.
|
21 |
|
|
//
|
22 |
|
|
// You should have received a copy of the GNU General Public License along
|
23 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
24 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
25 |
|
|
//
|
26 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
27 |
|
|
// or inline functions from this file, or you compile this file and link it
|
28 |
|
|
// with other works to produce a work based on this file, this file does not
|
29 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
30 |
|
|
// License. However the source code for this file must still be made available
|
31 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
32 |
|
|
//
|
33 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
34 |
|
|
// this file might be covered by the GNU General Public License.
|
35 |
|
|
//
|
36 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
37 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
38 |
|
|
// -------------------------------------------
|
39 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
40 |
|
|
//==========================================================================
|
41 |
|
|
//#####DESCRIPTIONBEGIN####
|
42 |
|
|
//
|
43 |
|
|
// Author(s): tmichals based on driver by dmoseley, based on POWERPC driver by jskov
|
44 |
|
|
// Contributors: gthomas, jskov, dmoseley, tmichals
|
45 |
|
|
// Date: 2003-02-13
|
46 |
|
|
// Date: 2003-02-13
|
47 |
|
|
// Purpose: MIPS IDT79s334a reference platform serial device driver definitions.
|
48 |
|
|
// Description: IDT MIPS serial device driver definitions.
|
49 |
|
|
//####DESCRIPTIONEND####
|
50 |
|
|
//==========================================================================
|
51 |
|
|
|
52 |
|
|
// Description of serial ports on IDT board
|
53 |
|
|
|
54 |
|
|
// Interrupt Enable Register
|
55 |
|
|
#define IER_RCV 0x01
|
56 |
|
|
#define IER_XMT 0x02
|
57 |
|
|
#define IER_LS 0x04
|
58 |
|
|
#define IER_MS 0x08
|
59 |
|
|
|
60 |
|
|
// Line Control Register
|
61 |
|
|
#define LCR_WL5 0x00 // Word length
|
62 |
|
|
#define LCR_WL6 0x01
|
63 |
|
|
#define LCR_WL7 0x02
|
64 |
|
|
#define LCR_WL8 0x03
|
65 |
|
|
#define LCR_SB1 0x00 // Number of stop bits
|
66 |
|
|
#define LCR_SB1_5 0x04 // 1.5 -> only valid with 5 bit words
|
67 |
|
|
#define LCR_SB2 0x04
|
68 |
|
|
#define LCR_PN 0x00 // Parity mode - none
|
69 |
|
|
#define LCR_PE 0x0C // Parity mode - even
|
70 |
|
|
#define LCR_PO 0x08 // Parity mode - odd
|
71 |
|
|
#define LCR_PM 0x28 // Forced "mark" parity
|
72 |
|
|
#define LCR_PS 0x38 // Forced "space" parity
|
73 |
|
|
#define LCR_DL 0x80 // Enable baud rate latch
|
74 |
|
|
|
75 |
|
|
// Line Status Register
|
76 |
|
|
#define LSR_RSR 0x01
|
77 |
|
|
#define LSR_THE 0x20
|
78 |
|
|
|
79 |
|
|
// Modem Control Register
|
80 |
|
|
#define MCR_DTR 0x01
|
81 |
|
|
#define MCR_RTS 0x02
|
82 |
|
|
#define MCR_INT 0x08 // Enable interrupts
|
83 |
|
|
|
84 |
|
|
// Interrupt status register
|
85 |
|
|
#define ISR_None 0x01
|
86 |
|
|
#define ISR_Rx_Line_Status 0x06
|
87 |
|
|
#define ISR_Rx_Avail 0x04
|
88 |
|
|
#define ISR_Rx_Char_Timeout 0x0C
|
89 |
|
|
#define ISR_Tx_Empty 0x02
|
90 |
|
|
#define IRS_Modem_Status 0x00
|
91 |
|
|
|
92 |
|
|
// FIFO control register
|
93 |
|
|
#define FCR_ENABLE 0x01
|
94 |
|
|
#define FCR_CLEAR_RCVR 0x02
|
95 |
|
|
#define FCR_CLEAR_XMIT 0x04
|
96 |
|
|
|
97 |
|
|
|
98 |
|
|
////////////////////////////////////////////////////////////
|
99 |
|
|
// Clean this up.
|
100 |
|
|
|
101 |
|
|
#define IDTMIPS_SER_16550_BASE_A 0xB8000803
|
102 |
|
|
#define IDTMIPS_SER_16550_BASE_B 0xB8000823
|
103 |
|
|
#define SER_16550_BASE IDTMIPS_SER_16550_BASE_A
|
104 |
|
|
|
105 |
|
|
//-----------------------------------------------------------------------------
|
106 |
|
|
// Define the serial registers. The IDT board is equipped with a 16550C
|
107 |
|
|
// serial chip.
|
108 |
|
|
#define SER_16550_RBR 0x00 // receiver buffer register, read, dlab = 0
|
109 |
|
|
#define SER_16550_THR 0x00 // transmitter holding register, write, dlab = 0
|
110 |
|
|
#define SER_16550_DLL 0x00 // divisor latch (LS), read/write, dlab = 1
|
111 |
|
|
#define SER_16550_IER 0x04 // interrupt enable register, read/write, dlab = 0
|
112 |
|
|
#define SER_16550_DLM 0x04 // divisor latch (MS), read/write, dlab = 1
|
113 |
|
|
#define SER_16550_IIR 0x08 // interrupt identification reg, read, dlab = 0
|
114 |
|
|
#define SER_16550_FCR 0x08 // fifo control register, write, dlab = 0
|
115 |
|
|
#define SER_16550_AFR 0x08 // alternate function reg, read/write, dlab = 1
|
116 |
|
|
#define SER_16550_LCR 0x0c // line control register, read/write
|
117 |
|
|
#define SER_16550_MCR 0x10 // modem control register, read/write
|
118 |
|
|
#define SER_16550_LSR 0x14 // line status register, read
|
119 |
|
|
#define SER_16550_MSR 0x18 // modem status register, read
|
120 |
|
|
#define SER_16550_SCR 0x1c // scratch pad register
|
121 |
|
|
|
122 |
|
|
// The interrupt enable register bits.
|
123 |
|
|
#define SIO_IER_ERDAI 0x01 // enable received data available irq
|
124 |
|
|
#define SIO_IER_ETHREI 0x02 // enable THR empty interrupt
|
125 |
|
|
#define SIO_IER_ELSI 0x04 // enable receiver line status irq
|
126 |
|
|
#define SIO_IER_EMSI 0x08 // enable modem status interrupt
|
127 |
|
|
|
128 |
|
|
// The interrupt identification register bits.
|
129 |
|
|
#define SIO_IIR_IP 0x01 // 0 if interrupt pending
|
130 |
|
|
#define SIO_IIR_ID_MASK 0x0e // mask for interrupt ID bits
|
131 |
|
|
|
132 |
|
|
// The line status register bits.
|
133 |
|
|
#define SIO_LSR_DR 0x01 // data ready
|
134 |
|
|
#define SIO_LSR_OE 0x02 // overrun error
|
135 |
|
|
#define SIO_LSR_PE 0x04 // parity error
|
136 |
|
|
#define SIO_LSR_FE 0x08 // framing error
|
137 |
|
|
#define SIO_LSR_BI 0x10 // break interrupt
|
138 |
|
|
#define SIO_LSR_THRE 0x20 // transmitter holding register empty
|
139 |
|
|
#define SIO_LSR_TEMT 0x40 // transmitter register empty
|
140 |
|
|
#define SIO_LSR_ERR 0x80 // any error condition
|
141 |
|
|
|
142 |
|
|
// The modem status register bits.
|
143 |
|
|
#define SIO_MSR_DCTS 0x01 // delta clear to send
|
144 |
|
|
#define SIO_MSR_DDSR 0x02 // delta data set ready
|
145 |
|
|
#define SIO_MSR_TERI 0x04 // trailing edge ring indicator
|
146 |
|
|
#define SIO_MSR_DDCD 0x08 // delta data carrier detect
|
147 |
|
|
#define SIO_MSR_CTS 0x10 // clear to send
|
148 |
|
|
#define SIO_MSR_DSR 0x20 // data set ready
|
149 |
|
|
#define SIO_MSR_RI 0x40 // ring indicator
|
150 |
|
|
#define SIO_MSR_DCD 0x80 // data carrier detect
|
151 |
|
|
|
152 |
|
|
// The line control register bits.
|
153 |
|
|
#define SIO_LCR_WLS0 0x01 // word length select bit 0
|
154 |
|
|
#define SIO_LCR_WLS1 0x02 // word length select bit 1
|
155 |
|
|
#define SIO_LCR_STB 0x04 // number of stop bits
|
156 |
|
|
#define SIO_LCR_PEN 0x08 // parity enable
|
157 |
|
|
#define SIO_LCR_EPS 0x10 // even parity select
|
158 |
|
|
#define SIO_LCR_SP 0x20 // stick parity
|
159 |
|
|
#define SIO_LCR_SB 0x40 // set break
|
160 |
|
|
#define SIO_LCR_DLAB 0x80 // divisor latch access bit
|
161 |
|
|
|
162 |
|
|
// The FIFO control register
|
163 |
|
|
#define SIO_FCR_FCR0 0x01 // enable xmit and rcvr fifos
|
164 |
|
|
#define SIO_FCR_FCR1 0x02 // clear RCVR FIFO
|
165 |
|
|
#define SIO_FCR_FCR2 0x04 // clear XMIT FIFO
|
166 |
|
|
/////////////////////////////////////////
|
167 |
|
|
|
168 |
|
|
|
169 |
|
|
static unsigned char select_word_length[] = {
|
170 |
|
|
LCR_WL5, // 5 bits / word (char)
|
171 |
|
|
LCR_WL6,
|
172 |
|
|
LCR_WL7,
|
173 |
|
|
LCR_WL8
|
174 |
|
|
};
|
175 |
|
|
|
176 |
|
|
static unsigned char select_stop_bits[] = {
|
177 |
|
|
0,
|
178 |
|
|
LCR_SB1, // 1 stop bit
|
179 |
|
|
LCR_SB1_5, // 1.5 stop bit
|
180 |
|
|
LCR_SB2 // 2 stop bits
|
181 |
|
|
};
|
182 |
|
|
|
183 |
|
|
static unsigned char select_parity[] = {
|
184 |
|
|
LCR_PN, // No parity
|
185 |
|
|
LCR_PE, // Even parity
|
186 |
|
|
LCR_PO, // Odd parity
|
187 |
|
|
LCR_PM, // Mark parity
|
188 |
|
|
LCR_PS, // Space parity
|
189 |
|
|
};
|
190 |
|
|
|
191 |
|
|
|
192 |
|
|
static unsigned int select_baud[] = {
|
193 |
|
|
0, // Unused
|
194 |
|
|
50, // 50
|
195 |
|
|
75, // 75
|
196 |
|
|
110, // 110
|
197 |
|
|
134, // 134.5
|
198 |
|
|
150, // 150
|
199 |
|
|
200, // 200
|
200 |
|
|
300, // 300
|
201 |
|
|
600, // 600
|
202 |
|
|
1200, // 1200
|
203 |
|
|
1800, // 1800
|
204 |
|
|
2400, // 2400
|
205 |
|
|
3600, // 3600
|
206 |
|
|
4800, // 4800
|
207 |
|
|
7200, // 7200
|
208 |
|
|
9600, // 9600
|
209 |
|
|
14400, // 14400
|
210 |
|
|
19200, // 19200
|
211 |
|
|
38400, // 38400
|
212 |
|
|
57600, // 57600
|
213 |
|
|
115200, // 115200
|
214 |
|
|
230400, // 230400
|
215 |
|
|
};
|
216 |
|
|
|
217 |
|
|
// EOF mipsidt_serial.h
|