gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
hdlcd.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2013, 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 
73 #ifndef __DEV_ARM_HDLCD_HH__
74 #define __DEV_ARM_HDLCD_HH__
75 
76 #include <fstream>
77 #include <memory>
78 #include <vector>
79 
80 #include "base/framebuffer.hh"
81 #include "base/imgwriter.hh"
82 #include "base/output.hh"
83 #include "dev/arm/amba_device.hh"
84 #include "dev/pixelpump.hh"
85 #include "sim/serialize.hh"
86 
87 class VncInput;
88 struct HDLcdParams;
89 class HDLcdPixelPump;
90 
91 class HDLcd: public AmbaDmaDevice
92 {
93  public:
94  HDLcd(const HDLcdParams &p);
95 
96  void serialize(CheckpointOut &cp) const override;
97  void unserialize(CheckpointIn &cp) override;
98 
99  void drainResume() override;
100 
101  public: // IO device interface
102  Tick read(PacketPtr pkt) override;
103  Tick write(PacketPtr pkt) override;
104 
105  AddrRangeList getAddrRanges() const override { return addrRanges; }
106 
107  protected: // Parameters
109  const bool workaroundSwapRB;
112  const bool enableCapture;
115 
116  protected: // Register handling
119  Version = 0x0000,
120  Int_RawStat = 0x0010,
121  Int_Clear = 0x0014,
122  Int_Mask = 0x0018,
123  Int_Status = 0x001C,
124  Fb_Base = 0x0100,
125  Fb_Line_Length = 0x0104,
126  Fb_Line_Count = 0x0108,
127  Fb_Line_Pitch = 0x010C,
128  Bus_Options = 0x0110,
129  V_Sync = 0x0200,
130  V_Back_Porch = 0x0204,
131  V_Data = 0x0208,
132  V_Front_Porch = 0x020C,
133  H_Sync = 0x0210,
134  H_Back_Porch = 0x0214,
135  H_Data = 0x0218,
136  H_Front_Porch = 0x021C,
137  Polarities = 0x0220,
138  Command = 0x0230,
139  Pixel_Format = 0x0240,
140  Red_Select = 0x0244,
141  Green_Select = 0x0248,
142  Blue_Select = 0x024C,
143  };
144 
146  static constexpr size_t BUS_OPTIONS_RESETV = 0x408;
147 
149  static constexpr size_t VERSION_RESETV = 0x1CDC0000;
150 
152  static constexpr size_t AXI_PORT_WIDTH = 8;
153 
155  static constexpr size_t MAX_BURST_LEN = 16;
156 
158  static constexpr size_t MAX_PIXEL_SIZE = 4;
159 
165  BitUnion32(VersionReg)
166  Bitfield<7,0> version_minor;
167  Bitfield<15,8> version_major;
168  Bitfield<31,16> product_id;
169  EndBitUnion(VersionReg)
170 
171  static constexpr uint32_t INT_DMA_END = (1UL << 0);
172  static constexpr uint32_t INT_BUS_ERROR = (1UL << 1);
173  static constexpr uint32_t INT_VSYNC = (1UL << 2);
174  static constexpr uint32_t INT_UNDERRUN = (1UL << 3);
175 
176  BitUnion32(FbLineCountReg)
177  Bitfield<11,0> fb_line_count;
178  Bitfield<31,12> reserved_31_12;
179  EndBitUnion(FbLineCountReg)
180 
181  BitUnion32(BusOptsReg)
182  Bitfield<4,0> burst_len;
183  Bitfield<7,5> reserved_7_5;
184  Bitfield<11,8> max_outstanding;
185  Bitfield<31,12> reserved_31_12;
186  EndBitUnion(BusOptsReg)
187 
188  BitUnion32(TimingReg)
189  Bitfield<11,0> val;
190  Bitfield<31,12> reserved_31_12;
191  EndBitUnion(TimingReg)
192 
193  BitUnion32(PolaritiesReg)
194  Bitfield<0> vsync_polarity;
195  Bitfield<1> hsync_polarity;
196  Bitfield<2> dataen_polarity;
197  Bitfield<3> data_polarity;
198  Bitfield<4> pxlclk_polarity;
199  Bitfield<31,5> reserved_31_5;
200  EndBitUnion(PolaritiesReg)
201 
203  Bitfield<0> enable;
204  Bitfield<31,1> reserved_31_1;
206 
207  BitUnion32(PixelFormatReg)
208  Bitfield<2,0> reserved_2_0;
209  Bitfield<4,3> bytes_per_pixel;
210  Bitfield<30,5> reserved_30_5;
211  Bitfield<31> big_endian;
212  EndBitUnion(PixelFormatReg)
213 
214  BitUnion32(ColorSelectReg)
215  Bitfield<4,0> offset;
216  Bitfield<7,5> reserved_7_5;
217  Bitfield<11,8> size;
218  Bitfield<15,12> reserved_15_12;
219  Bitfield<23,16> default_color;
220  Bitfield<31,24> reserved_31_24;
221  EndBitUnion(ColorSelectReg)
229  const VersionReg version = VERSION_RESETV;
231  uint32_t int_rawstat = 0;
232  uint32_t int_mask = 0;
233  uint32_t fb_base = 0;
234  uint32_t fb_line_length = 0;
236  FbLineCountReg fb_line_count = 0;
237  int32_t fb_line_pitch = 0;
240  TimingReg v_sync = 0;
241  TimingReg v_back_porch = 0;
242  TimingReg v_data = 0;
243  TimingReg v_front_porch = 0;
244  TimingReg h_sync = 0;
245  TimingReg h_back_porch = 0;
246  TimingReg h_data = 0;
247  TimingReg h_front_porch = 0;
248  PolaritiesReg polarities = 0;
250  PixelFormatReg pixel_format = 0;
251  ColorSelectReg red_select = 0;
252  ColorSelectReg green_select = 0;
253  ColorSelectReg blue_select = 0;
256  std::vector<uint8_t> lineBuffer;
257 
258  uint32_t readReg(Addr offset);
259  void writeReg(Addr offset, uint32_t value);
260 
263 
264  void createDmaEngine();
265 
266  void cmdEnable();
267  void cmdDisable();
268 
269  bool enabled() const { return command.enable; }
270 
271  public: // Pixel pump callbacks
272  bool pxlNext(Pixel &p);
273  size_t lineNext(std::vector<Pixel>::iterator pixel_it, size_t line_length);
274  void pxlVSyncBegin();
275  void pxlVSyncEnd();
276  void pxlUnderrun();
277  void pxlFrameDone();
278 
279  protected: // Interrupt handling
291  void setInterrupts(uint32_t ints, uint32_t mask);
292 
299  void intMask(uint32_t mask) { setInterrupts(int_rawstat, mask); }
300 
307  void
308  intRaise(uint32_t ints)
309  {
311  }
312 
319  void
320  intClear(uint32_t ints)
321  {
323  }
324 
326  uint32_t intStatus() const { return int_rawstat & int_mask; }
327 
328  protected: // Pixel output
329  class PixelPump : public BasePixelPump
330  {
331  public:
332  PixelPump(HDLcd &p, ClockDomain &pxl_clk, unsigned pixel_chunk)
333  : BasePixelPump(p, pxl_clk, pixel_chunk), parent(p)
334  {}
335 
336  void dumpSettings();
337 
338  protected:
339  bool nextPixel(Pixel &p) override { return parent.pxlNext(p); }
340  size_t
342  size_t line_length) override
343  {
344  return parent.lineNext(pixel_it, line_length);
345  }
346 
347  void onVSyncBegin() override { return parent.pxlVSyncBegin(); }
348  void onVSyncEnd() override { return parent.pxlVSyncEnd(); }
349 
350  void
351  onUnderrun(unsigned x, unsigned y) override
352  {
354  }
355 
356  void onFrameDone() override { parent.pxlFrameDone(); }
357 
358  protected:
360  };
361 
363 
365  void virtRefresh();
367 
369  std::unique_ptr<ImgWriter> imgWriter;
370 
372  Enums::ImageFormat imgFormat;
373 
375  OutputStream *pic = nullptr;
376 
379 
381 
382  protected: // DMA handling
383  class DmaEngine : public DmaReadFifo
384  {
385  public:
386  DmaEngine(HDLcd &_parent, size_t size,
387  unsigned request_size, unsigned max_pending,
388  size_t line_size, ssize_t line_pitch, unsigned num_lines);
389 
390  void startFrame(Addr fb_base);
391  void abortFrame();
392  void dumpSettings();
393 
394  void serialize(CheckpointOut &cp) const override;
395  void unserialize(CheckpointIn &cp) override;
396 
397  protected:
398  void onEndOfBlock() override;
399  void onIdle() override;
400 
402  const size_t lineSize;
403  const ssize_t linePitch;
404  const unsigned numLines;
405 
408  };
409 
410  std::unique_ptr<DmaEngine> dmaEngine;
411 
412  protected: // Statistics
413  struct HDLcdStats: public Stats::Group
414  {
415  HDLcdStats(Stats::Group *parent);
417  } stats;
418 };
419 
420 #endif
HDLcd::reserved_30_5
Bitfield< 30, 5 > reserved_30_5
Definition: hdlcd.hh:210
HDLcd::burst_len
burst_len
Definition: hdlcd.hh:182
HDLcd::intMask
void intMask(uint32_t mask)
Convenience function to update the interrupt mask.
Definition: hdlcd.hh:299
HDLcd::Fb_Line_Count
@ Fb_Line_Count
Definition: hdlcd.hh:126
HDLcd::v_data
TimingReg v_data
Vertical data width register.
Definition: hdlcd.hh:242
HDLcd::pxlVSyncBegin
void pxlVSyncBegin()
Definition: hdlcd.cc:529
HDLcd::pixelPump
PixelPump pixelPump
Definition: hdlcd.hh:380
HDLcd::DmaEngine::DmaEngine
DmaEngine(HDLcd &_parent, size_t size, unsigned request_size, unsigned max_pending, size_t line_size, ssize_t line_pitch, unsigned num_lines)
Definition: hdlcd.cc:600
HDLcd::reserved_7_5
Bitfield< 7, 5 > reserved_7_5
Definition: hdlcd.hh:183
HDLcd::INT_UNDERRUN
static constexpr uint32_t INT_UNDERRUN
Definition: hdlcd.hh:174
HDLcd::Int_Status
@ Int_Status
Definition: hdlcd.hh:123
HDLcd::pxlclk_polarity
Bitfield< 4 > pxlclk_polarity
Definition: hdlcd.hh:198
HDLcd::workaroundDmaLineCount
const bool workaroundDmaLineCount
Definition: hdlcd.hh:110
HDLcd::stats
HDLcd::HDLcdStats stats
HDLcd::enableCapture
const bool enableCapture
Definition: hdlcd.hh:112
serialize.hh
AmbaDmaDevice
Definition: amba_device.hh:97
HDLcd::MAX_PIXEL_SIZE
static constexpr size_t MAX_PIXEL_SIZE
Maximum number of bytes per pixel.
Definition: hdlcd.hh:158
HDLcd::V_Back_Porch
@ V_Back_Porch
Definition: hdlcd.hh:130
HDLcd::getAddrRanges
AddrRangeList getAddrRanges() const override
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
Definition: hdlcd.hh:105
HDLcd::displayTimings
DisplayTimings displayTimings() const
Definition: hdlcd.cc:435
HDLcd::Red_Select
@ Red_Select
Definition: hdlcd.hh:140
PixelConverter
Configurable RGB pixel converter.
Definition: pixel.hh:88
HDLcd::imgFormat
Enums::ImageFormat imgFormat
Image Format.
Definition: hdlcd.hh:372
HDLcd::Bus_Options
@ Bus_Options
Definition: hdlcd.hh:128
HDLcd::pxlNext
bool pxlNext(Pixel &p)
Definition: hdlcd.cc:497
HDLcd::Blue_Select
@ Blue_Select
Definition: hdlcd.hh:142
HDLcd::fb_base
uint32_t fb_base
Frame buffer base address register.
Definition: hdlcd.hh:233
HDLcd::Int_RawStat
@ Int_RawStat
Definition: hdlcd.hh:120
HDLcd::v_back_porch
TimingReg v_back_porch
Vertical back porch width register.
Definition: hdlcd.hh:241
HDLcd::PixelPump::dumpSettings
void dumpSettings()
Definition: hdlcd.cc:676
amba_device.hh
HDLcd::reserved_31_1
Bitfield< 31, 1 > reserved_31_1
Definition: hdlcd.hh:204
HDLcd::DmaEngine::numLines
const unsigned numLines
Definition: hdlcd.hh:404
HDLcd::PixelPump
Definition: hdlcd.hh:329
HDLcd::h_front_porch
TimingReg h_front_porch
Horizontal front porch width reg.
Definition: hdlcd.hh:247
HDLcd::Pixel_Format
@ Pixel_Format
Definition: hdlcd.hh:139
HDLcd::blue_select
ColorSelectReg blue_select
Blue color select register.
Definition: hdlcd.hh:253
HDLcd::command
CommandReg command
Command register.
Definition: hdlcd.hh:249
HDLcd::HDLcdStats
Definition: hdlcd.hh:413
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
HDLcd::DmaEngine::lineSize
const size_t lineSize
Definition: hdlcd.hh:402
HDLcd::Command
@ Command
Definition: hdlcd.hh:138
HDLcd::BUS_OPTIONS_RESETV
static constexpr size_t BUS_OPTIONS_RESETV
Reset value for Bus_Options register.
Definition: hdlcd.hh:146
HDLcd::reserved_2_0
reserved_2_0
Definition: hdlcd.hh:208
HDLcd::Int_Mask
@ Int_Mask
Definition: hdlcd.hh:122
PixelConverter::rgba8888_le
static const PixelConverter rgba8888_le
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, little endian) conversion helpe...
Definition: pixel.hh:199
pixelpump.hh
std::vector
STL vector class.
Definition: stl.hh:37
HDLcd::DmaEngine::nextLineAddr
Addr nextLineAddr
Definition: hdlcd.hh:406
HDLcd::V_Front_Porch
@ V_Front_Porch
Definition: hdlcd.hh:132
HDLcd::green_select
ColorSelectReg green_select
Green color select register.
Definition: hdlcd.hh:252
imgwriter.hh
HDLcd::offset
offset
Definition: hdlcd.hh:215
HDLcd::Version
@ Version
Definition: hdlcd.hh:119
HDLcd::PixelPump::nextLine
size_t nextLine(std::vector< Pixel >::iterator pixel_it, size_t line_length) override
Get the next line of pixels directly from memory.
Definition: hdlcd.hh:341
output.hh
VncInput
Definition: vncinput.hh:85
HDLcd::virtRefreshEvent
EventFunctionWrapper virtRefreshEvent
Definition: hdlcd.hh:366
ClockDomain
The ClockDomain provides clock to group of clocked objects bundled under the same clock domain.
Definition: clock_domain.hh:68
HDLcd::pixelBufferSize
const Addr pixelBufferSize
Definition: hdlcd.hh:113
HDLcd::dmaEngine
std::unique_ptr< DmaEngine > dmaEngine
Definition: hdlcd.hh:410
HDLcd::intStatus
uint32_t intStatus() const
Masked interrupt status register.
Definition: hdlcd.hh:326
HDLcd::DmaEngine::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: hdlcd.cc:613
HDLcd::intClear
void intClear(uint32_t ints)
Convenience function to clear interrupts.
Definition: hdlcd.hh:320
EventFunctionWrapper
Definition: eventq.hh:1112
HDLcd::pixel_format
PixelFormatReg pixel_format
Pixel format register.
Definition: hdlcd.hh:250
BasePixelPump
Timing generator for a pixel-based display.
Definition: pixelpump.hh:160
HDLcd::reserved_31_24
Bitfield< 31, 24 > reserved_31_24
Definition: hdlcd.hh:220
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
HDLcd::bypassLineAddress
Addr bypassLineAddress
Definition: hdlcd.hh:362
HDLcd::polarities
PolaritiesReg polarities
Polarities register.
Definition: hdlcd.hh:248
HDLcd::bus_options
BusOptsReg bus_options
Bus options register.
Definition: hdlcd.hh:238
HDLcd::MAX_BURST_LEN
static constexpr size_t MAX_BURST_LEN
max number of beats delivered in one dma burst
Definition: hdlcd.hh:155
HDLcd::fb_line_length
uint32_t fb_line_length
Frame buffer Line length register.
Definition: hdlcd.hh:234
HDLcd::data_polarity
Bitfield< 3 > data_polarity
Definition: hdlcd.hh:197
HDLcd::Fb_Line_Pitch
@ Fb_Line_Pitch
Definition: hdlcd.hh:127
cp
Definition: cprintf.cc:37
HDLcd::version_minor
version_minor
Definition: hdlcd.hh:166
HDLcd::hsync_polarity
Bitfield< 1 > hsync_polarity
Definition: hdlcd.hh:195
HDLcd::bytes_per_pixel
Bitfield< 4, 3 > bytes_per_pixel
Definition: hdlcd.hh:209
HDLcd::EndBitUnion
EndBitUnion(VersionReg) static const expr uint32_t INT_DMA_END
HDLcd::DmaEngine::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: hdlcd.cc:622
HDLcd::read
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: hdlcd.cc:213
HDLcd::setInterrupts
void setInterrupts(uint32_t ints, uint32_t mask)
Assign new interrupt values and update interrupt signals.
Definition: hdlcd.cc:586
HDLcd::virtRefreshRate
const Tick virtRefreshRate
Definition: hdlcd.hh:114
HDLcd::h_back_porch
TimingReg h_back_porch
Horizontal back porch width reg.
Definition: hdlcd.hh:245
HDLcd::DmaEngine::onEndOfBlock
void onEndOfBlock() override
End of block callback.
Definition: hdlcd.cc:657
HDLcd::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: hdlcd.cc:129
HDLcd::v_front_porch
TimingReg v_front_porch
Vertical front porch width register.
Definition: hdlcd.hh:243
HDLcd::vnc
VncInput * vnc
Definition: hdlcd.hh:108
HDLcd::RegisterOffset
RegisterOffset
ARM HDLcd register offsets.
Definition: hdlcd.hh:118
HDLcd::Green_Select
@ Green_Select
Definition: hdlcd.hh:141
HDLcd::VERSION_RESETV
static constexpr size_t VERSION_RESETV
Reset value for Version register.
Definition: hdlcd.hh:149
HDLcd::Fb_Line_Length
@ Fb_Line_Length
Definition: hdlcd.hh:125
HDLcd::product_id
Bitfield< 31, 16 > product_id
Definition: hdlcd.hh:168
HDLcd::H_Data
@ H_Data
Definition: hdlcd.hh:135
HDLcd::version_major
Bitfield< 15, 8 > version_major
Definition: hdlcd.hh:167
HDLcd::PixelPump::PixelPump
PixelPump(HDLcd &p, ClockDomain &pxl_clk, unsigned pixel_chunk)
Definition: hdlcd.hh:332
HDLcd::h_sync
TimingReg h_sync
Horizontal sync width register.
Definition: hdlcd.hh:244
HDLcd::AXI_PORT_WIDTH
static constexpr size_t AXI_PORT_WIDTH
AXI port width in bytes.
Definition: hdlcd.hh:152
HDLcd::PixelPump::onUnderrun
void onUnderrun(unsigned x, unsigned y) override
Buffer underrun occurred on a frame.
Definition: hdlcd.hh:351
HDLcd::pic
OutputStream * pic
Picture of what the current frame buffer looks like.
Definition: hdlcd.hh:375
HDLcd::cmdDisable
void cmdDisable()
Definition: hdlcd.cc:485
HDLcd::DmaEngine::startFrame
void startFrame(Addr fb_base)
Definition: hdlcd.cc:631
HDLcd::PixelPump::nextPixel
bool nextPixel(Pixel &p) override
Get the next pixel from the scan line buffer.
Definition: hdlcd.hh:339
HDLcd::size
Bitfield< 11, 8 > size
Definition: hdlcd.hh:217
HDLcd::V_Data
@ V_Data
Definition: hdlcd.hh:131
CommandReg
Definition: ide_disk.hh:124
HDLcd::int_mask
uint32_t int_mask
Interrupt mask register.
Definition: hdlcd.hh:232
HDLcd::Int_Clear
@ Int_Clear
Definition: hdlcd.hh:121
DmaReadFifo
Buffered DMA engine helper class.
Definition: dma_device.hh:361
RiscvISA::x
Bitfield< 3 > x
Definition: pagetable.hh:70
HDLcd::H_Back_Porch
@ H_Back_Porch
Definition: hdlcd.hh:134
HDLcd::pxlUnderrun
void pxlUnderrun()
Definition: hdlcd.cc:547
HDLcd::lineBuffer
std::vector< uint8_t > lineBuffer
Definition: hdlcd.hh:256
HDLcd::conv
PixelConverter conv
Cached pixel converter, set when the converter is enabled.
Definition: hdlcd.hh:378
Pixel
Internal gem5 representation of a Pixel.
Definition: pixel.hh:55
HDLcd::fb_line_pitch
int32_t fb_line_pitch
Frame buffer Line pitch register.
Definition: hdlcd.hh:237
HDLcd::HDLcd
HDLcd(const HDLcdParams &p)
Definition: hdlcd.cc:58
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
HDLcd::val
val
Definition: hdlcd.hh:189
HDLcd::h_data
TimingReg h_data
Horizontal data width register.
Definition: hdlcd.hh:246
HDLcd::enabled
bool enabled() const
Definition: hdlcd.hh:269
framebuffer.hh
HDLcd::DmaEngine::linePitch
const ssize_t linePitch
Definition: hdlcd.hh:403
HDLcd::reserved_31_5
Bitfield< 31, 5 > reserved_31_5
Definition: hdlcd.hh:199
HDLcd::BitUnion32
BitUnion32(VersionReg) Bitfield< 7
HDLcd::DmaEngine
Definition: hdlcd.hh:383
HDLcd::DmaEngine::abortFrame
void abortFrame()
Definition: hdlcd.cc:640
HDLcd::DmaEngine::dumpSettings
void dumpSettings()
Definition: hdlcd.cc:649
HDLcd::writeReg
void writeReg(Addr offset, uint32_t value)
Definition: hdlcd.cc:291
HDLcd::PixelPump::onFrameDone
void onFrameDone() override
Finished displaying the visible region of a frame.
Definition: hdlcd.hh:356
HDLcd::big_endian
Bitfield< 31 > big_endian
Definition: hdlcd.hh:211
HDLcd::imgWriter
std::unique_ptr< ImgWriter > imgWriter
Helper to write out bitmaps.
Definition: hdlcd.hh:369
HDLcd::H_Sync
@ H_Sync
Definition: hdlcd.hh:133
HDLcd::Fb_Base
@ Fb_Base
Definition: hdlcd.hh:124
HDLcd::reserved_31_12
Bitfield< 31, 12 > reserved_31_12
Definition: hdlcd.hh:178
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
HDLcd::PixelPump::onVSyncEnd
void onVSyncEnd() override
Callback on the first pixel of the line after the end VSync region (typically the first pixel of the ...
Definition: hdlcd.hh:348
X86ISA::vector
Bitfield< 15, 8 > vector
Definition: intmessage.hh:44
HDLcd::HDLcdStats::underruns
Stats::Scalar underruns
Definition: hdlcd.hh:416
HDLcd::readReg
uint32_t readReg(Addr offset)
Definition: hdlcd.cc:252
HDLcd::int_rawstat
uint32_t int_rawstat
Interrupt raw status register.
Definition: hdlcd.hh:231
OutputStream
Definition: output.hh:53
X86ISA::enable
Bitfield< 11 > enable
Definition: misc.hh:1051
HDLcd::INT_VSYNC
static constexpr uint32_t INT_VSYNC
Definition: hdlcd.hh:173
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
HDLcd::virtRefresh
void virtRefresh()
Handler for fast frame refresh in KVM-mode.
Definition: hdlcd.cc:205
Stats::Group
Statistics container.
Definition: group.hh:87
HDLcd::addrRanges
const AddrRangeList addrRanges
Definition: hdlcd.hh:111
HDLcd
Definition: hdlcd.hh:91
HDLcd::pxlVSyncEnd
void pxlVSyncEnd()
Definition: hdlcd.cc:536
HDLcd::H_Front_Porch
@ H_Front_Porch
Definition: hdlcd.hh:136
HDLcd::intRaise
void intRaise(uint32_t ints)
Convenience function to raise a new interrupt.
Definition: hdlcd.hh:308
HDLcd::dataen_polarity
Bitfield< 2 > dataen_polarity
Definition: hdlcd.hh:196
HDLcd::V_Sync
@ V_Sync
Definition: hdlcd.hh:129
DmaReadFifo::size
size_t size() const
Get the amount of data stored in the FIFO.
Definition: dma_device.hh:424
HDLcd::red_select
ColorSelectReg red_select
Red color select register.
Definition: hdlcd.hh:251
HDLcd::DmaEngine::onIdle
void onIdle() override
Last response received callback.
Definition: hdlcd.cc:670
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
HDLcd::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: hdlcd.cc:233
HDLcd::pxlFrameDone
void pxlFrameDone()
Definition: hdlcd.cc:556
HDLcd::PixelPump::parent
HDLcd & parent
Definition: hdlcd.hh:359
HDLcd::pixelConverter
PixelConverter pixelConverter() const
Definition: hdlcd.cc:412
HDLcd::HDLcdStats::HDLcdStats
HDLcdStats(Stats::Group *parent)
Definition: hdlcd.cc:82
DisplayTimings
Definition: pixelpump.hh:48
HDLcd::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: hdlcd.cc:92
HDLcd::lineNext
size_t lineNext(std::vector< Pixel >::iterator pixel_it, size_t line_length)
Definition: hdlcd.cc:510
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
std::list< AddrRange >
HDLcd::workaroundSwapRB
const bool workaroundSwapRB
Definition: hdlcd.hh:109
CheckpointIn
Definition: serialize.hh:68
HDLcd::PixelPump::onVSyncBegin
void onVSyncBegin() override
First pixel clock of the first VSync line.
Definition: hdlcd.hh:347
HDLcd::v_sync
TimingReg v_sync
Vertical sync width register.
Definition: hdlcd.hh:240
HDLcd::reserved_15_12
Bitfield< 15, 12 > reserved_15_12
Definition: hdlcd.hh:218
HDLcd::fb_line_count
fb_line_count
Definition: hdlcd.hh:177
HDLcd::drainResume
void drainResume() override
Resume execution after a successful drain.
Definition: hdlcd.cc:180
HDLcd::INT_BUS_ERROR
static constexpr uint32_t INT_BUS_ERROR
Definition: hdlcd.hh:172
HDLcd::createDmaEngine
void createDmaEngine()
Definition: hdlcd.cc:444
HDLcd::cmdEnable
void cmdEnable()
Definition: hdlcd.cc:469
HDLcd::default_color
Bitfield< 23, 16 > default_color
Definition: hdlcd.hh:219
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
HDLcd::Polarities
@ Polarities
Definition: hdlcd.hh:137
HDLcd::DmaEngine::frameEnd
Addr frameEnd
Definition: hdlcd.hh:407
HDLcd::DmaEngine::parent
HDLcd & parent
Definition: hdlcd.hh:401
HDLcd::max_outstanding
Bitfield< 11, 8 > max_outstanding
Definition: hdlcd.hh:184

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