interrupts.hh revision 5647
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 *          Lisa Hsu
30 */
31
32#ifndef __ARCH_SPARC_INTERRUPT_HH__
33#define __ARCH_SPARC_INTERRUPT_HH__
34
35#include "arch/sparc/faults.hh"
36#include "arch/sparc/isa_traits.hh"
37#include "cpu/thread_context.hh"
38#include "params/SparcInterrupts.hh"
39#include "sim/sim_object.hh"
40
41namespace SparcISA
42{
43
44class Interrupts : public SimObject
45{
46
47  private:
48
49    uint64_t interrupts[NumInterruptTypes];
50    uint64_t intStatus;
51
52  public:
53    typedef SparcInterruptsParams Params;
54
55    const Params *
56    params() const
57    {
58        return dynamic_cast<const Params *>(_params);
59    }
60
61    Interrupts(Params * p) : SimObject(p)
62    {
63        clear_all();
64    }
65
66    int InterruptLevel(uint64_t softint)
67    {
68        if (softint & 0x10000 || softint & 0x1)
69            return 14;
70
71        int level = 15;
72        while (level > 0 && !(1 << level & softint))
73            level--;
74        if (1 << level & softint)
75            return level;
76        return 0;
77    }
78
79    void post(int int_num, int index)
80    {
81        DPRINTF(Interrupt, "Interrupt %d:%d posted\n", int_num, index);
82        assert(int_num >= 0 && int_num < NumInterruptTypes);
83        assert(index >= 0 && index < 64);
84
85        interrupts[int_num] |= ULL(1) << index;
86        intStatus |= ULL(1) << int_num;
87    }
88
89    void clear(int int_num, int index)
90    {
91        DPRINTF(Interrupt, "Interrupt %d:%d cleared\n", int_num, index);
92        assert(int_num >= 0 && int_num < NumInterruptTypes);
93        assert(index >= 0 && index < 64);
94
95        interrupts[int_num] &= ~(ULL(1) << index);
96        if (!interrupts[int_num])
97            intStatus &= ~(ULL(1) << int_num);
98    }
99
100    void clear_all()
101    {
102        for (int i = 0; i < NumInterruptTypes; ++i) {
103            interrupts[i] = 0;
104        }
105        intStatus = 0;
106    }
107
108    bool check_interrupts(ThreadContext * tc) const
109    {
110        return intStatus;
111    }
112
113    Fault getInterrupt(ThreadContext * tc)
114    {
115        int hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
116        int pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
117        bool ie = pstate & PSTATE::ie;
118
119        // THESE ARE IN ORDER OF PRIORITY
120        // since there are early returns, and the highest
121        // priority interrupts should get serviced,
122        // it is v. important that new interrupts are inserted
123        // in the right order of processing
124        if (hpstate & HPSTATE::hpriv) {
125            if (ie) {
126                if (interrupts[IT_HINTP]) {
127                    // This will be cleaned by a HINTP write
128                    return new HstickMatch;
129                }
130                if (interrupts[IT_INT_VEC]) {
131                    // this will be cleared by an ASI read (or write)
132                    return new InterruptVector;
133                }
134            }
135        } else {
136            if (interrupts[IT_TRAP_LEVEL_ZERO]) {
137                    // this is cleared by deasserting HPSTATE::tlz
138                    return new TrapLevelZero;
139            }
140            // HStick matches always happen in priv mode (ie doesn't matter)
141            if (interrupts[IT_HINTP]) {
142                return new HstickMatch;
143            }
144            if (interrupts[IT_INT_VEC]) {
145                // this will be cleared by an ASI read (or write)
146                return new InterruptVector;
147            }
148            if (ie) {
149                if (interrupts[IT_CPU_MONDO]) {
150                    return new CpuMondo;
151                }
152                if (interrupts[IT_DEV_MONDO]) {
153                    return new DevMondo;
154                }
155                if (interrupts[IT_SOFT_INT]) {
156                    return new
157                        InterruptLevelN(InterruptLevel(interrupts[IT_SOFT_INT]));
158                }
159
160                if (interrupts[IT_RES_ERROR]) {
161                    return new ResumableError;
162                }
163            } // !hpriv && ie
164        }  // !hpriv
165        return NoFault;
166    }
167
168    void updateIntrInfo(ThreadContext * tc)
169    {
170
171    }
172
173    uint64_t get_vec(int int_num)
174    {
175        assert(int_num >= 0 && int_num < NumInterruptTypes);
176        return interrupts[int_num];
177    }
178
179    void serialize(std::ostream &os)
180    {
181        SERIALIZE_ARRAY(interrupts,NumInterruptTypes);
182        SERIALIZE_SCALAR(intStatus);
183    }
184
185    void unserialize(Checkpoint *cp, const std::string &section)
186    {
187        UNSERIALIZE_ARRAY(interrupts,NumInterruptTypes);
188        UNSERIALIZE_SCALAR(intStatus);
189    }
190};
191} // namespace SPARC_ISA
192
193#endif // __ARCH_SPARC_INTERRUPT_HH__
194