OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [devs/] [serial/] [mips/] [atlas/] [v2_0/] [src/] [atlas_serial.h] - Blame information for rev 27

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      io/serial/mips/atlas/atlas_serial.h
4
//
5
//      MIPS Atlas 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):   dmoseley, based on PowerPC driver by jskov
44
// Contributors:gthomas, jskov, dmoseley
45
// Date:        2000-06-23
46
// Purpose:     Atlas Serial definitions
47
//####DESCRIPTIONEND####
48
//==========================================================================
49
 
50
// Description of serial ports on Atlas board
51
 
52
// Interrupt Enable Register
53
#define IER_RCV 0x01
54
#define IER_XMT 0x02
55
#define IER_LS  0x04
56
#define IER_MS  0x08
57
 
58
// Line Control Register
59
#define LCR_WL5 0x00    // Word length
60
#define LCR_WL6 0x01
61
#define LCR_WL7 0x02
62
#define LCR_WL8 0x03
63
#define LCR_SB1 0x00    // Number of stop bits
64
#define LCR_SB1_5 0x04  // 1.5 -> only valid with 5 bit words
65
#define LCR_SB2 0x04
66
#define LCR_PN  0x00    // Parity mode - none
67
#define LCR_PE  0x0C    // Parity mode - even
68
#define LCR_PO  0x08    // Parity mode - odd
69
#define LCR_PM  0x28    // Forced "mark" parity
70
#define LCR_PS  0x38    // Forced "space" parity
71
#define LCR_DL  0x80    // Enable baud rate latch
72
 
73
// Line Status Register
74
#define LSR_RSR 0x01
75
#define LSR_THE 0x20
76
 
77
// Modem Control Register
78
#define MCR_DTR 0x01
79
#define MCR_RTS 0x02
80
#define MCR_INT 0x08   // Enable interrupts
81
 
82
// Interrupt status register
83
#define ISR_None             0x01
84
#define ISR_Rx_Line_Status   0x06
85
#define ISR_Rx_Avail         0x04
86
#define ISR_Rx_Char_Timeout  0x0C
87
#define ISR_Tx_Empty         0x02
88
#define IRS_Modem_Status     0x00
89
 
90
// FIFO control register
91
#define FCR_ENABLE     0x01
92
#define FCR_CLEAR_RCVR 0x02
93
#define FCR_CLEAR_XMIT 0x04
94
 
95
 
96
////////////////////////////////////////////////////////////
97
// Clean this up.
98
 
99
#define ATLAS_SER_16550_BASE_A    0xBF000900
100
#define SER_16550_BASE            ATLAS_SER_16550_BASE_A
101
 
102
//-----------------------------------------------------------------------------
103
// Define the serial registers. The Atlas board is equipped with a 16550C
104
// serial chip.
105
#define SER_16550_RBR 0x00   // receiver buffer register, read, dlab = 0
106
#define SER_16550_THR 0x00   // transmitter holding register, write, dlab = 0
107
#define SER_16550_DLL 0x00   // divisor latch (LS), read/write, dlab = 1
108
#define SER_16550_IER 0x08   // interrupt enable register, read/write, dlab = 0
109
#define SER_16550_DLM 0x08   // divisor latch (MS), read/write, dlab = 1
110
#define SER_16550_IIR 0x10   // interrupt identification reg, read, dlab = 0
111
#define SER_16550_FCR 0x10   // fifo control register, write, dlab = 0
112
#define SER_16550_AFR 0x10   // alternate function reg, read/write, dlab = 1
113
#define SER_16550_LCR 0x18   // line control register, read/write
114
#define SER_16550_MCR 0x20   // modem control register, read/write
115
#define SER_16550_LSR 0x28   // line status register, read
116
#define SER_16550_MSR 0x30   // modem status register, read
117
#define SER_16550_SCR 0x38   // scratch pad register
118
 
