From 04e51e5e3e0d2c8af658e5ae29a240a0aac78f6e Mon Sep 17 00:00:00 2001 From: Akash Bagdia Date: Sat, 20 Sep 2014 17:18:23 -0400 Subject: energy: Memory-mapped Energy Controller component This patch provides an Energy Controller device that provides software (driver) access to a DVFS handler. The device is currently residing in the dev/arm tree, but there is nothing inherently ARM specific in the behaviour. It is currently only tested and supported for ARM Linux, hence the location. --- src/dev/arm/SConscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/dev/arm/SConscript') diff --git a/src/dev/arm/SConscript b/src/dev/arm/SConscript index 419e2f471..ad6a22b55 100644 --- a/src/dev/arm/SConscript +++ b/src/dev/arm/SConscript @@ -42,6 +42,7 @@ Import('*') if env['TARGET_ISA'] == 'arm': SimObject('Gic.py') SimObject('RealView.py') + SimObject('EnergyCtrl.py') Source('a9scu.cc') Source('amba_device.cc') @@ -59,6 +60,7 @@ if env['TARGET_ISA'] == 'arm': Source('rtc_pl031.cc') Source('timer_cpulocal.cc') Source('vgic.cc') + Source('energy_ctrl.cc') DebugFlag('AMBA') DebugFlag('HDLcd') @@ -66,4 +68,5 @@ if env['TARGET_ISA'] == 'arm': DebugFlag('Pl050') DebugFlag('GIC') DebugFlag('RVCTRL') + DebugFlag('EnergyCtrl') DebugFlag('VGIC') -- cgit v1.2.3