gem5
v20.1.0.0
|
#include <pl111.hh>
Public Types | |
typedef Pl111Params | Params |
Public Types inherited from AmbaDmaDevice | |
typedef AmbaDmaDeviceParams | Params |
Public Types inherited from DmaDevice | |
typedef DmaDeviceParams | Params |
Public Types inherited from PioDevice | |
typedef PioDeviceParams | Params |
Public Types inherited from ClockedObject | |
typedef ClockedObjectParams | Params |
Parameters of ClockedObject. More... | |
Public Types inherited from SimObject | |
typedef SimObjectParams | Params |
Public Member Functions | |
const Params * | params () const |
Pl111 (const Params *p) | |
~Pl111 () | |
Tick | read (PacketPtr pkt) override |
Pure virtual function that the device must implement. More... | |
Tick | write (PacketPtr pkt) override |
Pure virtual function that the device must implement. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
AddrRangeList | getAddrRanges () const override |
Determine the address ranges that this device responds to. More... | |
Public Member Functions inherited from AmbaDmaDevice | |
AmbaDmaDevice (const Params *p, Addr pio_size=0) | |
Public Member Functions inherited from DmaDevice | |
DmaDevice (const Params *p) | |
virtual | ~DmaDevice () |
void | dmaWrite (Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0) |
void | dmaWrite (Addr addr, int size, Event *event, uint8_t *data, Tick delay=0) |
void | dmaRead (Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0) |
void | dmaRead (Addr addr, int size, Event *event, uint8_t *data, Tick delay=0) |
bool | dmaPending () const |
void | init () override |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
unsigned int | cacheBlockSize () const |
Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) override |
Get a port with a given name and index. More... | |
Public Member Functions inherited from PioDevice | |
PioDevice (const Params *p) | |
virtual | ~PioDevice () |
const Params * | params () const |
void | init () override |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) override |
Get a port with a given name and index. More... | |
Public Member Functions inherited from ClockedObject | |
ClockedObject (const ClockedObjectParams *p) | |
const Params * | params () const |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Public Member Functions inherited from SimObject | |
const Params * | params () const |
SimObject (const Params *_params) | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. More... | |
virtual void | initState () |
initState() is called on each SimObject when not restoring from a checkpoint. More... | |
virtual void | regProbePoints () |
Register probe points for this object. More... | |
virtual void | regProbeListeners () |
Register probe listeners for this object. More... | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. More... | |
virtual void | startup () |
startup() is the final initialization call before simulation. More... | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. More... | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. More... | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Public Member Functions inherited from EventManager | |
EventQueue * | eventQueue () const |
void | schedule (Event &event, Tick when) |
void | deschedule (Event &event) |
void | reschedule (Event &event, Tick when, bool always=false) |
void | schedule (Event *event, Tick when) |
void | deschedule (Event *event) |
void | reschedule (Event *event, Tick when, bool always=false) |
void | wakeupEventQueue (Tick when=(Tick) -1) |
This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. More... | |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
Event manger manages events in the event queue. More... | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
Public Member Functions inherited from Serializable | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Public Member Functions inherited from Drainable | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
Public Member Functions inherited from Stats::Group | |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | regStats () |
Callback to set stat parameters. More... | |
virtual void | resetStats () |
Callback to reset stats. More... | |
virtual void | preDumpStats () |
Callback before stats are dumped. More... | |
void | addStat (Stats::Info *info) |
Register a stat with this group. More... | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. More... | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. More... | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. More... | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. More... | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Public Member Functions inherited from Clocked | |
void | updateClockPeriod () |
Update the tick to the current tick. More... | |
Tick | clockEdge (Cycles cycles=Cycles(0)) const |
Determine the tick when a cycle begins, by default the current one, but the argument also enables the caller to determine a future cycle. More... | |
Cycles | curCycle () const |
Determine the current cycle, corresponding to a tick aligned to a clock edge. More... | |
Tick | nextCycle () const |
Based on the clock of the object, determine the start tick of the first cycle that is at least one cycle in the future. More... | |
uint64_t | frequency () const |
Tick | clockPeriod () const |
double | voltage () const |
Cycles | ticksToCycles (Tick t) const |
Tick | cyclesToTicks (Cycles c) const |
Protected Types | |
enum | LcdMode { bpp1 = 0, bpp2, bpp4, bpp8, bpp16, bpp24, bpp16m565, bpp12 } |
Protected Member Functions | |
BitUnion8 (InterruptReg) Bitfield< 1 > underflow | |
EndBitUnion (InterruptReg) BitUnion32(TimingReg0) Bitfield< 7 | |
EndBitUnion (TimingReg0) BitUnion32(TimingReg1) Bitfield< 9 | |
EndBitUnion (TimingReg1) BitUnion32(TimingReg2) Bitfield< 4 | |
EndBitUnion (TimingReg2) BitUnion32(TimingReg3) Bitfield< 6 | |
EndBitUnion (TimingReg3) BitUnion32(ControlReg) Bitfield< 0 > lcden | |
PixelConverter | pixelConverter () const |
void | updateVideoParams () |
Send updated parameters to the vnc server. More... | |
void | readFramebuffer () |
DMA framebuffer read. More... | |
void | generateReadEvent () |
Generate dma framebuffer read event. More... | |
void | generateInterrupt () |
Function to generate interrupt. More... | |
void | fillFifo () |
fillFIFO event More... | |
void | startDma () |
start the dmas off after power is enabled More... | |
void | dmaDone () |
DMA done event. More... | |
Protected Member Functions inherited from Drainable | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
Protected Member Functions inherited from Clocked | |
Clocked (ClockDomain &clk_domain) | |
Create a clocked object and set the clock domain based on the parameters. More... | |
Clocked (Clocked &)=delete | |
Clocked & | operator= (Clocked &)=delete |
virtual | ~Clocked () |
Virtual destructor due to inheritance. More... | |
void | resetClock () const |
Reset the object's clock using the current global tick value. More... | |
virtual void | clockPeriodUpdated () |
A hook subclasses can implement so they can do any extra work that's needed when the clock rate is changed. More... | |
Protected Member Functions inherited from AmbaDevice | |
bool | readId (PacketPtr pkt, uint64_t amba_id, Addr pio_addr) |
Protected Attributes | |
Bitfield< 2 > | baseaddr |
Bitfield< 3 > | vcomp |
Bitfield< 4 > | ahbmaster |
ppl | |
Bitfield< 15, 8 > | hsw |
Bitfield< 23, 16 > | hfp |
Bitfield< 31, 24 > | hbp |
lpp | |
Bitfield< 15, 10 > | vsw |
Bitfield< 23, 16 > | vfp |
Bitfield< 31, 24 > | vbp |
pcdlo | |
Bitfield< 5 > | clksel |
Bitfield< 10, 6 > | acb |
Bitfield< 11 > | avs |
Bitfield< 12 > | ihs |
Bitfield< 13 > | ipc |
Bitfield< 14 > | ioe |
Bitfield< 25, 16 > | cpl |
Bitfield< 26 > | bcd |
Bitfield< 31, 27 > | pcdhi |
led | |
Bitfield< 16 > | lee |
Bitfield< 3, 1 > | lcdbpp |
Bitfield< 4 > | lcdbw |
Bitfield< 5 > | lcdtft |
Bitfield< 6 > | lcdmono8 |
Bitfield< 7 > | lcddual |
Bitfield< 8 > | bgr |
Bitfield< 9 > | bebo |
Bitfield< 10 > | bepo |
Bitfield< 11 > | lcdpwr |
Bitfield< 13, 12 > | lcdvcomp |
Bitfield< 16 > | watermark |
EndBitUnion(ControlReg) class DmaDoneEvent TimingReg0 | lcdTiming0 |
Event wrapper for dmaDone() More... | |
TimingReg1 | lcdTiming1 |
Vertical axis panel control register. More... | |
TimingReg2 | lcdTiming2 |
Clock and signal polarity control register. More... | |
TimingReg3 | lcdTiming3 |
Line end control register. More... | |
uint32_t | lcdUpbase |
Upper panel frame base address register. More... | |
uint32_t | lcdLpbase |
Lower panel frame base address register. More... | |
ControlReg | lcdControl |
Control register. More... | |
InterruptReg | lcdImsc |
Interrupt mask set/clear register. More... | |
InterruptReg | lcdRis |
Raw interrupt status register - const. More... | |
InterruptReg | lcdMis |
Masked interrupt status register. More... | |
uint32_t | lcdPalette [LcdPaletteSize] |
256x16-bit color palette registers 256 palette entries organized as 128 locations of two entries per word More... | |
uint32_t | cursorImage [CrsrImageSize] |
Cursor image RAM register 256-word wide values defining images overlaid by the hw cursor mechanism. More... | |
uint32_t | clcdCrsrCtrl |
Cursor control register. More... | |
uint32_t | clcdCrsrConfig |
Cursor configuration register. More... | |
uint32_t | clcdCrsrPalette0 |
Cursor palette registers. More... | |
uint32_t | clcdCrsrPalette1 |
uint32_t | clcdCrsrXY |
Cursor XY position register. More... | |
uint32_t | clcdCrsrClip |
Cursor clip position register. More... | |
InterruptReg | clcdCrsrImsc |
Cursor interrupt mask set/clear register. More... | |
InterruptReg | clcdCrsrIcr |
Cursor interrupt clear register. More... | |
InterruptReg | clcdCrsrRis |
Cursor raw interrupt status register - const. More... | |
InterruptReg | clcdCrsrMis |
Cursor masked interrupt status register - const. More... | |
Tick | pixelClock |
Pixel clock. More... | |
PixelConverter | converter |
FrameBuffer | fb |
VncInput * | vnc |
VNC server. More... | |
BmpWriter | bmp |
Helper to write out bitmaps. More... | |
OutputStream * | pic |
Picture of what the current frame buffer looks like. More... | |
uint16_t | width |
Frame buffer width - pixels per line. More... | |
uint16_t | height |
Frame buffer height - lines per panel. More... | |
uint8_t | bytesPerPixel |
Bytes per pixel. More... | |
uint8_t * | dmaBuffer |
CLCDC supports up to 1024x768. More... | |
Tick | startTime |
Start time for frame buffer dma read. More... | |
Addr | startAddr |
Frame buffer base address. More... | |
Addr | maxAddr |
Frame buffer max address. More... | |
Addr | curAddr |
Frame buffer current address. More... | |
uint32_t | waterMark |
DMA FIFO watermark. More... | |
uint32_t | dmaPendingNum |
Number of pending dma reads. More... | |
EventFunctionWrapper | readEvent |
DMA framebuffer read event. More... | |
EventFunctionWrapper | fillFifoEvent |
Fill fifo. More... | |
EventFunctionWrapper | intEvent |
Wrapper to create an event out of the interrupt. More... | |
bool | enableCapture |
std::vector< DmaDoneEvent > | dmaDoneEventAll |
All pre-allocated DMA done events. More... | |
std::vector< DmaDoneEvent * > | dmaDoneEventFree |
Unused DMA done events that are ready to be scheduled. More... | |
Protected Attributes inherited from AmbaDmaDevice | |
uint64_t | ambaId |
Addr | pioAddr |
Addr | pioSize |
Tick | pioDelay |
ArmInterruptPin *const | interrupt |
Protected Attributes inherited from DmaDevice | |
DmaPort | dmaPort |
Protected Attributes inherited from PioDevice | |
System * | sys |
PioPort< PioDevice > | pioPort |
The pioPort that handles the requests for us and provides us requests that it sees. More... | |
Protected Attributes inherited from SimObject | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
Protected Attributes inherited from EventManager | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
Static Protected Attributes | |
static const uint64_t | AMBA_ID = ULL(0xb105f00d00141111) |
static const int | LcdTiming0 = 0x000 |
ARM PL111 register map. More... | |
static const int | LcdTiming1 = 0x004 |
static const int | LcdTiming2 = 0x008 |
static const int | LcdTiming3 = 0x00C |
static const int | LcdUpBase = 0x010 |
static const int | LcdLpBase = 0x014 |
static const int | LcdControl = 0x018 |
static const int | LcdImsc = 0x01C |
static const int | LcdRis = 0x020 |
static const int | LcdMis = 0x024 |
static const int | LcdIcr = 0x028 |
static const int | LcdUpCurr = 0x02C |
static const int | LcdLpCurr = 0x030 |
static const int | LcdPalette = 0x200 |
static const int | CrsrImage = 0x800 |
static const int | ClcdCrsrCtrl = 0xC00 |
static const int | ClcdCrsrConfig = 0xC04 |
static const int | ClcdCrsrPalette0 = 0xC08 |
static const int | ClcdCrsrPalette1 = 0xC0C |
static const int | ClcdCrsrXY = 0xC10 |
static const int | ClcdCrsrClip = 0xC14 |
static const int | ClcdCrsrImsc = 0xC20 |
static const int | ClcdCrsrIcr = 0xC24 |
static const int | ClcdCrsrRis = 0xC28 |
static const int | ClcdCrsrMis = 0xC2C |
static const int | LcdPaletteSize = 128 |
static const int | CrsrImageSize = 256 |
static const int | LcdMaxWidth = 1024 |
static const int | LcdMaxHeight = 768 |
static const int | dmaSize = 8 |
static const int | maxOutstandingDma = 16 |
static const int | buffer_size = LcdMaxWidth * LcdMaxHeight * sizeof(uint32_t) |
Static Protected Attributes inherited from AmbaDevice | |
static const int | AMBA_PER_ID0 = 0xFE0 |
static const int | AMBA_PER_ID1 = 0xFE4 |
static const int | AMBA_PER_ID2 = 0xFE8 |
static const int | AMBA_PER_ID3 = 0xFEC |
static const int | AMBA_CEL_ID0 = 0xFF0 |
static const int | AMBA_CEL_ID1 = 0xFF4 |
static const int | AMBA_CEL_ID2 = 0xFF8 |
static const int | AMBA_CEL_ID3 = 0xFFC |
Additional Inherited Members | |
Static Public Member Functions inherited from SimObject | |
static void | serializeAll (CheckpointOut &cp) |
Serialize all SimObjects in the system. More... | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. More... | |
Static Public Member Functions inherited from Serializable | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
Serializes all the SimObjects. More... | |
static void | unserializeGlobals (CheckpointIn &cp) |
Public Attributes inherited from ClockedObject | |
PowerState * | powerState |
typedef Pl111Params Pl111::Params |
|
protected |
Pl111::Pl111 | ( | const Params * | p | ) |
Definition at line 56 of file pl111.cc.
References readFramebuffer().
|
protected |
|
protected |
DMA done event.
Definition at line 472 of file pl111.cc.
References bmp, Clocked::clockEdge(), converter, FrameBuffer::copyIn(), OutputDirectory::create(), csprintf(), curAddr, curTick(), dmaBuffer, dmaPendingNum, DPRINTF, enableCapture, fb, fillFifoEvent, height, intEvent, lcdControl, lcdRis, lcdTiming2, maxAddr, maxOutstandingDma, SimObject::name(), pic, pixelClock, readEvent, EventManager::schedule(), Event::scheduled(), VncInput::setDirty(), simout, startTime, OutputStream::stream(), PioDevice::sys, Clocked::ticksToCycles(), vnc, warn, waterMark, and BmpWriter::write().
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
fillFIFO event
Definition at line 448 of file pl111.cc.
References curAddr, DmaPort::dmaAction(), dmaBuffer, dmaDoneEventFree, dmaPendingNum, DmaDevice::dmaPort, dmaSize, MipsISA::event, maxAddr, maxOutstandingDma, MemCmd::ReadReq, startAddr, and Request::UNCACHEABLE.
Referenced by readFramebuffer().
|
protected |
Function to generate interrupt.
Definition at line 726 of file pl111.cc.
References DPRINTF, AmbaDmaDevice::interrupt, lcdImsc, lcdMis, lcdRis, and ArmInterruptPin::raise().
|
protected |
Generate dma framebuffer read event.
|
overridevirtual |
Determine the address ranges that this device responds to.
Implements PioDevice.
Definition at line 739 of file pl111.cc.
References AmbaDmaDevice::pioAddr, AmbaDmaDevice::pioSize, and RangeSize().
|
inline |
Definition at line 362 of file pl111.hh.
References SimObject::_params.
|
protected |
Definition at line 355 of file pl111.cc.
References bpp16m565, bpp24, bytesPerPixel, lcdControl, panic, and ArmISA::rw.
Referenced by updateVideoParams().
Pure virtual function that the device must implement.
Called when a read command is recieved by the port.
pkt | Packet describing this request |
Implements PioDevice.
Definition at line 98 of file pl111.cc.
References AMBA_ID, ClcdCrsrClip, clcdCrsrClip, ClcdCrsrConfig, clcdCrsrConfig, ClcdCrsrCtrl, clcdCrsrCtrl, ClcdCrsrIcr, ClcdCrsrImsc, clcdCrsrImsc, ClcdCrsrMis, clcdCrsrMis, ClcdCrsrPalette0, clcdCrsrPalette0, ClcdCrsrPalette1, clcdCrsrPalette1, ClcdCrsrRis, clcdCrsrRis, ClcdCrsrXY, clcdCrsrXY, CrsrImage, curAddr, cursorImage, data, DPRINTF, Packet::getAddr(), Packet::getSize(), Packet::getUintX(), MipsISA::index, LcdControl, lcdControl, LcdIcr, LcdImsc, lcdImsc, LcdLpBase, lcdLpbase, LcdLpCurr, LcdMis, lcdMis, LcdPalette, lcdPalette, LcdRis, lcdRis, LcdTiming0, lcdTiming0, LcdTiming1, lcdTiming1, LcdTiming2, lcdTiming2, LcdTiming3, lcdTiming3, LcdUpBase, lcdUpbase, LcdUpCurr, Packet::makeAtomicResponse(), panic, AmbaDmaDevice::pioAddr, AmbaDmaDevice::pioDelay, AmbaDmaDevice::pioSize, AmbaDevice::readId(), and Packet::setUintX().
|
protected |
DMA framebuffer read.
Definition at line 425 of file pl111.cc.
References bytesPerPixel, Clocked::clockEdge(), curAddr, curTick(), DPRINTF, fillFifo(), height, intEvent, lcdRis, lcdUpbase, length, maxAddr, EventManager::schedule(), Event::scheduled(), startAddr, startTime, and width.
Referenced by Pl111(), and startDma().
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 523 of file pl111.cc.
References buffer_size, bytesPerPixel, clcdCrsrClip, clcdCrsrConfig, clcdCrsrCtrl, clcdCrsrIcr, clcdCrsrImsc, clcdCrsrMis, clcdCrsrPalette0, clcdCrsrPalette1, clcdCrsrRis, clcdCrsrXY, CrsrImageSize, curAddr, cursorImage, dmaBuffer, dmaDoneEventAll, dmaPendingNum, DPRINTF, fillFifoEvent, height, intEvent, lcdControl, lcdImsc, lcdLpbase, lcdMis, lcdPalette, LcdPaletteSize, lcdRis, lcdTiming0, lcdTiming1, lcdTiming2, lcdTiming3, lcdUpbase, maxAddr, maxOutstandingDma, readEvent, Event::scheduled(), SERIALIZE_ARRAY, SERIALIZE_CONTAINER, SERIALIZE_SCALAR, startAddr, startTime, waterMark, Event::when(), width, and RiscvISA::x.
|
protected |
start the dmas off after power is enabled
Definition at line 417 of file pl111.cc.
References dmaPendingNum, readEvent, readFramebuffer(), and Event::scheduled().
Referenced by write().
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 613 of file pl111.cc.
References buffer_size, bytesPerPixel, clcdCrsrClip, clcdCrsrConfig, clcdCrsrCtrl, clcdCrsrIcr, clcdCrsrImsc, clcdCrsrMis, clcdCrsrPalette0, clcdCrsrPalette1, clcdCrsrRis, clcdCrsrXY, converter, FrameBuffer::copyIn(), CrsrImageSize, curAddr, cursorImage, dmaBuffer, dmaDoneEventAll, dmaDoneEventFree, dmaPendingNum, DPRINTF, fb, fillFifoEvent, height, intEvent, lcdControl, lcdImsc, lcdLpbase, lcdMis, lcdPalette, LcdPaletteSize, lcdRis, lcdTiming0, lcdTiming1, lcdTiming2, lcdTiming3, lcdUpbase, maxAddr, maxOutstandingDma, readEvent, EventManager::schedule(), VncInput::setDirty(), startAddr, startTime, UNSERIALIZE_ARRAY, UNSERIALIZE_CONTAINER, UNSERIALIZE_SCALAR, updateVideoParams(), vnc, waterMark, width, and RiscvISA::x.
|
protected |
Send updated parameters to the vnc server.
Definition at line 397 of file pl111.cc.
References bpp16m565, bpp24, bytesPerPixel, converter, fb, height, lcdControl, pixelConverter(), FrameBuffer::resize(), VncInput::setFrameBuffer(), vnc, and width.
Referenced by unserialize(), and write().
Pure virtual function that the device must implement.
Called when a write command is recieved by the port.
pkt | Packet describing this request |
Implements PioDevice.
Definition at line 213 of file pl111.cc.
References ClcdCrsrClip, clcdCrsrClip, ClcdCrsrConfig, clcdCrsrConfig, ClcdCrsrCtrl, clcdCrsrCtrl, ClcdCrsrIcr, clcdCrsrIcr, ClcdCrsrImsc, clcdCrsrImsc, ClcdCrsrMis, ClcdCrsrPalette0, clcdCrsrPalette0, ClcdCrsrPalette1, clcdCrsrPalette1, ClcdCrsrRis, ClcdCrsrXY, clcdCrsrXY, ArmInterruptPin::clear(), CrsrImage, cursorImage, data, DPRINTF, Packet::getAddr(), Packet::getLE(), Packet::getSize(), Packet::getUintX(), height, MipsISA::index, AmbaDmaDevice::interrupt, LcdControl, lcdControl, LcdIcr, LcdImsc, lcdImsc, LcdLpBase, lcdLpbase, LcdLpCurr, LcdMis, lcdMis, LcdPalette, lcdPalette, LcdRis, lcdRis, LcdTiming0, lcdTiming0, LcdTiming1, lcdTiming1, LcdTiming2, lcdTiming2, LcdTiming3, lcdTiming3, LcdUpBase, lcdUpbase, LcdUpCurr, Packet::makeAtomicResponse(), panic, AmbaDmaDevice::pioAddr, AmbaDmaDevice::pioDelay, AmbaDmaDevice::pioSize, startDma(), updateVideoParams(), warn_once, waterMark, and width.
|
staticprotected |
|
protected |
|
staticprotected |
Definition at line 98 of file pl111.hh.
Referenced by serialize(), and unserialize().
|
protected |
Bytes per pixel.
Definition at line 278 of file pl111.hh.
Referenced by pixelConverter(), readFramebuffer(), serialize(), unserialize(), and updateVideoParams().
|
staticprotected |
|
protected |
Cursor clip position register.
Definition at line 242 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Cursor configuration register.
Definition at line 232 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Cursor control register.
Definition at line 229 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Cursor interrupt clear register.
Definition at line 248 of file pl111.hh.
Referenced by serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Cursor interrupt mask set/clear register.
Definition at line 245 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Cursor masked interrupt status register - const.
Definition at line 254 of file pl111.hh.
Referenced by read(), serialize(), and unserialize().
|
staticprotected |
|
protected |
Cursor palette registers.
Definition at line 235 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Definition at line 236 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Cursor raw interrupt status register - const.
Definition at line 251 of file pl111.hh.
Referenced by read(), serialize(), and unserialize().
|
staticprotected |
|
protected |
Cursor XY position register.
Definition at line 239 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
protected |
Definition at line 259 of file pl111.hh.
Referenced by dmaDone(), unserialize(), and updateVideoParams().
|
staticprotected |
|
staticprotected |
Definition at line 90 of file pl111.hh.
Referenced by serialize(), and unserialize().
|
protected |
Frame buffer current address.
Definition at line 293 of file pl111.hh.
Referenced by dmaDone(), fillFifo(), read(), readFramebuffer(), serialize(), and unserialize().
|
protected |
Cursor image RAM register 256-word wide values defining images overlaid by the hw cursor mechanism.
Definition at line 226 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
protected |
CLCDC supports up to 1024x768.
Definition at line 281 of file pl111.hh.
Referenced by dmaDone(), fillFifo(), serialize(), unserialize(), and ~Pl111().
|
protected |
All pre-allocated DMA done events.
The PL111 model preallocates maxOutstandingDma number of DmaDoneEvents to avoid having to heap allocate every single event when it is needed. In order to keep track of which events are in flight and which are ready to be used, we use two different vectors. dmaDoneEventAll contains all DmaDoneEvents that the object may use, while dmaDoneEventFree contains a list of currently unused events. When an event needs to be scheduled, the last element of the dmaDoneEventFree is used and removed from the list. When an event fires, it is added to the end of the dmaEventFreeList. dmaDoneEventAll is never used except for in initialization and serialization.
Definition at line 347 of file pl111.hh.
Referenced by serialize(), and unserialize().
|
protected |
Unused DMA done events that are ready to be scheduled.
Definition at line 350 of file pl111.hh.
Referenced by fillFifo(), and unserialize().
|
protected |
Number of pending dma reads.
Definition at line 299 of file pl111.hh.
Referenced by dmaDone(), fillFifo(), serialize(), startDma(), and unserialize().
|
staticprotected |
Definition at line 95 of file pl111.hh.
Referenced by fillFifo().
|
protected |
|
protected |
Definition at line 260 of file pl111.hh.
Referenced by dmaDone(), unserialize(), and updateVideoParams().
|
protected |
Fill fifo.
Definition at line 328 of file pl111.hh.
Referenced by dmaDone(), serialize(), and unserialize().
|
protected |
Frame buffer height - lines per panel.
Definition at line 275 of file pl111.hh.
Referenced by dmaDone(), readFramebuffer(), serialize(), unserialize(), updateVideoParams(), and write().
|
protected |
Wrapper to create an event out of the interrupt.
Definition at line 354 of file pl111.hh.
Referenced by dmaDone(), readFramebuffer(), serialize(), and unserialize().
|
staticprotected |
|
protected |
Control register.
Definition at line 209 of file pl111.hh.
Referenced by dmaDone(), pixelConverter(), read(), serialize(), unserialize(), updateVideoParams(), and write().
|
staticprotected |
|
staticprotected |
|
protected |
Interrupt mask set/clear register.
Definition at line 212 of file pl111.hh.
Referenced by generateInterrupt(), read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Lower panel frame base address register.
Definition at line 206 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
staticprotected |
|
protected |
Masked interrupt status register.
Definition at line 218 of file pl111.hh.
Referenced by generateInterrupt(), read(), serialize(), unserialize(), and write().
|
protected |
256x16-bit color palette registers 256 palette entries organized as 128 locations of two entries per word
Definition at line 222 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
staticprotected |
Definition at line 89 of file pl111.hh.
Referenced by serialize(), and unserialize().
|
staticprotected |
|
protected |
Raw interrupt status register - const.
Definition at line 215 of file pl111.hh.
Referenced by dmaDone(), generateInterrupt(), read(), readFramebuffer(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
This event calls pushes its this pointer onto the freeDoneEvent vector and calls dmaDone() when triggered. Horizontal axis panel control register
Definition at line 163 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Vertical axis panel control register.
Definition at line 194 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Clock and signal polarity control register.
Definition at line 197 of file pl111.hh.
Referenced by dmaDone(), read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Line end control register.
Definition at line 200 of file pl111.hh.
Referenced by read(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Upper panel frame base address register.
Definition at line 203 of file pl111.hh.
Referenced by read(), readFramebuffer(), serialize(), unserialize(), and write().
|
staticprotected |
|
protected |
Frame buffer max address.
Definition at line 290 of file pl111.hh.
Referenced by dmaDone(), fillFifo(), readFramebuffer(), serialize(), and unserialize().
|
staticprotected |
Definition at line 96 of file pl111.hh.
Referenced by dmaDone(), fillFifo(), serialize(), and unserialize().
|
protected |
|
protected |
|
protected |
DMA framebuffer read event.
Definition at line 325 of file pl111.hh.
Referenced by dmaDone(), serialize(), startDma(), and unserialize().
|
protected |
Frame buffer base address.
Definition at line 287 of file pl111.hh.
Referenced by fillFifo(), readFramebuffer(), serialize(), and unserialize().
|
protected |
Start time for frame buffer dma read.
Definition at line 284 of file pl111.hh.
Referenced by dmaDone(), readFramebuffer(), serialize(), and unserialize().
|
protected |
VNC server.
Definition at line 263 of file pl111.hh.
Referenced by dmaDone(), unserialize(), and updateVideoParams().
|
protected |
DMA FIFO watermark.
Definition at line 296 of file pl111.hh.
Referenced by dmaDone(), serialize(), unserialize(), and write().
|
protected |
Frame buffer width - pixels per line.
Definition at line 272 of file pl111.hh.
Referenced by readFramebuffer(), serialize(), unserialize(), updateVideoParams(), and write().