VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/DevIoApic.cpp@ 70875

Last change on this file since 70875 was 70875, checked in by vboxsync, 7 years ago

DevIoApic: Added 82379AB variant with fewer RTEs. NT 3.1 likes it.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 57.0 KB
Line 
1/* $Id: DevIoApic.cpp 70875 2018-02-05 18:46:19Z vboxsync $ */
2/** @file
3 * IO APIC - Input/Output Advanced Programmable Interrupt Controller.
4 */
5
6/*
7 * Copyright (C) 2016-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_DEV_IOAPIC
23#include <VBox/log.h>
24#include <VBox/vmm/hm.h>
25#include <VBox/msi.h>
26#include <VBox/vmm/pdmdev.h>
27
28#include "VBoxDD.h"
29#include <iprt/x86.h>
30
31
32/*********************************************************************************************************************************
33* Defined Constants And Macros *
34*********************************************************************************************************************************/
35/** The current IO APIC saved state version. */
36#define IOAPIC_SAVED_STATE_VERSION 2
37/** The saved state version used by VirtualBox 5.0 and
38 * earlier. */
39#define IOAPIC_SAVED_STATE_VERSION_VBOX_50 1
40
41/** Implementation specified by the "Intel I/O Controller Hub 9
42 * (ICH9) Family" */
43#define IOAPIC_VERSION_ICH9 0x20
44/** Implementation specified by the "82093AA I/O Advanced Programmable Interrupt
45Controller" */
46#define IOAPIC_VERSION_82093AA 0x11
47
48/** The default MMIO base physical address. */
49#define IOAPIC_MMIO_BASE_PHYSADDR UINT64_C(0xfec00000)
50/** The size of the MMIO range. */
51#define IOAPIC_MMIO_SIZE X86_PAGE_4K_SIZE
52/** The mask for getting direct registers from physical address. */
53#define IOAPIC_MMIO_REG_MASK 0xff
54
55/** The number of interrupt input pins. */
56#define IOAPIC_NUM_INTR_PINS 24
57/** Maximum redirection entires. */
58#define IOAPIC_MAX_RTE_INDEX (IOAPIC_NUM_INTR_PINS - 1)
59/** Reduced RTEs used by SIO.A (82379AB). */
60#define IOAPIC_REDUCED_MAX_RTE_INDEX (16 - 1)
61
62/** Version register - Gets the version. */
63#define IOAPIC_VER_GET_VER(a_Reg) ((a_Reg) & 0xff)
64/** Version register - Gets the maximum redirection entry. */
65#define IOAPIC_VER_GET_MRE(a_Reg) (((a_Reg) >> 16) & 0xff)
66/** Version register - Gets whether Pin Assertion Register (PRQ) is
67 * supported. */
68#define IOAPIC_VER_HAS_PRQ(a_Reg) RT_BOOL((a_Reg) & RT_BIT_32(15))
69
70/** Index register - Valid write mask. */
71#define IOAPIC_INDEX_VALID_WRITE_MASK UINT32_C(0xff)
72
73/** Arbitration register - Gets the ID. */
74#define IOAPIC_ARB_GET_ID(a_Reg) ((a_Reg) >> 24 & 0xf)
75
76/** ID register - Gets the ID. */
77#define IOAPIC_ID_GET_ID(a_Reg) ((a_Reg) >> 24 & 0xff)
78
79/** Redirection table entry - Vector. */
80#define IOAPIC_RTE_VECTOR UINT64_C(0xff)
81/** Redirection table entry - Delivery mode. */
82#define IOAPIC_RTE_DELIVERY_MODE (RT_BIT_64(8) | RT_BIT_64(9) | RT_BIT_64(10))
83/** Redirection table entry - Destination mode. */
84#define IOAPIC_RTE_DEST_MODE RT_BIT_64(11)
85/** Redirection table entry - Delivery status. */
86#define IOAPIC_RTE_DELIVERY_STATUS RT_BIT_64(12)
87/** Redirection table entry - Interrupt input pin polarity. */
88#define IOAPIC_RTE_POLARITY RT_BIT_64(13)
89/** Redirection table entry - Remote IRR. */
90#define IOAPIC_RTE_REMOTE_IRR RT_BIT_64(14)
91/** Redirection table entry - Trigger Mode. */
92#define IOAPIC_RTE_TRIGGER_MODE RT_BIT_64(15)
93/** Redirection table entry - the mask bit number. */
94#define IOAPIC_RTE_MASK_BIT 16
95/** Redirection table entry - the mask. */
96#define IOAPIC_RTE_MASK RT_BIT_64(IOAPIC_RTE_MASK_BIT)
97/** Redirection table entry - Extended Destination ID. */
98#define IOAPIC_RTE_EXT_DEST_ID UINT64_C(0x00ff000000000000)
99/** Redirection table entry - Destination. */
100#define IOAPIC_RTE_DEST UINT64_C(0xff00000000000000)
101
102/** Redirection table entry - Gets the destination. */
103#define IOAPIC_RTE_GET_DEST(a_Reg) ((a_Reg) >> 56 & 0xff)
104/** Redirection table entry - Gets the mask flag. */
105#define IOAPIC_RTE_GET_MASK(a_Reg) (((a_Reg) >> IOAPIC_RTE_MASK_BIT) & 0x1)
106/** Redirection table entry - Checks whether it's masked. */
107#define IOAPIC_RTE_IS_MASKED(a_Reg) ((a_Reg) & IOAPIC_RTE_MASK)
108/** Redirection table entry - Gets the trigger mode. */
109#define IOAPIC_RTE_GET_TRIGGER_MODE(a_Reg) (((a_Reg) >> 15) & 0x1)
110/** Redirection table entry - Gets the remote IRR flag. */
111#define IOAPIC_RTE_GET_REMOTE_IRR(a_Reg) (((a_Reg) >> 14) & 0x1)
112/** Redirection table entry - Gets the interrupt pin polarity. */
113#define IOAPIC_RTE_GET_POLARITY(a_Reg) (((a_Reg) >> 13) & 0x1)
114/** Redirection table entry - Gets the delivery status. */
115#define IOAPIC_RTE_GET_DELIVERY_STATUS(a_Reg) (((a_Reg) >> 12) & 0x1)
116/** Redirection table entry - Gets the destination mode. */
117#define IOAPIC_RTE_GET_DEST_MODE(a_Reg) (((a_Reg) >> 11) & 0x1)
118/** Redirection table entry - Gets the delivery mode. */
119#define IOAPIC_RTE_GET_DELIVERY_MODE(a_Reg) (((a_Reg) >> 8) & 0x7)
120/** Redirection table entry - Gets the vector. */
121#define IOAPIC_RTE_GET_VECTOR(a_Reg) ((a_Reg) & IOAPIC_RTE_VECTOR)
122
123/** Redirection table entry - Valid write mask for 82093AA. */
124#define IOAPIC_RTE_VALID_WRITE_MASK_82093AA ( IOAPIC_RTE_DEST | IOAPIC_RTE_MASK | IOAPIC_RTE_TRIGGER_MODE \
125 | IOAPIC_RTE_POLARITY | IOAPIC_RTE_DEST_MODE | IOAPIC_RTE_DELIVERY_MODE \
126 | IOAPIC_RTE_VECTOR)
127/** Redirection table entry - Valid read mask for 82093AA. */
128#define IOAPIC_RTE_VALID_READ_MASK_82093AA ( IOAPIC_RTE_DEST | IOAPIC_RTE_MASK | IOAPIC_RTE_TRIGGER_MODE \
129 | IOAPIC_RTE_REMOTE_IRR | IOAPIC_RTE_POLARITY | IOAPIC_RTE_DELIVERY_STATUS \
130 | IOAPIC_RTE_DEST_MODE | IOAPIC_RTE_DELIVERY_MODE | IOAPIC_RTE_VECTOR)
131
132/** Redirection table entry - Valid write mask for ICH9. */
133/** @note The remote IRR bit has been reverted to read-only as it turns out the
134 * ICH9 spec. is wrong, see @bugref{8386#c46}. */
135#define IOAPIC_RTE_VALID_WRITE_MASK_ICH9 ( IOAPIC_RTE_DEST | IOAPIC_RTE_MASK | IOAPIC_RTE_TRIGGER_MODE \
136 /*| IOAPIC_RTE_REMOTE_IRR */| IOAPIC_RTE_POLARITY | IOAPIC_RTE_DEST_MODE \
137 | IOAPIC_RTE_DELIVERY_MODE | IOAPIC_RTE_VECTOR)
138/** Redirection table entry - Valid read mask (incl. ExtDestID) for ICH9. */
139#define IOAPIC_RTE_VALID_READ_MASK_ICH9 ( IOAPIC_RTE_DEST | IOAPIC_RTE_EXT_DEST_ID | IOAPIC_RTE_MASK \
140 | IOAPIC_RTE_TRIGGER_MODE | IOAPIC_RTE_REMOTE_IRR | IOAPIC_RTE_POLARITY \
141 | IOAPIC_RTE_DELIVERY_STATUS | IOAPIC_RTE_DEST_MODE | IOAPIC_RTE_DELIVERY_MODE \
142 | IOAPIC_RTE_VECTOR)
143
144/** Redirection table entry - Trigger mode edge. */
145#define IOAPIC_RTE_TRIGGER_MODE_EDGE 0
146/** Redirection table entry - Trigger mode level. */
147#define IOAPIC_RTE_TRIGGER_MODE_LEVEL 1
148/** Redirection table entry - Destination mode physical. */
149#define IOAPIC_RTE_DEST_MODE_PHYSICAL 0
150/** Redirection table entry - Destination mode logical. */
151#define IOAPIC_RTE_DEST_MODE_LOGICAL 1
152
153
154/** Index of indirect registers in the I/O APIC register table. */
155#define IOAPIC_INDIRECT_INDEX_ID 0x0
156#define IOAPIC_INDIRECT_INDEX_VERSION 0x1
157#define IOAPIC_INDIRECT_INDEX_ARB 0x2 /* Older I/O APIC only. */
158#define IOAPIC_INDIRECT_INDEX_REDIR_TBL_START 0x10 /* First valid RTE register index. */
159#define IOAPIC_INDIRECT_INDEX_RTE_END 0x3F /* Last valid RTE register index (24 RTEs). */
160#define IOAPIC_REDUCED_INDIRECT_INDEX_RTE_END 0x2F /* Last valid RTE register index (16 RTEs). */
161
162/** Offset of direct registers in the I/O APIC MMIO space. */
163#define IOAPIC_DIRECT_OFF_INDEX 0x00
164#define IOAPIC_DIRECT_OFF_DATA 0x10
165#define IOAPIC_DIRECT_OFF_EOI 0x40 /* Newer I/O APIC only. */
166
167/* Use PDM critsect for now for I/O APIC locking, see @bugref{8245#c121}. */
168#define IOAPIC_WITH_PDM_CRITSECT
169#ifdef IOAPIC_WITH_PDM_CRITSECT
170# define IOAPIC_LOCK(pThis, rcBusy) (pThis)->CTX_SUFF(pIoApicHlp)->pfnLock((pThis)->CTX_SUFF(pDevIns), (rcBusy))
171# define IOAPIC_UNLOCK(pThis) (pThis)->CTX_SUFF(pIoApicHlp)->pfnUnlock((pThis)->CTX_SUFF(pDevIns))
172#else
173# define IOAPIC_LOCK(pThis, rcBusy) PDMCritSectEnter(&(pThis)->CritSect, (rcBusy))
174# define IOAPIC_UNLOCK(pThis) PDMCritSectLeave(&(pThis)->CritSect)
175#endif
176
177
178/*********************************************************************************************************************************
179* Structures and Typedefs *
180*********************************************************************************************************************************/
181/**
182 * The per-VM I/O APIC device state.
183 */
184typedef struct IOAPIC
185{
186 /** The device instance - R3 Ptr. */
187 PPDMDEVINSR3 pDevInsR3;
188 /** The IOAPIC helpers - R3 Ptr. */
189 PCPDMIOAPICHLPR3 pIoApicHlpR3;
190
191 /** The device instance - R0 Ptr. */
192 PPDMDEVINSR0 pDevInsR0;
193 /** The IOAPIC helpers - R0 Ptr. */
194 PCPDMIOAPICHLPR0 pIoApicHlpR0;
195
196 /** The device instance - RC Ptr. */
197 PPDMDEVINSRC pDevInsRC;
198 /** The IOAPIC helpers - RC Ptr. */
199 PCPDMIOAPICHLPRC pIoApicHlpRC;
200
201 /** The ID register. */
202 uint8_t volatile u8Id;
203 /** The index register. */
204 uint8_t volatile u8Index;
205 /** Number of CPUs. */
206 uint8_t cCpus;
207 /** I/O APIC version. */
208 uint8_t u8ApicVer;
209 /** I/O APIC ID mask. */
210 uint8_t u8IdMask;
211 /** Maximum Redirection Table Entry (RTE) Entry. */
212 uint8_t u8MaxRte;
213 /** Last valid RTE indirect register index. */
214 uint8_t u8LastRteRegIdx;
215 /* Alignment padding. */
216 uint8_t u8Padding0[1];
217 /** Redirection table entry - Valid write mask. */
218 uint64_t u64RteWriteMask;
219 /** Redirection table entry - Valid read mask. */
220 uint64_t u64RteReadMask;
221
222 /** The redirection table registers. */
223 uint64_t au64RedirTable[IOAPIC_NUM_INTR_PINS];
224 /** The IRQ tags and source IDs for each pin (tracing purposes). */
225 uint32_t au32TagSrc[IOAPIC_NUM_INTR_PINS];
226
227 /** Alignment padding. */
228 uint32_t u32Padding2;
229 /** The internal IRR reflecting state of the interrupt lines. */
230 uint32_t uIrr;
231
232#ifndef IOAPIC_WITH_PDM_CRITSECT
233 /** The critsect for updating to the RTEs. */
234 PDMCRITSECT CritSect;
235#endif
236
237#ifdef VBOX_WITH_STATISTICS
238 /** Number of MMIO reads in RZ. */
239 STAMCOUNTER StatMmioReadRZ;
240 /** Number of MMIO reads in R3. */
241 STAMCOUNTER StatMmioReadR3;
242
243 /** Number of MMIO writes in RZ. */
244 STAMCOUNTER StatMmioWriteRZ;
245 /** Number of MMIO writes in R3. */
246 STAMCOUNTER StatMmioWriteR3;
247
248 /** Number of SetIrq calls in RZ. */
249 STAMCOUNTER StatSetIrqRZ;
250 /** Number of SetIrq calls in R3. */
251 STAMCOUNTER StatSetIrqR3;
252
253 /** Number of SetEoi calls in RZ. */
254 STAMCOUNTER StatSetEoiRZ;
255 /** Number of SetEoi calls in R3. */
256 STAMCOUNTER StatSetEoiR3;
257
258 /** Number of redundant edge-triggered interrupts. */
259 STAMCOUNTER StatRedundantEdgeIntr;
260 /** Number of redundant level-triggered interrupts. */
261 STAMCOUNTER StatRedundantLevelIntr;
262 /** Number of suppressed level-triggered interrupts (by remote IRR). */
263 STAMCOUNTER StatSuppressedLevelIntr;
264 /** Number of returns to ring-3 due to EOI broadcast lock contention. */
265 STAMCOUNTER StatEoiContention;
266 /** Number of returns to ring-3 due to Set RTE lock contention. */
267 STAMCOUNTER StatSetRteContention;
268 /** Number of level-triggered interrupts dispatched to the local APIC(s). */
269 STAMCOUNTER StatLevelIrqSent;
270 /** Number of EOIs received for level-triggered interrupts from the local
271 * APIC(s). */
272 STAMCOUNTER StatEoiReceived;
273#endif
274} IOAPIC;
275/** Pointer to IOAPIC data. */
276typedef IOAPIC *PIOAPIC;
277/** Pointer to a const IOAPIC data. */
278typedef IOAPIC const *PCIOAPIC;
279AssertCompileMemberAlignment(IOAPIC, au64RedirTable, 8);
280
281#ifndef VBOX_DEVICE_STRUCT_TESTCASE
282
283/**
284 * Gets the arbitration register.
285 *
286 * @returns The arbitration.
287 */
288DECLINLINE(uint32_t) ioapicGetArb(void)
289{
290 Log2(("IOAPIC: ioapicGetArb: returns 0\n"));
291 return 0;
292}
293
294
295/**
296 * Gets the version register.
297 *
298 * @returns The version.
299 */
300DECLINLINE(uint32_t) ioapicGetVersion(PCIOAPIC pThis)
301{
302 uint32_t uValue = RT_MAKE_U32(pThis->u8ApicVer, pThis->u8MaxRte);
303 Log2(("IOAPIC: ioapicGetVersion: returns %#RX32\n", uValue));
304 return uValue;
305}
306
307
308/**
309 * Sets the ID register.
310 *
311 * @param pThis Pointer to the IOAPIC instance.
312 * @param uValue The value to set.
313 */
314DECLINLINE(void) ioapicSetId(PIOAPIC pThis, uint32_t uValue)
315{
316 Log2(("IOAPIC: ioapicSetId: uValue=%#RX32\n", uValue));
317 ASMAtomicWriteU8(&pThis->u8Id, (uValue >> 24) & pThis->u8IdMask);
318}
319
320
321/**
322 * Gets the ID register.
323 *
324 * @returns The ID.
325 * @param pThis Pointer to the IOAPIC instance.
326 */
327DECLINLINE(uint32_t) ioapicGetId(PCIOAPIC pThis)
328{
329 uint32_t uValue = (uint32_t)pThis->u8Id << 24;
330 Log2(("IOAPIC: ioapicGetId: returns %#RX32\n", uValue));
331 return uValue;
332}
333
334
335/**
336 * Sets the index register.
337 *
338 * @param pThis Pointer to the IOAPIC instance.
339 * @param uValue The value to set.
340 */
341DECLINLINE(void) ioapicSetIndex(PIOAPIC pThis, uint32_t uValue)
342{
343 LogFlow(("IOAPIC: ioapicSetIndex: uValue=%#RX32\n", uValue));
344 ASMAtomicWriteU8(&pThis->u8Index, uValue & IOAPIC_INDEX_VALID_WRITE_MASK);
345}
346
347
348/**
349 * Gets the index register.
350 *
351 * @returns The index value.
352 */
353DECLINLINE(uint32_t) ioapicGetIndex(PCIOAPIC pThis)
354{
355 uint32_t const uValue = pThis->u8Index;
356 LogFlow(("IOAPIC: ioapicGetIndex: returns %#x\n", uValue));
357 return uValue;
358}
359
360
361/**
362 * Signals the next pending interrupt for the specified Redirection Table Entry
363 * (RTE).
364 *
365 * @param pThis The IOAPIC instance.
366 * @param idxRte The index of the RTE.
367 *
368 * @remarks It is the responsibility of the caller to verify that an interrupt is
369 * pending for the pin corresponding to the RTE before calling this
370 * function.
371 */
372static void ioapicSignalIntrForRte(PIOAPIC pThis, uint8_t idxRte)
373{
374#ifndef IOAPIC_WITH_PDM_CRITSECT
375 Assert(PDMCritSectIsOwner(&pThis->CritSect));
376#endif
377
378 /* Ensure the RTE isn't masked. */
379 uint64_t const u64Rte = pThis->au64RedirTable[idxRte];
380 if (!IOAPIC_RTE_IS_MASKED(u64Rte))
381 {
382 /* We cannot accept another level-triggered interrupt until remote IRR has been cleared. */
383 uint8_t const u8TriggerMode = IOAPIC_RTE_GET_TRIGGER_MODE(u64Rte);
384 if (u8TriggerMode == IOAPIC_RTE_TRIGGER_MODE_LEVEL)
385 {
386 uint8_t const u8RemoteIrr = IOAPIC_RTE_GET_REMOTE_IRR(u64Rte);
387 if (u8RemoteIrr)
388 {
389 STAM_COUNTER_INC(&pThis->StatSuppressedLevelIntr);
390 return;
391 }
392 }
393
394 uint8_t const u8Vector = IOAPIC_RTE_GET_VECTOR(u64Rte);
395 uint8_t const u8DeliveryMode = IOAPIC_RTE_GET_DELIVERY_MODE(u64Rte);
396 uint8_t const u8DestMode = IOAPIC_RTE_GET_DEST_MODE(u64Rte);
397 uint8_t const u8Polarity = IOAPIC_RTE_GET_POLARITY(u64Rte);
398 uint8_t const u8Dest = IOAPIC_RTE_GET_DEST(u64Rte);
399 uint32_t const u32TagSrc = pThis->au32TagSrc[idxRte];
400
401 Log2(("IOAPIC: Signaling %s-triggered interrupt. Dest=%#x DestMode=%s Vector=%#x (%u)\n",
402 u8TriggerMode == IOAPIC_RTE_TRIGGER_MODE_EDGE ? "edge" : "level", u8Dest,
403 u8DestMode == IOAPIC_RTE_DEST_MODE_PHYSICAL ? "physical" : "logical", u8Vector, u8Vector));
404
405 /*
406 * Deliver to the local APIC via the system/3-wire-APIC bus.
407 */
408 int rc = pThis->CTX_SUFF(pIoApicHlp)->pfnApicBusDeliver(pThis->CTX_SUFF(pDevIns),
409 u8Dest,
410 u8DestMode,
411 u8DeliveryMode,
412 u8Vector,
413 u8Polarity,
414 u8TriggerMode,
415 u32TagSrc);
416 /* Can't reschedule to R3. */
417 Assert(rc == VINF_SUCCESS || rc == VERR_APIC_INTR_DISCARDED);
418#ifdef DEBUG_ramshankar
419 if (rc == VERR_APIC_INTR_DISCARDED)
420 AssertMsgFailed(("APIC: Interrupt discarded u8Vector=%#x (%u) u64Rte=%#RX64\n", u8Vector, u8Vector, u64Rte));
421#endif
422
423 /*
424 * For level-triggered interrupts, we set the remote IRR bit to indicate
425 * the local APIC has accepted the interrupt.
426 *
427 * For edge-triggered interrupts, we should not clear the IRR bit as it
428 * should remain intact to reflect the state of the interrupt line.
429 * The device will explicitly transition to inactive state via the
430 * ioapicSetIrq() callback.
431 */
432 if ( u8TriggerMode == IOAPIC_RTE_TRIGGER_MODE_LEVEL
433 && rc == VINF_SUCCESS)
434 {
435 Assert(u8TriggerMode == IOAPIC_RTE_TRIGGER_MODE_LEVEL);
436 pThis->au64RedirTable[idxRte] |= IOAPIC_RTE_REMOTE_IRR;
437 STAM_COUNTER_INC(&pThis->StatLevelIrqSent);
438 }
439 }
440}
441
442
443/**
444 * Gets the redirection table entry.
445 *
446 * @returns The redirection table entry.
447 * @param pThis Pointer to the IOAPIC instance.
448 * @param uIndex The index value.
449 */
450DECLINLINE(uint32_t) ioapicGetRedirTableEntry(PCIOAPIC pThis, uint32_t uIndex)
451{
452 uint8_t const idxRte = (uIndex - IOAPIC_INDIRECT_INDEX_REDIR_TBL_START) >> 1;
453 uint32_t uValue;
454 if (!(uIndex & 1))
455 uValue = RT_LO_U32(pThis->au64RedirTable[idxRte]) & RT_LO_U32(pThis->u64RteReadMask);
456 else
457 uValue = RT_HI_U32(pThis->au64RedirTable[idxRte]) & RT_HI_U32(pThis->u64RteReadMask);
458
459 LogFlow(("IOAPIC: ioapicGetRedirTableEntry: uIndex=%#RX32 idxRte=%u returns %#RX32\n", uIndex, idxRte, uValue));
460 return uValue;
461}
462
463
464/**
465 * Sets the redirection table entry.
466 *
467 * @param pThis Pointer to the IOAPIC instance.
468 * @param uIndex The index value.
469 * @param uValue The value to set.
470 */
471static int ioapicSetRedirTableEntry(PIOAPIC pThis, uint32_t uIndex, uint32_t uValue)
472{
473 uint8_t const idxRte = (uIndex - IOAPIC_INDIRECT_INDEX_REDIR_TBL_START) >> 1;
474 AssertMsg(idxRte < RT_ELEMENTS(pThis->au64RedirTable), ("Invalid index %u, expected <= %u\n", idxRte,
475 RT_ELEMENTS(pThis->au64RedirTable)));
476
477 int rc = IOAPIC_LOCK(pThis, VINF_IOM_R3_MMIO_WRITE);
478 if (rc == VINF_SUCCESS)
479 {
480 /*
481 * Write the low or high 32-bit value into the specified 64-bit RTE register,
482 * update only the valid, writable bits.
483 *
484 * We need to preserve the read-only bits as it can have dire consequences
485 * otherwise, see @bugref{8386#c24}.
486 */
487 uint64_t const u64Rte = pThis->au64RedirTable[idxRte];
488 if (!(uIndex & 1))
489 {
490 uint32_t const u32RtePreserveLo = RT_LO_U32(u64Rte) & ~RT_LO_U32(pThis->u64RteWriteMask);
491 uint32_t const u32RteNewLo = (uValue & RT_LO_U32(pThis->u64RteWriteMask)) | u32RtePreserveLo;
492 uint64_t const u64RteHi = u64Rte & UINT64_C(0xffffffff00000000);
493 pThis->au64RedirTable[idxRte] = u64RteHi | u32RteNewLo;
494 }
495 else
496 {
497 uint32_t const u32RtePreserveHi = RT_HI_U32(u64Rte) & ~RT_HI_U32(pThis->u64RteWriteMask);
498 uint32_t const u32RteLo = RT_LO_U32(u64Rte);
499 uint64_t const u64RteNewHi = ((uint64_t)((uValue & RT_HI_U32(pThis->u64RteWriteMask)) | u32RtePreserveHi) << 32);
500 pThis->au64RedirTable[idxRte] = u64RteNewHi | u32RteLo;
501 }
502
503 /*
504 * Signal the next pending interrupt for this RTE.
505 */
506 uint32_t const uPinMask = UINT32_C(1) << idxRte;
507 if (pThis->uIrr & uPinMask)
508 ioapicSignalIntrForRte(pThis, idxRte);
509
510 IOAPIC_UNLOCK(pThis);
511 LogFlow(("IOAPIC: ioapicSetRedirTableEntry: uIndex=%#RX32 idxRte=%u uValue=%#RX32\n", uIndex, idxRte, uValue));
512 }
513 else
514 STAM_COUNTER_INC(&pThis->StatSetRteContention);
515
516 return rc;
517}
518
519
520/**
521 * Gets the data register.
522 *
523 * @returns The data value.
524 * @param pThis Pointer to the IOAPIC instance.
525 */
526static uint32_t ioapicGetData(PCIOAPIC pThis)
527{
528 uint8_t const uIndex = pThis->u8Index;
529 if ( uIndex >= IOAPIC_INDIRECT_INDEX_REDIR_TBL_START
530 && uIndex <= pThis->u8LastRteRegIdx)
531 return ioapicGetRedirTableEntry(pThis, uIndex);
532
533 uint32_t uValue;
534 switch (uIndex)
535 {
536 case IOAPIC_INDIRECT_INDEX_ID:
537 uValue = ioapicGetId(pThis);
538 break;
539
540 case IOAPIC_INDIRECT_INDEX_VERSION:
541 uValue = ioapicGetVersion(pThis);
542 break;
543
544 case IOAPIC_INDIRECT_INDEX_ARB:
545 if (pThis->u8ApicVer == IOAPIC_VERSION_82093AA)
546 {
547 uValue = ioapicGetArb();
548 break;
549 }
550 RT_FALL_THRU();
551
552 default:
553 uValue = UINT32_C(0xffffffff);
554 Log2(("IOAPIC: Attempt to read register at invalid index %#x\n", uIndex));
555 break;
556 }
557 return uValue;
558}
559
560
561/**
562 * Sets the data register.
563 *
564 * @param pThis Pointer to the IOAPIC instance.
565 * @param uValue The value to set.
566 */
567static int ioapicSetData(PIOAPIC pThis, uint32_t uValue)
568{
569 uint8_t const uIndex = pThis->u8Index;
570 LogFlow(("IOAPIC: ioapicSetData: uIndex=%#x uValue=%#RX32\n", uIndex, uValue));
571
572 if ( uIndex >= IOAPIC_INDIRECT_INDEX_REDIR_TBL_START
573 && uIndex <= pThis->u8LastRteRegIdx)
574 return ioapicSetRedirTableEntry(pThis, uIndex, uValue);
575
576 if (uIndex == IOAPIC_INDIRECT_INDEX_ID)
577 ioapicSetId(pThis, uValue);
578 else
579 Log2(("IOAPIC: ioapicSetData: Invalid index %#RX32, ignoring write request with uValue=%#RX32\n", uIndex, uValue));
580
581 return VINF_SUCCESS;
582}
583
584
585/**
586 * @interface_method_impl{PDMIOAPICREG,pfnSetEoiR3}
587 */
588PDMBOTHCBDECL(int) ioapicSetEoi(PPDMDEVINS pDevIns, uint8_t u8Vector)
589{
590 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
591 STAM_COUNTER_INC(&pThis->CTX_SUFF_Z(StatSetEoi));
592 LogFlow(("IOAPIC: ioapicSetEoi: u8Vector=%#x (%u)\n", u8Vector, u8Vector));
593
594 bool fRemoteIrrCleared = false;
595 int rc = IOAPIC_LOCK(pThis, VINF_IOM_R3_MMIO_WRITE);
596 if (rc == VINF_SUCCESS)
597 {
598 for (uint8_t idxRte = 0; idxRte < RT_ELEMENTS(pThis->au64RedirTable); idxRte++)
599 {
600 uint64_t const u64Rte = pThis->au64RedirTable[idxRte];
601 if (IOAPIC_RTE_GET_VECTOR(u64Rte) == u8Vector)
602 {
603#ifdef DEBUG_ramshankar
604 /* This assertion may trigger when restoring saved-states created using the old, incorrect I/O APIC code. */
605 Assert(IOAPIC_RTE_GET_REMOTE_IRR(u64Rte));
606#endif
607 pThis->au64RedirTable[idxRte] &= ~IOAPIC_RTE_REMOTE_IRR;
608 fRemoteIrrCleared = true;
609 STAM_COUNTER_INC(&pThis->StatEoiReceived);
610 Log2(("IOAPIC: ioapicSetEoi: Cleared remote IRR, idxRte=%u vector=%#x (%u)\n", idxRte, u8Vector, u8Vector));
611
612 /*
613 * Signal the next pending interrupt for this RTE.
614 */
615 uint32_t const uPinMask = UINT32_C(1) << idxRte;
616 if (pThis->uIrr & uPinMask)
617 ioapicSignalIntrForRte(pThis, idxRte);
618 }
619 }
620
621 IOAPIC_UNLOCK(pThis);
622 AssertMsg(fRemoteIrrCleared, ("Failed to clear remote IRR for vector %#x (%u)\n", u8Vector, u8Vector));
623 }
624 else
625 STAM_COUNTER_INC(&pThis->StatEoiContention);
626
627 return rc;
628}
629
630
631/**
632 * @interface_method_impl{PDMIOAPICREG,pfnSetIrqR3}
633 */
634PDMBOTHCBDECL(void) ioapicSetIrq(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)
635{
636#define IOAPIC_ASSERT_IRQ(a_idxRte, a_PinMask) do { \
637 pThis->au32TagSrc[(a_idxRte)] = !pThis->au32TagSrc[(a_idxRte)] ? uTagSrc : RT_BIT_32(31); \
638 pThis->uIrr |= a_PinMask; \
639 ioapicSignalIntrForRte(pThis, (a_idxRte)); \
640 } while (0)
641
642 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
643 LogFlow(("IOAPIC: ioapicSetIrq: iIrq=%d iLevel=%d uTagSrc=%#x\n", iIrq, iLevel, uTagSrc));
644
645 STAM_COUNTER_INC(&pThis->CTX_SUFF_Z(StatSetIrq));
646
647 if (RT_LIKELY(iIrq >= 0 && iIrq < (int)RT_ELEMENTS(pThis->au64RedirTable)))
648 {
649 int rc = IOAPIC_LOCK(pThis, VINF_SUCCESS);
650 AssertRC(rc);
651
652 uint8_t const idxRte = iIrq;
653 uint32_t const uPinMask = UINT32_C(1) << idxRte;
654 uint32_t const u32RteLo = RT_LO_U32(pThis->au64RedirTable[idxRte]);
655 uint8_t const u8TriggerMode = IOAPIC_RTE_GET_TRIGGER_MODE(u32RteLo);
656
657 bool fActive = RT_BOOL(iLevel & 1);
658 /** @todo Polarity is busted elsewhere, we need to fix that
659 * first. See @bugref{8386#c7}. */
660#if 0
661 uint8_t const u8Polarity = IOAPIC_RTE_GET_POLARITY(u32RteLo);
662 fActive ^= u8Polarity; */
663#endif
664 if (!fActive)
665 {
666 pThis->uIrr &= ~uPinMask;
667 IOAPIC_UNLOCK(pThis);
668 return;
669 }
670
671 bool const fFlipFlop = ((iLevel & PDM_IRQ_LEVEL_FLIP_FLOP) == PDM_IRQ_LEVEL_FLIP_FLOP);
672 uint32_t const uPrevIrr = pThis->uIrr & uPinMask;
673 if (!fFlipFlop)
674 {
675 if (u8TriggerMode == IOAPIC_RTE_TRIGGER_MODE_EDGE)
676 {
677 /*
678 * For edge-triggered interrupts, we need to act only on a low to high edge transition.
679 * See ICH9 spec. 13.5.7 "REDIR_TBL: Redirection Table (LPC I/F-D31:F0)".
680 */
681 if (!uPrevIrr)
682 IOAPIC_ASSERT_IRQ(idxRte, uPinMask);
683 else
684 {
685 STAM_COUNTER_INC(&pThis->StatRedundantEdgeIntr);
686 Log2(("IOAPIC: Redundant edge-triggered interrupt %#x (%u)\n", idxRte, idxRte));
687 }
688 }
689 else
690 {
691 Assert(u8TriggerMode == IOAPIC_RTE_TRIGGER_MODE_LEVEL);
692
693 /*
694 * For level-triggered interrupts, redundant interrupts are not a problem
695 * and will eventually be delivered anyway after an EOI, but our PDM devices
696 * should not typically call us with no change to the level.
697 */
698 if (!uPrevIrr)
699 { /* likely */ }
700 else
701 {
702 STAM_COUNTER_INC(&pThis->StatRedundantLevelIntr);
703 Log2(("IOAPIC: Redundant level-triggered interrupt %#x (%u)\n", idxRte, idxRte));
704 }
705
706 IOAPIC_ASSERT_IRQ(idxRte, uPinMask);
707 }
708 }
709 else
710 {
711 /*
712 * The device is flip-flopping the interrupt line, which implies we should de-assert
713 * and assert the interrupt line. The interrupt line is left in the asserted state
714 * after a flip-flop request. The de-assert is a NOP wrts to signaling an interrupt
715 * hence just the assert is done.
716 */
717 IOAPIC_ASSERT_IRQ(idxRte, uPinMask);
718 }
719
720 IOAPIC_UNLOCK(pThis);
721 }
722#undef IOAPIC_ASSERT_IRQ
723}
724
725
726/**
727 * @interface_method_impl{PDMIOAPICREG,pfnSendMsiR3}
728 */
729PDMBOTHCBDECL(void) ioapicSendMsi(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t uValue, uint32_t uTagSrc)
730{
731 PCIOAPIC pThis = PDMINS_2_DATA(pDevIns, PCIOAPIC);
732 LogFlow(("IOAPIC: ioapicSendMsi: GCPhys=%#RGp uValue=%#RX32\n", GCPhys, uValue));
733
734 /*
735 * Parse the message from the physical address.
736 * See Intel spec. 10.11.1 "Message Address Register Format".
737 */
738 uint8_t const u8DestAddr = (GCPhys & VBOX_MSI_ADDR_DEST_ID_MASK) >> VBOX_MSI_ADDR_DEST_ID_SHIFT;
739 uint8_t const u8DestMode = (GCPhys >> VBOX_MSI_ADDR_DEST_MODE_SHIFT) & 0x1;
740 /** @todo Check if we need to implement Redirection Hint Indicator. */
741 /* uint8_t const uRedirectHint = (GCPhys >> VBOX_MSI_ADDR_REDIRECTION_SHIFT) & 0x1; */
742
743 /*
744 * Parse the message data.
745 * See Intel spec. 10.11.2 "Message Data Register Format".
746 */
747 uint8_t const u8Vector = (uValue & VBOX_MSI_DATA_VECTOR_MASK) >> VBOX_MSI_DATA_VECTOR_SHIFT;
748 uint8_t const u8TriggerMode = (uValue >> VBOX_MSI_DATA_TRIGGER_SHIFT) & 0x1;
749 uint8_t const u8DeliveryMode = (uValue >> VBOX_MSI_DATA_DELIVERY_MODE_SHIFT) & 0x7;
750
751 /*
752 * Deliver to the local APIC via the system/3-wire-APIC bus.
753 */
754 int rc = pThis->CTX_SUFF(pIoApicHlp)->pfnApicBusDeliver(pDevIns,
755 u8DestAddr,
756 u8DestMode,
757 u8DeliveryMode,
758 u8Vector,
759 0 /* u8Polarity - N/A */,
760 u8TriggerMode,
761 uTagSrc);
762 /* Can't reschedule to R3. */
763 Assert(rc == VINF_SUCCESS || rc == VERR_APIC_INTR_DISCARDED); NOREF(rc);
764}
765
766
767/**
768 * @callback_method_impl{FNIOMMMIOREAD}
769 */
770PDMBOTHCBDECL(int) ioapicMmioRead(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb)
771{
772 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
773 STAM_COUNTER_INC(&pThis->CTX_SUFF_Z(StatMmioRead));
774 Assert(cb == 4); RT_NOREF_PV(cb); /* registered for dwords only */
775 RT_NOREF_PV(pvUser);
776
777 int rc = VINF_SUCCESS;
778 uint32_t *puValue = (uint32_t *)pv;
779 uint32_t offReg = GCPhysAddr & IOAPIC_MMIO_REG_MASK;
780 switch (offReg)
781 {
782 case IOAPIC_DIRECT_OFF_INDEX:
783 *puValue = ioapicGetIndex(pThis);
784 break;
785
786 case IOAPIC_DIRECT_OFF_DATA:
787 *puValue = ioapicGetData(pThis);
788 break;
789
790 default:
791 Log2(("IOAPIC: ioapicMmioRead: Invalid offset. GCPhysAddr=%#RGp offReg=%#x\n", GCPhysAddr, offReg));
792 rc = VINF_IOM_MMIO_UNUSED_FF;
793 break;
794 }
795
796 LogFlow(("IOAPIC: ioapicMmioRead: offReg=%#x, returns %#RX32\n", offReg, *puValue));
797 return rc;
798}
799
800
801/**
802 * @callback_method_impl{FNIOMMMIOWRITE}
803 */
804PDMBOTHCBDECL(int) ioapicMmioWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void const *pv, unsigned cb)
805{
806 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
807 RT_NOREF_PV(pvUser);
808
809 STAM_COUNTER_INC(&pThis->CTX_SUFF_Z(StatMmioWrite));
810
811 Assert(!(GCPhysAddr & 3));
812 Assert(cb == 4); RT_NOREF_PV(cb); /* registered for dwords only */
813
814 uint32_t const uValue = *(uint32_t const *)pv;
815 uint32_t const offReg = GCPhysAddr & IOAPIC_MMIO_REG_MASK;
816
817 LogFlow(("IOAPIC: ioapicMmioWrite: pThis=%p GCPhysAddr=%#RGp cb=%u uValue=%#RX32\n", pThis, GCPhysAddr, cb, uValue));
818 int rc = VINF_SUCCESS;
819 switch (offReg)
820 {
821 case IOAPIC_DIRECT_OFF_INDEX:
822 ioapicSetIndex(pThis, uValue);
823 break;
824
825 case IOAPIC_DIRECT_OFF_DATA:
826 rc = ioapicSetData(pThis, uValue);
827 break;
828
829 case IOAPIC_DIRECT_OFF_EOI:
830 if (pThis->u8ApicVer == IOAPIC_VERSION_ICH9)
831 rc = ioapicSetEoi(pDevIns, uValue);
832 else
833 Log(("IOAPIC: ioapicMmioWrite: Write to EOI register ignored!\n"));
834 break;
835
836 default:
837 Log2(("IOAPIC: ioapicMmioWrite: Invalid offset. GCPhysAddr=%#RGp offReg=%#x\n", GCPhysAddr, offReg));
838 break;
839 }
840
841 return rc;
842}
843
844
845#ifdef IN_RING3
846
847/** @interface_method_impl{DBGFREGDESC,pfnGet} */
848static DECLCALLBACK(int) ioapicDbgReg_GetIndex(void *pvUser, PCDBGFREGDESC pDesc, PDBGFREGVAL pValue)
849{
850 RT_NOREF(pDesc);
851 pValue->u32 = ioapicGetIndex(PDMINS_2_DATA((PPDMDEVINS)pvUser, PCIOAPIC));
852 return VINF_SUCCESS;
853}
854
855
856/** @interface_method_impl{DBGFREGDESC,pfnSet} */
857static DECLCALLBACK(int) ioapicDbgReg_SetIndex(void *pvUser, PCDBGFREGDESC pDesc, PCDBGFREGVAL pValue, PCDBGFREGVAL pfMask)
858{
859 RT_NOREF(pDesc, pfMask);
860 ioapicSetIndex(PDMINS_2_DATA((PPDMDEVINS)pvUser, PIOAPIC), pValue->u8);
861 return VINF_SUCCESS;
862}
863
864
865/** @interface_method_impl{DBGFREGDESC,pfnGet} */
866static DECLCALLBACK(int) ioapicDbgReg_GetData(void *pvUser, PCDBGFREGDESC pDesc, PDBGFREGVAL pValue)
867{
868 RT_NOREF(pDesc);
869 pValue->u32 = ioapicGetData((PDMINS_2_DATA((PPDMDEVINS)pvUser, PCIOAPIC)));
870 return VINF_SUCCESS;
871}
872
873
874/** @interface_method_impl{DBGFREGDESC,pfnSet} */
875static DECLCALLBACK(int) ioapicDbgReg_SetData(void *pvUser, PCDBGFREGDESC pDesc, PCDBGFREGVAL pValue, PCDBGFREGVAL pfMask)
876{
877 RT_NOREF(pDesc, pfMask);
878 return ioapicSetData(PDMINS_2_DATA((PPDMDEVINS)pvUser, PIOAPIC), pValue->u32);
879}
880
881
882/** @interface_method_impl{DBGFREGDESC,pfnGet} */
883static DECLCALLBACK(int) ioapicDbgReg_GetVersion(void *pvUser, PCDBGFREGDESC pDesc, PDBGFREGVAL pValue)
884{
885 PCIOAPIC pThis = PDMINS_2_DATA((PPDMDEVINS)pvUser, PCIOAPIC);
886 RT_NOREF(pDesc);
887 pValue->u32 = ioapicGetVersion(pThis);
888 return VINF_SUCCESS;
889}
890
891
892/** @interface_method_impl{DBGFREGDESC,pfnGet} */
893static DECLCALLBACK(int) ioapicDbgReg_GetArb(void *pvUser, PCDBGFREGDESC pDesc, PDBGFREGVAL pValue)
894{
895 RT_NOREF(pvUser, pDesc);
896 pValue->u32 = ioapicGetArb();
897 return VINF_SUCCESS;
898}
899
900
901/** @interface_method_impl{DBGFREGDESC,pfnGet} */
902static DECLCALLBACK(int) ioapicDbgReg_GetRte(void *pvUser, PCDBGFREGDESC pDesc, PDBGFREGVAL pValue)
903{
904 PCIOAPIC pThis = PDMINS_2_DATA((PPDMDEVINS)pvUser, PCIOAPIC);
905 Assert(pDesc->offRegister < RT_ELEMENTS(pThis->au64RedirTable));
906 pValue->u64 = pThis->au64RedirTable[pDesc->offRegister];
907 return VINF_SUCCESS;
908}
909
910
911/** @interface_method_impl{DBGFREGDESC,pfnSet} */
912static DECLCALLBACK(int) ioapicDbgReg_SetRte(void *pvUser, PCDBGFREGDESC pDesc, PCDBGFREGVAL pValue, PCDBGFREGVAL pfMask)
913{
914 RT_NOREF(pfMask);
915 PIOAPIC pThis = PDMINS_2_DATA((PPDMDEVINS)pvUser, PIOAPIC);
916 /* No locks, no checks, just do it. */
917 Assert(pDesc->offRegister < RT_ELEMENTS(pThis->au64RedirTable));
918 pThis->au64RedirTable[pDesc->offRegister] = pValue->u64;
919 return VINF_SUCCESS;
920}
921
922
923/** IOREDTBLn sub fields. */
924static DBGFREGSUBFIELD const g_aRteSubs[] =
925{
926 { "vector", 0, 8, 0, 0, NULL, NULL },
927 { "dlvr_mode", 8, 3, 0, 0, NULL, NULL },
928 { "dest_mode", 11, 1, 0, 0, NULL, NULL },
929 { "dlvr_status", 12, 1, 0, DBGFREGSUBFIELD_FLAGS_READ_ONLY, NULL, NULL },
930 { "polarity", 13, 1, 0, 0, NULL, NULL },
931 { "remote_irr", 14, 1, 0, DBGFREGSUBFIELD_FLAGS_READ_ONLY, NULL, NULL },
932 { "trigger_mode", 15, 1, 0, 0, NULL, NULL },
933 { "mask", 16, 1, 0, 0, NULL, NULL },
934 { "ext_dest_id", 48, 8, 0, DBGFREGSUBFIELD_FLAGS_READ_ONLY, NULL, NULL },
935 { "dest", 56, 8, 0, 0, NULL, NULL },
936 DBGFREGSUBFIELD_TERMINATOR()
937};
938
939
940/** Register descriptors for DBGF. */
941static DBGFREGDESC const g_aRegDesc[] =
942{
943 { "index", DBGFREG_END, DBGFREGVALTYPE_U8, 0, 0, ioapicDbgReg_GetIndex, ioapicDbgReg_SetIndex, NULL, NULL },
944 { "data", DBGFREG_END, DBGFREGVALTYPE_U32, 0, 0, ioapicDbgReg_GetData, ioapicDbgReg_SetData, NULL, NULL },
945 { "version", DBGFREG_END, DBGFREGVALTYPE_U32, DBGFREG_FLAGS_READ_ONLY, 0, ioapicDbgReg_GetVersion, NULL, NULL, NULL },
946 { "arb", DBGFREG_END, DBGFREGVALTYPE_U32, DBGFREG_FLAGS_READ_ONLY, 0, ioapicDbgReg_GetArb, NULL, NULL, NULL },
947 { "rte0", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 0, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
948 { "rte1", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 1, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
949 { "rte2", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 2, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
950 { "rte3", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 3, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
951 { "rte4", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 4, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
952 { "rte5", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 5, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
953 { "rte6", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 6, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
954 { "rte7", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 7, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
955 { "rte8", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 8, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
956 { "rte9", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 9, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
957 { "rte10", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 10, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
958 { "rte11", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 11, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
959 { "rte12", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 12, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
960 { "rte13", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 13, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
961 { "rte14", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 14, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
962 { "rte15", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 15, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
963 { "rte16", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 16, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
964 { "rte17", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 17, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
965 { "rte18", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 18, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
966 { "rte19", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 19, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
967 { "rte20", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 20, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
968 { "rte21", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 21, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
969 { "rte22", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 22, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
970 { "rte23", DBGFREG_END, DBGFREGVALTYPE_U64, 0, 23, ioapicDbgReg_GetRte, ioapicDbgReg_SetRte, NULL, &g_aRteSubs[0] },
971 DBGFREGDESC_TERMINATOR()
972};
973
974
975/**
976 * @callback_method_impl{FNDBGFHANDLERDEV}
977 */
978static DECLCALLBACK(void) ioapicR3DbgInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
979{
980 RT_NOREF(pszArgs);
981 PCIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
982 LogFlow(("IOAPIC: ioapicR3DbgInfo: pThis=%p pszArgs=%s\n", pThis, pszArgs));
983
984 pHlp->pfnPrintf(pHlp, "I/O APIC at %#010x:\n", IOAPIC_MMIO_BASE_PHYSADDR);
985
986 uint32_t const uId = ioapicGetId(pThis);
987 pHlp->pfnPrintf(pHlp, " ID = %#RX32\n", uId);
988 pHlp->pfnPrintf(pHlp, " ID = %#x\n", IOAPIC_ID_GET_ID(uId));
989
990 uint32_t const uVer = ioapicGetVersion(pThis);
991 pHlp->pfnPrintf(pHlp, " Version = %#RX32\n", uVer);
992 pHlp->pfnPrintf(pHlp, " Version = %#x\n", IOAPIC_VER_GET_VER(uVer));
993 pHlp->pfnPrintf(pHlp, " Pin Assert Reg. Support = %RTbool\n", IOAPIC_VER_HAS_PRQ(uVer));
994 pHlp->pfnPrintf(pHlp, " Max. Redirection Entry = %u\n", IOAPIC_VER_GET_MRE(uVer));
995
996 if (pThis->u8ApicVer == IOAPIC_VERSION_82093AA)
997 {
998 uint32_t const uArb = ioapicGetArb();
999 pHlp->pfnPrintf(pHlp, " Arbitration = %#RX32\n", uArb);
1000 pHlp->pfnPrintf(pHlp, " Arbitration ID = %#x\n", IOAPIC_ARB_GET_ID(uArb));
1001 }
1002
1003 pHlp->pfnPrintf(pHlp, " Current index = %#x\n", ioapicGetIndex(pThis));
1004
1005 pHlp->pfnPrintf(pHlp, " I/O Redirection Table and IRR:\n");
1006 pHlp->pfnPrintf(pHlp, " idx dst_mode dst_addr mask irr trigger rirr polar dlvr_st dlvr_mode vector\n");
1007
1008 for (uint8_t idxRte = 0; idxRte <= pThis->u8MaxRte; idxRte++)
1009 {
1010 static const char * const s_apszDeliveryModes[] =
1011 {
1012 "Fixed ",
1013 "LowPri",
1014 "SMI ",
1015 "Rsvd ",
1016 "NMI ",
1017 "INIT ",
1018 "Rsvd ",
1019 "ExtINT"
1020 };
1021
1022 const uint64_t u64Rte = pThis->au64RedirTable[idxRte];
1023 const char *pszDestMode = IOAPIC_RTE_GET_DEST_MODE(u64Rte) == 0 ? "phys" : "log ";
1024 const uint8_t uDest = IOAPIC_RTE_GET_DEST(u64Rte);
1025 const uint8_t uMask = IOAPIC_RTE_GET_MASK(u64Rte);
1026 const char *pszTriggerMode = IOAPIC_RTE_GET_TRIGGER_MODE(u64Rte) == 0 ? "edge " : "level";
1027 const uint8_t uRemoteIrr = IOAPIC_RTE_GET_REMOTE_IRR(u64Rte);
1028 const char *pszPolarity = IOAPIC_RTE_GET_POLARITY(u64Rte) == 0 ? "acthi" : "actlo";
1029 const char *pszDeliveryStatus = IOAPIC_RTE_GET_DELIVERY_STATUS(u64Rte) == 0 ? "idle" : "pend";
1030 const uint8_t uDeliveryMode = IOAPIC_RTE_GET_DELIVERY_MODE(u64Rte);
1031 Assert(uDeliveryMode < RT_ELEMENTS(s_apszDeliveryModes));
1032 const char *pszDeliveryMode = s_apszDeliveryModes[uDeliveryMode];
1033 const uint8_t uVector = IOAPIC_RTE_GET_VECTOR(u64Rte);
1034
1035 pHlp->pfnPrintf(pHlp, " %02d %s %02x %u %u %s %u %s %s %s %3u (%016llx)\n",
1036 idxRte,
1037 pszDestMode,
1038 uDest,
1039 uMask,
1040 (pThis->uIrr >> idxRte) & 1,
1041 pszTriggerMode,
1042 uRemoteIrr,
1043 pszPolarity,
1044 pszDeliveryStatus,
1045 pszDeliveryMode,
1046 uVector,
1047 u64Rte);
1048 }
1049}
1050
1051
1052/**
1053 * @copydoc FNSSMDEVSAVEEXEC
1054 */
1055static DECLCALLBACK(int) ioapicR3SaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM)
1056{
1057 PCIOAPIC pThis = PDMINS_2_DATA(pDevIns, PCIOAPIC);
1058 LogFlow(("IOAPIC: ioapicR3SaveExec\n"));
1059
1060 SSMR3PutU32(pSSM, pThis->uIrr);
1061 SSMR3PutU8(pSSM, pThis->u8Id);
1062 SSMR3PutU8(pSSM, pThis->u8Index);
1063 for (uint8_t idxRte = 0; idxRte < RT_ELEMENTS(pThis->au64RedirTable); idxRte++)
1064 SSMR3PutU64(pSSM, pThis->au64RedirTable[idxRte]);
1065
1066 return VINF_SUCCESS;
1067}
1068
1069
1070/**
1071 * @copydoc FNSSMDEVLOADEXEC
1072 */
1073static DECLCALLBACK(int) ioapicR3LoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
1074{
1075 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
1076 LogFlow(("APIC: apicR3LoadExec: uVersion=%u uPass=%#x\n", uVersion, uPass));
1077
1078 Assert(uPass == SSM_PASS_FINAL);
1079 NOREF(uPass);
1080
1081 /* Weed out invalid versions. */
1082 if ( uVersion != IOAPIC_SAVED_STATE_VERSION
1083 && uVersion != IOAPIC_SAVED_STATE_VERSION_VBOX_50)
1084 {
1085 LogRel(("IOAPIC: ioapicR3LoadExec: Invalid/unrecognized saved-state version %u (%#x)\n", uVersion, uVersion));
1086 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
1087 }
1088
1089 if (uVersion == IOAPIC_SAVED_STATE_VERSION)
1090 SSMR3GetU32(pSSM, (uint32_t *)&pThis->uIrr);
1091
1092 SSMR3GetU8(pSSM, (uint8_t *)&pThis->u8Id);
1093 SSMR3GetU8(pSSM, (uint8_t *)&pThis->u8Index);
1094 for (uint8_t idxRte = 0; idxRte < RT_ELEMENTS(pThis->au64RedirTable); idxRte++)
1095 SSMR3GetU64(pSSM, &pThis->au64RedirTable[idxRte]);
1096
1097 return VINF_SUCCESS;
1098}
1099
1100
1101/**
1102 * @interface_method_impl{PDMDEVREG,pfnReset}
1103 */
1104static DECLCALLBACK(void) ioapicR3Reset(PPDMDEVINS pDevIns)
1105{
1106 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
1107 LogFlow(("IOAPIC: ioapicR3Reset: pThis=%p\n", pThis));
1108
1109 /* There might be devices threads calling ioapicSetIrq() in parallel, hence the lock. */
1110 IOAPIC_LOCK(pThis, VERR_IGNORED);
1111
1112 pThis->uIrr = 0;
1113 pThis->u8Index = 0;
1114 pThis->u8Id = 0;
1115
1116 for (uint8_t idxRte = 0; idxRte < RT_ELEMENTS(pThis->au64RedirTable); idxRte++)
1117 {
1118 pThis->au64RedirTable[idxRte] = IOAPIC_RTE_MASK;
1119 pThis->au32TagSrc[idxRte] = 0;
1120 }
1121
1122 IOAPIC_UNLOCK(pThis);
1123}
1124
1125
1126/**
1127 * @interface_method_impl{PDMDEVREG,pfnRelocate}
1128 */
1129static DECLCALLBACK(void) ioapicR3Relocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta)
1130{
1131 RT_NOREF(offDelta);
1132 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
1133 LogFlow(("IOAPIC: ioapicR3Relocate: pThis=%p offDelta=%RGi\n", pThis, offDelta));
1134
1135 pThis->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
1136 pThis->pIoApicHlpRC = pThis->pIoApicHlpR3->pfnGetRCHelpers(pDevIns);
1137}
1138
1139
1140/**
1141 * @interface_method_impl{PDMDEVREG,pfnDestruct}
1142 */
1143static DECLCALLBACK(int) ioapicR3Destruct(PPDMDEVINS pDevIns)
1144{
1145 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
1146 LogFlow(("IOAPIC: ioapicR3Destruct: pThis=%p\n", pThis));
1147 PDMDEV_CHECK_VERSIONS_RETURN_QUIET(pDevIns);
1148
1149# ifndef IOAPIC_WITH_PDM_CRITSECT
1150 /*
1151 * Destroy the RTE critical section.
1152 */
1153 if (PDMCritSectIsInitialized(&pThis->CritSect))
1154 PDMR3CritSectDelete(&pThis->CritSect);
1155# else
1156 RT_NOREF_PV(pThis);
1157# endif
1158
1159 return VINF_SUCCESS;
1160}
1161
1162
1163/**
1164 * @interface_method_impl{PDMDEVREG,pfnConstruct}
1165 */
1166static DECLCALLBACK(int) ioapicR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg)
1167{
1168 RT_NOREF(iInstance);
1169 PIOAPIC pThis = PDMINS_2_DATA(pDevIns, PIOAPIC);
1170 LogFlow(("IOAPIC: ioapicR3Construct: pThis=%p iInstance=%d\n", pThis, iInstance));
1171 Assert(iInstance == 0);
1172
1173 /*
1174 * Initialize the state data.
1175 */
1176 pThis->pDevInsR3 = pDevIns;
1177 pThis->pDevInsR0 = PDMDEVINS_2_R0PTR(pDevIns);
1178 pThis->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
1179
1180 /*
1181 * Validate and read the configuration.
1182 */
1183 PDMDEV_VALIDATE_CONFIG_RETURN(pDevIns, "NumCPUs|RZEnabled|ChipType", "");
1184
1185 /* The number of CPUs is currently unused, but left in CFGM and saved-state in case an ID of 0 is
1186 upsets some guest which we haven't yet tested. */
1187 uint32_t cCpus;
1188 int rc = CFGMR3QueryU32Def(pCfg, "NumCPUs", &cCpus, 1);
1189 if (RT_FAILURE(rc))
1190 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Failed to query integer value \"NumCPUs\""));
1191 pThis->cCpus = (uint8_t)cCpus;
1192
1193 bool fRZEnabled;
1194 rc = CFGMR3QueryBoolDef(pCfg, "RZEnabled", &fRZEnabled, true);
1195 if (RT_FAILURE(rc))
1196 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Failed to query boolean value \"RZEnabled\""));
1197
1198 char szChipType[16];
1199 rc = CFGMR3QueryStringDef(pCfg, "ChipType", &szChipType[0], sizeof(szChipType), "ICH9");
1200 if (RT_FAILURE(rc))
1201 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Failed to query string value \"ChipType\""));
1202
1203 if (!strcmp(szChipType, "ICH9"))
1204 {
1205 /* Newer 2007-ish I/O APIC integrated into ICH southbridges. */
1206 pThis->u8ApicVer = IOAPIC_VERSION_ICH9;
1207 pThis->u8IdMask = 0xff;
1208 pThis->u8MaxRte = IOAPIC_MAX_RTE_INDEX;
1209 pThis->u8LastRteRegIdx = IOAPIC_INDIRECT_INDEX_RTE_END;
1210 pThis->u64RteWriteMask = IOAPIC_RTE_VALID_WRITE_MASK_ICH9;
1211 pThis->u64RteReadMask = IOAPIC_RTE_VALID_READ_MASK_ICH9;
1212 }
1213 else if (!strcmp(szChipType, "82093AA"))
1214 {
1215 /* Older 1995-ish discrete I/O APIC, used in P6 class systems. */
1216 pThis->u8ApicVer = IOAPIC_VERSION_82093AA;
1217 pThis->u8IdMask = 0x0f;
1218 pThis->u8MaxRte = IOAPIC_MAX_RTE_INDEX;
1219 pThis->u8LastRteRegIdx = IOAPIC_INDIRECT_INDEX_RTE_END;
1220 pThis->u64RteWriteMask = IOAPIC_RTE_VALID_WRITE_MASK_82093AA;
1221 pThis->u64RteReadMask = IOAPIC_RTE_VALID_READ_MASK_82093AA;
1222 }
1223 else if (!strcmp(szChipType, "82379AB"))
1224 {
1225 /* Even older 1993-ish I/O APIC built into SIO.A, used in EISA and early PCI systems. */
1226 /* Exact same version and behavior as 82093AA, only the number of RTEs is different. */
1227 pThis->u8ApicVer = IOAPIC_VERSION_82093AA;
1228 pThis->u8IdMask = 0x0f;
1229 pThis->u8MaxRte = IOAPIC_REDUCED_MAX_RTE_INDEX;
1230 pThis->u8LastRteRegIdx = IOAPIC_REDUCED_INDIRECT_INDEX_RTE_END;
1231 pThis->u64RteWriteMask = IOAPIC_RTE_VALID_WRITE_MASK_82093AA;
1232 pThis->u64RteReadMask = IOAPIC_RTE_VALID_READ_MASK_82093AA;
1233 }
1234 else
1235 {
1236 return PDMDevHlpVMSetError(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES, RT_SRC_POS,
1237 N_("I/O APIC configuration error: The \"ChipType\" value \"%s\" is unsupported"),
1238 szChipType);
1239 }
1240 Log2(("IOAPIC: cCpus=%u fRZEnabled=%RTbool szChipType=%s\n", cCpus, fRZEnabled, szChipType));
1241
1242 /*
1243 * We will use our own critical section for the IOAPIC device.
1244 */
1245 rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));
1246 AssertRCReturn(rc, rc);
1247
1248# ifndef IOAPIC_WITH_PDM_CRITSECT
1249 /*
1250 * Setup the critical section to protect concurrent writes to the RTEs.
1251 */
1252 rc = PDMDevHlpCritSectInit(pDevIns, &pThis->CritSect, RT_SRC_POS, "IOAPIC");
1253 if (RT_FAILURE(rc))
1254 return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS, N_("IOAPIC: Failed to create critical section. rc=%Rrc"), rc);
1255# endif
1256
1257 /*
1258 * Register the IOAPIC.
1259 */
1260 PDMIOAPICREG IoApicReg;
1261 RT_ZERO(IoApicReg);
1262 IoApicReg.u32Version = PDM_IOAPICREG_VERSION;
1263 IoApicReg.pfnSetIrqR3 = ioapicSetIrq;
1264 IoApicReg.pfnSendMsiR3 = ioapicSendMsi;
1265 IoApicReg.pfnSetEoiR3 = ioapicSetEoi;
1266 if (fRZEnabled)
1267 {
1268 IoApicReg.pszSetIrqRC = "ioapicSetIrq";
1269 IoApicReg.pszSetIrqR0 = "ioapicSetIrq";
1270
1271 IoApicReg.pszSendMsiRC = "ioapicSendMsi";
1272 IoApicReg.pszSendMsiR0 = "ioapicSendMsi";
1273
1274 IoApicReg.pszSetEoiRC = "ioapicSetEoi";
1275 IoApicReg.pszSetEoiR0 = "ioapicSetEoi";
1276 }
1277 rc = PDMDevHlpIOAPICRegister(pDevIns, &IoApicReg, &pThis->pIoApicHlpR3);
1278 if (RT_FAILURE(rc))
1279 {
1280 AssertMsgFailed(("IOAPIC: PDMDevHlpIOAPICRegister failed! rc=%Rrc\n", rc));
1281 return rc;
1282 }
1283
1284 /*
1285 * Register MMIO callbacks.
1286 */
1287 rc = PDMDevHlpMMIORegister(pDevIns, IOAPIC_MMIO_BASE_PHYSADDR, IOAPIC_MMIO_SIZE, pThis,
1288 IOMMMIO_FLAGS_READ_DWORD | IOMMMIO_FLAGS_WRITE_DWORD_ZEROED, ioapicMmioWrite, ioapicMmioRead,
1289 "I/O APIC");
1290 if (RT_SUCCESS(rc))
1291 {
1292 if (fRZEnabled)
1293 {
1294 pThis->pIoApicHlpRC = pThis->pIoApicHlpR3->pfnGetRCHelpers(pDevIns);
1295 rc = PDMDevHlpMMIORegisterRC(pDevIns, IOAPIC_MMIO_BASE_PHYSADDR, IOAPIC_MMIO_SIZE, NIL_RTRCPTR /* pvUser */,
1296 "ioapicMmioWrite", "ioapicMmioRead");
1297 AssertRCReturn(rc, rc);
1298
1299 pThis->pIoApicHlpR0 = pThis->pIoApicHlpR3->pfnGetR0Helpers(pDevIns);
1300 rc = PDMDevHlpMMIORegisterR0(pDevIns, IOAPIC_MMIO_BASE_PHYSADDR, IOAPIC_MMIO_SIZE, NIL_RTR0PTR /* pvUser */,
1301 "ioapicMmioWrite", "ioapicMmioRead");
1302 AssertRCReturn(rc, rc);
1303 }
1304 }
1305 else
1306 {
1307 LogRel(("IOAPIC: PDMDevHlpMMIORegister failed! rc=%Rrc\n", rc));
1308 return rc;
1309 }
1310
1311 /*
1312 * Register saved-state callbacks.
1313 */
1314 rc = PDMDevHlpSSMRegister(pDevIns, IOAPIC_SAVED_STATE_VERSION, sizeof(*pThis), ioapicR3SaveExec, ioapicR3LoadExec);
1315 if (RT_FAILURE(rc))
1316 {
1317 LogRel(("IOAPIC: PDMDevHlpSSMRegister failed! rc=%Rrc\n", rc));
1318 return rc;
1319 }
1320
1321 /*
1322 * Register debugger info callback.
1323 */
1324 rc = PDMDevHlpDBGFInfoRegister(pDevIns, "ioapic", "Display IO APIC state.", ioapicR3DbgInfo);
1325 AssertRCReturn(rc, rc);
1326
1327 /*
1328 * Register debugger register access.
1329 */
1330 rc = PDMDevHlpDBGFRegRegister(pDevIns, g_aRegDesc); AssertRC(rc);
1331 AssertRCReturn(rc, rc);
1332
1333# ifdef VBOX_WITH_STATISTICS
1334 /*
1335 * Statistics.
1336 */
1337 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatMmioReadRZ, STAMTYPE_COUNTER, "/Devices/IOAPIC/RZ/MmioReadRZ", STAMUNIT_OCCURENCES, "Number of IOAPIC MMIO reads in RZ.");
1338 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatMmioWriteRZ, STAMTYPE_COUNTER, "/Devices/IOAPIC/RZ/MmioWriteRZ", STAMUNIT_OCCURENCES, "Number of IOAPIC MMIO writes in RZ.");
1339 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSetIrqRZ, STAMTYPE_COUNTER, "/Devices/IOAPIC/RZ/SetIrqRZ", STAMUNIT_OCCURENCES, "Number of IOAPIC SetIrq calls in RZ.");
1340 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSetEoiRZ, STAMTYPE_COUNTER, "/Devices/IOAPIC/RZ/SetEoiRZ", STAMUNIT_OCCURENCES, "Number of IOAPIC SetEoi calls in RZ.");
1341
1342 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatMmioReadR3, STAMTYPE_COUNTER, "/Devices/IOAPIC/R3/MmioReadR3", STAMUNIT_OCCURENCES, "Number of IOAPIC MMIO reads in R3");
1343 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatMmioWriteR3, STAMTYPE_COUNTER, "/Devices/IOAPIC/R3/MmioWriteR3", STAMUNIT_OCCURENCES, "Number of IOAPIC MMIO writes in R3.");
1344 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSetIrqR3, STAMTYPE_COUNTER, "/Devices/IOAPIC/R3/SetIrqR3", STAMUNIT_OCCURENCES, "Number of IOAPIC SetIrq calls in R3.");
1345 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSetEoiR3, STAMTYPE_COUNTER, "/Devices/IOAPIC/R3/SetEoiR3", STAMUNIT_OCCURENCES, "Number of IOAPIC SetEoi calls in R3.");
1346
1347 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatRedundantEdgeIntr, STAMTYPE_COUNTER, "/Devices/IOAPIC/RedundantEdgeIntr", STAMUNIT_OCCURENCES, "Number of redundant edge-triggered interrupts (no IRR change).");
1348 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatRedundantLevelIntr, STAMTYPE_COUNTER, "/Devices/IOAPIC/RedundantLevelIntr", STAMUNIT_OCCURENCES, "Number of redundant level-triggered interrupts (no IRR change).");
1349 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSuppressedLevelIntr, STAMTYPE_COUNTER, "/Devices/IOAPIC/SuppressedLevelIntr", STAMUNIT_OCCURENCES, "Number of suppressed level-triggered interrupts by remote IRR.");
1350
1351 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatEoiContention, STAMTYPE_COUNTER, "/Devices/IOAPIC/CritSect/ContentionSetEoi", STAMUNIT_OCCURENCES, "Number of times the critsect is busy during EOI writes causing trips to R3.");
1352 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSetRteContention, STAMTYPE_COUNTER, "/Devices/IOAPIC/CritSect/ContentionSetRte", STAMUNIT_OCCURENCES, "Number of times the critsect is busy during RTE writes causing trips to R3.");
1353
1354 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatLevelIrqSent, STAMTYPE_COUNTER, "/Devices/IOAPIC/LevelIntr/Sent", STAMUNIT_OCCURENCES, "Number of level-triggered interrupts sent to the local APIC(s).");
1355 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatEoiReceived, STAMTYPE_COUNTER, "/Devices/IOAPIC/LevelIntr/Recv", STAMUNIT_OCCURENCES, "Number of EOIs received for level-triggered interrupts from the local APIC(s).");
1356# endif
1357
1358 /*
1359 * Init. the device state.
1360 */
1361 LogRel(("IOAPIC: Using implementation 2.0! Chipset type %s\n", szChipType));
1362 ioapicR3Reset(pDevIns);
1363
1364 return VINF_SUCCESS;
1365}
1366
1367
1368/**
1369 * IO APIC device registration structure.
1370 */
1371const PDMDEVREG g_DeviceIOAPIC =
1372{
1373 /* u32Version */
1374 PDM_DEVREG_VERSION,
1375 /* szName */
1376 "ioapic",
1377 /* szRCMod */
1378 "VBoxDDRC.rc",
1379 /* szR0Mod */
1380 "VBoxDDR0.r0",
1381 /* pszDescription */
1382 "I/O Advanced Programmable Interrupt Controller (IO-APIC) Device",
1383 /* fFlags */
1384 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_32_64 | PDM_DEVREG_FLAGS_PAE36
1385 | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0,
1386 /* fClass */
1387 PDM_DEVREG_CLASS_PIC,
1388 /* cMaxInstances */
1389 1,
1390 /* cbInstance */
1391 sizeof(IOAPIC),
1392 /* pfnConstruct */
1393 ioapicR3Construct,
1394 /* pfnDestruct */
1395 ioapicR3Destruct,
1396 /* pfnRelocate */
1397 ioapicR3Relocate,
1398 /* pfnMemSetup */
1399 NULL,
1400 /* pfnPowerOn */
1401 NULL,
1402 /* pfnReset */
1403 ioapicR3Reset,
1404 /* pfnSuspend */
1405 NULL,
1406 /* pfnResume */
1407 NULL,
1408 /* pfnAttach */
1409 NULL,
1410 /* pfnDetach */
1411 NULL,
1412 /* pfnQueryInterface. */
1413 NULL,
1414 /* pfnInitComplete */
1415 NULL,
1416 /* pfnPowerOff */
1417 NULL,
1418 /* pfnSoftReset */
1419 NULL,
1420 /* u32VersionEnd */
1421 PDM_DEVREG_VERSION
1422};
1423
1424#endif /* IN_RING3 */
1425
1426#endif /* !VBOX_DEVICE_STRUCT_TESTCASE */
1427
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette