diff options
author | Geoffrey Blake <geoffrey.blake@arm.com> | 2011-08-19 15:08:05 -0500 |
---|---|---|
committer | Geoffrey Blake <geoffrey.blake@arm.com> | 2011-08-19 15:08:05 -0500 |
commit | f778c46b5ec37c2050b51c1e1610b2e33c018031 (patch) | |
tree | 0e8aaabd10eeeae25cebd02768ab1e5f54436e33 /src/dev/arm/SConscript | |
parent | efd91d22371c243348cc0fc9c68a72c55f7e8a1e (diff) | |
download | gem5-f778c46b5ec37c2050b51c1e1610b2e33c018031.tar.xz |
ARM: Add per-cpu local timers for ARM.
Cortex-A9 processors can have a local timer and watchdog counter. It
is enabled by default in Linux and up to this point we've had to disable
them since a model wasn't available. This change allows a default
MP ARM Linux configuration to boot.
Diffstat (limited to 'src/dev/arm/SConscript')
-rw-r--r-- | src/dev/arm/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dev/arm/SConscript b/src/dev/arm/SConscript index a320d9f8e..07a3e14ae 100644 --- a/src/dev/arm/SConscript +++ b/src/dev/arm/SConscript @@ -52,6 +52,7 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'arm': Source('timer_sp804.cc') Source('rv_ctrl.cc') Source('realview.cc') + Source('timer_cpulocal.cc') DebugFlag('AMBA') DebugFlag('PL111') |