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/] [powerpc/] [cogent/] [v2_0/] [src/] [cogent_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/powerpc/cogent_serial.h
4
//
5
//      PowerPC Cogent 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):   jskov, based on ARM driver by gthomas
44
// Contributors:gthomas, jskov
45
// Date:        1999-03-02
46
// Purpose:     Cogent Serial definitions
47
//####DESCRIPTIONEND####
48
//==========================================================================
49
 
50
// Description of serial ports on Cogent 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_Tx  0x02
84
#define ISR_Rx  0x04
85
 
86
// FIFO control register
87
#define FCR_ENABLE     0x01
88
#define FCR_CLEAR_RCVR 0x02
89
#define FCR_CLEAR_XMIT 0x04
90
 
91
 
92
////////////////////////////////////////////////////////////
93
// Clean this up.
94
 
95
//-----------------------------------------------------------------------------
96
// There are two serial ports.
97
#define CMA_SER_16550_BASE_A    0xe900047 // port A
98
#define CMA_SER_16550_BASE_B    0xe900007 // port B
99
#define SER_16550_BASE CMA_SER_16550_BASE_B
100
 
101
//-----------------------------------------------------------------------------
102
// Define the serial registers. The Cogent board is equipped with a 16552
103
// serial chip.
104
#define SER_16550_RBR 0x00   // receiver buffer register, read, dlab = 0
105
#define SER_16550_THR 0x00   // transmitter holding register, write, dlab = 0
106
#define SER_16550_DLL 0x00   // divisor latch (LS), read/write, dlab = 1
107
#define SER_16550_IER 0x08   // interrupt enable register, read/write, dlab = 0
108
#define SER_16550_DLM 0x08   // divisor latch (MS), read/write, dlab = 1
109
#define SER_16550_IIR 0x10   // interrupt identification reg, read, dlab = 0
110
#define SER_16550_FCR 0x10   // fifo control register, write, dlab = 0
111
#define SER_16550_AFR 0x10   // alternate function reg, read/write, dlab = 1
112
#define SER_16550_LCR 0x18   // line control register, read/write
113
#define SER_16550_MCR 0x20   // modem control register, read/write
114
#define SER_16550_LSR 0x28   // line status register, read
115
#define SER_16550_MSR 0x30   // modem status register, read
116
#define SER_16550_SCR 0x38   // scratch pad register
117
 
118
// The interrupt enable register bits.
119
#define SIO_IER_ERDAI   0x01            // enable received data available irq
120
#define SIO_IER_ETHREI  0x02            // enable THR empty interrupt
121
#define SIO_IER_ELSI    0x04            // enable receiver line status irq
122
#define SIO_IER_EMSI    0x08            // enable modem status interrupt
123
 
124
// The interrupt identification register bits.
125
#define SIO_IIR_IP      0x01            // 0 if interrupt pending
126
#define SIO_IIR_ID_MASK 0x0e            // mask for interrupt ID bits
127
 
128
// The line status register bits.
129
#define SIO_LSR_DR      0x01            // data ready
130
#define SIO_LSR_OE      0x02            // overrun error
131
#define SIO_LSR_PE      0x04            // parity error
132
#define SIO_LSR_FE      0x08            // framing error
133
#define SIO_LSR_BI      0x10            // break interrupt
134
#define SIO_LSR_THRE    0x20            // transmitter holding register empty
135
#define SIO_LSR_TEMT    0x40            // transmitter register empty
136
#define SIO_LSR_ERR     0x80            // any error condition
137
 
138
// The modem status register bits.
139
#define SIO_MSR_DCTS  0x01              // delta clear to send
140
#define SIO_MSR_DDSR  0x02              // delta data set ready
141
#define SIO_MSR_TERI  0x04              // trailing edge ring indicator
142
#define SIO_MSR_DDCD  0x08              // delta data carrier detect
143
#define SIO_MSR_CTS   0x10              // clear to send
144
#define SIO_MSR_DSR   0x20              // data set ready
145
#define SIO_MSR_RI    0x40              // ring indicator
146
#define SIO_MSR_DCD   0x80              // data carrier detect
147
 
148
// The line control register bits.
149
#define SIO_LCR_WLS0   0x01             // word length select bit 0
150
#define SIO_LCR_WLS1   0x02             // word length select bit 1
151
#define SIO_LCR_STB    0x04             // number of stop bits
152
#define SIO_LCR_PEN    0x08             // parity enable
153
#define SIO_LCR_EPS    0x10             // even parity select
154
#define SIO_LCR_SP     0x20             // stick parity
155
#define SIO_LCR_SB     0x40             // set break
156
#define SIO_LCR_DLAB   0x80             // divisor latch access bit
157
 
158
// The FIFO control register
159
#define SIO_FCR_FCR0   0x01             // enable xmit and rcvr fifos
160
#define SIO_FCR_FCR1   0x02             // clear RCVR FIFO
161
#define SIO_FCR_FCR2   0x04             // clear XMIT FIFO
162
/////////////////////////////////////////
163
 
164
 
165
static unsigned char select_word_length[] = {
166
    LCR_WL5,    // 5 bits / word (char)
167
    LCR_WL6,
168
    LCR_WL7,
169
    LCR_WL8
170
};
171
 
172
static unsigned char select_stop_bits[] = {
173
    0,
174
    LCR_SB1,    // 1 stop bit
175
    LCR_SB1_5,  // 1.5 stop bit
176
    LCR_SB2     // 2 stop bits
177
};
178
 
179
static unsigned char select_parity[] = {
180
    LCR_PN,     // No parity
181
    LCR_PE,     // Even parity
182
    LCR_PO,     // Odd parity
183
    LCR_PM,     // Mark parity
184
    LCR_PS,     // Space parity
185
};
186
 
187
// FIXME: calc all properly
188
// The Cogent board has a 3.6864 MHz crystal
189
static unsigned short select_baud[] = {
190
    0,    // Unused
191
    4608, // 50
192
    0,    // 75
193
    2094, // 110
194
    0,    // 134.5
195
    1536, // 150
196
    0,    // 200
197
    768,  // 300
198
    384,  // 600
199
    182,  // 1200
200
    0,    // 1800
201
    96,   // 2400
202
    0,    // 3600
203
    48,   // 4800
204
    32,   // 7200
205
    24,   // 9600
206
    16,   // 14400
207
    12,   // 19200
208
    6,    // 38400
209
    4,    // 57600
210
    2,    // 115200
211
    0,    // 230400
212
};
213
 

powered by: WebSVN 2.1.0

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