gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
hdlcd.cc
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 #include "dev/arm/hdlcd.hh"
39 
40 #include "base/compiler.hh"
41 #include "base/output.hh"
42 #include "base/trace.hh"
43 #include "base/vnc/vncinput.hh"
44 #include "debug/Checkpoint.hh"
45 #include "debug/HDLcd.hh"
46 #include "dev/arm/amba_device.hh"
47 #include "dev/arm/base_gic.hh"
48 #include "enums/ImageFormat.hh"
49 #include "mem/packet.hh"
50 #include "mem/packet_access.hh"
51 #include "params/HDLcd.hh"
52 #include "sim/system.hh"
53 
54 using std::vector;
55 
56 
57 // initialize hdlcd registers
58 HDLcd::HDLcd(const HDLcdParams &p)
59  : AmbaDmaDevice(p, 0xFFFF),
60  // Parameters
61  vnc(p.vnc),
62  workaroundSwapRB(p.workaround_swap_rb),
63  workaroundDmaLineCount(p.workaround_dma_line_count),
64  addrRanges{RangeSize(pioAddr, pioSize)},
65  enableCapture(p.enable_capture),
66  pixelBufferSize(p.pixel_buffer_size),
67  virtRefreshRate(p.virt_refresh_rate),
68 
69  virtRefreshEvent([this]{ virtRefresh(); }, name()),
70  // Other
71  imgFormat(p.frame_format),
72  pixelPump(*this, *p.pxl_clk, p.pixel_chunk),
73  stats(this)
74 {
75  if (vnc)
76  vnc->setFrameBuffer(&pixelPump.fb);
77 
78  imgWriter = createImgWriter(imgFormat, &pixelPump.fb);
79 }
80 
81 HDLcd::
83  : Stats::Group(parent, "HDLcd"),
84  ADD_STAT(underruns, UNIT_COUNT, "Number of buffer underruns")
85 {
86  using namespace Stats;
87 
89 }
90 
91 void
93 {
94  DPRINTF(Checkpoint, "Serializing ARM HDLCD\n");
95 
98 
104 
109 
114 
116 
122 
124  if (enabled())
125  dmaEngine->serializeSection(cp, "dmaEngine");
126 }
127 
128 void
130 {
131  DPRINTF(Checkpoint, "Unserializing ARM HDLCD\n");
132 
135 
141 
146 
151 
153 
159 
160  {
161  // Try to unserialize the pixel pump. It might not exist if
162  // we're unserializing an old checkpoint.
163  ScopedCheckpointSection sec(cp, "pixelPump");
164  if (cp.sectionExists(Serializable::currentSection()))
166  }
167 
168  if (enabled()) {
169  // Create the DMA engine and read its state from the
170  // checkpoint. We don't need to worry about the pixel pump as
171  // it is a proper SimObject.
172  createDmaEngine();
173  dmaEngine->unserializeSection(cp, "dmaEngine");
174 
175  conv = pixelConverter();
176  }
177 }
178 
179 void
181 {
183 
184  if (enabled()) {
185  if (sys->bypassCaches()) {
186  // We restart the HDLCD if we are in KVM mode. This
187  // ensures that we always use the fast refresh logic if we
188  // resume in KVM mode.
189  cmdDisable();
190  cmdEnable();
191  } else if (!pixelPump.active()) {
192  // We restored from an old checkpoint without a pixel
193  // pump, start an new refresh. This typically happens when
194  // restoring from old checkpoints.
195  cmdEnable();
196  }
197  }
198 
199  // We restored from a checkpoint and need to update the VNC server
200  if (pixelPump.active() && vnc)
201  vnc->setDirty();
202 }
203 
204 void
206 {
209 }
210 
211 // read registers and frame buffer
212 Tick
214 {
215  assert(pkt->getAddr() >= pioAddr &&
216  pkt->getAddr() < pioAddr + pioSize);
217 
218  const Addr daddr = pkt->getAddr() - pioAddr;
219  panic_if(pkt->getSize() != 4,
220  "Unhandled read size (address: 0x.4x, size: %u)",
221  daddr, pkt->getSize());
222 
223  const uint32_t data = readReg(daddr);
224  DPRINTF(HDLcd, "read register 0x%04x: 0x%x\n", daddr, data);
225 
226  pkt->setLE<uint32_t>(data);
227  pkt->makeAtomicResponse();
228  return pioDelay;
229 }
230 
231 // write registers and frame buffer
232 Tick
234 {
235  assert(pkt->getAddr() >= pioAddr &&
236  pkt->getAddr() < pioAddr + pioSize);
237 
238  const Addr daddr = pkt->getAddr() - pioAddr;
239  panic_if(pkt->getSize() != 4,
240  "Unhandled read size (address: 0x.4x, size: %u)",
241  daddr, pkt->getSize());
242  const uint32_t data = pkt->getLE<uint32_t>();
243  DPRINTF(HDLcd, "write register 0x%04x: 0x%x\n", daddr, data);
244 
245  writeReg(daddr, data);
246 
247  pkt->makeAtomicResponse();
248  return pioDelay;
249 }
250 
251 uint32_t
253 {
254  switch (offset) {
255  case Version: return version;
256 
257  case Int_RawStat: return int_rawstat;
258  case Int_Clear:
259  panic("HDLCD INT_CLEAR register is Write-Only\n");
260  case Int_Mask: return int_mask;
261  case Int_Status: return intStatus();
262 
263  case Fb_Base: return fb_base;
264  case Fb_Line_Length: return fb_line_length;
265  case Fb_Line_Count: return fb_line_count;
266  case Fb_Line_Pitch: return fb_line_pitch;
267  case Bus_Options: return bus_options;
268 
269  case V_Sync: return v_sync;
270  case V_Back_Porch: return v_back_porch;
271  case V_Data: return v_data;
272  case V_Front_Porch: return v_front_porch;
273  case H_Sync: return h_sync;
274  case H_Back_Porch: return h_back_porch;
275  case H_Data: return h_data;
276  case H_Front_Porch: return h_front_porch;
277  case Polarities: return polarities;
278 
279  case Command: return command;
280  case Pixel_Format: return pixel_format;
281  case Red_Select: return red_select;
282  case Green_Select: return green_select;
283  case Blue_Select: return blue_select;
284 
285  default:
286  panic("Tried to read HDLCD register that doesn't exist\n", offset);
287  }
288 }
289 
290 void
291 HDLcd::writeReg(Addr offset, uint32_t value)
292 {
293  switch (offset) {
294  case Version:
295  panic("HDLCD VERSION register is read-Only\n");
296 
297  case Int_RawStat:
298  intRaise(value);
299  return;
300  case Int_Clear:
301  intClear(value);
302  return;
303  case Int_Mask:
304  intMask(value);
305  return;
306  case Int_Status:
307  panic("HDLCD INT_STATUS register is read-Only\n");
308  break;
309 
310  case Fb_Base:
311  fb_base = value;
312  return;
313 
314  case Fb_Line_Length:
315  fb_line_length = value;
316  return;
317 
318  case Fb_Line_Count:
319  fb_line_count = value;
320  return;
321 
322  case Fb_Line_Pitch:
323  fb_line_pitch = value;
324  return;
325 
326  case Bus_Options: {
327  const BusOptsReg old_bus_options(bus_options);
328  bus_options = value;
329 
330  if (bus_options.max_outstanding != old_bus_options.max_outstanding) {
331  DPRINTF(HDLcd,
332  "Changing HDLcd outstanding DMA transactions: %d -> %d\n",
333  old_bus_options.max_outstanding,
334  bus_options.max_outstanding);
335 
336  }
337 
338  if (bus_options.burst_len != old_bus_options.burst_len) {
339  DPRINTF(HDLcd,
340  "Changing HDLcd DMA burst flags: 0x%x -> 0x%x\n",
341  old_bus_options.burst_len, bus_options.burst_len);
342  }
343  } return;
344 
345  case V_Sync:
346  v_sync = value;
347  return;
348  case V_Back_Porch:
349  v_back_porch = value;
350  return;
351  case V_Data:
352  v_data = value;
353  return;
354  case V_Front_Porch:
355  v_front_porch = value;
356  return;
357 
358  case H_Sync:
359  h_sync = value;
360  return;
361  case H_Back_Porch:
362  h_back_porch = value;
363  return;
364  case H_Data:
365  h_data = value;
366  return;
367  case H_Front_Porch:
368  h_front_porch = value;
369  return;
370 
371  case Polarities:
372  polarities = value;
373  return;
374 
375  case Command: {
376  const CommandReg new_command(value);
377 
378  if (new_command.enable != command.enable) {
379  DPRINTF(HDLcd, "HDLCD switched %s\n",
380  new_command.enable ? "on" : "off");
381 
382  if (new_command.enable) {
383  cmdEnable();
384  } else {
385  cmdDisable();
386  }
387  }
388  command = new_command;
389  } return;
390 
391  case Pixel_Format:
392  pixel_format = value;
393  return;
394 
395  case Red_Select:
396  red_select = value;
397  return;
398  case Green_Select:
399  green_select = value;
400  return;
401  case Blue_Select:
402  blue_select = value;
403  return;
404 
405  default:
406  panic("Tried to write HDLCD register that doesn't exist\n", offset);
407  return;
408  }
409 }
410 
413 {
414  ByteOrder byte_order =
415  pixel_format.big_endian ? ByteOrder::big : ByteOrder::little;
416 
417  /* Some Linux kernels have a broken driver that swaps the red and
418  * blue color select registers. */
419  if (!workaroundSwapRB) {
420  return PixelConverter(
421  pixel_format.bytes_per_pixel + 1,
422  red_select.offset, green_select.offset, blue_select.offset,
423  red_select.size, green_select.size, blue_select.size,
424  byte_order);
425  } else {
426  return PixelConverter(
427  pixel_format.bytes_per_pixel + 1,
428  blue_select.offset, green_select.offset, red_select.offset,
429  blue_select.size, green_select.size, red_select.size,
430  byte_order);
431  }
432 }
433 
436 {
437  return DisplayTimings(
438  h_data.val + 1, v_data.val + 1,
439  h_back_porch.val + 1, h_sync.val + 1, h_front_porch.val + 1,
440  v_back_porch.val + 1, v_sync.val + 1, v_front_porch.val + 1);
441 }
442 
443 void
445 {
446  if (bus_options.max_outstanding == 0) {
447  warn("Maximum number of outstanding DMA transfers set to 0.");
448  return;
449  }
450 
451  const uint32_t dma_burst_flags = bus_options.burst_len;
452  const uint32_t dma_burst_len = dma_burst_flags ?
453  (1UL << (findMsbSet(dma_burst_flags) - 1)) : MAX_BURST_LEN;
454  // Some drivers seem to set the DMA line count incorrectly. This
455  // could either be a driver bug or a specification bug. Unlike for
456  // timings, the specification does not require 1 to be added to
457  // the DMA engine's line count.
458  const uint32_t dma_lines =
460 
461  dmaEngine.reset(new DmaEngine(
462  *this, pixelBufferSize,
463  AXI_PORT_WIDTH * dma_burst_len,
464  bus_options.max_outstanding,
465  fb_line_length, fb_line_pitch, dma_lines));
466 }
467 
468 void
470 {
471  createDmaEngine();
472  conv = pixelConverter();
473 
474  // Update timing parameter before rendering frames
476 
477  if (sys->bypassCaches()) {
479  } else {
480  pixelPump.start();
481  }
482 }
483 
484 void
486 {
487  pixelPump.stop();
488  // Disable the virtual refresh event
489  if (virtRefreshEvent.scheduled()) {
490  assert(sys->bypassCaches());
492  }
493  dmaEngine->abortFrame();
494 }
495 
496 bool
498 {
499  uint8_t pixel_data[MAX_PIXEL_SIZE];
500  assert(conv.length <= sizeof(pixel_data));
501  if (dmaEngine->tryGet(pixel_data, conv.length)) {
502  p = conv.toPixel(pixel_data);
503  return true;
504  } else {
505  return false;
506  }
507 }
508 
509 size_t
510 HDLcd::lineNext(std::vector<Pixel>::iterator pixel_it, size_t line_length)
511 {
512  const size_t byte_count = line_length * conv.length;
513 
514  lineBuffer.resize(byte_count);
515  dmaRead(bypassLineAddress, byte_count, nullptr, lineBuffer.data());
516 
518 
519  uint8_t *bufPtr = lineBuffer.data();
520  for (size_t i = 0; i < line_length; i++) {
521  *pixel_it++ = conv.toPixel(bufPtr);
522  bufPtr += conv.length;
523  }
524 
525  return line_length;
526 }
527 
528 void
530 {
531  DPRINTF(HDLcd, "Raising VSYNC interrupt.\n");
533 }
534 
535 void
537 {
538  DPRINTF(HDLcd, "End of VSYNC, starting DMA engine\n");
539  if (sys->bypassCaches()) {
541  } else {
542  dmaEngine->startFrame(fb_base);
543  }
544 }
545 
546 void
548 {
549  DPRINTF(HDLcd, "Buffer underrun, stopping DMA fill.\n");
550  ++stats.underruns;
552  dmaEngine->abortFrame();
553 }
554 
555 void
557 {
558  DPRINTF(HDLcd, "Reached end of last visible line.\n");
559 
560  if (dmaEngine->size()) {
561  warn("HDLCD %u bytes still in FIFO after frame: Ensure that DMA "
562  "and PixelPump configuration is consistent\n",
563  dmaEngine->size());
564  dmaEngine->dumpSettings();
566  }
567 
568  if (vnc)
569  vnc->setDirty();
570 
571  if (enableCapture) {
572  if (!pic) {
573  pic = simout.create(
574  csprintf("%s.framebuffer.%s",
575  sys->name(), imgWriter->getImgExtension()),
576  true);
577  }
578 
579  assert(pic);
580  pic->stream()->seekp(0);
581  imgWriter->write(*pic->stream());
582  }
583 }
584 
585 void
586 HDLcd::setInterrupts(uint32_t ints, uint32_t mask)
587 {
588  const bool old_ints = intStatus();
589 
590  int_mask = mask;
591  int_rawstat = ints;
592 
593  if (!old_ints && intStatus()) {
594  interrupt->raise();
595  } else if (old_ints && !intStatus()) {
596  interrupt->clear();
597  }
598 }
599 
601  unsigned request_size, unsigned max_pending,
602  size_t line_size, ssize_t line_pitch, unsigned num_lines)
603  : DmaReadFifo(
604  _parent.dmaPort, size, request_size, max_pending,
605  Request::UNCACHEABLE),
606  parent(_parent),
607  lineSize(line_size), linePitch(line_pitch), numLines(num_lines),
608  nextLineAddr(0)
609 {
610 }
611 
612 void
614 {
616 
617  SERIALIZE_SCALAR(nextLineAddr);
618  SERIALIZE_SCALAR(frameEnd);
619 }
620 
621 void
623 {
625 
626  UNSERIALIZE_SCALAR(nextLineAddr);
627  UNSERIALIZE_SCALAR(frameEnd);
628 }
629 
630 void
632 {
633  nextLineAddr = fb_base;
634  frameEnd = fb_base + numLines * linePitch;
635 
636  startFill(nextLineAddr, lineSize);
637 }
638 
639 void
641 {
642  nextLineAddr = frameEnd;
643  stopFill();
644  flush();
645 }
646 
647 
648 void
650 {
651  inform("DMA line size: %u bytes", lineSize);
652  inform("DMA line pitch: %i bytes", linePitch);
653  inform("DMA num lines: %u", numLines);
654 }
655 
656 void
658 {
659  if (nextLineAddr == frameEnd)
660  // We're done with this frame. Ignore calls to this method
661  // until the next frame has been started.
662  return;
663 
664  nextLineAddr += linePitch;
665  if (nextLineAddr != frameEnd)
666  startFill(nextLineAddr, lineSize);
667 }
668 
669 void
671 {
672  parent.intRaise(INT_DMA_END);
673 }
674 
675 void
677 {
678  const DisplayTimings &t = timings();
679 
680  inform("PixelPump width: %u", t.width);
681  inform("PixelPump height: %u", t.height);
682 
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);
686 
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);
690 }
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
Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:462
HDLcd::pxlVSyncBegin
void pxlVSyncBegin()
Definition: hdlcd.cc:529
DmaReadFifo::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: dma_device.cc:399
Packet::makeAtomicResponse
void makeAtomicResponse()
Definition: packet.hh:1017
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
warn
#define warn(...)
Definition: logging.hh:239
HDLcd::INT_UNDERRUN
static constexpr uint32_t INT_UNDERRUN
Definition: hdlcd.hh:174
HDLcd::Int_Status
@ Int_Status
Definition: hdlcd.hh:123
HDLcd::workaroundDmaLineCount
const bool workaroundDmaLineCount
Definition: hdlcd.hh:110
system.hh
hdlcd.hh
data
const char data[]
Definition: circlebuf.test.cc:47
HDLcd::enableCapture
const bool enableCapture
Definition: hdlcd.hh:112
AmbaDmaDevice
Definition: amba_device.hh:97
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:591
HDLcd::MAX_PIXEL_SIZE
static constexpr size_t MAX_PIXEL_SIZE
Maximum number of bytes per pixel.
Definition: hdlcd.hh:158
Packet::getAddr
Addr getAddr() const
Definition: packet.hh:755
HDLcd::V_Back_Porch
@ V_Back_Porch
Definition: hdlcd.hh:130
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
BasePixelPump::active
bool active() const
Is the pixel pump active and refreshing the display?
Definition: pixelpump.hh:189
HDLcd::Bus_Options
@ Bus_Options
Definition: hdlcd.hh:128
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
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
ArmInterruptPin::clear
virtual void clear()=0
Clear a signalled interrupt.
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::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
base_gic.hh
HDLcd::blue_select
ColorSelectReg blue_select
Blue color select register.
Definition: hdlcd.hh:253
HDLcd::command
CommandReg command
Command register.
Definition: hdlcd.hh:249
vncinput.hh
ArmInterruptPin::raise
virtual void raise()=0
Signal an interrupt.
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
OutputDirectory::create
OutputStream * create(const std::string &name, bool binary=false, bool no_gz=false)
Creates a file in this directory (optionally compressed).
Definition: output.cc:207
HDLcd::Command
@ Command
Definition: hdlcd.hh:138
BasePixelPump::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: pixelpump.cc:123
HDLcd::Int_Mask
@ Int_Mask
Definition: hdlcd.hh:122
EventManager::deschedule
void deschedule(Event &event)
Definition: eventq.hh:1025
std::vector
STL vector class.
Definition: stl.hh:37
Packet::getSize
unsigned getSize() const
Definition: packet.hh:765
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
HDLcd::offset
offset
Definition: hdlcd.hh:215
HDLcd::Version
@ Version
Definition: hdlcd.hh:119
output.hh
HDLcd::virtRefreshEvent
EventFunctionWrapper virtRefreshEvent
Definition: hdlcd.hh:366
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
PixelConverter::toPixel
Pixel toPixel(uint32_t word) const
Get the Pixel representation of a color word.
Definition: pixel.hh:134
HDLcd::DmaEngine::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: hdlcd.cc:613
VncInput::setDirty
virtual void setDirty()
The frame buffer uses this call to notify the vnc server that the frame buffer has been updated and a...
Definition: vncinput.cc:90
HDLcd::intClear
void intClear(uint32_t ints)
Convenience function to clear interrupts.
Definition: hdlcd.hh:320
packet.hh
Stats::DataWrap::flags
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Definition: statistics.hh:339
PioDevice::sys
System * sys
Definition: io_device.hh:102
HDLcd::pixel_format
PixelFormatReg pixel_format
Pixel format register.
Definition: hdlcd.hh:250
DmaDevice::dmaPort
DmaPort dmaPort
Definition: dma_device.hh:203
HDLcd::bypassLineAddress
Addr bypassLineAddress
Definition: hdlcd.hh:362
HDLcd::polarities
PolaritiesReg polarities
Polarities register.
Definition: hdlcd.hh:248
BasePixelPump::start
void start()
Starting pushing pixels in timing mode.
Definition: pixelpump.cc:156
Drainable::drainResume
virtual void drainResume()
Resume execution after a successful drain.
Definition: drain.hh:289
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
DmaDevice::dmaRead
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
Definition: dma_device.hh:225
AmbaDmaDevice::interrupt
ArmInterruptPin *const interrupt
Definition: amba_device.hh:104
HDLcd::fb_line_length
uint32_t fb_line_length
Frame buffer Line length register.
Definition: hdlcd.hh:234
HDLcd::Fb_Line_Pitch
@ Fb_Line_Pitch
Definition: hdlcd.hh:127
cp
Definition: cprintf.cc:37
createImgWriter
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.
Definition: imgwriter.cc:50
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
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
OutputStream::stream
std::ostream * stream() const
Get the output underlying output stream.
Definition: output.hh:59
PixelConverter::length
unsigned length
Bytes per pixel when stored in memory (including padding)
Definition: pixel.hh:180
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
SERIALIZE_OBJ
#define SERIALIZE_OBJ(obj)
Definition: serialize.hh:676
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
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::Green_Select
@ Green_Select
Definition: hdlcd.hh:141
HDLcd::Fb_Line_Length
@ Fb_Line_Length
Definition: hdlcd.hh:125
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
RangeSize
AddrRange RangeSize(Addr start, Addr size)
Definition: addr_range.hh:651
HDLcd::H_Data
@ H_Data
Definition: hdlcd.hh:135
Stats::Group::stats
std::vector< Info * > stats
Definition: group.hh:215
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
System::bypassCaches
bool bypassCaches() const
Should caches be bypassed?
Definition: system.hh:274
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
compiler.hh
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
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
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
AmbaDmaDevice::pioAddr
Addr pioAddr
Definition: amba_device.hh:101
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
BasePixelPump::updateTimings
void updateTimings(const DisplayTimings &timings)
Update frame size using display timing.
Definition: pixelpump.cc:140
Serializable::ScopedCheckpointSection
Definition: serialize.hh:178
name
const std::string & name()
Definition: trace.cc:48
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
Request
Definition: request.hh:91
HDLcd::h_data
TimingReg h_data
Horizontal data width register.
Definition: hdlcd.hh:246
HDLcd::enabled
bool enabled() const
Definition: hdlcd.hh:269
packet_access.hh
Stats::nozero
const FlagsType nozero
Don't print if this is zero.
Definition: info.hh:58
HDLcd::DmaEngine
Definition: hdlcd.hh:383
HDLcd::DmaEngine::abortFrame
void abortFrame()
Definition: hdlcd.cc:640
HDLcd::DmaEngine::dumpSettings
void dumpSettings()
Definition: hdlcd.cc:649
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
HDLcd::writeReg
void writeReg(Addr offset, uint32_t value)
Definition: hdlcd.cc:291
findMsbSet
constexpr int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
Definition: bitfield.hh:240
DmaReadFifo::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: dma_device.cc:409
AmbaDmaDevice::pioSize
Addr pioSize
Definition: amba_device.hh:102
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
Packet::getLE
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
Definition: packet_access.hh:75
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
inform
#define inform(...)
Definition: logging.hh:240
HDLcd::Fb_Base
@ Fb_Base
Definition: hdlcd.hh:124
X86ISA::vector
Bitfield< 15, 8 > vector
Definition: intmessage.hh:44
ArmISA::t
Bitfield< 5 > t
Definition: miscregs_types.hh:67
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
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
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::V_Sync
@ V_Sync
Definition: hdlcd.hh:129
Packet::setLE
void setLE(T v)
Set the value in the data pointer to v as little endian.
Definition: packet_access.hh:105
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
AmbaDmaDevice::pioDelay
Tick pioDelay
Definition: amba_device.hh:103
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
Stats
Definition: statistics.cc:53
Serializable::currentSection
static const std::string & currentSection()
Gets the fully-qualified name of the active section.
Definition: serialize.cc:238
HDLcd::pixelConverter
PixelConverter pixelConverter() const
Definition: hdlcd.cc:412
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
HDLcd::HDLcdStats::HDLcdStats
HDLcdStats(Stats::Group *parent)
Definition: hdlcd.cc:82
trace.hh
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
simout
OutputDirectory simout
Definition: output.cc:59
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
HDLcd::workaroundSwapRB
const bool workaroundSwapRB
Definition: hdlcd.hh:109
CheckpointIn
Definition: serialize.hh:68
BasePixelPump::stop
void stop()
Immediately stop pushing pixels.
Definition: pixelpump.cc:163
HDLcd::v_sync
TimingReg v_sync
Vertical sync width register.
Definition: hdlcd.hh:240
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
BasePixelPump::renderFrame
void renderFrame()
Render an entire frame in non-caching mode.
Definition: pixelpump.cc:252
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
HDLcd::createDmaEngine
void createDmaEngine()
Definition: hdlcd.cc:444
HDLcd::cmdEnable
void cmdEnable()
Definition: hdlcd.cc:469
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
HDLcd::Polarities
@ Polarities
Definition: hdlcd.hh:137
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
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