Go to the documentation of this file.
45 #include "debug/Pl050.hh"
73 DPRINTF(
Pl050,
"Read Commmand: %#x\n", (uint32_t)control);
105 warn(
"Tried to read PL050 at offset %#x that doesn't exist\n", daddr);
124 "PL050: Unexpected write size "
125 "(offset: %#x, data: %#x, size: %u)\n",
150 warn(
"PL050: Unhandled write of %#x to offset %#x\n",
data, daddr);
161 InterruptReg ints = rawInterrupts;
163 ints.tx = value ? 1 : 0;
171 InterruptReg ints = rawInterrupts;
183 rawInterrupts = ints;
186 if (!old_pending && new_pending) {
187 DPRINTF(
Pl050,
"Generate interrupt: rawInt=%#x ctrl=%#x int=%#x\n",
190 }
else if (old_pending && !new_pending) {
191 DPRINTF(
Pl050,
"Clear interrupt: rawInt=%#x ctrl=%#x int=%#x\n",
200 InterruptReg tmp_interrupt(0);
202 tmp_interrupt.tx = rawInterrupts.tx & control.txint_enable;
203 tmp_interrupt.rx = rawInterrupts.rx & control.rxint_enable;
205 return tmp_interrupt;
214 paramOut(cp,
"raw_ints", rawInterrupts);
220 paramIn(cp,
"ctrlreg", control);
223 paramIn(cp,
"raw_ints", rawInterrupts);
Addr pioAddr
Address that the device listens to.
InterruptReg getInterrupt() const
Get current interrupt value.
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits.
#define UNSERIALIZE_SCALAR(scalar)
void makeAtomicResponse()
void setControl(ControlReg ctrl)
void updateIntCtrl(InterruptReg ints, ControlReg ctrl)
Update the status of the interrupt and control registers and deliver an interrupt if required.
void setInterrupts(InterruptReg ints)
void hostWrite(uint8_t c)
Transmit a character from the host interface to the device.
void updateRxInt()
Update the RX interrupt using PS/2 device state.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
bool hostDataAvailable() const
Check if there is pending data from the PS/2 device.
uint64_t Tick
Tick count type.
virtual void clear()=0
Clear a signalled interrupt.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void setTxInt(bool value)
Set or clear the TX interrupt.
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Tick pioDelay
Delay that the device experinces on an access.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
#define SERIALIZE_SCALAR(scalar)
ArmInterruptPin *const interrupt
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
static const int kmiClkDiv
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
void paramIn(CheckpointIn &cp, const std::string &name, ExtMachInst &machInst)
Addr pioSize
Size that the device's address range.
std::ostream CheckpointOut
virtual void raise()=0
Signal an interrupt.
bool readId(PacketPtr pkt, uint64_t amba_id, Addr pio_addr)
ps2::Device * ps2Device
PS2 device connected to this KMI interface.
Pl050(const Pl050Params &p)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint8_t hostRead()
Read a character from the device.
void setUintX(uint64_t w, ByteOrder endian)
Set the value in the word w after truncating it to the length of the packet and then byteswapping it ...
uint8_t clkdiv
clock divisor register This register is just kept around to satisfy reads after driver does writes.
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
void hostRegDataAvailable(const std::function< void()> &c)
Register a data available callback into the PS/2 interface.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Generated on Wed Jul 28 2021 12:10:25 for gem5 by doxygen 1.8.17