gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pixelpump.hh
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 #ifndef __DEV_PIXELPUMP_HH__
39 #define __DEV_PIXELPUMP_HH__
40 
41 #include <vector>
42 
43 #include "base/framebuffer.hh"
44 #include "sim/clocked_object.hh"
45 
46 struct BasePixelPumpParams;
47 
49 {
62  DisplayTimings(unsigned width, unsigned height,
63  unsigned hbp, unsigned h_sync, unsigned hfp,
64  unsigned vbp, unsigned v_sync, unsigned vfp);
65 
66  void serialize(CheckpointOut &cp) const override;
67  void unserialize(CheckpointIn &cp) override;
68 
70  Cycles
71  cyclesPerLine() const
72  {
73  return Cycles(hSync + hBackPorch + width + hBackPorch);
74  }
75 
77  Cycles
79  {
80  return Cycles(cyclesPerLine() * linesPerFrame());
81  }
82 
84  unsigned
86  {
87  return 0;
88  }
89 
91  unsigned
93  {
94  return lineVSyncStart() + vSync;
95  }
96 
98  unsigned
100  {
101  return lineVBackPorchStart() + vBackPorch;
102  }
103 
105  unsigned
107  {
108  return lineFirstVisible() + height;
109  }
110 
112  unsigned
114  {
115  return lineFrontPorchStart() + vFrontPorch;
116  }
117 
119  unsigned width;
121  unsigned height;
122 
124  unsigned hBackPorch;
126  unsigned hFrontPorch;
128  unsigned hSync;
129 
131  unsigned vBackPorch;
133  unsigned vFrontPorch;
135  unsigned vSync;
136 
137  static const DisplayTimings vga;
138 };
139 
161  : public EventManager, public Clocked,
162  public Serializable
163 {
164  public:
166  unsigned pixel_chunk);
167  virtual ~BasePixelPump();
168 
169  void serialize(CheckpointOut &cp) const override;
170  void unserialize(CheckpointIn &cp) override;
171 
172  public: // Public API
174  void updateTimings(const DisplayTimings &timings);
175 
177  void renderFrame();
178 
180  void start();
181 
183  void stop();
184 
186  const DisplayTimings &timings() const { return _timings; }
187 
189  bool active() const { return evBeginLine.active(); }
190 
192  bool underrun() const { return _underrun; }
193 
195  bool
196  visibleLine() const
197  {
198  return line >= _timings.lineFirstVisible() &&
200  }
201 
203  unsigned posX() const { return _posX; }
204 
206  unsigned
207  posY() const
208  {
209  return visibleLine() ? line - _timings.lineFirstVisible() : 0;
210  }
211 
214 
215  protected: // Callbacks
222  virtual bool nextPixel(Pixel &p) = 0;
223 
237  virtual size_t
239  {
240  size_t count = 0;
241  while (count < line_length && nextPixel(*ps++))
242  count++;
243  return count;
244  }
245 
247  virtual void onVSyncBegin() {};
248 
253  virtual void onVSyncEnd() {};
254 
261  virtual void onHSyncBegin() {};
262 
269  virtual void onHSyncEnd() {};
270 
281  virtual void onUnderrun(unsigned x, unsigned y) {};
282 
284  virtual void onFrameDone() {};
285 
286  private: // Params
288  const unsigned pixelChunk;
289 
290  private:
300  class PixelEvent : public Event, public Drainable
301  {
302  typedef void (BasePixelPump::* CallbackType)();
303 
304  public:
306 
307  DrainState drain() override;
308  void drainResume() override;
309 
310  void serialize(CheckpointOut &cp) const override;
311  void unserialize(CheckpointIn &cp) override;
312 
313  const std::string name() const override { return _name; }
314 
315  void
316  process() override
317  {
318  (parent.*func)();
319  }
320 
321  bool active() const { return scheduled() || suspended; }
322 
323  private:
324  void suspend();
325  void resume();
326 
327  const std::string _name;
330 
331  bool suspended;
333  };
334 
335  void beginLine();
336  void renderPixels();
337 
339  void renderLine();
340 
343 
350 
352 
357  unsigned line;
359  unsigned _posX;
360 
362  bool _underrun;
363 };
364 
365 #endif // __DEV_PIXELPUMP_HH__
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
DisplayTimings::lineVSyncStart
unsigned lineVSyncStart() const
Calculate the first line of the vsync signal.
Definition: pixelpump.hh:85
BasePixelPump::PixelEvent::func
const CallbackType func
Definition: pixelpump.hh:329
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
BasePixelPump::_timings
DisplayTimings _timings
Definition: pixelpump.hh:351
DisplayTimings::vga
static const DisplayTimings vga
Definition: pixelpump.hh:137
BasePixelPump::evVSyncBegin
PixelEvent evVSyncBegin
Definition: pixelpump.hh:344
BasePixelPump::active
bool active() const
Is the pixel pump active and refreshing the display?
Definition: pixelpump.hh:189
DisplayTimings::cyclesPerFrame
Cycles cyclesPerFrame() const
How many pixel clocks are required for one frame?
Definition: pixelpump.hh:78
Serializable
Basic support for object serialization.
Definition: serialize.hh:175
DisplayTimings::vBackPorch
unsigned vBackPorch
Vertical back porch in lines.
Definition: pixelpump.hh:131
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
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
std::vector
STL vector class.
Definition: stl.hh:37
BasePixelPump::posX
unsigned posX() const
Current pixel position within the visible area.
Definition: pixelpump.hh:203
X86ISA::count
count
Definition: misc.hh:703
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
BasePixelPump
Timing generator for a pixel-based display.
Definition: pixelpump.hh:160
BasePixelPump::PixelEvent::active
bool active() const
Definition: pixelpump.hh:321
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
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
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
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
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
RiscvISA::x
Bitfield< 3 > x
Definition: pagetable.hh:70
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::PixelEvent::CallbackType
void(BasePixelPump::* CallbackType)()
Definition: pixelpump.hh:302
BasePixelPump::updateTimings
void updateTimings(const DisplayTimings &timings)
Update frame size using display timing.
Definition: pixelpump.cc:140
framebuffer.hh
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
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
FrameBuffer
Internal gem5 representation of a frame buffer.
Definition: framebuffer.hh:65
BasePixelPump::PixelEvent::relativeTick
Tick relativeTick
Definition: pixelpump.hh:332
clocked_object.hh
BasePixelPump::renderPixels
void renderPixels()
Definition: pixelpump.cc:215
BasePixelPump::evVSyncEnd
PixelEvent evVSyncEnd
Definition: pixelpump.hh:345
BasePixelPump::evHSyncEnd
PixelEvent evHSyncEnd
Definition: pixelpump.hh:347
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
BasePixelPump::PixelEvent::name
const std::string name() const override
Definition: pixelpump.hh:313
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
DisplayTimings
Definition: pixelpump.hh:48
BasePixelPump::PixelEvent::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: pixelpump.cc:330
BasePixelPump::PixelEvent::process
void process() override
Definition: pixelpump.hh:316
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
DisplayTimings::vSync
unsigned vSync
Vertical sync signal in lines.
Definition: pixelpump.hh:135
BasePixelPump::PixelEvent::_name
const std::string _name
Definition: pixelpump.hh:327
BasePixelPump::_posX
unsigned _posX
X-coordinate within the visible region of a frame.
Definition: pixelpump.hh:359
ArmISA::ps
Bitfield< 18, 16 > ps
Definition: miscregs_types.hh:508
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
BasePixelPump::visibleLine
bool visibleLine() const
Is the current line within the visible range?
Definition: pixelpump.hh:196
BasePixelPump::underrun
bool underrun() const
Did a buffer underrun occur within this refresh interval?
Definition: pixelpump.hh:192
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::PixelEvent::suspended
bool suspended
Definition: pixelpump.hh:331
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
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