diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2017-12-07 16:43:44 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2018-06-06 14:42:03 +0000 |
commit | 525ce650e1a5bbe71c39d4b15598d6c003cc9f9e (patch) | |
tree | 9bade13615f69fea415b560af3a607589743a012 /system | |
parent | 353348d6b23572576e98c419c3ed9c1cb9bdf5e0 (diff) | |
download | gem5-525ce650e1a5bbe71c39d4b15598d6c003cc9f9e.tar.xz |
system-arm: Update gem5 timer interrupt specification
The DTB for the VExpress_GEM5_V1 was incorrectly flagging timer
interrupts as being edge triggered. Describe the interrupt as being
level triggered to match Juno and FVP.
Change-Id: I9ce4b8959e7cc28d8b208727119ff20e581311f8
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Gabor Dozsa <gabor.dozsa@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/10024
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Diffstat (limited to 'system')
-rw-r--r-- | system/arm/dt/platforms/vexpress_gem5_v1.dtsi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/arm/dt/platforms/vexpress_gem5_v1.dtsi b/system/arm/dt/platforms/vexpress_gem5_v1.dtsi index 4d463e794..d7d77fb6f 100644 --- a/system/arm/dt/platforms/vexpress_gem5_v1.dtsi +++ b/system/arm/dt/platforms/vexpress_gem5_v1.dtsi @@ -51,9 +51,9 @@ timer { compatible = "arm,cortex-a15-timer", "arm,armv7-timer"; - interrupts = <1 13 0xff01>, - <1 14 0xff01>, - <1 11 0xff01>; + interrupts = <1 13 0xf08>, + <1 14 0xf08>, + <1 11 0xf08>; clocks = <&osc_sys>; clock-names="apb_pclk"; }; |