gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pixelpump.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015, 2017 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "dev/pixelpump.hh"
39 
40 #include "base/logging.hh"
41 
43  640, 480,
44  48, 96, 16,
45  33, 2, 10);
46 
47 
48 DisplayTimings::DisplayTimings(unsigned _width, unsigned _height,
49  unsigned hbp, unsigned h_sync, unsigned hfp,
50  unsigned vbp, unsigned v_sync, unsigned vfp)
51  : width(_width), height(_height),
52  hBackPorch(hbp), hFrontPorch(hfp), hSync(h_sync),
53  vBackPorch(vbp), vFrontPorch(vfp), vSync(v_sync)
54 {
55 }
56 
57 void
59 {
62 
66 
70 }
71 
72 void
74 {
77 
81 
85 }
86 
87 
89  unsigned pixel_chunk)
90  : EventManager(em), Clocked(pxl_clk), Serializable(),
91  pixelChunk(pixel_chunk),
92  pixelEvents(),
93  evVSyncBegin("evVSyncBegin", this, &BasePixelPump::onVSyncBegin),
94  evVSyncEnd("evVSyncEnd", this, &BasePixelPump::onVSyncEnd),
95  evHSyncBegin("evHSyncBegin", this, &BasePixelPump::onHSyncBegin),
96  evHSyncEnd("evHSyncEnd", this, &BasePixelPump::onHSyncEnd),
97  evBeginLine("evBeginLine", this, &BasePixelPump::beginLine),
98  evRenderPixels("evRenderPixels", this, &BasePixelPump::renderPixels),
99  _timings(DisplayTimings::vga),
100  line(0), _posX(0), _underrun(false)
101 {
102 }
103 
105 {
106 }
107 
108 void
110 {
114 
116  SERIALIZE_OBJ(fb);
117 
118  for (PixelEvent *event : pixelEvents)
119  event->serializeSection(cp, event->name());
120 }
121 
122 void
124 {
128 
131 
132  // We don't need to reschedule the event here since the event was
133  // suspended by PixelEvent::drain() and will be rescheduled by
134  // PixelEvent::drainResume().
135  for (PixelEvent *event : pixelEvents)
136  event->unserializeSection(cp, event->name());
137 }
138 
139 void
141 {
142  panic_if(active(), "Trying to update timings in active PixelPump\n");
143 
144  _timings = timings;
145 
146  // Resize the frame buffer if needed
147  if (_timings.width != fb.width() || _timings.height != fb.height())
149 
150  // Set the current line past the last line in the frame. This
151  // triggers the new frame logic in beginLine().
153 }
154 
155 void
157 {
159 }
160 
161 
162 void
164 {
165  if (evVSyncEnd.scheduled())
167 
168  if (evHSyncBegin.scheduled())
170 
171  if (evHSyncEnd.scheduled())
173 
174  if (evBeginLine.scheduled())
176 
179 }
180 
181 void
183 {
184  _posX = 0;
185  line++;
186  if (line >= _timings.linesPerFrame()) {
187  _underrun = false;
188  line = 0;
189  }
190 
191  if (line == _timings.lineVSyncStart()) {
192  onVSyncBegin();
193  } else if (line == _timings.lineVBackPorchStart()) {
194  onVSyncEnd();
195  }
196 
197  const Cycles h_sync_begin(0);
198  schedule(evHSyncBegin, clockEdge(h_sync_begin));
199 
200  const Cycles h_sync_end(h_sync_begin + _timings.hSync);
201  schedule(evHSyncEnd, clockEdge(h_sync_end));
202 
203  // Visible area
204  if (line >= _timings.lineFirstVisible() &&
206 
207  const Cycles h_first_visible(h_sync_end + _timings.hBackPorch);
208  schedule(evRenderPixels, clockEdge(h_first_visible));
209  }
210 
212 }
213 
214 void
216 {
217  // Try to handle multiple pixels at a time; doing so reduces the
218  // accuracy of the underrun detection but lowers simulation
219  // overhead
220  const unsigned x_end(std::min(_posX + pixelChunk, _timings.width));
221  const unsigned pxl_count(x_end - _posX);
222  const unsigned pos_y(posY());
223 
224  Pixel pixel(0, 0, 0);
225  const Pixel underrun_pixel(0, 0, 0);
226  for (; _posX < x_end && !_underrun; ++_posX) {
227  if (!nextPixel(pixel)) {
228  warn("Input buffer underrun in BasePixelPump (%u, %u)\n",
229  _posX, pos_y);
230  _underrun = true;
231  onUnderrun(_posX, pos_y);
232  pixel = underrun_pixel;
233  }
234  fb.pixel(_posX, pos_y) = pixel;
235  }
236 
237  // Fill remaining pixels with a dummy pixel value if we ran out of
238  // data
239  for (; _posX < x_end; ++_posX)
240  fb.pixel(_posX, pos_y) = underrun_pixel;
241 
242  // Schedule a new event to handle the next block of pixels
243  if (_posX < _timings.width) {
244  schedule(evRenderPixels, clockEdge(Cycles(pxl_count)));
245  } else {
246  if (pos_y == _timings.height - 1)
247  onFrameDone();
248  }
249 }
250 
251 void
253 {
254  _underrun = false;
255  line = 0;
256 
257  // Signal vsync end and render the frame
259  onVSyncEnd();
260 
261  // We only care about the visible screen area when rendering the
262  // frame
263  for (line = _timings.lineFirstVisible();
265  ++line) {
266 
267  _posX = 0;
268 
269  onHSyncBegin();
270  onHSyncEnd();
271 
272  renderLine();
273  }
274 
276  onFrameDone();
277 
278  // Signal vsync until the next frame begins
280  onVSyncBegin();
281 }
282 
283 void
285 {
286  const unsigned pos_y = posY();
287  const size_t _width = fb.width();
288 
289  auto pixel_it = fb.pixels.begin() + _width * pos_y;
290  panic_if(nextLine(pixel_it, _width) != _width,
291  "Unexpected underrun in BasePixelPump (%u, %u)", _width, pos_y);
292 }
293 
294 
296  const char *name, BasePixelPump *_parent, CallbackType _func)
297  : Event(), Drainable(),
298  _name(name), parent(*_parent), func(_func),
299  suspended(false),
300  relativeTick(0)
301 {
302  parent.pixelEvents.push_back(this);
303 }
304 
307 {
308  if (scheduled())
309  suspend();
310  return DrainState::Drained;
311 }
312 
313 void
315 {
316  if (suspended)
317  resume();
318 }
319 
320 void
322 {
323  assert(!scheduled());
325  SERIALIZE_SCALAR(suspended);
326  SERIALIZE_SCALAR(relativeTick);
327 }
328 
329 void
331 {
333  UNSERIALIZE_SCALAR(suspended);
334  UNSERIALIZE_SCALAR(relativeTick);
335  assert(!scheduled());
336 }
337 
338 void
340 {
341  assert(scheduled());
342  assert(!suspended);
343 
344  suspended = true;
345  relativeTick = when() - curTick();
346  parent.deschedule(this);
347 }
348 
349 void
351 {
352  assert(!scheduled());
353  assert(suspended);
354  parent.schedule(this, relativeTick + curTick());
355  suspended = false;
356  relativeTick = 0;
357 }
DisplayTimings::cyclesPerLine
Cycles cyclesPerLine() const
How many pixel clocks are required for one line?
Definition: pixelpump.hh:71
Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:462
UNSERIALIZE_OBJ
#define UNSERIALIZE_OBJ(obj)
Definition: serialize.hh:683
DisplayTimings::lineVSyncStart
unsigned lineVSyncStart() const
Calculate the first line of the vsync signal.
Definition: pixelpump.hh:85
Event::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: eventq.cc:246
warn
#define warn(...)
Definition: logging.hh:239
BasePixelPump::BasePixelPump
BasePixelPump(EventManager &em, ClockDomain &pxl_clk, unsigned pixel_chunk)
Definition: pixelpump.cc:88
DisplayTimings::linesPerFrame
unsigned linesPerFrame() const
Calculate the total number of lines in a frame.
Definition: pixelpump.hh:113
Clocked
Helper class for objects that need to be clocked.
Definition: clocked_object.hh:59
FrameBuffer::pixels
std::vector< Pixel > pixels
Frame buffer backing store.
Definition: framebuffer.hh:192
BasePixelPump::_timings
DisplayTimings _timings
Definition: pixelpump.hh:351
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:591
DisplayTimings::vga
static const DisplayTimings vga
Definition: pixelpump.hh:137
BasePixelPump::active
bool active() const
Is the pixel pump active and refreshing the display?
Definition: pixelpump.hh:189
Serializable
Basic support for object serialization.
Definition: serialize.hh:175
FrameBuffer::resize
void resize(unsigned width, unsigned height)
Resize the frame buffer.
Definition: framebuffer.cc:80
ArmISA::width
Bitfield< 4 > width
Definition: miscregs_types.hh:68
DisplayTimings::vBackPorch
unsigned vBackPorch
Vertical back porch in lines.
Definition: pixelpump.hh:131
BasePixelPump::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: pixelpump.cc:123
DisplayTimings::lineVBackPorchStart
unsigned lineVBackPorchStart() const
Calculate the first line of the vertical back porch.
Definition: pixelpump.hh:92
BasePixelPump::onHSyncBegin
virtual void onHSyncBegin()
Start of the HSync region.
Definition: pixelpump.hh:261
BasePixelPump::PixelEvent::drainResume
void drainResume() override
Resume execution after a successful drain.
Definition: pixelpump.cc:314
EventManager::deschedule
void deschedule(Event &event)
Definition: eventq.hh:1025
pixelpump.hh
FrameBuffer::pixel
const Pixel & pixel(unsigned x, unsigned y) const
Get a pixel from an (x, y) coordinate.
Definition: framebuffer.hh:157
DisplayTimings::vFrontPorch
unsigned vFrontPorch
Vertical front porch in lines.
Definition: pixelpump.hh:133
BasePixelPump::evRenderPixels
PixelEvent evRenderPixels
Definition: pixelpump.hh:349
ClockDomain
The ClockDomain provides clock to group of clocked objects bundled under the same clock domain.
Definition: clock_domain.hh:68
BasePixelPump::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: pixelpump.cc:109
BasePixelPump::pixelEvents
std::vector< PixelEvent * > pixelEvents
Convenience vector when doing operations on all events.
Definition: pixelpump.hh:342
BasePixelPump::evHSyncBegin
PixelEvent evHSyncBegin
Definition: pixelpump.hh:346
DrainState::Drained
@ Drained
Buffers drained, ready for serialization/handover.
BasePixelPump
Timing generator for a pixel-based display.
Definition: pixelpump.hh:160
BasePixelPump::posY
unsigned posY() const
Current pixel position within the visible area.
Definition: pixelpump.hh:207
DrainState
DrainState
Object drain/handover states.
Definition: drain.hh:71
BasePixelPump::beginLine
void beginLine()
Definition: pixelpump.cc:182
BasePixelPump::start
void start()
Starting pushing pixels in timing mode.
Definition: pixelpump.cc:156
BasePixelPump::onFrameDone
virtual void onFrameDone()
Finished displaying the visible region of a frame.
Definition: pixelpump.hh:284
cp
Definition: cprintf.cc:37
DisplayTimings::lineFrontPorchStart
unsigned lineFrontPorchStart() const
Calculate the first line of the back porch.
Definition: pixelpump.hh:106
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
BasePixelPump::PixelEvent
Callback helper class with suspend support.
Definition: pixelpump.hh:300
DisplayTimings::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: pixelpump.cc:58
Drainable
Interface for objects that might require draining before checkpointing.
Definition: drain.hh:230
BasePixelPump::nextLine
virtual size_t nextLine(std::vector< Pixel >::iterator ps, size_t line_length)
Get the next line of pixels directly from memory.
Definition: pixelpump.hh:238
Event
Definition: eventq.hh:248
DisplayTimings::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: pixelpump.cc:73
SERIALIZE_OBJ
#define SERIALIZE_OBJ(obj)
Definition: serialize.hh:676
BasePixelPump::PixelEvent::drain
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Definition: pixelpump.cc:306
MipsISA::event
Bitfield< 10, 5 > event
Definition: pra_constants.hh:297
DisplayTimings::hBackPorch
unsigned hBackPorch
Horizontal back porch in pixels.
Definition: pixelpump.hh:124
BasePixelPump::~BasePixelPump
virtual ~BasePixelPump()
Definition: pixelpump.cc:104
BasePixelPump::fb
FrameBuffer fb
Output frame buffer.
Definition: pixelpump.hh:213
Clocked::clockEdge
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...
Definition: clocked_object.hh:174
BasePixelPump::nextPixel
virtual bool nextPixel(Pixel &p)=0
Get the next pixel from the scan line buffer.
X86ISA::em
Bitfield< 2 > em
Definition: misc.hh:602
DisplayTimings::width
unsigned width
Display width in pixels.
Definition: pixelpump.hh:119
BasePixelPump::onHSyncEnd
virtual void onHSyncEnd()
Start of the first pixel after the HSync region.
Definition: pixelpump.hh:269
BasePixelPump::PixelEvent::resume
void resume()
Definition: pixelpump.cc:350
BasePixelPump::timings
const DisplayTimings & timings() const
Get a constant reference of the current display timings.
Definition: pixelpump.hh:186
Pixel
Internal gem5 representation of a Pixel.
Definition: pixel.hh:55
BasePixelPump::PixelEvent::suspend
void suspend()
Definition: pixelpump.cc:339
BasePixelPump::updateTimings
void updateTimings(const DisplayTimings &timings)
Update frame size using display timing.
Definition: pixelpump.cc:140
name
const std::string & name()
Definition: trace.cc:48
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
BasePixelPump::line
unsigned line
Current line (including back porch, front porch, and vsync) within a frame.
Definition: pixelpump.hh:357
DisplayTimings::height
unsigned height
Display height in pixels.
Definition: pixelpump.hh:121
BasePixelPump::onUnderrun
virtual void onUnderrun(unsigned x, unsigned y)
Buffer underrun occurred on a frame.
Definition: pixelpump.hh:281
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
BasePixelPump::PixelEvent::parent
BasePixelPump & parent
Definition: pixelpump.hh:328
DisplayTimings::lineFirstVisible
unsigned lineFirstVisible() const
Calculate the first line of the visible region.
Definition: pixelpump.hh:99
BasePixelPump::renderPixels
void renderPixels()
Definition: pixelpump.cc:215
BasePixelPump::evVSyncEnd
PixelEvent evVSyncEnd
Definition: pixelpump.hh:345
BasePixelPump::evHSyncEnd
PixelEvent evHSyncEnd
Definition: pixelpump.hh:347
logging.hh
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
DisplayTimings::hFrontPorch
unsigned hFrontPorch
Horizontal front porch in pixels.
Definition: pixelpump.hh:126
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
BasePixelPump::PixelEvent::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: pixelpump.cc:321
EventManager
Definition: eventq.hh:984
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
DisplayTimings
Definition: pixelpump.hh:48
BasePixelPump::PixelEvent::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: pixelpump.cc:330
FrameBuffer::width
unsigned width() const
Frame buffer width in pixels.
Definition: framebuffer.hh:96
FrameBuffer::height
unsigned height() const
Frame buffer height in pixels.
Definition: framebuffer.hh:98
DisplayTimings::vSync
unsigned vSync
Vertical sync signal in lines.
Definition: pixelpump.hh:135
BasePixelPump::_posX
unsigned _posX
X-coordinate within the visible region of a frame.
Definition: pixelpump.hh:359
BasePixelPump::PixelEvent::PixelEvent
PixelEvent(const char *name, BasePixelPump *parent, CallbackType func)
Definition: pixelpump.cc:295
BasePixelPump::onVSyncBegin
virtual void onVSyncBegin()
First pixel clock of the first VSync line.
Definition: pixelpump.hh:247
CheckpointIn
Definition: serialize.hh:68
BasePixelPump::stop
void stop()
Immediately stop pushing pixels.
Definition: pixelpump.cc:163
DisplayTimings::DisplayTimings
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.
Definition: pixelpump.cc:48
BasePixelPump::renderLine
void renderLine()
Fast and event-free line rendering function.
Definition: pixelpump.cc:284
BasePixelPump::onVSyncEnd
virtual void onVSyncEnd()
Callback on the first pixel of the line after the end VSync region (typically the first pixel of the ...
Definition: pixelpump.hh:253
BasePixelPump::renderFrame
void renderFrame()
Render an entire frame in non-caching mode.
Definition: pixelpump.cc:252
BasePixelPump::pixelChunk
const unsigned pixelChunk
Maximum number of pixels to handle per render callback.
Definition: pixelpump.hh:284
BasePixelPump::_underrun
bool _underrun
Did a buffer underrun occur within this refresh interval?
Definition: pixelpump.hh:362
BasePixelPump::evBeginLine
PixelEvent evBeginLine
Definition: pixelpump.hh:348
Event::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: eventq.cc:237
DisplayTimings::hSync
unsigned hSync
Horizontal sync signal length in pixels.
Definition: pixelpump.hh:128

Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17