interrupts.hh revision 6227
1/* 2 * Copyright (c) 2007 MIPS Technologies, Inc. 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: Rick Strong 29 */ 30 31#ifndef __ARCH_MIPS_INTERRUPT_HH__ 32#define __ARCH_MIPS_INTERRUPT_HH__ 33 34 35#include "arch/mips/faults.hh" 36#include "base/compiler.hh" 37 38 39 40namespace MipsISA 41{ 42class Interrupts 43{ 44 /* 45 protected: 46 uint8_t intstatus; 47 bool oncputimerintr; 48 public: 49 Interrupts() 50 { 51 intstatus = 0; 52 newInfoSet = false; 53 oncputimerintr = false; 54 55 } 56 // post(int int_num, int index) is responsible 57 // for posting an interrupt. It sets a bit 58 // in intstatus corresponding to Cause IP*. The 59 // MIPS register Cause is updated by updateIntrInfo 60 // which is called by checkInterrupts 61 // 62 void post(int int_num, int index); 63 // clear(int int_num, int index) is responsible 64 // for clearing an interrupt. It clear a bit 65 // in intstatus corresponding to Cause IP*. The 66 // MIPS register Cause is updated by updateIntrInfo 67 // which is called by checkInterrupts 68 // 69 void clear(int int_num, int index); 70 // clearAll() is responsible 71 // for clearing all interrupts. It clears all bits 72 // in intstatus corresponding to Cause IP*. The 73 // MIPS register Cause is updated by updateIntrInfo 74 // which is called by checkInterrupts 75 // 76 void clearAll(); 77 78 // getInterrupt(ThreadContext * tc) checks if an interrupt 79 // should be returned. It ands the interrupt mask and 80 // and interrupt pending bits to see if one exists. It 81 // also makes sure interrupts are enabled (IE) and 82 // that ERL and ERX are not set 83 // 84 Fault getInterrupt(ThreadContext * tc); 85 86 // updateIntrInfo(ThreadContext *tc) const syncs the 87 // MIPS cause register with the instatus variable. instatus 88 // is essentially a copy of the MIPS cause[IP7:IP0] 89 // 90 void updateIntrInfo(ThreadContext *tc) const; 91 void updateIntrInfoCpuTimerIntr(ThreadContext *tc) const; 92 bool onCpuTimerInterrupt(ThreadContext *tc) const; 93 94 bool checkInterrupts(ThreadContext *tc) const { 95 //return (intstatus != 0) && !(tc->readPC() & 0x3); 96 if (oncputimerintr == false){ 97 updateIntrInfo(tc); 98 return ((intstatus != 0) || onCpuTimerInterrupt(tc)); 99 } 100 else 101 return true; 102 103 } 104 */ 105 106 107 protected: 108 //uint8_t intstatus; 109 //bool oncputimerintr; 110 public: 111 Interrupts() 112 { 113 //intstatus = 0; 114 newInfoSet = false; 115 //oncputimerintr = false; 116 117 } 118 // post(int int_num, int index) is responsible 119 // for posting an interrupt. It sets a bit 120 // in intstatus corresponding to Cause IP*. The 121 // MIPS register Cause is updated by updateIntrInfo 122 // which is called by checkInterrupts 123 // 124 void post(int int_num, ThreadContext* tc); 125 void post(int int_num, int index); 126 127 // clear(int int_num, int index) is responsible 128 // for clearing an interrupt. It clear a bit 129 // in intstatus corresponding to Cause IP*. The 130 // MIPS register Cause is updated by updateIntrInfo 131 // which is called by checkInterrupts 132 // 133 void clear(int int_num, ThreadContext* tc); 134 void clear(int int_num, int index); 135 136 // clearAll() is responsible 137 // for clearing all interrupts. It clears all bits 138 // in intstatus corresponding to Cause IP*. The 139 // MIPS register Cause is updated by updateIntrInfo 140 // which is called by checkInterrupts 141 // 142 void clearAll(ThreadContext* tc); 143 void clearAll(); 144 145 // getInterrupt(ThreadContext * tc) checks if an interrupt 146 // should be returned. It ands the interrupt mask and 147 // and interrupt pending bits to see if one exists. It 148 // also makes sure interrupts are enabled (IE) and 149 // that ERL and ERX are not set 150 // 151 Fault getInterrupt(ThreadContext * tc); 152 153 // updateIntrInfo(ThreadContext *tc) const syncs the 154 // MIPS cause register with the instatus variable. instatus 155 // is essentially a copy of the MIPS cause[IP7:IP0] 156 // 157 void updateIntrInfo(ThreadContext *tc) const; 158 bool interruptsPending(ThreadContext *tc) const; 159 bool onCpuTimerInterrupt(ThreadContext *tc) const; 160 161 bool 162 checkInterrupts(ThreadContext *tc) const 163 { 164 return interruptsPending(tc); 165 } 166 167 168 void serialize(std::ostream &os) 169 { 170 fatal("Serialization of Interrupts Unimplemented for MIPS"); 171 //SERIALIZE_ARRAY(interrupts, NumInterruptLevels); 172 //SERIALIZE_SCALAR(intstatus); 173 } 174 175 void unserialize(Checkpoint *cp, const std::string §ion) 176 { 177 fatal("Unserialization of Interrupts Unimplemented for MIPS"); 178 //UNSERIALIZE_ARRAY(interrupts, NumInterruptLevels); 179 //UNSERIALIZE_SCALAR(intstatus); 180 } 181 182 183 184 private: 185 bool newInfoSet; 186 int newIpl; 187 int newSummary; 188 189}; 190 191} 192 193#endif 194 195