interrupts.hh revision 9554
14120Sgblack@eecs.umich.edu/*
28839Sandreas.hansson@arm.com * Copyright (c) 2012 ARM Limited
38839Sandreas.hansson@arm.com * All rights reserved
48839Sandreas.hansson@arm.com *
58839Sandreas.hansson@arm.com * The license below extends only to copyright in the software and shall
68839Sandreas.hansson@arm.com * not be construed as granting a license to any other intellectual
78839Sandreas.hansson@arm.com * property including but not limited to intellectual property relating
88839Sandreas.hansson@arm.com * to a hardware implementation of the functionality of the software
98839Sandreas.hansson@arm.com * licensed hereunder.  You may use the software subject to the license
108839Sandreas.hansson@arm.com * terms below provided that you ensure that this notice is replicated
118839Sandreas.hansson@arm.com * unmodified and in its entirety in all distributions of the software,
128839Sandreas.hansson@arm.com * modified or unmodified, in source code or in binary form.
138839Sandreas.hansson@arm.com *
144120Sgblack@eecs.umich.edu * Copyright (c) 2007 The Hewlett-Packard Development Company
154120Sgblack@eecs.umich.edu * All rights reserved.
164120Sgblack@eecs.umich.edu *
177087Snate@binkert.org * The license below extends only to copyright in the software and shall
187087Snate@binkert.org * not be construed as granting a license to any other intellectual
197087Snate@binkert.org * property including but not limited to intellectual property relating
207087Snate@binkert.org * to a hardware implementation of the functionality of the software
217087Snate@binkert.org * licensed hereunder.  You may use the software subject to the license
227087Snate@binkert.org * terms below provided that you ensure that this notice is replicated
237087Snate@binkert.org * unmodified and in its entirety in all distributions of the software,
247087Snate@binkert.org * modified or unmodified, in source code or in binary form.
254120Sgblack@eecs.umich.edu *
267087Snate@binkert.org * Redistribution and use in source and binary forms, with or without
277087Snate@binkert.org * modification, are permitted provided that the following conditions are
287087Snate@binkert.org * met: redistributions of source code must retain the above copyright
297087Snate@binkert.org * notice, this list of conditions and the following disclaimer;
307087Snate@binkert.org * redistributions in binary form must reproduce the above copyright
317087Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
327087Snate@binkert.org * documentation and/or other materials provided with the distribution;
337087Snate@binkert.org * neither the name of the copyright holders nor the names of its
344120Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
357087Snate@binkert.org * this software without specific prior written permission.
364120Sgblack@eecs.umich.edu *
374120Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
384120Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
394120Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
404120Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
414120Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
424120Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
434120Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
444120Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
454120Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
464120Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
474120Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
484120Sgblack@eecs.umich.edu *
494120Sgblack@eecs.umich.edu * Authors: Gabe Black
508839Sandreas.hansson@arm.com *          Andreas Hansson
514120Sgblack@eecs.umich.edu */
524120Sgblack@eecs.umich.edu
534120Sgblack@eecs.umich.edu#ifndef __ARCH_X86_INTERRUPTS_HH__
544120Sgblack@eecs.umich.edu#define __ARCH_X86_INTERRUPTS_HH__
554120Sgblack@eecs.umich.edu
568229Snate@binkert.org#include "arch/x86/regs/apic.hh"
575086Sgblack@eecs.umich.edu#include "arch/x86/faults.hh"
585655Sgblack@eecs.umich.edu#include "arch/x86/intmessage.hh"
595654Sgblack@eecs.umich.edu#include "base/bitfield.hh"
605086Sgblack@eecs.umich.edu#include "cpu/thread_context.hh"
618229Snate@binkert.org#include "dev/x86/intdev.hh"
625648Sgblack@eecs.umich.edu#include "dev/io_device.hh"
635647Sgblack@eecs.umich.edu#include "params/X86LocalApic.hh"
645647Sgblack@eecs.umich.edu#include "sim/eventq.hh"
655647Sgblack@eecs.umich.edu
665647Sgblack@eecs.umich.educlass ThreadContext;
675810Sgblack@eecs.umich.educlass BaseCPU;
684120Sgblack@eecs.umich.edu
699554Sandreas.hansson@arm.comint divideFromConf(uint32_t conf);
709554Sandreas.hansson@arm.com
715704Snate@binkert.orgnamespace X86ISA {
725086Sgblack@eecs.umich.edu
739554Sandreas.hansson@arm.comApicRegIndex decodeAddr(Addr paddr);
749554Sandreas.hansson@arm.com
755651Sgblack@eecs.umich.educlass Interrupts : public BasicPioDevice, IntDev
765086Sgblack@eecs.umich.edu{
775647Sgblack@eecs.umich.edu  protected:
785654Sgblack@eecs.umich.edu    // Storage for the APIC registers
795647Sgblack@eecs.umich.edu    uint32_t regs[NUM_APIC_REGS];
805654Sgblack@eecs.umich.edu
815691Sgblack@eecs.umich.edu    BitUnion32(LVTEntry)
825691Sgblack@eecs.umich.edu        Bitfield<7, 0> vector;
835691Sgblack@eecs.umich.edu        Bitfield<10, 8> deliveryMode;
845691Sgblack@eecs.umich.edu        Bitfield<12> status;
855691Sgblack@eecs.umich.edu        Bitfield<13> polarity;
865691Sgblack@eecs.umich.edu        Bitfield<14> remoteIRR;
875691Sgblack@eecs.umich.edu        Bitfield<15> trigger;
885691Sgblack@eecs.umich.edu        Bitfield<16> masked;
895691Sgblack@eecs.umich.edu        Bitfield<17> periodic;
905691Sgblack@eecs.umich.edu    EndBitUnion(LVTEntry)
915691Sgblack@eecs.umich.edu
925654Sgblack@eecs.umich.edu    /*
935654Sgblack@eecs.umich.edu     * Timing related stuff.
945654Sgblack@eecs.umich.edu     */
955648Sgblack@eecs.umich.edu    Tick latency;
965647Sgblack@eecs.umich.edu
975647Sgblack@eecs.umich.edu    class ApicTimerEvent : public Event
985647Sgblack@eecs.umich.edu    {
995691Sgblack@eecs.umich.edu      private:
1005691Sgblack@eecs.umich.edu        Interrupts *localApic;
1015647Sgblack@eecs.umich.edu      public:
1025691Sgblack@eecs.umich.edu        ApicTimerEvent(Interrupts *_localApic) :
1035691Sgblack@eecs.umich.edu            Event(), localApic(_localApic)
1045647Sgblack@eecs.umich.edu        {}
1055647Sgblack@eecs.umich.edu
1065647Sgblack@eecs.umich.edu        void process()
1075647Sgblack@eecs.umich.edu        {
1085691Sgblack@eecs.umich.edu            assert(localApic);
1095691Sgblack@eecs.umich.edu            if (localApic->triggerTimerInterrupt()) {
1105691Sgblack@eecs.umich.edu                localApic->setReg(APIC_INITIAL_COUNT,
1115691Sgblack@eecs.umich.edu                        localApic->readReg(APIC_INITIAL_COUNT));
1125691Sgblack@eecs.umich.edu            }
1135647Sgblack@eecs.umich.edu        }
1145647Sgblack@eecs.umich.edu    };
1155647Sgblack@eecs.umich.edu
1165647Sgblack@eecs.umich.edu    ApicTimerEvent apicTimerEvent;
1175647Sgblack@eecs.umich.edu
1185654Sgblack@eecs.umich.edu    /*
1195655Sgblack@eecs.umich.edu     * A set of variables to keep track of interrupts that don't go through
1205655Sgblack@eecs.umich.edu     * the IRR.
1215655Sgblack@eecs.umich.edu     */
1225655Sgblack@eecs.umich.edu    bool pendingSmi;
1235691Sgblack@eecs.umich.edu    uint8_t smiVector;
1245655Sgblack@eecs.umich.edu    bool pendingNmi;
1255691Sgblack@eecs.umich.edu    uint8_t nmiVector;
1265655Sgblack@eecs.umich.edu    bool pendingExtInt;
1275691Sgblack@eecs.umich.edu    uint8_t extIntVector;
1285655Sgblack@eecs.umich.edu    bool pendingInit;
1295691Sgblack@eecs.umich.edu    uint8_t initVector;
1306050Sgblack@eecs.umich.edu    bool pendingStartup;
1316050Sgblack@eecs.umich.edu    uint8_t startupVector;
1326066Sgblack@eecs.umich.edu    bool startedUp;
1335655Sgblack@eecs.umich.edu
1345655Sgblack@eecs.umich.edu    // This is a quick check whether any of the above (except ExtInt) are set.
1355655Sgblack@eecs.umich.edu    bool pendingUnmaskableInt;
1365655Sgblack@eecs.umich.edu
1376069Sgblack@eecs.umich.edu    // A count of how many IPIs are in flight.
1386069Sgblack@eecs.umich.edu    int pendingIPIs;
1396069Sgblack@eecs.umich.edu
1405655Sgblack@eecs.umich.edu    /*
1415654Sgblack@eecs.umich.edu     * IRR and ISR maintenance.
1425654Sgblack@eecs.umich.edu     */
1435654Sgblack@eecs.umich.edu    uint8_t IRRV;
1445654Sgblack@eecs.umich.edu    uint8_t ISRV;
1455654Sgblack@eecs.umich.edu
1465654Sgblack@eecs.umich.edu    int
1475654Sgblack@eecs.umich.edu    findRegArrayMSB(ApicRegIndex base)
1485654Sgblack@eecs.umich.edu    {
1495654Sgblack@eecs.umich.edu        int offset = 7;
1505654Sgblack@eecs.umich.edu        do {
1515654Sgblack@eecs.umich.edu            if (regs[base + offset] != 0) {
1525654Sgblack@eecs.umich.edu                return offset * 32 + findMsbSet(regs[base + offset]);
1535654Sgblack@eecs.umich.edu            }
1545654Sgblack@eecs.umich.edu        } while (offset--);
1555654Sgblack@eecs.umich.edu        return 0;
1565654Sgblack@eecs.umich.edu    }
1575654Sgblack@eecs.umich.edu
1585654Sgblack@eecs.umich.edu    void
1595654Sgblack@eecs.umich.edu    updateIRRV()
1605654Sgblack@eecs.umich.edu    {
1615654Sgblack@eecs.umich.edu        IRRV = findRegArrayMSB(APIC_INTERRUPT_REQUEST_BASE);
1625654Sgblack@eecs.umich.edu    }
1635654Sgblack@eecs.umich.edu
1645654Sgblack@eecs.umich.edu    void
1655654Sgblack@eecs.umich.edu    updateISRV()
1665654Sgblack@eecs.umich.edu    {
1675654Sgblack@eecs.umich.edu        ISRV = findRegArrayMSB(APIC_IN_SERVICE_BASE);
1685654Sgblack@eecs.umich.edu    }
1695654Sgblack@eecs.umich.edu
1705654Sgblack@eecs.umich.edu    void
1715654Sgblack@eecs.umich.edu    setRegArrayBit(ApicRegIndex base, uint8_t vector)
1725654Sgblack@eecs.umich.edu    {
1736101Sgblack@eecs.umich.edu        regs[base + (vector / 32)] |= (1 << (vector % 32));
1745654Sgblack@eecs.umich.edu    }
1755654Sgblack@eecs.umich.edu
1765654Sgblack@eecs.umich.edu    void
1775654Sgblack@eecs.umich.edu    clearRegArrayBit(ApicRegIndex base, uint8_t vector)
1785654Sgblack@eecs.umich.edu    {
1796101Sgblack@eecs.umich.edu        regs[base + (vector / 32)] &= ~(1 << (vector % 32));
1805654Sgblack@eecs.umich.edu    }
1815654Sgblack@eecs.umich.edu
1825654Sgblack@eecs.umich.edu    bool
1835654Sgblack@eecs.umich.edu    getRegArrayBit(ApicRegIndex base, uint8_t vector)
1845654Sgblack@eecs.umich.edu    {
1856101Sgblack@eecs.umich.edu        return bits(regs[base + (vector / 32)], vector % 5);
1865654Sgblack@eecs.umich.edu    }
1875654Sgblack@eecs.umich.edu
1885691Sgblack@eecs.umich.edu    void requestInterrupt(uint8_t vector, uint8_t deliveryMode, bool level);
1895691Sgblack@eecs.umich.edu
1905810Sgblack@eecs.umich.edu    BaseCPU *cpu;
1915810Sgblack@eecs.umich.edu
1926136Sgblack@eecs.umich.edu    int initialApicId;
1936136Sgblack@eecs.umich.edu
1948851Sandreas.hansson@arm.com    // Port for receiving interrupts
1958922Swilliam.wang@arm.com    IntSlavePort intSlavePort;
1968851Sandreas.hansson@arm.com
1975086Sgblack@eecs.umich.edu  public:
1988742Sgblack@eecs.umich.edu
1998746Sgblack@eecs.umich.edu    int getInitialApicId() { return initialApicId; }
2008746Sgblack@eecs.umich.edu
2015654Sgblack@eecs.umich.edu    /*
2025654Sgblack@eecs.umich.edu     * Params stuff.
2035654Sgblack@eecs.umich.edu     */
2045647Sgblack@eecs.umich.edu    typedef X86LocalApicParams Params;
2055647Sgblack@eecs.umich.edu
2066041Sgblack@eecs.umich.edu    void setCPU(BaseCPU * newCPU);
2075810Sgblack@eecs.umich.edu
2085647Sgblack@eecs.umich.edu    const Params *
2095647Sgblack@eecs.umich.edu    params() const
2105086Sgblack@eecs.umich.edu    {
2115647Sgblack@eecs.umich.edu        return dynamic_cast<const Params *>(_params);
2125647Sgblack@eecs.umich.edu    }
2135647Sgblack@eecs.umich.edu
2145654Sgblack@eecs.umich.edu    /*
2156137Sgblack@eecs.umich.edu     * Initialize this object by registering it with the IO APIC.
2166137Sgblack@eecs.umich.edu     */
2176137Sgblack@eecs.umich.edu    void init();
2186137Sgblack@eecs.umich.edu
2196137Sgblack@eecs.umich.edu    /*
2205654Sgblack@eecs.umich.edu     * Functions to interact with the interrupt port from IntDev.
2215654Sgblack@eecs.umich.edu     */
2225648Sgblack@eecs.umich.edu    Tick read(PacketPtr pkt);
2235648Sgblack@eecs.umich.edu    Tick write(PacketPtr pkt);
2245651Sgblack@eecs.umich.edu    Tick recvMessage(PacketPtr pkt);
2256064Sgblack@eecs.umich.edu    Tick recvResponse(PacketPtr pkt);
2265647Sgblack@eecs.umich.edu
2275691Sgblack@eecs.umich.edu    bool
2285691Sgblack@eecs.umich.edu    triggerTimerInterrupt()
2295691Sgblack@eecs.umich.edu    {
2305691Sgblack@eecs.umich.edu        LVTEntry entry = regs[APIC_LVT_TIMER];
2315691Sgblack@eecs.umich.edu        if (!entry.masked)
2325691Sgblack@eecs.umich.edu            requestInterrupt(entry.vector, entry.deliveryMode, entry.trigger);
2335691Sgblack@eecs.umich.edu        return entry.periodic;
2345691Sgblack@eecs.umich.edu    }
2355691Sgblack@eecs.umich.edu
2369090Sandreas.hansson@arm.com    AddrRangeList getAddrRanges() const;
2379090Sandreas.hansson@arm.com    AddrRangeList getIntAddrRange() const;
2385651Sgblack@eecs.umich.edu
2399294Sandreas.hansson@arm.com    BaseMasterPort &getMasterPort(const std::string &if_name,
2409294Sandreas.hansson@arm.com                                  PortID idx = InvalidPortID)
2415654Sgblack@eecs.umich.edu    {
2428839Sandreas.hansson@arm.com        if (if_name == "int_master") {
2438922Swilliam.wang@arm.com            return intMasterPort;
2448839Sandreas.hansson@arm.com        }
2458922Swilliam.wang@arm.com        return BasicPioDevice::getMasterPort(if_name, idx);
2468922Swilliam.wang@arm.com    }
2478922Swilliam.wang@arm.com
2489294Sandreas.hansson@arm.com    BaseSlavePort &getSlavePort(const std::string &if_name,
2499294Sandreas.hansson@arm.com                                PortID idx = InvalidPortID)
2508922Swilliam.wang@arm.com    {
2518922Swilliam.wang@arm.com        if (if_name == "int_slave") {
2528922Swilliam.wang@arm.com            return intSlavePort;
2538922Swilliam.wang@arm.com        }
2548922Swilliam.wang@arm.com        return BasicPioDevice::getSlavePort(if_name, idx);
2555654Sgblack@eecs.umich.edu    }
2565654Sgblack@eecs.umich.edu
2575654Sgblack@eecs.umich.edu    /*
2585654Sgblack@eecs.umich.edu     * Functions to access and manipulate the APIC's registers.
2595654Sgblack@eecs.umich.edu     */
2605654Sgblack@eecs.umich.edu
2615648Sgblack@eecs.umich.edu    uint32_t readReg(ApicRegIndex miscReg);
2625648Sgblack@eecs.umich.edu    void setReg(ApicRegIndex reg, uint32_t val);
2635704Snate@binkert.org    void
2645704Snate@binkert.org    setRegNoEffect(ApicRegIndex reg, uint32_t val)
2655647Sgblack@eecs.umich.edu    {
2665648Sgblack@eecs.umich.edu        regs[reg] = val;
2675648Sgblack@eecs.umich.edu    }
2685648Sgblack@eecs.umich.edu
2695654Sgblack@eecs.umich.edu    /*
2705654Sgblack@eecs.umich.edu     * Constructor.
2715654Sgblack@eecs.umich.edu     */
2725654Sgblack@eecs.umich.edu
2736041Sgblack@eecs.umich.edu    Interrupts(Params * p);
2745086Sgblack@eecs.umich.edu
2755654Sgblack@eecs.umich.edu    /*
2765654Sgblack@eecs.umich.edu     * Functions for retrieving interrupts for the CPU to handle.
2775654Sgblack@eecs.umich.edu     */
2785651Sgblack@eecs.umich.edu
2795704Snate@binkert.org    bool checkInterrupts(ThreadContext *tc) const;
2805704Snate@binkert.org    Fault getInterrupt(ThreadContext *tc);
2815704Snate@binkert.org    void updateIntrInfo(ThreadContext *tc);
2825086Sgblack@eecs.umich.edu
2835654Sgblack@eecs.umich.edu    /*
2845654Sgblack@eecs.umich.edu     * Serialization.
2855654Sgblack@eecs.umich.edu     */
2865086Sgblack@eecs.umich.edu
2877902Shestness@cs.utexas.edu    virtual void serialize(std::ostream &os);
2887902Shestness@cs.utexas.edu    virtual void unserialize(Checkpoint *cp, const std::string &section);
2895654Sgblack@eecs.umich.edu
2905654Sgblack@eecs.umich.edu    /*
2915654Sgblack@eecs.umich.edu     * Old functions needed for compatability but which will be phased out
2925654Sgblack@eecs.umich.edu     * eventually.
2935654Sgblack@eecs.umich.edu     */
2945704Snate@binkert.org    void
2955704Snate@binkert.org    post(int int_num, int index)
2965654Sgblack@eecs.umich.edu    {
2975654Sgblack@eecs.umich.edu        panic("Interrupts::post unimplemented!\n");
2985654Sgblack@eecs.umich.edu    }
2995654Sgblack@eecs.umich.edu
3005704Snate@binkert.org    void
3015704Snate@binkert.org    clear(int int_num, int index)
3025654Sgblack@eecs.umich.edu    {
3035654Sgblack@eecs.umich.edu        panic("Interrupts::clear unimplemented!\n");
3045654Sgblack@eecs.umich.edu    }
3055654Sgblack@eecs.umich.edu
3065704Snate@binkert.org    void
3075704Snate@binkert.org    clearAll()
3085654Sgblack@eecs.umich.edu    {
3095704Snate@binkert.org        panic("Interrupts::clearAll unimplemented!\n");
3105654Sgblack@eecs.umich.edu    }
3115086Sgblack@eecs.umich.edu};
3125086Sgblack@eecs.umich.edu
3135704Snate@binkert.org} // namespace X86ISA
3144120Sgblack@eecs.umich.edu
3154120Sgblack@eecs.umich.edu#endif // __ARCH_X86_INTERRUPTS_HH__
316