interrupts.hh revision 6101:860df2c586a3
1/* 2 * Copyright (c) 2007 The Hewlett-Packard Development Company 3 * All rights reserved. 4 * 5 * Redistribution and use of this software in source and binary forms, 6 * with or without modification, are permitted provided that the 7 * following conditions are met: 8 * 9 * The software must be used only for Non-Commercial Use which means any 10 * use which is NOT directed to receiving any direct monetary 11 * compensation for, or commercial advantage from such use. Illustrative 12 * examples of non-commercial use are academic research, personal study, 13 * teaching, education and corporate research & development. 14 * Illustrative examples of commercial use are distributing products for 15 * commercial advantage and providing services using the software for 16 * commercial advantage. 17 * 18 * If you wish to use this software or functionality therein that may be 19 * covered by patents for commercial use, please contact: 20 * Director of Intellectual Property Licensing 21 * Office of Strategy and Technology 22 * Hewlett-Packard Company 23 * 1501 Page Mill Road 24 * Palo Alto, California 94304 25 * 26 * Redistributions of source code must retain the above copyright notice, 27 * this list of conditions and the following disclaimer. Redistributions 28 * in binary form must reproduce the above copyright notice, this list of 29 * conditions and the following disclaimer in the documentation and/or 30 * other materials provided with the distribution. Neither the name of 31 * the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its 32 * contributors may be used to endorse or promote products derived from 33 * this software without specific prior written permission. No right of 34 * sublicense is granted herewith. Derivatives of the software and 35 * output created using the software may be prepared, but only for 36 * Non-Commercial Uses. Derivatives of the software may be shared with 37 * others provided: (i) the others agree to abide by the list of 38 * conditions herein which includes the Non-Commercial Use restrictions; 39 * and (ii) such Derivatives of the software include the above copyright 40 * notice to acknowledge the contribution from this software where 41 * applicable, this list of conditions and the disclaimer below. 42 * 43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 54 * 55 * Authors: Gabe Black 56 */ 57 58#ifndef __ARCH_X86_INTERRUPTS_HH__ 59#define __ARCH_X86_INTERRUPTS_HH__ 60 61#include "arch/x86/apicregs.hh" 62#include "arch/x86/faults.hh" 63#include "arch/x86/intmessage.hh" 64#include "base/bitfield.hh" 65#include "cpu/thread_context.hh" 66#include "dev/io_device.hh" 67#include "dev/x86/intdev.hh" 68#include "params/X86LocalApic.hh" 69#include "sim/eventq.hh" 70 71class ThreadContext; 72class BaseCPU; 73 74namespace X86ISA { 75 76class Interrupts : public BasicPioDevice, IntDev 77{ 78 protected: 79 // Storage for the APIC registers 80 uint32_t regs[NUM_APIC_REGS]; 81 82 BitUnion32(LVTEntry) 83 Bitfield<7, 0> vector; 84 Bitfield<10, 8> deliveryMode; 85 Bitfield<12> status; 86 Bitfield<13> polarity; 87 Bitfield<14> remoteIRR; 88 Bitfield<15> trigger; 89 Bitfield<16> masked; 90 Bitfield<17> periodic; 91 EndBitUnion(LVTEntry) 92 93 /* 94 * Timing related stuff. 95 */ 96 Tick latency; 97 Tick clock; 98 99 class ApicTimerEvent : public Event 100 { 101 private: 102 Interrupts *localApic; 103 public: 104 ApicTimerEvent(Interrupts *_localApic) : 105 Event(), localApic(_localApic) 106 {} 107 108 void process() 109 { 110 assert(localApic); 111 if (localApic->triggerTimerInterrupt()) { 112 localApic->setReg(APIC_INITIAL_COUNT, 113 localApic->readReg(APIC_INITIAL_COUNT)); 114 } 115 } 116 }; 117 118 ApicTimerEvent apicTimerEvent; 119 120 /* 121 * A set of variables to keep track of interrupts that don't go through 122 * the IRR. 123 */ 124 bool pendingSmi; 125 uint8_t smiVector; 126 bool pendingNmi; 127 uint8_t nmiVector; 128 bool pendingExtInt; 129 uint8_t extIntVector; 130 bool pendingInit; 131 uint8_t initVector; 132 bool pendingStartup; 133 uint8_t startupVector; 134 bool startedUp; 135 136 // This is a quick check whether any of the above (except ExtInt) are set. 137 bool pendingUnmaskableInt; 138 139 // A count of how many IPIs are in flight. 140 int pendingIPIs; 141 142 /* 143 * IRR and ISR maintenance. 144 */ 145 uint8_t IRRV; 146 uint8_t ISRV; 147 148 int 149 findRegArrayMSB(ApicRegIndex base) 150 { 151 int offset = 7; 152 do { 153 if (regs[base + offset] != 0) { 154 return offset * 32 + findMsbSet(regs[base + offset]); 155 } 156 } while (offset--); 157 return 0; 158 } 159 160 void 161 updateIRRV() 162 { 163 IRRV = findRegArrayMSB(APIC_INTERRUPT_REQUEST_BASE); 164 } 165 166 void 167 updateISRV() 168 { 169 ISRV = findRegArrayMSB(APIC_IN_SERVICE_BASE); 170 } 171 172 void 173 setRegArrayBit(ApicRegIndex base, uint8_t vector) 174 { 175 regs[base + (vector / 32)] |= (1 << (vector % 32)); 176 } 177 178 void 179 clearRegArrayBit(ApicRegIndex base, uint8_t vector) 180 { 181 regs[base + (vector / 32)] &= ~(1 << (vector % 32)); 182 } 183 184 bool 185 getRegArrayBit(ApicRegIndex base, uint8_t vector) 186 { 187 return bits(regs[base + (vector / 32)], vector % 5); 188 } 189 190 void requestInterrupt(uint8_t vector, uint8_t deliveryMode, bool level); 191 192 BaseCPU *cpu; 193 194 public: 195 /* 196 * Params stuff. 197 */ 198 typedef X86LocalApicParams Params; 199 200 void setCPU(BaseCPU * newCPU); 201 202 void 203 setClock(Tick newClock) 204 { 205 clock = newClock; 206 } 207 208 const Params * 209 params() const 210 { 211 return dynamic_cast<const Params *>(_params); 212 } 213 214 /* 215 * Functions to interact with the interrupt port from IntDev. 216 */ 217 Tick read(PacketPtr pkt); 218 Tick write(PacketPtr pkt); 219 Tick recvMessage(PacketPtr pkt); 220 Tick recvResponse(PacketPtr pkt); 221 222 bool 223 triggerTimerInterrupt() 224 { 225 LVTEntry entry = regs[APIC_LVT_TIMER]; 226 if (!entry.masked) 227 requestInterrupt(entry.vector, entry.deliveryMode, entry.trigger); 228 return entry.periodic; 229 } 230 231 void addressRanges(AddrRangeList &range_list); 232 void getIntAddrRange(AddrRangeList &range_list); 233 234 Port *getPort(const std::string &if_name, int idx = -1) 235 { 236 if (if_name == "int_port") 237 return intPort; 238 return BasicPioDevice::getPort(if_name, idx); 239 } 240 241 /* 242 * Functions to access and manipulate the APIC's registers. 243 */ 244 245 uint32_t readReg(ApicRegIndex miscReg); 246 void setReg(ApicRegIndex reg, uint32_t val); 247 void 248 setRegNoEffect(ApicRegIndex reg, uint32_t val) 249 { 250 regs[reg] = val; 251 } 252 253 /* 254 * Constructor. 255 */ 256 257 Interrupts(Params * p); 258 259 /* 260 * Functions for retrieving interrupts for the CPU to handle. 261 */ 262 263 bool checkInterrupts(ThreadContext *tc) const; 264 Fault getInterrupt(ThreadContext *tc); 265 void updateIntrInfo(ThreadContext *tc); 266 267 /* 268 * Serialization. 269 */ 270 271 void 272 serialize(std::ostream &os) 273 { 274 panic("Interrupts::serialize unimplemented!\n"); 275 } 276 277 void 278 unserialize(Checkpoint *cp, const std::string §ion) 279 { 280 panic("Interrupts::unserialize unimplemented!\n"); 281 } 282 283 /* 284 * Old functions needed for compatability but which will be phased out 285 * eventually. 286 */ 287 void 288 post(int int_num, int index) 289 { 290 panic("Interrupts::post unimplemented!\n"); 291 } 292 293 void 294 clear(int int_num, int index) 295 { 296 panic("Interrupts::clear unimplemented!\n"); 297 } 298 299 void 300 clearAll() 301 { 302 panic("Interrupts::clearAll unimplemented!\n"); 303 } 304}; 305 306} // namespace X86ISA 307 308#endif // __ARCH_X86_INTERRUPTS_HH__ 309