From 75b19403a75f35f19773a387b3da698722d26924 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 11 Sep 2019 14:18:25 -0700 Subject: x86: Stop using and delete the x86 IntDevice class. Most of its functionality has been exported already. This change makes the two classes which were inheriting IntDevice create an IntMasterPort themselves. Change-Id: I73d17cd79cf8252b0e26dd2576f552bf9054adf4 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20825 Reviewed-by: Gabe Black Maintainer: Gabe Black Tested-by: kokoro --- src/arch/x86/interrupts.cc | 16 ++++++++-------- src/arch/x86/interrupts.hh | 7 ++++--- 2 files changed, 12 insertions(+), 11 deletions(-) (limited to 'src/arch/x86') diff --git a/src/arch/x86/interrupts.cc b/src/arch/x86/interrupts.cc index 392135def..d4ee9f6a6 100644 --- a/src/arch/x86/interrupts.cc +++ b/src/arch/x86/interrupts.cc @@ -290,16 +290,15 @@ void X86ISA::Interrupts::init() { // - // The local apic must register its address ranges on both its pio - // port via the basicpiodevice(piodevice) init() function and its - // int port that it inherited from IntDevice. Note IntDevice is - // not a SimObject itself. - // + // The local apic must register its address ranges on its pio + // port via the basicpiodevice(piodevice) init() function. PioDevice::init(); - IntDevice::init(); - // the slave port has a range so inform the connected master + // The slave port has a range, so inform the connected master. intSlavePort.sendRangeChange(); + // If the master port isn't connected, we can't send interrupts anywhere. + panic_if(!intMasterPort.isConnected(), + "Int port not connected to anything!"); } @@ -597,7 +596,7 @@ X86ISA::Interrupts::setReg(ApicRegIndex reg, uint32_t val) X86ISA::Interrupts::Interrupts(Params * p) - : PioDevice(p), IntDevice(this, p->int_latency), + : PioDevice(p), apicTimerEvent([this]{ processApicTimerEvent(); }, name()), pendingSmi(false), smiVector(0), pendingNmi(false), nmiVector(0), @@ -607,6 +606,7 @@ X86ISA::Interrupts::Interrupts(Params * p) startedUp(false), pendingUnmaskableInt(false), pendingIPIs(0), cpu(NULL), intSlavePort(name() + ".int_slave", this, this), + intMasterPort(name() + ".int_master", this, this, p->int_latency), pioDelay(p->pio_latency) { memset(regs, 0, sizeof(regs)); diff --git a/src/arch/x86/interrupts.hh b/src/arch/x86/interrupts.hh index e48fd4bb3..a6364c8b1 100644 --- a/src/arch/x86/interrupts.hh +++ b/src/arch/x86/interrupts.hh @@ -72,7 +72,7 @@ namespace X86ISA { ApicRegIndex decodeAddr(Addr paddr); -class Interrupts : public PioDevice, IntDevice +class Interrupts : public PioDevice { protected: // Storage for the APIC registers @@ -171,8 +171,9 @@ class Interrupts : public PioDevice, IntDevice int initialApicId; - // Port for receiving interrupts + // Ports for interrupts. IntSlavePort intSlavePort; + IntMasterPort intMasterPort; Tick pioDelay; Addr pioAddr = MaxAddr; @@ -205,7 +206,7 @@ class Interrupts : public PioDevice, IntDevice Tick read(PacketPtr pkt) override; Tick write(PacketPtr pkt) override; Tick recvMessage(PacketPtr pkt); - bool recvResponse(PacketPtr pkt) override; + bool recvResponse(PacketPtr pkt); bool triggerTimerInterrupt() -- cgit v1.2.3