interrupts.hh revision 10541
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
759807Sstever@gmail.comclass Interrupts : public BasicPioDevice, IntDevice
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     */
955647Sgblack@eecs.umich.edu    class ApicTimerEvent : public Event
965647Sgblack@eecs.umich.edu    {
975691Sgblack@eecs.umich.edu      private:
985691Sgblack@eecs.umich.edu        Interrupts *localApic;
995647Sgblack@eecs.umich.edu      public:
1005691Sgblack@eecs.umich.edu        ApicTimerEvent(Interrupts *_localApic) :
1015691Sgblack@eecs.umich.edu            Event(), localApic(_localApic)
1025647Sgblack@eecs.umich.edu        {}
1035647Sgblack@eecs.umich.edu
1045647Sgblack@eecs.umich.edu        void process()
1055647Sgblack@eecs.umich.edu        {
1065691Sgblack@eecs.umich.edu            assert(localApic);
1075691Sgblack@eecs.umich.edu            if (localApic->triggerTimerInterrupt()) {
1085691Sgblack@eecs.umich.edu                localApic->setReg(APIC_INITIAL_COUNT,
1095691Sgblack@eecs.umich.edu                        localApic->readReg(APIC_INITIAL_COUNT));
1105691Sgblack@eecs.umich.edu            }
1115647Sgblack@eecs.umich.edu        }
1125647Sgblack@eecs.umich.edu    };
1135647Sgblack@eecs.umich.edu
1145647Sgblack@eecs.umich.edu    ApicTimerEvent apicTimerEvent;
1155647Sgblack@eecs.umich.edu
1165654Sgblack@eecs.umich.edu    /*
1175655Sgblack@eecs.umich.edu     * A set of variables to keep track of interrupts that don't go through
1185655Sgblack@eecs.umich.edu     * the IRR.
1195655Sgblack@eecs.umich.edu     */
1205655Sgblack@eecs.umich.edu    bool pendingSmi;
1215691Sgblack@eecs.umich.edu    uint8_t smiVector;
1225655Sgblack@eecs.umich.edu    bool pendingNmi;
1235691Sgblack@eecs.umich.edu    uint8_t nmiVector;
1245655Sgblack@eecs.umich.edu    bool pendingExtInt;
1255691Sgblack@eecs.umich.edu    uint8_t extIntVector;
1265655Sgblack@eecs.umich.edu    bool pendingInit;
1275691Sgblack@eecs.umich.edu    uint8_t initVector;
1286050Sgblack@eecs.umich.edu    bool pendingStartup;
1296050Sgblack@eecs.umich.edu    uint8_t startupVector;
1306066Sgblack@eecs.umich.edu    bool startedUp;
1315655Sgblack@eecs.umich.edu
1325655Sgblack@eecs.umich.edu    // This is a quick check whether any of the above (except ExtInt) are set.
1335655Sgblack@eecs.umich.edu    bool pendingUnmaskableInt;
1345655Sgblack@eecs.umich.edu
1356069Sgblack@eecs.umich.edu    // A count of how many IPIs are in flight.
1366069Sgblack@eecs.umich.edu    int pendingIPIs;
1376069Sgblack@eecs.umich.edu
1385655Sgblack@eecs.umich.edu    /*
1395654Sgblack@eecs.umich.edu     * IRR and ISR maintenance.
1405654Sgblack@eecs.umich.edu     */
1415654Sgblack@eecs.umich.edu    uint8_t IRRV;
1425654Sgblack@eecs.umich.edu    uint8_t ISRV;
1435654Sgblack@eecs.umich.edu
1445654Sgblack@eecs.umich.edu    int
1455654Sgblack@eecs.umich.edu    findRegArrayMSB(ApicRegIndex base)
1465654Sgblack@eecs.umich.edu    {
1475654Sgblack@eecs.umich.edu        int offset = 7;
1485654Sgblack@eecs.umich.edu        do {
1495654Sgblack@eecs.umich.edu            if (regs[base + offset] != 0) {
1505654Sgblack@eecs.umich.edu                return offset * 32 + findMsbSet(regs[base + offset]);
1515654Sgblack@eecs.umich.edu            }
1525654Sgblack@eecs.umich.edu        } while (offset--);
1535654Sgblack@eecs.umich.edu        return 0;
1545654Sgblack@eecs.umich.edu    }
1555654Sgblack@eecs.umich.edu
1565654Sgblack@eecs.umich.edu    void
1575654Sgblack@eecs.umich.edu    updateIRRV()
1585654Sgblack@eecs.umich.edu    {
1595654Sgblack@eecs.umich.edu        IRRV = findRegArrayMSB(APIC_INTERRUPT_REQUEST_BASE);
1605654Sgblack@eecs.umich.edu    }
1615654Sgblack@eecs.umich.edu
1625654Sgblack@eecs.umich.edu    void
1635654Sgblack@eecs.umich.edu    updateISRV()
1645654Sgblack@eecs.umich.edu    {
1655654Sgblack@eecs.umich.edu        ISRV = findRegArrayMSB(APIC_IN_SERVICE_BASE);
1665654Sgblack@eecs.umich.edu    }
1675654Sgblack@eecs.umich.edu
1685654Sgblack@eecs.umich.edu    void
1695654Sgblack@eecs.umich.edu    setRegArrayBit(ApicRegIndex base, uint8_t vector)
1705654Sgblack@eecs.umich.edu    {
1716101Sgblack@eecs.umich.edu        regs[base + (vector / 32)] |= (1 << (vector % 32));
1725654Sgblack@eecs.umich.edu    }
1735654Sgblack@eecs.umich.edu
1745654Sgblack@eecs.umich.edu    void
1755654Sgblack@eecs.umich.edu    clearRegArrayBit(ApicRegIndex base, uint8_t vector)
1765654Sgblack@eecs.umich.edu    {
1776101Sgblack@eecs.umich.edu        regs[base + (vector / 32)] &= ~(1 << (vector % 32));
1785654Sgblack@eecs.umich.edu    }
1795654Sgblack@eecs.umich.edu
1805654Sgblack@eecs.umich.edu    bool
1815654Sgblack@eecs.umich.edu    getRegArrayBit(ApicRegIndex base, uint8_t vector)
1825654Sgblack@eecs.umich.edu    {
18310541Sgabeblack@google.com        return bits(regs[base + (vector / 32)], vector % 32);
1845654Sgblack@eecs.umich.edu    }
1855654Sgblack@eecs.umich.edu
1865691Sgblack@eecs.umich.edu    void requestInterrupt(uint8_t vector, uint8_t deliveryMode, bool level);
1875691Sgblack@eecs.umich.edu
1885810Sgblack@eecs.umich.edu    BaseCPU *cpu;
1895810Sgblack@eecs.umich.edu
1906136Sgblack@eecs.umich.edu    int initialApicId;
1916136Sgblack@eecs.umich.edu
1928851Sandreas.hansson@arm.com    // Port for receiving interrupts
1938922Swilliam.wang@arm.com    IntSlavePort intSlavePort;
1948851Sandreas.hansson@arm.com
1955086Sgblack@eecs.umich.edu  public:
1968742Sgblack@eecs.umich.edu
1978746Sgblack@eecs.umich.edu    int getInitialApicId() { return initialApicId; }
1988746Sgblack@eecs.umich.edu
1995654Sgblack@eecs.umich.edu    /*
2005654Sgblack@eecs.umich.edu     * Params stuff.
2015654Sgblack@eecs.umich.edu     */
2025647Sgblack@eecs.umich.edu    typedef X86LocalApicParams Params;
2035647Sgblack@eecs.umich.edu
2046041Sgblack@eecs.umich.edu    void setCPU(BaseCPU * newCPU);
2055810Sgblack@eecs.umich.edu
2065647Sgblack@eecs.umich.edu    const Params *
2075647Sgblack@eecs.umich.edu    params() const
2085086Sgblack@eecs.umich.edu    {
2095647Sgblack@eecs.umich.edu        return dynamic_cast<const Params *>(_params);
2105647Sgblack@eecs.umich.edu    }
2115647Sgblack@eecs.umich.edu
2125654Sgblack@eecs.umich.edu    /*
2136137Sgblack@eecs.umich.edu     * Initialize this object by registering it with the IO APIC.
2146137Sgblack@eecs.umich.edu     */
2156137Sgblack@eecs.umich.edu    void init();
2166137Sgblack@eecs.umich.edu
2176137Sgblack@eecs.umich.edu    /*
2189807Sstever@gmail.com     * Functions to interact with the interrupt port from IntDevice.
2195654Sgblack@eecs.umich.edu     */
2205648Sgblack@eecs.umich.edu    Tick read(PacketPtr pkt);
2215648Sgblack@eecs.umich.edu    Tick write(PacketPtr pkt);
2225651Sgblack@eecs.umich.edu    Tick recvMessage(PacketPtr pkt);
2236064Sgblack@eecs.umich.edu    Tick recvResponse(PacketPtr pkt);
2245647Sgblack@eecs.umich.edu
2255691Sgblack@eecs.umich.edu    bool
2265691Sgblack@eecs.umich.edu    triggerTimerInterrupt()
2275691Sgblack@eecs.umich.edu    {
2285691Sgblack@eecs.umich.edu        LVTEntry entry = regs[APIC_LVT_TIMER];
2295691Sgblack@eecs.umich.edu        if (!entry.masked)
2305691Sgblack@eecs.umich.edu            requestInterrupt(entry.vector, entry.deliveryMode, entry.trigger);
2315691Sgblack@eecs.umich.edu        return entry.periodic;
2325691Sgblack@eecs.umich.edu    }
2335691Sgblack@eecs.umich.edu
2349090Sandreas.hansson@arm.com    AddrRangeList getIntAddrRange() const;
2355651Sgblack@eecs.umich.edu
2369294Sandreas.hansson@arm.com    BaseMasterPort &getMasterPort(const std::string &if_name,
2379294Sandreas.hansson@arm.com                                  PortID idx = InvalidPortID)
2385654Sgblack@eecs.umich.edu    {
2398839Sandreas.hansson@arm.com        if (if_name == "int_master") {
2408922Swilliam.wang@arm.com            return intMasterPort;
2418839Sandreas.hansson@arm.com        }
2428922Swilliam.wang@arm.com        return BasicPioDevice::getMasterPort(if_name, idx);
2438922Swilliam.wang@arm.com    }
2448922Swilliam.wang@arm.com
2459294Sandreas.hansson@arm.com    BaseSlavePort &getSlavePort(const std::string &if_name,
2469294Sandreas.hansson@arm.com                                PortID idx = InvalidPortID)
2478922Swilliam.wang@arm.com    {
2488922Swilliam.wang@arm.com        if (if_name == "int_slave") {
2498922Swilliam.wang@arm.com            return intSlavePort;
2508922Swilliam.wang@arm.com        }
2518922Swilliam.wang@arm.com        return BasicPioDevice::getSlavePort(if_name, idx);
2525654Sgblack@eecs.umich.edu    }
2535654Sgblack@eecs.umich.edu
2545654Sgblack@eecs.umich.edu    /*
2555654Sgblack@eecs.umich.edu     * Functions to access and manipulate the APIC's registers.
2565654Sgblack@eecs.umich.edu     */
2575654Sgblack@eecs.umich.edu
2585648Sgblack@eecs.umich.edu    uint32_t readReg(ApicRegIndex miscReg);
2595648Sgblack@eecs.umich.edu    void setReg(ApicRegIndex reg, uint32_t val);
2605704Snate@binkert.org    void
2615704Snate@binkert.org    setRegNoEffect(ApicRegIndex reg, uint32_t val)
2625647Sgblack@eecs.umich.edu    {
2635648Sgblack@eecs.umich.edu        regs[reg] = val;
2645648Sgblack@eecs.umich.edu    }
2655648Sgblack@eecs.umich.edu
2665654Sgblack@eecs.umich.edu    /*
2675654Sgblack@eecs.umich.edu     * Constructor.
2685654Sgblack@eecs.umich.edu     */
2695654Sgblack@eecs.umich.edu
2706041Sgblack@eecs.umich.edu    Interrupts(Params * p);
2715086Sgblack@eecs.umich.edu
2725654Sgblack@eecs.umich.edu    /*
2735654Sgblack@eecs.umich.edu     * Functions for retrieving interrupts for the CPU to handle.
2745654Sgblack@eecs.umich.edu     */
2755651Sgblack@eecs.umich.edu
2765704Snate@binkert.org    bool checkInterrupts(ThreadContext *tc) const;
2779874Sandreas@sandberg.pp.se    /**
2789874Sandreas@sandberg.pp.se     * Check if there are pending interrupts without ignoring the
2799874Sandreas@sandberg.pp.se     * interrupts disabled flag.
2809874Sandreas@sandberg.pp.se     *
2819874Sandreas@sandberg.pp.se     * @return true if there are interrupts pending.
2829874Sandreas@sandberg.pp.se     */
2839874Sandreas@sandberg.pp.se    bool checkInterruptsRaw() const;
28410112Sandreas@sandberg.pp.se    /**
28510112Sandreas@sandberg.pp.se     * Check if there are pending unmaskable interrupts.
28610112Sandreas@sandberg.pp.se     *
28710112Sandreas@sandberg.pp.se     * @return true there are unmaskable interrupts pending.
28810112Sandreas@sandberg.pp.se     */
28910112Sandreas@sandberg.pp.se    bool hasPendingUnmaskable() const { return pendingUnmaskableInt; }
2905704Snate@binkert.org    Fault getInterrupt(ThreadContext *tc);
2915704Snate@binkert.org    void updateIntrInfo(ThreadContext *tc);
2925086Sgblack@eecs.umich.edu
2935654Sgblack@eecs.umich.edu    /*
2945654Sgblack@eecs.umich.edu     * Serialization.
2955654Sgblack@eecs.umich.edu     */
2965086Sgblack@eecs.umich.edu
2977902Shestness@cs.utexas.edu    virtual void serialize(std::ostream &os);
2987902Shestness@cs.utexas.edu    virtual void unserialize(Checkpoint *cp, const std::string &section);
2995654Sgblack@eecs.umich.edu
3005654Sgblack@eecs.umich.edu    /*
3015654Sgblack@eecs.umich.edu     * Old functions needed for compatability but which will be phased out
3025654Sgblack@eecs.umich.edu     * eventually.
3035654Sgblack@eecs.umich.edu     */
3045704Snate@binkert.org    void
3055704Snate@binkert.org    post(int int_num, int index)
3065654Sgblack@eecs.umich.edu    {
3075654Sgblack@eecs.umich.edu        panic("Interrupts::post unimplemented!\n");
3085654Sgblack@eecs.umich.edu    }
3095654Sgblack@eecs.umich.edu
3105704Snate@binkert.org    void
3115704Snate@binkert.org    clear(int int_num, int index)
3125654Sgblack@eecs.umich.edu    {
3135654Sgblack@eecs.umich.edu        panic("Interrupts::clear unimplemented!\n");
3145654Sgblack@eecs.umich.edu    }
3155654Sgblack@eecs.umich.edu
3165704Snate@binkert.org    void
3175704Snate@binkert.org    clearAll()
3185654Sgblack@eecs.umich.edu    {
3195704Snate@binkert.org        panic("Interrupts::clearAll unimplemented!\n");
3205654Sgblack@eecs.umich.edu    }
3215086Sgblack@eecs.umich.edu};
3225086Sgblack@eecs.umich.edu
3235704Snate@binkert.org} // namespace X86ISA
3244120Sgblack@eecs.umich.edu
3254120Sgblack@eecs.umich.edu#endif // __ARCH_X86_INTERRUPTS_HH__
326