gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
uart8250.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
33 #ifndef __DEV_UART8250_HH__
34 #define __DEV_UART8250_HH__
35 
36 #include "base/bitunion.hh"
37 #include "base/logging.hh"
38 #include "dev/io_device.hh"
39 #include "dev/reg_bank.hh"
40 #include "dev/serial/uart.hh"
41 #include "params/Uart8250.hh"
42 
43 const uint8_t UART_MCR_LOOP = 0x10;
44 
45 class Terminal;
46 class Platform;
47 
48 class Uart8250 : public Uart
49 {
50  protected:
51  BitUnion8(Ier)
52  Bitfield<0> rdi; // Receive data available interrupt.
53  Bitfield<1> thri; // Transmit holding register interrupt.
54  Bitfield<2> rlsi; // Receive line status interrupt.
55  Bitfield<3> msi; // Modem status interrupt.
56  EndBitUnion(Ier)
57 
58  BitUnion8(Iir)
59  Bitfield<0> pending; // 0 = pending, 1 = not pending.
60  Bitfield<2, 1> id; // ID of highest priority interrupt.
61  Bitfield<7, 3> zeroes;
62  EndBitUnion(Iir)
63 
64  BitUnion8(Lcr)
65  Bitfield<1, 0> wordSize;
66  Bitfield<2> stopBits;
67  Bitfield<5, 3> parity;
68  Bitfield<6> breakCont;
69  Bitfield<7> dlab;
70  EndBitUnion(Lcr)
71 
72  BitUnion8(Lsr)
73  Bitfield<0> rdr; // Received data ready?
74  Bitfield<1> overrunError;
75  Bitfield<2> parityError;
76  Bitfield<3> framingError;
77  Bitfield<4> breakCond;
78  Bitfield<5> tbe; // Transmit buffer empty.
79  Bitfield<6> txEmpty; // Transmitter empty.
80  Bitfield<7> unused;
82 
83  enum class InterruptIds {
84  Modem = 0, // Modem Status (lowest priority).
85  Tx = 1, // Tx Data.
86  Rx = 2, // Rx Data.
87  Line = 3, // Rx Line Status (highest priority).
88  };
89 
90  class Registers : public RegisterBankLE
91  {
92  public:
93  Registers(Uart8250 *uart, const std::string &new_name);
94 
96  {
97  protected:
99 
100  public:
102  RegisterBase(reg1.name() + "/" + reg2.name(), reg1.size()),
103  _reg1(reg1), _reg2(reg2)
104  {
105  panic_if(reg1.size() != reg2.size(),
106  "Mismatched paired register sizes %d, %d",
107  reg1.size(), reg2.size());
108  }
109 
110  void serialize(std::ostream &os) const override {}
111  bool unserialize(const std::string &s) override { return true; }
112  };
113 
115  {
116  private:
117  RegisterBase *selected = nullptr;
118 
119  public:
121  PairedRegister(reg1, reg2), selected(&reg1)
122  {}
123 
124  void select(bool second) { selected = second ? &_reg2 : &_reg1; }
125 
126  const std::string &
127  name() const override
128  {
129  return selected->name();
130  }
131 
132  void read(void *buf) override { selected->read(buf); }
133  void
134  read(void *buf, off_t offset, size_t bytes) override
135  {
136  selected->read(buf, offset, bytes);
137  }
138  void write(const void *buf) override { selected->write(buf); }
139  void
140  write(const void *buf, off_t offset, size_t bytes) override
141  {
142  selected->write(buf, offset, bytes);
143  }
144  };
145 
147  {
148  public:
150 
151  void read(void *buf) override { _reg1.read(buf); }
152  void
153  read(void *buf, off_t offset, size_t bytes) override
154  {
155  _reg1.read(buf, offset, bytes);
156  }
157  void write(const void *buf) override { _reg2.write(buf); }
158  void
159  write(const void *buf, off_t offset, size_t bytes) override
160  {
161  _reg2.write(buf, offset, bytes);
162  }
163  };
164 
165  // Offset 0.
166  Register8 rbr = {"rbr"};
167  Register8 thr = {"thr"};
169 
170  Register8 dll = {"dll"};
172 
173  // Offset 1.
174  Register<Ier> ier = {"ier", 0};
175  Register8 dlh = {"dlh"};
177 
178  // Offset 2.
179  Register<Iir> iir = {"iir"};
180  Register8 fcr = {"fcr"};
182 
183  // Offsets 3 - 6.
184  Register<Lcr> lcr = {"lcr"};
185  Register8 mcr = {"mcr"};
186  Register<Lsr> lsr = {"lsr"};
187  Register8 msr = {"msr"};
188 
189  // The scratch register didn't exist on the 8250.
190  RegisterRaz sr = {"sr", 1};
191  };
193  template <class T>
195 
197 
198  uint8_t readRbr(Register8 &reg);
199  void writeThr(Register8 &reg, const uint8_t &data);
200  void writeIer(Register<Ier> &reg, const Ier &ier);
201  Iir readIir(Register<Iir> &reg);
202 
204 
205  void processIntrEvent(int intrBit);
206  void scheduleIntr(Event *event);
207 
210 
211  public:
212  using Params = Uart8250Params;
213  Uart8250(const Params &p);
214 
215  Tick read(PacketPtr pkt) override;
216  Tick write(PacketPtr pkt) override;
217  AddrRangeList getAddrRanges() const override;
218 
222  void dataAvailable() override;
223 
224 
229  virtual bool intStatus() { return status ? true : false; }
230 
231  void serialize(CheckpointOut &cp) const override;
232  void unserialize(CheckpointIn &cp) override;
233 };
234 
235 #endif // __TSUNAMI_UART_HH__
Uart8250::Registers::BankedRegister::read
void read(void *buf, off_t offset, size_t bytes) override
Definition: uart8250.hh:134
RegisterBank::Register
Definition: reg_bank.hh:485
Uart8250::Registers::lcr
Register< Lcr > lcr
Definition: uart8250.hh:184
io_device.hh
Uart8250::Registers::RWSwitchedRegister
Definition: uart8250.hh:146
X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
Uart8250::framingError
Bitfield< 3 > framingError
Definition: uart8250.hh:76
Uart8250::breakCond
Bitfield< 4 > breakCond
Definition: uart8250.hh:77
Uart8250::Registers::ier
Register< Ier > ier
Definition: uart8250.hh:174
data
const char data[]
Definition: circlebuf.test.cc:47
Uart8250::Registers::BankedRegister::BankedRegister
BankedRegister(RegisterBase &reg1, RegisterBase &reg2)
Definition: uart8250.hh:120
Uart8250::stopBits
Bitfield< 2 > stopBits
Definition: uart8250.hh:66
Uart8250::Registers::thr
Register8 thr
Definition: uart8250.hh:167
Uart8250::Registers::PairedRegister
Definition: uart8250.hh:95
Uart8250::Registers::BankedRegister::name
const std::string & name() const override
Definition: uart8250.hh:127
Uart8250::Registers::BankedRegister::selected
RegisterBase * selected
Definition: uart8250.hh:117
Uart8250::readIir
Iir readIir(Register< Iir > &reg)
Definition: uart8250.cc:157
Uart8250::Registers::iir
Register< Iir > iir
Definition: uart8250.hh:179
Uart8250::Registers::dlh
Register8 dlh
Definition: uart8250.hh:175
Uart8250::parityError
Bitfield< 2 > parityError
Definition: uart8250.hh:75
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
Uart8250::Registers::BankedRegister::write
void write(const void *buf) override
Definition: uart8250.hh:138
Uart8250::Registers::iirFcr
RWSwitchedRegister iirFcr
Definition: uart8250.hh:181
Uart8250::parity
Bitfield< 5, 3 > parity
Definition: uart8250.hh:67
Uart8250::dlab
Bitfield< 7 > dlab
Definition: uart8250.hh:69
Uart8250::processIntrEvent
void processIntrEvent(int intrBit)
Definition: uart8250.cc:47
Uart8250::Registers::mcr
Register8 mcr
Definition: uart8250.hh:185
Uart8250::writeIer
void writeIer(Register< Ier > &reg, const Ier &ier)
Definition: uart8250.cc:176
X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:88
Uart8250::Registers::BankedRegister::write
void write(const void *buf, off_t offset, size_t bytes) override
Definition: uart8250.hh:140
Uart8250::writeThr
void writeThr(Register8 &reg, const uint8_t &data)
Definition: uart8250.cc:147
EventFunctionWrapper
Definition: eventq.hh:1112
Uart8250::txIntrEvent
EventFunctionWrapper txIntrEvent
Definition: uart8250.hh:208
RegisterBank::RegisterBase
Definition: reg_bank.hh:314
Uart8250::getAddrRanges
AddrRangeList getAddrRanges() const override
Determine the address ranges that this device responds to.
Definition: uart8250.cc:252
Uart8250::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: uart8250.cc:227
cp
Definition: cprintf.cc:37
Uart8250::Registers::BankedRegister::select
void select(bool second)
Definition: uart8250.hh:124
Uart
Definition: uart.hh:46
Uart8250::unused
Bitfield< 7 > unused
Definition: uart8250.hh:80
Uart8250::registers
Registers registers
Definition: uart8250.hh:196
Event
Definition: eventq.hh:248
Uart8250::EndBitUnion
EndBitUnion(Ier) BitUnion8(Iir) Bitfield< 0 > pending
Uart8250::Registers::BankedRegister
Definition: uart8250.hh:114
Uart8250
Definition: uart8250.hh:48
uart.hh
Uart8250::thri
Bitfield< 1 > thri
Definition: uart8250.hh:53
Uart8250::txEmpty
Bitfield< 6 > txEmpty
Definition: uart8250.hh:79
MipsISA::event
Bitfield< 10, 5 > event
Definition: pra_constants.hh:297
RegisterBank::Register8
Register< uint8_t > Register8
Definition: reg_bank.hh:766
RegisterBank::RegisterBase::read
virtual void read(void *buf)=0
bitunion.hh
Uart8250::overrunError
Bitfield< 1 > overrunError
Definition: uart8250.hh:74
Uart8250::Registers
Definition: uart8250.hh:90
Uart8250::Registers::PairedRegister::serialize
void serialize(std::ostream &os) const override
Definition: uart8250.hh:110
RegisterBank::size
Addr size() const
Definition: reg_bank.hh:801
Uart8250::id
Bitfield< 2, 1 > id
Definition: uart8250.hh:60
RegisterBank::RegisterBase::write
virtual void write(const void *buf)=0
Uart8250::Registers::RWSwitchedRegister::read
void read(void *buf, off_t offset, size_t bytes) override
Definition: uart8250.hh:153
RegisterBank< ByteOrder::little >
RegisterBank::RegisterBase::name
virtual const std::string & name() const
Definition: reg_bank.hh:327
RegisterBank::RegisterBase::size
size_t size() const
Definition: reg_bank.hh:330
RegisterBank::RegisterRaz
Definition: reg_bank.hh:374
Uart8250::Registers::PairedRegister::_reg2
RegisterBase & _reg2
Definition: uart8250.hh:98
Uart8250::tbe
Bitfield< 5 > tbe
Definition: uart8250.hh:78
Uart::status
int status
Definition: uart.hh:49
Uart8250::Registers::PairedRegister::PairedRegister
PairedRegister(RegisterBase &reg1, RegisterBase &reg2)
Definition: uart8250.hh:101
Uart8250::zeroes
Bitfield< 7, 3 > zeroes
Definition: uart8250.hh:61
Platform
Definition: platform.hh:49
Uart8250::read
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: uart8250.cc:214
Uart8250::scheduleIntr
void scheduleIntr(Event *event)
Definition: uart8250.cc:73
Uart8250::rlsi
Bitfield< 2 > rlsi
Definition: uart8250.hh:54
Uart8250::Registers::sr
RegisterRaz sr
Definition: uart8250.hh:190
Uart8250::breakCont
Bitfield< 6 > breakCont
Definition: uart8250.hh:68
Uart8250::lastTxInt
Tick lastTxInt
Definition: uart8250.hh:203
Uart8250::rxIntrEvent
EventFunctionWrapper rxIntrEvent
Definition: uart8250.hh:209
Uart8250::Registers::msr
Register8 msr
Definition: uart8250.hh:187
Uart8250::intStatus
virtual bool intStatus()
Return if we have an interrupt pending.
Definition: uart8250.hh:229
Uart8250::msi
Bitfield< 3 > msi
Definition: uart8250.hh:55
Uart8250::Registers::dll
Register8 dll
Definition: uart8250.hh:170
Uart8250::Registers::RWSwitchedRegister::write
void write(const void *buf) override
Definition: uart8250.hh:157
Uart8250::BitUnion8
BitUnion8(Ier) Bitfield< 0 > rdi
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
Uart8250::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: uart8250.cc:260
Uart8250::readRbr
uint8_t readRbr(Register8 &reg)
Definition: uart8250.cc:129
UART_MCR_LOOP
const uint8_t UART_MCR_LOOP
Definition: uart8250.hh:43
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
RegisterBank::name
const std::string & name() const
Definition: reg_bank.hh:802
Uart8250::Registers::ierDlh
BankedRegister ierDlh
Definition: uart8250.hh:176
logging.hh
Uart8250::dataAvailable
void dataAvailable() override
Inform the uart that there is data available.
Definition: uart8250.cc:241
Uart8250::Registers::Registers
Registers(Uart8250 *uart, const std::string &new_name)
Definition: uart8250.cc:93
Uart8250::Registers::PairedRegister::unserialize
bool unserialize(const std::string &s) override
Definition: uart8250.hh:111
Uart8250::Registers::fcr
Register8 fcr
Definition: uart8250.hh:180
Uart8250::Registers::RWSwitchedRegister::read
void read(void *buf) override
Definition: uart8250.hh:151
Uart8250::Registers::PairedRegister::_reg1
RegisterBase & _reg1
Definition: uart8250.hh:98
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
Uart8250::Registers::lsr
Register< Lsr > lsr
Definition: uart8250.hh:186
Uart8250::Uart8250
Uart8250(const Params &p)
Definition: uart8250.cc:85
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Uart8250::Registers::rbrThrDll
BankedRegister rbrThrDll
Definition: uart8250.hh:171
std::list< AddrRange >
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
Uart8250::Registers::rbr
Register8 rbr
Definition: uart8250.hh:166
CheckpointIn
Definition: serialize.hh:68
Uart8250::Registers::BankedRegister::read
void read(void *buf) override
Definition: uart8250.hh:132
Uart8250::Registers::rbrThr
RWSwitchedRegister rbrThr
Definition: uart8250.hh:168
PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:131
Uart8250::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: uart8250.cc:281
reg_bank.hh
Uart8250::wordSize
wordSize
Definition: uart8250.hh:65
Uart8250::Registers::RWSwitchedRegister::write
void write(const void *buf, off_t offset, size_t bytes) override
Definition: uart8250.hh:159
Terminal
Definition: terminal.hh:61
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153

Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17