diff options
author | Chris Emmons <Chris.Emmons@arm.com> | 2013-04-22 13:20:31 -0400 |
---|---|---|
committer | Chris Emmons <Chris.Emmons@arm.com> | 2013-04-22 13:20:31 -0400 |
commit | 121b15a54da77ef77e98ff59621e1c5b0f1f1f52 (patch) | |
tree | d9e9993c551ecc94ee1f9f88c5ab02f87760a328 /src/dev/arm/SConscript | |
parent | aa08069b3fb9a564df755ec558fd64ba076b0ef3 (diff) | |
download | gem5-121b15a54da77ef77e98ff59621e1c5b0f1f1f52.tar.xz |
ARM: Add support for HDLCD controller for TC2 and newer Versatile Express tiles.
Newer core tiles / daughterboards for the Versatile Express platform have an
HDLCD controller that supports HD-quality output. This patch adds an
implementation of the controller.
Diffstat (limited to 'src/dev/arm/SConscript')
-rw-r--r-- | src/dev/arm/SConscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dev/arm/SConscript b/src/dev/arm/SConscript index 048fe2444..60a85220e 100644 --- a/src/dev/arm/SConscript +++ b/src/dev/arm/SConscript @@ -50,6 +50,7 @@ if env['TARGET_ISA'] == 'arm': Source('gic_pl390.cc') Source('pl011.cc') Source('pl111.cc') + Source('hdlcd.cc') Source('kmi.cc') Source('timer_sp804.cc') Source('rv_ctrl.cc') @@ -58,6 +59,7 @@ if env['TARGET_ISA'] == 'arm': Source('timer_cpulocal.cc') DebugFlag('AMBA') + DebugFlag('HDLcd') DebugFlag('PL111') DebugFlag('Pl050') DebugFlag('GIC') |