Go to the documentation of this file.
44 #include "debug/Checkpoint.hh"
45 #include "debug/HDLcd.hh"
48 #include "enums/ImageFormat.hh"
51 #include "params/HDLcd.hh"
62 workaroundSwapRB(
p.workaround_swap_rb),
63 workaroundDmaLineCount(
p.workaround_dma_line_count),
65 enableCapture(
p.enable_capture),
66 pixelBufferSize(
p.pixel_buffer_size),
67 virtRefreshRate(
p.virt_refresh_rate),
69 virtRefreshEvent([
this]{ virtRefresh(); },
name()),
71 imgFormat(
p.frame_format),
72 pixelPump(*
this, *
p.pxl_clk,
p.pixel_chunk),
76 vnc->setFrameBuffer(&pixelPump.fb);
83 :
Stats::Group(parent,
"HDLcd"),
86 using namespace Stats;
94 DPRINTF(Checkpoint,
"Serializing ARM HDLCD\n");
131 DPRINTF(Checkpoint,
"Unserializing ARM HDLCD\n");
220 "Unhandled read size (address: 0x.4x, size: %u)",
240 "Unhandled read size (address: 0x.4x, size: %u)",
242 const uint32_t
data = pkt->
getLE<uint32_t>();
259 panic(
"HDLCD INT_CLEAR register is Write-Only\n");
286 panic(
"Tried to read HDLCD register that doesn't exist\n",
offset);
295 panic(
"HDLCD VERSION register is read-Only\n");
307 panic(
"HDLCD INT_STATUS register is read-Only\n");
330 if (
bus_options.max_outstanding != old_bus_options.max_outstanding) {
332 "Changing HDLcd outstanding DMA transactions: %d -> %d\n",
338 if (
bus_options.burst_len != old_bus_options.burst_len) {
340 "Changing HDLcd DMA burst flags: 0x%x -> 0x%x\n",
378 if (new_command.enable !=
command.enable) {
380 new_command.enable ?
"on" :
"off");
382 if (new_command.enable) {
406 panic(
"Tried to write HDLCD register that doesn't exist\n",
offset);
414 ByteOrder byte_order =
415 pixel_format.big_endian ? ByteOrder::big : ByteOrder::little;
447 warn(
"Maximum number of outstanding DMA transfers set to 0.");
451 const uint32_t dma_burst_flags =
bus_options.burst_len;
452 const uint32_t dma_burst_len = dma_burst_flags ?
458 const uint32_t dma_lines =
512 const size_t byte_count = line_length *
conv.
length;
520 for (
size_t i = 0;
i < line_length;
i++) {
549 DPRINTF(
HDLcd,
"Buffer underrun, stopping DMA fill.\n");
561 warn(
"HDLCD %u bytes still in FIFO after frame: Ensure that DMA "
562 "and PixelPump configuration is consistent\n",
601 unsigned request_size,
unsigned max_pending,
602 size_t line_size, ssize_t line_pitch,
unsigned num_lines)
607 lineSize(line_size), linePitch(line_pitch), numLines(num_lines),
634 frameEnd =
fb_base + numLines * linePitch;
636 startFill(nextLineAddr, lineSize);
642 nextLineAddr = frameEnd;
651 inform(
"DMA line size: %u bytes", lineSize);
652 inform(
"DMA line pitch: %i bytes", linePitch);
653 inform(
"DMA num lines: %u", numLines);
659 if (nextLineAddr == frameEnd)
664 nextLineAddr += linePitch;
665 if (nextLineAddr != frameEnd)
666 startFill(nextLineAddr, lineSize);
672 parent.intRaise(INT_DMA_END);
680 inform(
"PixelPump width: %u",
t.width);
681 inform(
"PixelPump height: %u",
t.height);
683 inform(
"PixelPump horizontal back porch: %u",
t.hBackPorch);
684 inform(
"PixelPump horizontal fron porch: %u",
t.hFrontPorch);
685 inform(
"PixelPump horizontal fron porch: %u",
t.hSync);
687 inform(
"PixelPump vertical back porch: %u",
t.vBackPorch);
688 inform(
"PixelPump vertical fron porch: %u",
t.vFrontPorch);
689 inform(
"PixelPump vertical fron porch: %u",
t.vSync);
void intMask(uint32_t mask)
Convenience function to update the interrupt mask.
TimingReg v_data
Vertical data width register.
bool scheduled() const
Determine if the current event is scheduled.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void makeAtomicResponse()
DmaEngine(HDLcd &_parent, size_t size, unsigned request_size, unsigned max_pending, size_t line_size, ssize_t line_pitch, unsigned num_lines)
static constexpr uint32_t INT_UNDERRUN
const bool workaroundDmaLineCount
#define UNSERIALIZE_SCALAR(scalar)
static constexpr size_t MAX_PIXEL_SIZE
Maximum number of bytes per pixel.
DisplayTimings displayTimings() const
Configurable RGB pixel converter.
bool active() const
Is the pixel pump active and refreshing the display?
uint32_t fb_base
Frame buffer base address register.
virtual void clear()=0
Clear a signalled interrupt.
TimingReg v_back_porch
Vertical back porch width register.
TimingReg h_front_porch
Horizontal front porch width reg.
ColorSelectReg blue_select
Blue color select register.
CommandReg command
Command register.
virtual void raise()=0
Signal an interrupt.
uint64_t Tick
Tick count type.
OutputStream * create(const std::string &name, bool binary=false, bool no_gz=false)
Creates a file in this directory (optionally compressed).
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void deschedule(Event &event)
ColorSelectReg green_select
Green color select register.
EventFunctionWrapper virtRefreshEvent
const Addr pixelBufferSize
std::unique_ptr< DmaEngine > dmaEngine
uint32_t intStatus() const
Masked interrupt status register.
Pixel toPixel(uint32_t word) const
Get the Pixel representation of a color word.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void intClear(uint32_t ints)
Convenience function to clear interrupts.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
PixelFormatReg pixel_format
Pixel format register.
PolaritiesReg polarities
Polarities register.
void start()
Starting pushing pixels in timing mode.
virtual void drainResume()
Resume execution after a successful drain.
BusOptsReg bus_options
Bus options register.
static constexpr size_t MAX_BURST_LEN
max number of beats delivered in one dma burst
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
ArmInterruptPin *const interrupt
uint32_t fb_line_length
Frame buffer Line length register.
std::unique_ptr< ImgWriter > createImgWriter(Enums::ImageFormat type, const FrameBuffer *fb)
Factory Function which allocates a ImgWriter object and returns a smart pointer to it.
void schedule(Event &event, Tick when)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
void setInterrupts(uint32_t ints, uint32_t mask)
Assign new interrupt values and update interrupt signals.
const Tick virtRefreshRate
TimingReg h_back_porch
Horizontal back porch width reg.
void onEndOfBlock() override
End of block callback.
std::ostream * stream() const
Get the output underlying output stream.
unsigned length
Bytes per pixel when stored in memory (including padding)
#define SERIALIZE_OBJ(obj)
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
TimingReg v_front_porch
Vertical front porch width register.
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...
AddrRange RangeSize(Addr start, Addr size)
std::vector< Info * > stats
TimingReg h_sync
Horizontal sync width register.
static constexpr size_t AXI_PORT_WIDTH
AXI port width in bytes.
bool bypassCaches() const
Should caches be bypassed?
OutputStream * pic
Picture of what the current frame buffer looks like.
void startFrame(Addr fb_base)
uint32_t int_mask
Interrupt mask register.
Buffered DMA engine helper class.
std::vector< uint8_t > lineBuffer
PixelConverter conv
Cached pixel converter, set when the converter is enabled.
Internal gem5 representation of a Pixel.
int32_t fb_line_pitch
Frame buffer Line pitch register.
HDLcd(const HDLcdParams &p)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void updateTimings(const DisplayTimings &timings)
Update frame size using display timing.
const std::string & name()
#define SERIALIZE_SCALAR(scalar)
TimingReg h_data
Horizontal data width register.
const FlagsType nozero
Don't print if this is zero.
virtual const std::string name() const
void writeReg(Addr offset, uint32_t value)
constexpr int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
std::unique_ptr< ImgWriter > imgWriter
Helper to write out bitmaps.
uint32_t readReg(Addr offset)
uint32_t int_rawstat
Interrupt raw status register.
static constexpr uint32_t INT_VSYNC
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
void virtRefresh()
Handler for fast frame refresh in KVM-mode.
void intRaise(uint32_t ints)
Convenience function to raise a new interrupt.
void setLE(T v)
Set the value in the data pointer to v as little endian.
ColorSelectReg red_select
Red color select register.
void onIdle() override
Last response received callback.
std::ostream CheckpointOut
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
static const std::string & currentSection()
Gets the fully-qualified name of the active section.
PixelConverter pixelConverter() const
Tick curTick()
The universal simulation clock.
HDLcdStats(Stats::Group *parent)
void serialize(CheckpointOut &cp) const override
Serialize an object.
size_t lineNext(std::vector< Pixel >::iterator pixel_it, size_t line_length)
const bool workaroundSwapRB
void stop()
Immediately stop pushing pixels.
TimingReg v_sync
Vertical sync width register.
void drainResume() override
Resume execution after a successful drain.
void renderFrame()
Render an entire frame in non-caching mode.
std::string csprintf(const char *format, const Args &...args)
#define panic(...)
This implements a cprintf based panic() function.
Bitfield< 11, 8 > max_outstanding
Generated on Tue Jun 22 2021 15:28:27 for gem5 by doxygen 1.8.17