summaryrefslogtreecommitdiff
path: root/src/dev/x86/I8254.py
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2019-09-06 15:22:22 -0700
committerGabe Black <gabeblack@google.com>2019-09-20 17:54:39 +0000
commitab376064bdfa9796eebad5ee8d84c766e7a30bd6 (patch)
tree291365a98580568244fe15137b26c85f9abf900c /src/dev/x86/I8254.py
parent67e310836baa0e652ae7a3b4ebd00263a52239c2 (diff)
downloadgem5-ab376064bdfa9796eebad5ee8d84c766e7a30bd6.tar.xz
dev, x86: Convert x86 devices to the generic int pins.
Change-Id: I4551ad00cf205c31555c90b53e87bc206a8d8729 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20701 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/dev/x86/I8254.py')
-rw-r--r--src/dev/x86/I8254.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dev/x86/I8254.py b/src/dev/x86/I8254.py
index f0a6b2222..781609f24 100644
--- a/src/dev/x86/I8254.py
+++ b/src/dev/x86/I8254.py
@@ -29,11 +29,10 @@
from m5.params import *
from m5.proxy import *
from m5.objects.Device import BasicPioDevice
-from m5.objects.X86IntPin import X86IntSourcePin
+from m5.objects.IntPin import IntSourcePin
class I8254(BasicPioDevice):
type = 'I8254'
cxx_class = 'X86ISA::I8254'
cxx_header = "dev/x86/i8254.hh"
- int_pin = Param.X86IntSourcePin(X86IntSourcePin(),
- 'Pin to signal timer interrupts to')
+ int_pin = IntSourcePin('Pin to signal timer interrupts to')