gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
interrupts.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006 The Regents of The University of Michigan
3  * Copyright (c) 2007 MIPS Technologies, Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * Authors: Steve Reinhardt
30  * Kevin Lim
31  * Korey Sewell
32  */
33 
34 #include "arch/mips/interrupts.hh"
35 
36 #include "arch/mips/isa_traits.hh"
38 #include "base/trace.hh"
39 #include "cpu/thread_context.hh"
40 #include "debug/Interrupt.hh"
41 
42 namespace MipsISA
43 {
44 
45 static inline uint8_t
47  CauseReg cause = tc->readMiscRegNoEffect(MISCREG_CAUSE);
48  return cause.ip;
49 }
50 
51 static inline void
52 setCauseIP(ThreadContext *tc, uint8_t val) {
53  CauseReg cause = tc->readMiscRegNoEffect(MISCREG_CAUSE);
54  cause.ip = val;
56 }
57 
58 void
60 {
61  DPRINTF(Interrupt, "Interrupt %d posted\n", int_num);
62  if (int_num < 0 || int_num >= NumInterruptLevels)
63  panic("int_num out of bounds\n");
64 
65  uint8_t intstatus = getCauseIP(tc);
66  intstatus |= 1 << int_num;
67  setCauseIP(tc, intstatus);
68 }
69 
70 void
71 Interrupts::post(int int_num, int index)
72 {
73  fatal("Must use Thread Context when posting MIPS Interrupts in M5");
74 }
75 
76 void
78 {
79  DPRINTF(Interrupt, "Interrupt %d cleared\n", int_num);
80  if (int_num < 0 || int_num >= NumInterruptLevels)
81  panic("int_num out of bounds\n");
82 
83  uint8_t intstatus = getCauseIP(tc);
84  intstatus &= ~(1 << int_num);
85  setCauseIP(tc, intstatus);
86 }
87 
88 void
89 Interrupts::clear(int int_num, int index)
90 {
91  fatal("Must use Thread Context when clearing MIPS Interrupts in M5");
92 }
93 
94 void
96 {
97  DPRINTF(Interrupt, "Interrupts all cleared\n");
98  uint8_t intstatus = 0;
99  setCauseIP(tc, intstatus);
100 }
101 
102 void
104 {
105  fatal("Must use Thread Context when clearing MIPS Interrupts in M5");
106 }
107 
108 
109 bool
111 {
112  if (!interruptsPending(tc))
113  return false;
114 
115  //Check if there are any outstanding interrupts
116  StatusReg status = tc->readMiscRegNoEffect(MISCREG_STATUS);
117  // Interrupts must be enabled, error level must be 0 or interrupts
118  // inhibited, and exception level must be 0 or interrupts inhibited
119  if ((status.ie == 1) && (status.erl == 0) && (status.exl == 0)) {
120  // Software interrupts & hardware interrupts are handled in software.
121  // So if any interrupt that isn't masked is detected, jump to interrupt
122  // handler
123  CauseReg cause = tc->readMiscRegNoEffect(MISCREG_CAUSE);
124  if (status.im && cause.ip)
125  return true;
126 
127  }
128 
129  return false;
130 }
131 
132 Fault
134 {
135  assert(checkInterrupts(tc));
136 
138  CauseReg M5_VAR_USED cause = tc->readMiscRegNoEffect(MISCREG_CAUSE);
139  DPRINTF(Interrupt, "Interrupt! IM[7:0]=%d IP[7:0]=%d \n",
140  (unsigned)status.im, (unsigned)cause.ip);
141 
142  return std::make_shared<InterruptFault>();
143 }
144 
145 bool
147 {
150  if (compare == count && count != 0)
151  return true;
152  return false;
153 }
154 
155 void
157 {
158  //Nothing needs to be done.
159 }
160 
161 bool
163 {
164  //if there is a on cpu timer interrupt (i.e. Compare == Count)
165  //update CauseIP before proceeding to interrupt
166  if (onCpuTimerInterrupt(tc)) {
167  DPRINTF(Interrupt, "Interrupts OnCpuTimerINterrupt(tc) == true\n");
168  //determine timer interrupt IP #
169  IntCtlReg intCtl = tc->readMiscRegNoEffect(MISCREG_INTCTL);
170  uint8_t intStatus = getCauseIP(tc);
171  intStatus |= 1 << intCtl.ipti;
172  setCauseIP(tc, intStatus);
173  }
174 
175  return (getCauseIP(tc) != 0);
176 
177 }
178 
179 }
180 
182 MipsInterruptsParams::create()
183 {
184  return new MipsISA::Interrupts(this);
185 }
count
Definition: misc.hh:704
#define DPRINTF(x,...)
Definition: trace.hh:212
void post(int int_num, ThreadContext *tc)
Definition: interrupts.cc:59
Bitfield< 30, 0 > index
void clear(int int_num, ThreadContext *tc)
Definition: interrupts.cc:77
#define panic(...)
Definition: misc.hh:153
virtual MiscReg readMiscRegNoEffect(int misc_reg) const =0
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Fault getInterrupt(ThreadContext *tc)
Definition: interrupts.cc:133
Bitfield< 63 > val
Definition: misc.hh:770
Bitfield< 5, 0 > status
Definition: miscregs.hh:1604
static uint8_t getCauseIP(ThreadContext *tc)
Definition: interrupts.cc:46
#define fatal(...)
Definition: misc.hh:163
bool onCpuTimerInterrupt(ThreadContext *tc) const
Definition: interrupts.cc:146
static void setCauseIP(ThreadContext *tc, uint8_t val)
Definition: interrupts.cc:52
static const int NumArgumentRegs M5_VAR_USED
Definition: process.cc:83
bool compare(T src0, T src1, Brig::BrigCompareOperation cmpOp)
Definition: decl.hh:592
uint64_t MiscReg
Definition: registers.hh:295
void updateIntrInfo(ThreadContext *tc) const
Definition: interrupts.cc:156
virtual void setMiscRegNoEffect(int misc_reg, const MiscReg &val)=0
std::shared_ptr< FaultBase > Fault
Definition: types.hh:184
bool checkInterrupts(ThreadContext *tc) const
Definition: interrupts.cc:110
bool interruptsPending(ThreadContext *tc) const
Definition: interrupts.cc:162

Generated on Fri Jun 9 2017 13:03:34 for gem5 by doxygen 1.8.6