Deleted Added
sdiff udiff text old ( 7741:340b6f01d69b ) new ( 8232:b28d06a175be )
full compact
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 "arch/sparc/registers.hh"
38#include "cpu/thread_context.hh"
39#include "debug/Interrupt.hh"
40#include "params/SparcInterrupts.hh"
41#include "sim/sim_object.hh"
42
43namespace SparcISA
44{
45
46class Interrupts : public SimObject
47{
48 private:
49 BaseCPU * cpu;
50
51 uint64_t interrupts[NumInterruptTypes];
52 uint64_t intStatus;
53
54 public:
55
56 void
57 setCPU(BaseCPU * _cpu)
58 {
59 cpu = _cpu;
60 }
61
62 typedef SparcInterruptsParams Params;
63
64 const Params *
65 params() const
66 {
67 return dynamic_cast<const Params *>(_params);
68 }
69
70 Interrupts(Params * p) : SimObject(p), cpu(NULL)
71 {
72 clearAll();
73 }
74
75 int
76 InterruptLevel(uint64_t softint)
77 {
78 if (softint & 0x10000 || softint & 0x1)
79 return 14;
80
81 int level = 15;
82 while (level > 0 && !(1 << level & softint))
83 level--;
84 if (1 << level & softint)
85 return level;
86 return 0;
87 }
88
89 void
90 post(int int_num, int index)
91 {
92 DPRINTF(Interrupt, "Interrupt %d:%d posted\n", int_num, index);
93 assert(int_num >= 0 && int_num < NumInterruptTypes);
94 assert(index >= 0 && index < 64);
95
96 interrupts[int_num] |= ULL(1) << index;
97 intStatus |= ULL(1) << int_num;
98 }
99
100 void
101 clear(int int_num, int index)
102 {
103 DPRINTF(Interrupt, "Interrupt %d:%d cleared\n", int_num, index);
104 assert(int_num >= 0 && int_num < NumInterruptTypes);
105 assert(index >= 0 && index < 64);
106
107 interrupts[int_num] &= ~(ULL(1) << index);
108 if (!interrupts[int_num])
109 intStatus &= ~(ULL(1) << int_num);
110 }
111
112 void
113 clearAll()
114 {
115 for (int i = 0; i < NumInterruptTypes; ++i) {
116 interrupts[i] = 0;
117 }
118 intStatus = 0;
119 }
120
121 bool
122 checkInterrupts(ThreadContext *tc) const
123 {
124 return intStatus;
125 }
126
127 Fault
128 getInterrupt(ThreadContext *tc)
129 {
130 int hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
131 int pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
132 bool ie = pstate & PSTATE::ie;
133
134 // THESE ARE IN ORDER OF PRIORITY
135 // since there are early returns, and the highest
136 // priority interrupts should get serviced,
137 // it is v. important that new interrupts are inserted
138 // in the right order of processing
139 if (hpstate & HPSTATE::hpriv) {
140 if (ie) {
141 if (interrupts[IT_HINTP]) {
142 // This will be cleaned by a HINTP write
143 return new HstickMatch;
144 }
145 if (interrupts[IT_INT_VEC]) {
146 // this will be cleared by an ASI read (or write)
147 return new InterruptVector;
148 }
149 }
150 } else {
151 if (interrupts[IT_TRAP_LEVEL_ZERO]) {
152 // this is cleared by deasserting HPSTATE::tlz
153 return new TrapLevelZero;
154 }
155 // HStick matches always happen in priv mode (ie doesn't matter)
156 if (interrupts[IT_HINTP]) {
157 return new HstickMatch;
158 }
159 if (interrupts[IT_INT_VEC]) {
160 // this will be cleared by an ASI read (or write)
161 return new InterruptVector;
162 }
163 if (ie) {
164 if (interrupts[IT_CPU_MONDO]) {
165 return new CpuMondo;
166 }
167 if (interrupts[IT_DEV_MONDO]) {
168 return new DevMondo;
169 }
170 if (interrupts[IT_SOFT_INT]) {
171 int level = InterruptLevel(interrupts[IT_SOFT_INT]);
172 return new InterruptLevelN(level);
173 }
174
175 if (interrupts[IT_RES_ERROR]) {
176 return new ResumableError;
177 }
178 } // !hpriv && ie
179 } // !hpriv
180 return NoFault;
181 }
182
183 void
184 updateIntrInfo(ThreadContext *tc)
185 {}
186
187 uint64_t
188 get_vec(int int_num)
189 {
190 assert(int_num >= 0 && int_num < NumInterruptTypes);
191 return interrupts[int_num];
192 }
193
194 void
195 serialize(std::ostream &os)
196 {
197 SERIALIZE_ARRAY(interrupts,NumInterruptTypes);
198 SERIALIZE_SCALAR(intStatus);
199 }
200
201 void
202 unserialize(Checkpoint *cp, const std::string &section)
203 {
204 UNSERIALIZE_ARRAY(interrupts,NumInterruptTypes);
205 UNSERIALIZE_SCALAR(intStatus);
206 }
207};
208} // namespace SPARC_ISA
209
210#endif // __ARCH_SPARC_INTERRUPT_HH__