Go to the documentation of this file.
52 unsigned hbp,
unsigned h_sync,
unsigned hfp,
53 unsigned vbp,
unsigned v_sync,
unsigned vfp)
54 :
width(_width), height(_height),
55 hBackPorch(hbp), hFrontPorch(hfp), hSync(h_sync),
56 vBackPorch(vbp), vFrontPorch(vfp), vSync(v_sync)
94 pixelChunk(pixel_chunk),
96 evVSyncBegin(
"evVSyncBegin", this, &
BasePixelPump::onVSyncBegin),
98 evHSyncBegin(
"evHSyncBegin", this, &
BasePixelPump::onHSyncBegin),
101 evRenderPixels(
"evRenderPixels", this, &
BasePixelPump::renderPixels),
103 line(0), _posX(0), _underrun(false)
122 event->serializeSection(cp,
event->name());
139 event->unserializeSection(cp,
event->name());
145 panic_if(
active(),
"Trying to update timings in active PixelPump\n");
200 const Cycles h_sync_begin(0);
224 const unsigned pxl_count(x_end -
_posX);
225 const unsigned pos_y(
posY());
227 Pixel pixel(0, 0, 0);
228 const Pixel underrun_pixel(0, 0, 0);
231 warn(
"Input buffer underrun in BasePixelPump (%u, %u)\n",
235 pixel = underrun_pixel;
289 const unsigned pos_y =
posY();
290 const size_t _width =
fb.
width();
292 auto pixel_it =
fb.
pixels.begin() + _width * pos_y;
294 "Unexpected underrun in BasePixelPump (%u, %u)", _width, pos_y);
301 _name(
name), parent(*_parent), func(_func),
326 assert(!scheduled());
338 assert(!scheduled());
348 relativeTick = when() -
curTick();
349 parent.deschedule(
this);
355 assert(!scheduled());
357 parent.schedule(
this, relativeTick +
curTick());
Tick curTick()
The universal simulation clock.
void stop()
Immediately stop pushing pixels.
#define UNSERIALIZE_OBJ(obj)
virtual void onVSyncEnd()
Callback on the first pixel of the line after the end VSync region (typically the first pixel of the ...
BasePixelPump(EventManager &em, ClockDomain &pxl_clk, unsigned pixel_chunk)
unsigned vSync
Vertical sync signal in lines.
Cycles cyclesPerLine() const
How many pixel clocks are required for one line?
bool _underrun
Did a buffer underrun occur within this refresh interval?
std::vector< PixelEvent * > pixelEvents
Convenience vector when doing operations on all events.
unsigned lineVSyncStart() const
Calculate the first line of the vsync signal.
#define UNSERIALIZE_SCALAR(scalar)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void renderLine()
Fast and event-free line rendering function.
void start()
Starting pushing pixels in timing mode.
void renderFrame()
Render an entire frame in non-caching mode.
unsigned width() const
Frame buffer width in pixels.
unsigned vFrontPorch
Vertical front porch in lines.
void schedule(Event &event, Tick when)
virtual void onFrameDone()
Finished displaying the visible region of a frame.
static const DisplayTimings vga
unsigned height
Display height in pixels.
unsigned hBackPorch
Horizontal back porch in pixels.
void drainResume() override
Resume execution after a successful drain.
Helper class for objects that need to be clocked.
Callback helper class with suspend support.
unsigned height() const
Frame buffer height in pixels.
Cycles is a wrapper class for representing cycle counts, i.e.
virtual void onVSyncBegin()
First pixel clock of the first VSync line.
virtual size_t nextLine(std::vector< Pixel >::iterator ps, size_t line_length)
Get the next line of pixels directly from memory.
void serialize(CheckpointOut &cp) const override
Serialize an object.
Basic support for object serialization.
DrainState
Object drain/handover states.
unsigned linesPerFrame() const
Calculate the total number of lines in a frame.
The ClockDomain provides clock to group of clocked objects bundled under the same clock domain.
#define SERIALIZE_OBJ(obj)
DisplayTimings(unsigned width, unsigned height, unsigned hbp, unsigned h_sync, unsigned hfp, unsigned vbp, unsigned v_sync, unsigned vfp)
Create a display timing configuration struct.
const unsigned pixelChunk
Maximum number of pixels to handle per render callback.
void serialize(CheckpointOut &cp) const override
Serialize an object.
const Pixel & pixel(unsigned x, unsigned y) const
Get a pixel from an (x, y) coordinate.
PixelEvent(const char *name, BasePixelPump *parent, CallbackType func)
unsigned hSync
Horizontal sync signal length in pixels.
void updateTimings(const DisplayTimings &timings)
Update frame size using display timing.
const DisplayTimings & timings() const
Get a constant reference of the current display timings.
void resize(unsigned width, unsigned height)
Resize the frame buffer.
unsigned lineFrontPorchStart() const
Calculate the first line of the back porch.
virtual void onHSyncBegin()
Start of the HSync region.
unsigned hFrontPorch
Horizontal front porch in pixels.
@ Drained
Buffers drained, ready for serialization/handover.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
const std::string & name()
#define SERIALIZE_SCALAR(scalar)
bool active() const
Is the pixel pump active and refreshing the display?
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...
Internal gem5 representation of a Pixel.
unsigned width
Display width in pixels.
virtual bool nextPixel(Pixel &p)=0
Get the next pixel from the scan line buffer.
void deschedule(Event &event)
unsigned vBackPorch
Vertical back porch in lines.
virtual void onHSyncEnd()
Start of the first pixel after the HSync region.
unsigned line
Current line (including back porch, front porch, and vsync) within a frame.
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
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...
void serialize(CheckpointOut &cp) const override
Serialize an object.
unsigned _posX
X-coordinate within the visible region of a frame.
void serialize(CheckpointOut &cp) const override
Serialize an object.
std::vector< Pixel > pixels
Frame buffer backing store.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Interface for objects that might require draining before checkpointing.
PixelEvent evRenderPixels
unsigned posY() const
Current pixel position within the visible area.
unsigned lineVBackPorchStart() const
Calculate the first line of the vertical back porch.
std::ostream CheckpointOut
virtual void onUnderrun(unsigned x, unsigned y)
Buffer underrun occurred on a frame.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Timing generator for a pixel-based display.
bool scheduled() const
Determine if the current event is scheduled.
unsigned lineFirstVisible() const
Calculate the first line of the visible region.
FrameBuffer fb
Output frame buffer.
Generated on Wed Jul 13 2022 10:39:20 for gem5 by doxygen 1.8.17