summaryrefslogtreecommitdiff
path: root/src/dev/SConscript
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2015-08-07 09:59:26 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2015-08-07 09:59:26 +0100
commitce8939a97e26eb96cfe0604e737c0b155ba07656 (patch)
treef33826ffc01240ace3d5756f87014ce9b7899165 /src/dev/SConscript
parent598edaae0509c455e06e1689fd3c50caaeef0f30 (diff)
downloadgem5-ce8939a97e26eb96cfe0604e737c0b155ba07656.tar.xz
dev: Implement a simple display timing generator
Timing generator for a pixel-based display. The timing generator is intended for display processors driving a standard rasterized display. The simplest possible display processor needs to derive from this class and override the nextPixel() method to feed the display with pixel data. Pixels are ordered relative to the top left corner of the display. Scan lines appear in the following order: * Vertical Sync (starting at line 0) * Vertical back porch * Visible lines * Vertical front porch Pixel order within a scan line: * Horizontal Sync * Horizontal Back Porch * Visible pixels * Horizontal Front Porch All events in the timing generator are automatically suspended on a drain() request and restarted on drainResume(). This is conceptually equivalent to clock gating when the pixel clock while the system is draining. By gating the pixel clock, we prevent display controllers from disturbing a memory system that is about to drain.
Diffstat (limited to 'src/dev/SConscript')
-rw-r--r--src/dev/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dev/SConscript b/src/dev/SConscript
index 3936210a6..cd99e984a 100644
--- a/src/dev/SConscript
+++ b/src/dev/SConscript
@@ -75,6 +75,7 @@ Source('mc146818.cc')
Source('ns_gige.cc')
Source('pciconfigall.cc')
Source('pcidev.cc')
+Source('pixelpump.cc')
Source('pktfifo.cc')
Source('platform.cc')
Source('ps2.cc')