40 #include "debug/Uart.hh" 52 platform->postConsoleInt();
57 DPRINTF(
Uart,
"UART InterEvent, not interrupting\n");
77 DPRINTF(
Uart,
"Scheduling IER interrupt for %s, at cycle %lld\n",
80 schedule(event,
curTick() + interval);
82 reschedule(event,
curTick() + interval);
87 :
Uart(p, 8),
IER(0), DLAB(0), LCR(0), MCR(0), lastTxInt(0),
134 else if (status &
TX_INT) {
164 panic(
"Tried to access a UART port that doesn't exist\n");
183 DPRINTF(
Uart,
" write register %#x value %#x\n", daddr,
204 "IER: IER_THRI set, scheduling TX intrrupt\n");
206 DPRINTF(
Uart,
"-- Interrupting Immediately... %d,%d\n",
218 "descheduling TX intrrupt\n");
228 "IER: IER_RDI set, scheduling RX intrrupt\n");
232 "descheduling RX intrrupt\n");
256 panic(
"Tried to access a UART port that doesn't exist\n");
324 Uart8250Params::create()
#define panic(...)
This implements a cprintf based panic() function.
AddrRange RangeSize(Addr start, Addr size)
const uint8_t UART_IER_THRI
virtual uint8_t readData()=0
Read a character from the device.
EventFunctionWrapper txIntrEvent
const uint8_t UART_IER_RDI
void dataAvailable() override
Inform the uart that there is data available.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
const uint8_t UART_LSR_TEMT
void setRaw(T v)
Set the value in the data pointer to v without byte swapping.
Overload hash function for BasicBlockRange type.
const uint8_t UART_MCR_LOOP
virtual void writeData(uint8_t c)=0
Transmit a character from the host interface to the device.
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
#define UNSERIALIZE_SCALAR(scalar)
Tick curTick()
The current simulated tick.
virtual const std::string name() const
Addr pioSize
Size that the device's address range.
Uart8250(const Params *p)
void makeAtomicResponse()
uint64_t Tick
Tick count type.
void processIntrEvent(int intrBit)
AddrRangeList getAddrRanges() const override
Determine the address ranges that this device responds to.
void deschedule(Event &event)
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
void schedule(Event &event, Tick when)
const uint8_t UART_LSR_DR
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Declaration of IniFile object.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
#define SERIALIZE_SCALAR(scalar)
bool scheduled() const
Determine if the current event is scheduled.
void scheduleIntr(Event *event)
EventFunctionWrapper rxIntrEvent
const uint8_t UART_LSR_THRE
Declaration of the Packet class.
std::ostream CheckpointOut
T getRaw() const
Get the data in the packet without byte swapping.
Tick pioDelay
Delay that the device experinces on an access.
Tick when() const
Get the time that the event is scheduled.
Addr pioAddr
Address that the device listens to.
virtual bool dataAvailable() const =0
Check if there is pending data from the serial device.
void serialize(CheckpointOut &cp) const override
Serialize an object.