1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/usr/console/uart.H $ */
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2014 */
/* [+] International Business Machines Corp. */
/* [+] Google Inc. */
/* */
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); */
/* you may not use this file except in compliance with the License. */
/* You may obtain a copy of the License at */
/* */
/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
/* Unless required by applicable law or agreed to in writing, software */
/* distributed under the License is distributed on an "AS IS" BASIS, */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
/* implied. See the License for the specific language governing */
/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#ifndef __CONSOLE_UART_H
#define __CONSOLE_UART_H
#include <errl/errlentry.H>
namespace CONSOLE
{
namespace UARTREGS
{
/** UART Register Offsets */
enum
{
RBR = 0, ///< Recv Buffer
THR = 0, ///< Tran Holding
DLL = 0, ///< Divisor Latch LSB
IER = 1, ///< Interrupt Enable
DLM = 1, ///< Divisor Latch MSB
FCR = 2, ///< FIFO Control
IIR = 2, ///< Interrupt Identification
LCR = 3, ///< Line Control
MCR = 4, ///< Modem Control
LSR = 5, ///< Line Status
MSR = 6, ///< Modem Status
SCR = 7, ///< Scratch
};
/** Line Status Register (LSR) bit definitions */
enum
{
LSR_DR = 0x01, ///< Data ready
LSR_OE = 0x02, ///< Overrun
LSR_PE = 0x04, ///< Parity error
LSR_FE = 0x08, ///< Framing error
LSR_BI = 0x10, ///< Break
LSR_THRE = 0x20, ///< Xmit holding register empty
LSR_TEMT = 0x40, ///< Xmitter empty
LSR_ERR = 0x80, ///< Error
LSR_BAD = 0xff, ///< Invalid value for LSR
};
/** Line Control Register (LCR) bit definitions */
enum
{
LCR_DWL5 = 0x00, ///< Data word length: 5 bits
LCR_DWL6 = 0x01, ///< Data word length: 6 bits
LCR_DWL7 = 0x02, ///< Data word length: 7 bits
LCR_DWL8 = 0x03, ///< Data word length: 8 bits
LCR_STP1 = 0x00, ///< 1 stop bits
LCR_STP2 = 0x04, ///< 1.5(5) or 2(6,7,8) stop bits
LCR_NOP = 0x00, ///< No Parity
LCR_ODDP = 0x08, ///< Odd Parity
LCR_EVEP = 0x18, ///< Even Parity
LCR_HIP = 0x28, ///< High Parity
LCR_LOP = 0x38, ///< Low Parity
LCR_DLAB = 0x80, ///< DLL access
};
/** Modem Control Register (MCR) bit definitions */
enum
{
MCR_DTR = 0x01, ///< Data terminal ready
MCR_RTS = 0x02, ///< Request to send
};
/** FIFO Control Register (FCR) bit definitions */
enum
{
FCR_ENF = 0x01, ///< Enable FIFOs.
FCR_CLFR = 0x02, ///< Clear Receive FIFO.
FCR_CLFT = 0x04, ///< Clear Transmit FIFO
};
}
/** @class Uart
* @brief Abstraction class for UART-based console operations.
*/
class Uart
{
public:
Uart() : iv_initialized(false), iv_failed(false) {};
virtual ~Uart() {};
/** Display character to console. */
virtual void putc(char c);
/** Get character from console. */
//virtual void getc(char& c);
/** Perform UART-specific initialization. */
virtual void initialize();
/** Pointer to console UART singleton.
*
* Should be initalized using the CONSOLE_UART_DEFINE_DEVICE macro.
*/
static Uart* g_device;
protected:
/** Perform write operation to UART engine. */
virtual errlHndl_t writeReg(uint64_t i_addr, uint8_t i_byte);
/** Perform read operation to UART engine. */
virtual errlHndl_t readReg(uint64_t i_addr, uint8_t& o_byte);
void setFailed() { iv_failed = true; }
private:
bool iv_initialized;
bool iv_failed;
// Prohibit copy constructors.
Uart(const Uart&);
Uart& operator=(const Uart&);
};
// Static configuration constants. See uartconfig.C.
extern const uint64_t g_uartBase;
extern const uint64_t g_uartBaud;
extern const uint64_t g_uartClock;
}
/** Helper macro to associate inherited UART device with the singleton. */
#define CONSOLE_UART_DEFINE_DEVICE(Type) \
class ConsoleInit##Type \
{ \
public: \
ConsoleInit##Type() \
{ \
Uart::g_device = new Type(); \
Uart::g_device->initialize(); \
} \
}; \
ConsoleInit##Type __console_init_##Type;
#endif
|