119
// The interrupt enable register bits.
120
#define SIO_IER_ERDAI   0x01            // enable received data available irq
121
#define SIO_IER_ETHREI  0x02            // enable THR empty interrupt
122
#define SIO_IER_ELSI    0x04            // enable receiver line status irq
123
#define SIO_IER_EMSI    0x08            // enable modem status interrupt
124
 
125
// The interrupt identification register bits.
126
#define SIO_IIR_IP      0x01            // 0 if interrupt pending
127
#define SIO_IIR_ID_MASK 0x0e            // mask for interrupt ID bits
128
 
129
// The line status register bits.
130
#define SIO_LSR_DR      0x01            // data ready
131
#define SIO_LSR_OE      0x02            // overrun error
132
#define SIO_LSR_PE      0x04            // parity error
133
#define SIO_LSR_FE      0x08            // framing error
134
#define SIO_LSR_BI      0x10            // break interrupt
135
#define SIO_LSR_THRE    0x20            // transmitter holding register empty
136
#define SIO_LSR_TEMT    0x40            // transmitter register empty
137
#define SIO_LSR_ERR     0x80            // any error condition
138
 
139
// The modem status register bits.
140
#define SIO_MSR_DCTS  0x01              // delta clear to send
141
#define SIO_MSR_DDSR  0x02              // delta data set ready
142
#define SIO_MSR_TERI  0x04              // trailing edge ring indicator
143
#define SIO_MSR_DDCD  0x08              // delta data carrier detect
144
#define SIO_MSR_CTS   0x10              // clear to send
145
#define SIO_MSR_DSR   0x20              // data set ready
146
#define SIO_MSR_RI    0x40              // ring indicator
147
#define SIO_MSR_DCD   0x80              // data carrier detect
148
 
149
// The line control register bits.
150
#define SIO_LCR_WLS0   0x01             // word length select bit 0
151
#define SIO_LCR_WLS1   0x02             // word length select bit 1
152
#define SIO_LCR_STB    0x04             // number of stop bits
153
#define SIO_LCR_PEN    0x08             // parity enable
154
#define SIO_LCR_EPS    0x10             // even parity select
155
#define SIO_LCR_SP     0x20             // stick parity
156
#define SIO_LCR_SB     0x40             // set break
157
#define SIO_LCR_DLAB   0x80             // divisor latch access bit
158
 
159
// The FIFO control register
160
#define SIO_FCR_FCR0   0x01             // enable xmit and rcvr fifos
161
#define SIO_FCR_FCR1   0x02             // clear RCVR FIFO
162
#define SIO_FCR_FCR2   0x04             // clear XMIT FIFO
163
/////////////////////////////////////////
164
 
165
 
166
static unsigned char select_word_length[] = {
167
    LCR_WL5,    // 5 bits / word (char)
168
    LCR_WL6,
169
    LCR_WL7,
170
    LCR_WL8
171
};
172
 
173
static unsigned char select_stop_bits[] = {
174
    0,
175
    LCR_SB1,    // 1 stop bit
176
    LCR_SB1_5,  // 1.5 stop bit
177
    LCR_SB2     // 2 stop bits
178
};
179
 
180
static unsigned char select_parity[] = {
181
    LCR_PN,     // No parity
182
    LCR_PE,     // Even parity
183
    LCR_PO,     // Odd parity
184
    LCR_PM,     // Mark parity
185
    LCR_PS,     // Space parity
186
};
187
 
188
// FIXME: calc all properly
189
// The Atlas board has a 3.6864 MHz crystal
190
static unsigned short select_baud[] = {
191
    0,    // Unused
192
    0,    // 50
193
    0,    // 75
194
    2094, // 110
195
    0,    // 134.5
196
    1536, // 150
197
    0,    // 200
198
    768,  // 300
199
    384,  // 600
200
    192,  // 1200
201
    0,    // 1800
202
    96,   // 2400
203
    0,    // 3600
204
    48,   // 4800
205
    32,   // 7200
206
    24,   // 9600
207
    16,   // 14400
208
    12,   // 19200
209
    6,    // 38400
210
    4,    // 57600
211
    2,    // 115200
212
    1,    // 230400
213
};
214
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.