VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/DevPIC.cpp

Last change on this file was 98103, checked in by vboxsync, 17 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 39.7 KB
RevLine 
[2781]1/* $Id: DevPIC.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
[1]2/** @file
[11261]3 * DevPIC - Intel 8259 Programmable Interrupt Controller (PIC) Device.
[1]4 */
5
6/*
[98103]7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
[1]8 *
[96407]9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
[69498]26 * -------------------------------------------------------------------
[44801]27 *
28 * This code is based on:
29 *
30 * QEMU 8259 interrupt controller emulation
31 *
32 * Copyright (c) 2003-2004 Fabrice Bellard
33 *
34 * Permission is hereby granted, free of charge, to any person obtaining a copy
35 * of this software and associated documentation files (the "Software"), to deal
36 * in the Software without restriction, including without limitation the rights
37 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
38 * copies of the Software, and to permit persons to whom the Software is
39 * furnished to do so, subject to the following conditions:
40 *
41 * The above copyright notice and this permission notice shall be included in
42 * all copies or substantial portions of the Software.
43 *
44 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
47 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
49 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
50 * THE SOFTWARE.
51 *
[1]52 */
53
[44801]54
[57358]55/*********************************************************************************************************************************
56* Header Files *
57*********************************************************************************************************************************/
[1]58#define LOG_GROUP LOG_GROUP_DEV_PIC
[35346]59#include <VBox/vmm/pdmdev.h>
[1]60#include <VBox/log.h>
61#include <iprt/assert.h>
[11265]62#include <iprt/string.h>
[1]63
[35353]64#include "VBoxDD.h"
[1]65
66
[57358]67/*********************************************************************************************************************************
68* Defined Constants And Macros *
69*********************************************************************************************************************************/
[90436]70/** @def PIC_LOCK_RET
[1]71 * Acquires the PDM lock. This is a NOP if locking is disabled. */
[90436]72#define PIC_LOCK_RET(a_pDevIns, a_pThisCC, rcBusy) \
73 do { \
74 int const rcLock = (a_pThisCC)->pPicHlp->pfnLock((a_pDevIns), rcBusy); \
75 if (rcLock == VINF_SUCCESS) \
76 { /* likely */ } \
77 else \
78 return rcLock; \
79 } while (0)
[1]80/** @def PIC_UNLOCK
81 * Releases the PDM lock. This is a NOP if locking is disabled. */
[81914]82#define PIC_UNLOCK(a_pDevIns, a_pThisCC) \
83 (a_pThisCC)->pPicHlp->pfnUnlock((a_pDevIns))
[1]84
85
[81913]86/*********************************************************************************************************************************
87* Structures and Typedefs *
88*********************************************************************************************************************************/
[44801]89/**
90 * The instance data of one (1) PIC.
91 */
92typedef struct PICSTATE
93{
[81913]94 uint8_t last_irr; /**< edge detection */
95 uint8_t irr; /**< interrupt request register */
96 uint8_t imr; /**< interrupt mask register */
97 uint8_t isr; /**< interrupt service register */
98 uint8_t priority_add; /**< highest irq priority */
99 uint8_t irq_base;
100 uint8_t read_reg_select;
101 uint8_t poll;
102 uint8_t special_mask;
103 uint8_t init_state;
104 uint8_t auto_eoi;
105 uint8_t rotate_on_auto_eoi;
106 uint8_t special_fully_nested_mode;
107 uint8_t init4; /**< true if 4 byte init */
108 uint8_t elcr; /**< PIIX edge/trigger selection*/
109 uint8_t elcr_mask;
110 /** The IRQ tags and source IDs for each (tracing purposes). */
111 uint32_t auTags[8];
[44801]112 /** The PIC index (0 or 1). */
113 uint8_t idxPic;
[81913]114 uint8_t abAlignment0[7]; /**< Alignment padding. */
[81910]115 /** The two I/O ports at 0x20 or 0xa0. */
116 IOMIOPORTHANDLE hIoPorts0;
117 /** The ELCR I/O port at 0x4d0 or 0x4d1. */
118 IOMIOPORTHANDLE hIoPorts1;
[44801]119} PICSTATE;
[81910]120AssertCompileMemberAlignment(PICSTATE, hIoPorts0, 8);
[44801]121/** Pointer to the state of one PIC. */
122typedef PICSTATE *PPICSTATE;
[40907]123
[1]124
125/**
[81914]126 * The shared PIC device instance data.
[1]127 */
128typedef struct DEVPIC
129{
130 /** The two interrupt controllers. */
[44801]131 PICSTATE aPics[2];
[35073]132 /** Number of release log entries. Used to prevent flooding. */
133 uint32_t cRelLogEntries;
[81914]134 uint32_t u32Padding;
[1]135#ifdef VBOX_WITH_STATISTICS
[81910]136 STAMCOUNTER StatSetIrqRZ;
137 STAMCOUNTER StatSetIrqR3;
[1]138 STAMCOUNTER StatClearedActiveIRQ2;
139 STAMCOUNTER StatClearedActiveMasterIRQ;
140 STAMCOUNTER StatClearedActiveSlaveIRQ;
141#endif
[44801]142} DEVPIC;
[81914]143/** Pointer to the shared PIC instance data. */
[44801]144typedef DEVPIC *PDEVPIC;
[1]145
[490]146
[81914]147/**
148 * The PIC device instance data for ring-3.
149 */
150typedef struct DEVPICR3
151{
152 /** Pointer to the PIC ring-3 helpers. */
153 R3PTRTYPE(PCPDMPICHLP) pPicHlp;
154} DEVPICR3;
155/** Pointer to the ring-3 PIC instance data. */
156typedef DEVPICR3 *PDEVPICR3;
157
158
159/**
160 * The PIC device instance data for ring-0.
161 */
162typedef struct DEVPICR0
163{
164 /** Pointer to the PIC ring-0 helpers. */
165 R0PTRTYPE(PCPDMPICHLP) pPicHlp;
166} DEVPICR0;
167/** Pointer to the ring-0 PIC instance data. */
168typedef DEVPICR0 *PDEVPICR0;
169
170
171/**
172 * The PIC device instance data for raw-mode.
173 */
174typedef struct DEVPICRC
175{
176 /** Pointer to the PIC raw-mode helpers. */
177 RCPTRTYPE(PCPDMPICHLP) pPicHlp;
178} DEVPICRC;
179/** Pointer to the raw-mode PIC instance data. */
180typedef DEVPICRC *PDEVPICRC;
181
182
183/** The PIC instance data for the current context. */
184typedef CTX_SUFF(DEVPIC) DEVPICCC;
185/** Pointer to the PIC instance data for the current context. */
186typedef CTX_SUFF(PDEVPIC) PDEVPICCC;
187
188
189
[81913]190#ifndef VBOX_DEVICE_STRUCT_TESTCASE /* The rest of the file! */
191
[1]192#ifdef LOG_ENABLED
[44801]193DECLINLINE(void) DumpPICState(PPICSTATE pPic, const char *pszFn)
[1]194{
195 Log2(("%s: pic%d: elcr=%x last_irr=%x irr=%x imr=%x isr=%x irq_base=%x\n",
[81913]196 pszFn, pPic->idxPic, pPic->elcr, pPic->last_irr, pPic->irr, pPic->imr, pPic->isr, pPic->irq_base));
[1]197}
198#else
[11264]199# define DumpPICState(pThis, szFn) do { } while (0)
[1]200#endif
201
202/* set irq level. If an edge is detected, then the IRR is set to 1 */
[44801]203DECLINLINE(void) pic_set_irq1(PPICSTATE pPic, int irq, int level, uint32_t uTagSrc)
[1]204{
205 Log(("pic_set_irq1: irq=%d level=%d\n", irq, level));
[44801]206 int mask = 1 << irq;
207 if (pPic->elcr & mask)
208 {
[1]209 /* level triggered */
[44801]210 if (level)
211 {
212 Log2(("pic_set_irq1(ls) irr=%d irrnew=%d\n", pPic->irr, pPic->irr | mask));
213 pPic->irr |= mask;
214 pPic->last_irr |= mask;
[1]215 }
[44801]216 else
217 {
218 Log2(("pic_set_irq1(lc) irr=%d irrnew=%d\n", pPic->irr, pPic->irr & ~mask));
219 pPic->irr &= ~mask;
220 pPic->last_irr &= ~mask;
221 }
222 }
223 else
224 {
[1]225 /* edge triggered */
[44801]226 if (level)
227 {
228 if ((pPic->last_irr & mask) == 0)
[1]229 {
[44801]230 Log2(("pic_set_irq1 irr=%x last_irr=%x\n", pPic->irr | mask, pPic->last_irr));
231 pPic->irr |= mask;
[1]232 }
[44801]233 pPic->last_irr |= mask;
[1]234 }
[44801]235 else
236 {
237 pPic->irr &= ~mask;
238 pPic->last_irr &= ~mask;
239 }
[1]240 }
[40907]241
242 /* Save the tag. */
243 if (level)
244 {
[44801]245 if (!pPic->auTags[irq])
246 pPic->auTags[irq] = uTagSrc;
[40907]247 else
[44801]248 pPic->auTags[irq] |= RT_BIT_32(31);
[40907]249 }
250
[44801]251 DumpPICState(pPic, "pic_set_irq1");
[1]252}
253
254/* return the highest priority found in mask (highest = smallest
255 number). Return 8 if no irq */
[44801]256DECLINLINE(int) get_priority(PPICSTATE pPic, int mask)
[1]257{
258 int priority;
259 if (mask == 0)
260 return 8;
261 priority = 0;
[44801]262 while ((mask & (1 << ((priority + pPic->priority_add) & 7))) == 0)
[1]263 priority++;
264 return priority;
265}
266
267/* return the pic wanted interrupt. return -1 if none */
[44801]268static int pic_get_irq(PPICSTATE pPic)
[1]269{
270 int mask, cur_priority, priority;
[44801]271 Log(("pic_get_irq%d: mask=%x\n", pPic->idxPic, pPic->irr & ~pPic->imr));
272 DumpPICState(pPic, "pic_get_irq");
[1]273
[44801]274 mask = pPic->irr & ~pPic->imr;
275 priority = get_priority(pPic, mask);
[1]276 Log(("pic_get_irq: priority=%x\n", priority));
277 if (priority == 8)
278 return -1;
279 /* compute current priority. If special fully nested mode on the
280 master, the IRQ coming from the slave is not taken into account
281 for the priority computation. */
[44801]282 mask = pPic->isr;
[67891]283 if (pPic->special_mask)
284 mask &= ~pPic->imr;
[44801]285 if (pPic->special_fully_nested_mode && pPic->idxPic == 0)
[1]286 mask &= ~(1 << 2);
[44801]287 cur_priority = get_priority(pPic, mask);
288 Log(("pic_get_irq%d: cur_priority=%x pending=%d\n", pPic->idxPic,
289 cur_priority, (priority == 8) ? -1 : (priority + pPic->priority_add) & 7));
290 if (priority < cur_priority)
291 {
[1]292 /* higher priority found: an irq should be generated */
[44801]293 return (priority + pPic->priority_add) & 7;
[1]294 }
[44801]295 return -1;
[1]296}
297
298/* raise irq to CPU if necessary. must be called every time the active
299 irq may change */
[81914]300static int pic_update_irq(PPDMDEVINS pDevIns, PDEVPIC pThis, PDEVPICCC pThisCC)
[1]301{
302 int irq2, irq;
303
304 /* first look at slave pic */
[44801]305 irq2 = pic_get_irq(&pThis->aPics[1]);
[1]306 Log(("pic_update_irq irq2=%d\n", irq2));
[44801]307 if (irq2 >= 0)
308 {
[1]309 /* if irq request by slave pic, signal master PIC */
[44801]310 pic_set_irq1(&pThis->aPics[0], 2, 1, pThis->aPics[1].auTags[irq2]);
311 }
312 else
313 {
[34697]314 /* If not, clear the IR on the master PIC. */
[44801]315 pic_set_irq1(&pThis->aPics[0], 2, 0, 0 /*uTagSrc*/);
[1]316 }
317 /* look at requested irq */
[44801]318 irq = pic_get_irq(&pThis->aPics[0]);
[1]319 if (irq >= 0)
320 {
321 /* If irq 2 is pending on the master pic, then there must be one pending on the slave pic too! Otherwise we'll get
322 * spurious slave interrupts in picGetInterrupt.
323 */
324 if (irq != 2 || irq2 != -1)
325 {
[44801]326 for (int i = 0; i < 2; i++)
327 Log(("pic%d: imr=%x irr=%x padd=%d\n", i, pThis->aPics[i].imr, pThis->aPics[i].irr, pThis->aPics[i].priority_add));
[1]328 Log(("pic: cpu_interrupt\n"));
[81914]329 pThisCC->pPicHlp->pfnSetInterruptFF(pDevIns);
[1]330 }
331 else
332 {
[11264]333 STAM_COUNTER_INC(&pThis->StatClearedActiveIRQ2);
[1]334 Log(("pic_update_irq: irq 2 is active, but no interrupt is pending on the slave pic!!\n"));
335 /* Clear it here, so lower priority interrupts can still be dispatched. */
[3489]336
337 /* if this was the only pending irq, then we must clear the interrupt ff flag */
[81914]338 pThisCC->pPicHlp->pfnClearInterruptFF(pDevIns);
[3489]339
[44801]340 /** @todo Is this correct? */
341 pThis->aPics[0].irr &= ~(1 << 2);
[3489]342
343 /* Call ourselves again just in case other interrupts are pending */
[81914]344 return pic_update_irq(pDevIns, pThis, pThisCC);
[1]345 }
346 }
[8923]347 else
348 {
349 Log(("pic_update_irq: no interrupt is pending!!\n"));
350
351 /* we must clear the interrupt ff flag */
[81914]352 pThisCC->pPicHlp->pfnClearInterruptFF(pDevIns);
[8923]353 }
[1]354 return VINF_SUCCESS;
355}
356
357/**
358 * Set the an IRQ.
359 *
360 * @param pDevIns Device instance of the PICs.
361 * @param iIrq IRQ number to set.
362 * @param iLevel IRQ level.
[40907]363 * @param uTagSrc The IRQ tag and source ID (for tracing).
[1]364 */
[81914]365static DECLCALLBACK(void) picSetIrq(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)
[1]366{
[81914]367 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
368 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
[78599]369 AssertMsgReturnVoid(iIrq < 16, ("iIrq=%d\n", iIrq));
[1]370
371 Log(("picSetIrq %d %d\n", iIrq, iLevel));
[11264]372 DumpPICState(&pThis->aPics[0], "picSetIrq");
373 DumpPICState(&pThis->aPics[1], "picSetIrq");
[81910]374 STAM_COUNTER_INC(&pThis->CTX_SUFF_Z(StatSetIrq));
[2538]375 if ((iLevel & PDM_IRQ_LEVEL_FLIP_FLOP) == PDM_IRQ_LEVEL_FLIP_FLOP)
376 {
[34695]377 /* A flip-flop lowers the IRQ line and immediately raises it, so
378 * that a rising edge is guaranteed to occur. Note that the IRQ
379 * line must be held high for a while to avoid spurious interrupts.
380 */
[81913]381 pic_set_irq1(&RT_SAFE_SUBSCRIPT(pThis->aPics, iIrq >> 3), iIrq & 7, 0, uTagSrc);
[81914]382 pic_update_irq(pDevIns, pThis, pThisCC);
[2538]383 }
[81913]384 pic_set_irq1(&RT_SAFE_SUBSCRIPT(pThis->aPics, iIrq >> 3), iIrq & 7, iLevel & PDM_IRQ_LEVEL_HIGH, uTagSrc);
[81914]385 pic_update_irq(pDevIns, pThis, pThisCC);
[1]386}
387
388
389/* acknowledge interrupt 'irq' */
[44801]390DECLINLINE(void) pic_intack(PPICSTATE pPic, int irq)
[1]391{
[44801]392 if (pPic->auto_eoi)
393 {
394 if (pPic->rotate_on_auto_eoi)
395 pPic->priority_add = (irq + 1) & 7;
[1]396 }
[44801]397 else
398 pPic->isr |= (1 << irq);
399
[1]400 /* We don't clear a level sensitive interrupt here */
[44801]401 if (!(pPic->elcr & (1 << irq)))
[5208]402 {
[44801]403 Log2(("pic_intack: irr=%x irrnew=%x\n", pPic->irr, pPic->irr & ~(1 << irq)));
404 pPic->irr &= ~(1 << irq);
[5208]405 }
[1]406}
407
408
409/**
410 * Get a pending interrupt.
411 *
412 * @returns Pending interrupt number.
413 * @param pDevIns Device instance of the PICs.
[40907]414 * @param puTagSrc Where to return the IRQ tag and source ID.
[1]415 */
[81914]416static DECLCALLBACK(int) picGetInterrupt(PPDMDEVINS pDevIns, uint32_t *puTagSrc)
[1]417{
[81914]418 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
419 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
[1]420 int irq;
421 int irq2;
422 int intno;
423
424 /* read the irq from the PIC */
[11264]425 DumpPICState(&pThis->aPics[0], "picGetInterrupt");
426 DumpPICState(&pThis->aPics[1], "picGetInterrupt");
[1]427
[11264]428 irq = pic_get_irq(&pThis->aPics[0]);
[1]429 if (irq >= 0)
430 {
[11264]431 pic_intack(&pThis->aPics[0], irq);
[1]432 if (irq == 2)
433 {
[11264]434 irq2 = pic_get_irq(&pThis->aPics[1]);
[44801]435 if (irq2 >= 0)
[11264]436 pic_intack(&pThis->aPics[1], irq2);
[1]437 else
438 {
[38921]439 /* Interrupt went away or is now masked. */
440 Log(("picGetInterrupt: spurious IRQ on slave controller, converted to IRQ15\n"));
[1]441 irq2 = 7;
442 }
[11264]443 intno = pThis->aPics[1].irq_base + irq2;
[40907]444 *puTagSrc = pThis->aPics[0].auTags[irq2];
445 pThis->aPics[0].auTags[irq2] = 0;
446 Log2(("picGetInterrupt1: %x base=%x irq=%x uTagSrc=%#x\n", intno, pThis->aPics[1].irq_base, irq2, *puTagSrc));
[1]447 irq = irq2 + 8;
448 }
[40907]449 else
450 {
[11264]451 intno = pThis->aPics[0].irq_base + irq;
[40907]452 *puTagSrc = pThis->aPics[0].auTags[irq];
453 pThis->aPics[0].auTags[irq] = 0;
454 Log2(("picGetInterrupt0: %x base=%x irq=%x uTagSrc=%#x\n", intno, pThis->aPics[0].irq_base, irq, *puTagSrc));
[1]455 }
456 }
457 else
458 {
[38921]459 /* Interrupt went away or is now masked. */
460 Log(("picGetInterrupt: spurious IRQ on master controller, converted to IRQ7\n"));
[1]461 irq = 7;
[11264]462 intno = pThis->aPics[0].irq_base + irq;
[40907]463 *puTagSrc = 0;
[1]464 }
[81914]465 pic_update_irq(pDevIns, pThis, pThisCC);
[1]466
[11264]467 Log(("picGetInterrupt: 0x%02x pending 0:%d 1:%d\n", intno, pic_get_irq(&pThis->aPics[0]), pic_get_irq(&pThis->aPics[1])));
[1]468
469 return intno;
470}
471
[44801]472static void pic_reset(PPICSTATE pPic)
[1]473{
[81910]474 pPic->last_irr = 0;
475 pPic->irr = 0;
476 pPic->imr = 0;
477 pPic->isr = 0;
478 pPic->priority_add = 0;
479 pPic->irq_base = 0;
480 pPic->read_reg_select = 0;
481 pPic->poll = 0;
482 pPic->special_mask = 0;
483 pPic->init_state = 0;
484 pPic->auto_eoi = 0;
485 pPic->rotate_on_auto_eoi = 0;
486 pPic->special_fully_nested_mode = 0;
487 pPic->init4 = 0;
488 //pPic->elcr - not cleared;
489 //pPic->elcr_mask - not cleared;
490 RT_ZERO(pPic->auTags);
[1]491}
492
493
[81914]494static VBOXSTRICTRC pic_ioport_write(PPDMDEVINS pDevIns, PDEVPIC pThis, PDEVPICCC pThisCC, PPICSTATE pPic,
495 uint32_t addr, uint32_t val)
[1]496{
[81910]497 VBOXSTRICTRC rc = VINF_SUCCESS;
498 int irq;
[1]499
[81910]500 Log(("pic_write/%zu: addr=0x%02x val=0x%02x\n", pPic - pThis->aPics, addr, val));
[1]501 addr &= 1;
[44801]502 if (addr == 0)
503 {
504 if (val & 0x10)
505 {
[1]506 /* init */
[44801]507 pic_reset(pPic);
[1]508 /* deassert a pending interrupt */
[81914]509 pThisCC->pPicHlp->pfnClearInterruptFF(pDevIns);
[1]510
[44801]511 pPic->init_state = 1;
512 pPic->init4 = val & 1;
[91739]513 if (!(val & 0x0a))
514 { /* likely */ }
515 else if (pThis->cRelLogEntries++ < 64)
516 {
517 if (val & 0x02)
518 LogRel(("PIC: Single mode not supported, ignored.\n"));
519 if (val & 0x08)
520 LogRel(("PIC: Level sensitive IRQ setting ignored.\n"));
521 }
[44801]522 }
523 else if (val & 0x08)
524 {
[1]525 if (val & 0x04)
[44801]526 pPic->poll = 1;
[1]527 if (val & 0x02)
[44801]528 pPic->read_reg_select = val & 1;
[1]529 if (val & 0x40)
[44801]530 pPic->special_mask = (val >> 5) & 1;
531 }
532 else
533 {
534 int cmd = val >> 5;
535 switch (cmd)
[1]536 {
[44801]537 case 0:
538 case 4:
539 pPic->rotate_on_auto_eoi = cmd >> 2;
540 break;
541 case 1: /* end of interrupt */
542 case 5:
543 {
544 int priority = get_priority(pPic, pPic->isr);
545 if (priority != 8) {
546 irq = (priority + pPic->priority_add) & 7;
547 Log(("pic_write: EOI prio=%d irq=%d\n", priority, irq));
548 pPic->isr &= ~(1 << irq);
549 if (cmd == 5)
550 pPic->priority_add = (irq + 1) & 7;
[81914]551 rc = pic_update_irq(pDevIns, pThis, pThisCC);
[44801]552 Assert(rc == VINF_SUCCESS);
553 DumpPICState(pPic, "eoi");
554 }
555 break;
556 }
557 case 3:
558 {
559 irq = val & 7;
560 Log(("pic_write: EOI2 for irq %d\n", irq));
561 pPic->isr &= ~(1 << irq);
[81914]562 rc = pic_update_irq(pDevIns, pThis, pThisCC);
[1]563 Assert(rc == VINF_SUCCESS);
[44801]564 DumpPICState(pPic, "eoi2");
565 break;
[1]566 }
[44801]567 case 6:
568 {
569 pPic->priority_add = (val + 1) & 7;
570 Log(("pic_write: lowest priority %d (highest %d)\n", val & 7, pPic->priority_add));
[81914]571 rc = pic_update_irq(pDevIns, pThis, pThisCC);
[44801]572 Assert(rc == VINF_SUCCESS);
573 break;
574 }
575 case 7:
576 {
577 irq = val & 7;
578 Log(("pic_write: EOI3 for irq %d\n", irq));
579 pPic->isr &= ~(1 << irq);
580 pPic->priority_add = (irq + 1) & 7;
[81914]581 rc = pic_update_irq(pDevIns, pThis, pThisCC);
[44801]582 Assert(rc == VINF_SUCCESS);
583 DumpPICState(pPic, "eoi3");
584 break;
585 }
586 default:
587 /* no operation */
588 break;
[1]589 }
[44801]590 }
591 }
592 else
593 {
594 switch (pPic->init_state)
595 {
596 case 0:
597 /* normal mode */
[67891]598 pPic->imr = val;
[81914]599 rc = pic_update_irq(pDevIns, pThis, pThisCC);
[1]600 Assert(rc == VINF_SUCCESS);
601 break;
[44801]602 case 1:
603 pPic->irq_base = val & 0xf8;
604 pPic->init_state = 2;
605 Log(("pic_write: set irq base to %x\n", pPic->irq_base));
[1]606 break;
[44801]607 case 2:
608 if (pPic->init4)
609 pPic->init_state = 3;
610 else
611 pPic->init_state = 0;
[1]612 break;
[44801]613 case 3:
614 pPic->special_fully_nested_mode = (val >> 4) & 1;
615 pPic->auto_eoi = (val >> 1) & 1;
616 pPic->init_state = 0;
617 Log(("pic_write: special_fully_nested_mode=%d auto_eoi=%d\n", pPic->special_fully_nested_mode, pPic->auto_eoi));
[1]618 break;
619 }
620 }
621 return rc;
622}
623
624
[81914]625static uint32_t pic_poll_read(PPDMDEVINS pDevIns, PDEVPIC pThis, PDEVPICCC pThisCC, PPICSTATE pPic, uint32_t addr1)
[1]626{
[44801]627 int ret = pic_get_irq(pPic);
628 if (ret >= 0)
629 {
630 if (addr1 >> 7)
631 {
[1]632 Log2(("pic_poll_read: clear slave irq (isr)\n"));
[44801]633 pThis->aPics[0].isr &= ~(1 << 2);
634 pThis->aPics[0].irr &= ~(1 << 2);
[1]635 }
636 Log2(("pic_poll_read: clear irq %d (isr)\n", ret));
[44801]637 pPic->irr &= ~(1 << ret);
638 pPic->isr &= ~(1 << ret);
[1]639 if (addr1 >> 7 || ret != 2)
[81914]640 pic_update_irq(pDevIns, pThis, pThisCC);
[44801]641 }
642 else
643 {
[37159]644 ret = 0;
[81914]645 pic_update_irq(pDevIns, pThis, pThisCC);
[1]646 }
647
648 return ret;
649}
650
651
[81914]652static uint32_t pic_ioport_read(PPDMDEVINS pDevIns, PDEVPIC pThis, PDEVPICCC pThisCC, PPICSTATE pPic, uint32_t addr1, int *pRC)
[1]653{
654 unsigned int addr;
655 int ret;
656
657 *pRC = VINF_SUCCESS;
658
659 addr = addr1;
660 addr &= 1;
[44801]661 if (pPic->poll)
662 {
[81914]663 ret = pic_poll_read(pDevIns, pThis, pThisCC, pPic, addr1);
[44801]664 pPic->poll = 0;
665 }
666 else
667 {
668 if (addr == 0)
669 {
670 if (pPic->read_reg_select)
671 ret = pPic->isr;
[1]672 else
[44801]673 ret = pPic->irr;
[1]674 }
[44801]675 else
676 ret = pPic->imr;
[1]677 }
678 Log(("pic_read: addr=0x%02x val=0x%02x\n", addr1, ret));
679 return ret;
680}
681
682
683
[44801]684/* -=-=-=-=-=- I/O ports -=-=-=-=-=- */
[1]685
686/**
[81924]687 * @callback_method_impl{FNIOMIOPORTNEWIN}
[1]688 */
[81910]689static DECLCALLBACK(VBOXSTRICTRC) picIOPortRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
[1]690{
[81914]691 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
692 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
693 uint32_t iPic = (uint32_t)(uintptr_t)pvUser;
[93832]694 int rc;
[1]695
696 Assert(iPic == 0 || iPic == 1);
697 if (cb == 1)
698 {
[90436]699 PIC_LOCK_RET(pDevIns, pThisCC, VINF_IOM_R3_IOPORT_READ);
[81914]700 *pu32 = pic_ioport_read(pDevIns, pThis, pThisCC, &RT_SAFE_SUBSCRIPT(pThis->aPics, iPic), offPort, &rc);
701 PIC_UNLOCK(pDevIns, pThisCC);
[1]702 return rc;
703 }
[93832]704 else if (cb == 2)
705 {
706 uint8_t u8Lo, u8Hi = 0;
707 /* Manually split access. Probably not 100% accurate! */
708 PIC_LOCK_RET(pDevIns, pThisCC, VINF_IOM_R3_IOPORT_READ);
709 u8Lo = pic_ioport_read(pDevIns, pThis, pThisCC, &RT_SAFE_SUBSCRIPT(pThis->aPics, iPic), offPort, &rc);
710 Assert(rc == VINF_SUCCESS);
711 if (!(offPort & 1))
712 u8Hi = pic_ioport_read(pDevIns, pThis, pThisCC, &RT_SAFE_SUBSCRIPT(pThis->aPics, iPic), offPort + 1, &rc);
713 PIC_UNLOCK(pDevIns, pThisCC);
714 *pu32 = RT_MAKE_U16(u8Lo, u8Hi);
715 return rc;
716 }
[1]717 return VERR_IOM_IOPORT_UNUSED;
718}
719
[44801]720
[1]721/**
[81910]722 * @callback_method_impl{FNIOMIOPORTNEWOUT}
[1]723 */
[81910]724static DECLCALLBACK(VBOXSTRICTRC) picIOPortWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
[1]725{
[81914]726 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
727 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
728 uint32_t iPic = (uint32_t)(uintptr_t)pvUser;
[93832]729 VBOXSTRICTRC rc;
[1]730
731 Assert(iPic == 0 || iPic == 1);
732
733 if (cb == 1)
734 {
[90436]735 PIC_LOCK_RET(pDevIns, pThisCC, VINF_IOM_R3_IOPORT_WRITE);
[81914]736 rc = pic_ioport_write(pDevIns, pThis, pThisCC, &RT_SAFE_SUBSCRIPT(pThis->aPics, iPic), offPort, u32);
737 PIC_UNLOCK(pDevIns, pThisCC);
[1]738 return rc;
739 }
[93832]740 else if (cb == 2)
741 {
742 PIC_LOCK_RET(pDevIns, pThisCC, VINF_IOM_R3_IOPORT_WRITE);
743 /* Manually split access. Probably not 100% accurate! */
744 rc = pic_ioport_write(pDevIns, pThis, pThisCC, &RT_SAFE_SUBSCRIPT(pThis->aPics, iPic), offPort, RT_LOBYTE(u32));
745 if (RT_SUCCESS(rc) && !(offPort & 1))
746 rc = pic_ioport_write(pDevIns, pThis, pThisCC, &RT_SAFE_SUBSCRIPT(pThis->aPics, iPic), offPort + 1, RT_HIBYTE(u32));
747 PIC_UNLOCK(pDevIns, pThisCC);
748 return rc;
749 }
[1]750 return VINF_SUCCESS;
751}
752
753
754/**
[81910]755 * @callback_method_impl{FNIOMIOPORTNEWIN, ELCR}
[1]756 */
[81910]757static DECLCALLBACK(VBOXSTRICTRC) picIOPortElcrRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
[1]758{
759 if (cb == 1)
760 {
[81914]761 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
762 PPICSTATE pPic = (PPICSTATE)pvUser;
[90436]763 PIC_LOCK_RET(pDevIns, pThisCC, VINF_IOM_R3_IOPORT_READ);
[44801]764 *pu32 = pPic->elcr;
[81914]765 PIC_UNLOCK(pDevIns, pThisCC);
[1]766 return VINF_SUCCESS;
767 }
[81910]768 RT_NOREF(offPort);
[1]769 return VERR_IOM_IOPORT_UNUSED;
770}
771
[44801]772
[1]773/**
[81910]774 * @callback_method_impl{FNIOMIOPORTNEWOUT, ELCR}
[1]775 */
[81910]776static DECLCALLBACK(VBOXSTRICTRC) picIOPortElcrWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
[1]777{
778 if (cb == 1)
779 {
[81914]780 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
781 PPICSTATE pPic = (PPICSTATE)pvUser;
[90436]782 PIC_LOCK_RET(pDevIns, pThisCC, VINF_IOM_R3_IOPORT_WRITE);
[44801]783 pPic->elcr = u32 & pPic->elcr_mask;
[81914]784 PIC_UNLOCK(pDevIns, pThisCC);
[1]785 }
[81910]786 RT_NOREF(offPort);
[1]787 return VINF_SUCCESS;
788}
789
790
791#ifdef IN_RING3
792
793/**
[58132]794 * @callback_method_impl{FNDBGFHANDLERDEV}
[1]795 */
[82656]796static DECLCALLBACK(void) picR3Info(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
[1]797{
[81591]798 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
[39091]799 NOREF(pszArgs);
[1]800
801 /*
802 * Show info.
803 */
[81915]804 for (unsigned i = 0; i < RT_ELEMENTS(pThis->aPics); i++)
[1]805 {
[44801]806 PPICSTATE pPic = &pThis->aPics[i];
[36014]807
[1]808 pHlp->pfnPrintf(pHlp, "PIC%d:\n", i);
[36014]809 pHlp->pfnPrintf(pHlp, " IMR :%02x ISR :%02x IRR :%02x LIRR:%02x\n",
810 pPic->imr, pPic->isr, pPic->irr, pPic->last_irr);
811 pHlp->pfnPrintf(pHlp, " Base:%02x PriAdd:%02x RegSel:%02x\n",
812 pPic->irq_base, pPic->priority_add, pPic->read_reg_select);
813 pHlp->pfnPrintf(pHlp, " Poll:%02x SpMask:%02x IState:%02x\n",
814 pPic->poll, pPic->special_mask, pPic->init_state);
815 pHlp->pfnPrintf(pHlp, " AEOI:%02x Rotate:%02x FNest :%02x Ini4:%02x\n",
[37423]816 pPic->auto_eoi, pPic->rotate_on_auto_eoi,
[36014]817 pPic->special_fully_nested_mode, pPic->init4);
818 pHlp->pfnPrintf(pHlp, " ELCR:%02x ELMask:%02x\n", pPic->elcr, pPic->elcr_mask);
[1]819 }
820}
821
[44801]822
823/* -=-=-=-=-=- Saved State -=-=-=-=-=- */
824
[1]825/**
[44801]826 * @callback_method_impl{FNSSMDEVSAVEEXEC}
[1]827 */
[81909]828static DECLCALLBACK(int) picR3SaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM)
[1]829{
[81909]830 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
831 PCPDMDEVHLPR3 pHlp = pDevIns->pHlpR3;
832
[11265]833 for (unsigned i = 0; i < RT_ELEMENTS(pThis->aPics); i++)
834 {
[81909]835 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].last_irr);
836 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].irr);
837 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].imr);
838 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].isr);
839 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].priority_add);
840 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].irq_base);
841 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].read_reg_select);
842 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].poll);
843 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].special_mask);
844 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].init_state);
845 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].auto_eoi);
846 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].rotate_on_auto_eoi);
847 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].special_fully_nested_mode);
848 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].init4);
849 pHlp->pfnSSMPutU8(pSSM, pThis->aPics[i].elcr);
[11265]850 }
[1]851 return VINF_SUCCESS;
852}
853
854
855/**
[44801]856 * @callback_method_impl{FNSSMDEVLOADEXEC}
[1]857 */
[81909]858static DECLCALLBACK(int) picR3LoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
[1]859{
[81909]860 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
861 PCPDMDEVHLPR3 pHlp = pDevIns->pHlpR3;
[11265]862
[22480]863 if (uVersion != 1)
[11265]864 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
[22793]865 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
[11265]866
867 for (unsigned i = 0; i < RT_ELEMENTS(pThis->aPics); i++)
868 {
[81909]869 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].last_irr);
870 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].irr);
871 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].imr);
872 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].isr);
873 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].priority_add);
874 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].irq_base);
875 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].read_reg_select);
876 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].poll);
877 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].special_mask);
878 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].init_state);
879 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].auto_eoi);
880 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].rotate_on_auto_eoi);
881 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].special_fully_nested_mode);
882 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].init4);
883 pHlp->pfnSSMGetU8(pSSM, &pThis->aPics[i].elcr);
[11265]884 }
[78208]885
886 /* Note! PDM will restore the VMCPU_FF_INTERRUPT_PIC state. */
[11265]887 return VINF_SUCCESS;
[1]888}
889
890
[44801]891/* -=-=-=-=-=- PDMDEVREG -=-=-=-=-=- */
[1]892
893/**
[44801]894 * @interface_method_impl{PDMDEVREG,pfnReset}
[1]895 */
[81909]896static DECLCALLBACK(void) picR3Reset(PPDMDEVINS pDevIns)
[1]897{
[81914]898 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
899 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
[1]900 unsigned i;
[81909]901 LogFlow(("picR3Reset:\n"));
[81914]902 pThisCC->pPicHlp->pfnLock(pDevIns, VERR_INTERNAL_ERROR);
[1]903
[11264]904 for (i = 0; i < RT_ELEMENTS(pThis->aPics); i++)
905 pic_reset(&pThis->aPics[i]);
[1]906
[81914]907 PIC_UNLOCK(pDevIns, pThisCC);
[1]908}
909
910
911/**
[44801]912 * @interface_method_impl{PDMDEVREG,pfnRelocate}
[1]913 */
[81909]914static DECLCALLBACK(void) picR3Relocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta)
[1]915{
[81914]916 PDEVPICRC pThisRC = PDMINS_2_DATA_RC(pDevIns, PDEVPICRC);
917 pThisRC->pPicHlp += offDelta;
[1]918}
919
920
921/**
[44801]922 * @interface_method_impl{PDMDEVREG,pfnConstruct}
[1]923 */
[81909]924static DECLCALLBACK(int) picR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg)
[1]925{
[62890]926 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
[81914]927 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
928 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
[1]929 int rc;
[81909]930 RT_NOREF(iInstance, pCfg);
931
[1]932 Assert(iInstance == 0);
933
934 /*
935 * Validate and read configuration.
936 */
[81909]937 PDMDEV_VALIDATE_CONFIG_RETURN(pDevIns, "", "");
938 Log(("DevPIC: fRCEnabled=%RTbool fR0Enabled=%RTbool\n", pDevIns->fRCEnabled, pDevIns->fR0Enabled));
[1]939
940 /*
941 * Init the data.
942 */
[11264]943 Assert(RT_ELEMENTS(pThis->aPics) == 2);
944 pThis->aPics[0].elcr_mask = 0xf8;
945 pThis->aPics[1].elcr_mask = 0xde;
[44801]946 pThis->aPics[0].idxPic = 0;
947 pThis->aPics[1].idxPic = 1;
948 pThis->cRelLogEntries = 0;
[1]949
950 /*
[11261]951 * Register us as the PIC with PDM.
[1]952 */
[44509]953 PDMPICREG PicReg;
[1]954 PicReg.u32Version = PDM_PICREG_VERSION;
[81909]955 PicReg.pfnSetIrq = picSetIrq;
956 PicReg.pfnGetInterrupt = picGetInterrupt;
957 PicReg.u32TheEnd = PDM_PICREG_VERSION;
[81914]958 rc = PDMDevHlpPICRegister(pDevIns, &PicReg, &pThisCC->pPicHlp);
[81909]959 AssertLogRelMsgRCReturn(rc, ("PDMDevHlpPICRegister -> %Rrc\n", rc), rc);
[81914]960 AssertReturn(pThisCC->pPicHlp->u32Version == PDM_PICHLP_VERSION, VERR_VERSION_MISMATCH);
961 AssertReturn(pThisCC->pPicHlp->u32TheEnd == PDM_PICHLP_VERSION, VERR_VERSION_MISMATCH);
[11261]962
[38849]963 /*
[39091]964 * Since the PIC helper interface provides access to the PDM lock,
965 * we need no device level critical section.
[38849]966 */
967 rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));
968 AssertRCReturn(rc, rc);
[11261]969
970 /*
971 * Register I/O ports and save state.
972 */
[81910]973 rc = PDMDevHlpIoPortCreateUAndMap(pDevIns, 0x20 /*uPort*/, 2 /*cPorts*/, picIOPortWrite, picIOPortRead, (void *)0,
974 "i8259 PIC #0", NULL /*paExtDesc*/, &pThis->aPics[0].hIoPorts0);
975 AssertRCReturn(rc, rc);
976 rc = PDMDevHlpIoPortCreateUAndMap(pDevIns, 0xa0 /*uPort*/, 2 /*cPorts*/, picIOPortWrite, picIOPortRead, (void *)1,
977 "i8259 PIC #1", NULL /*paExtDesc*/, &pThis->aPics[1].hIoPorts0);
978 AssertRCReturn(rc, rc);
[1]979
980
[81910]981 rc = PDMDevHlpIoPortCreateUAndMap(pDevIns, 0x4d0 /*uPort*/, 1 /*cPorts*/, picIOPortElcrWrite, picIOPortElcrRead,
982 &pThis->aPics[0], "i8259 PIC #0 - elcr", NULL /*paExtDesc*/, &pThis->aPics[0].hIoPorts1);
983 AssertRCReturn(rc, rc);
984 rc = PDMDevHlpIoPortCreateUAndMap(pDevIns, 0x4d1 /*uPort*/, 1 /*cPorts*/, picIOPortElcrWrite, picIOPortElcrRead,
985 &pThis->aPics[1], "i8259 PIC #1 - elcr", NULL /*paExtDesc*/, &pThis->aPics[1].hIoPorts1);
986 AssertRCReturn(rc, rc);
987
988 /*
989 * Saved state.
990 */
[81909]991 rc = PDMDevHlpSSMRegister(pDevIns, 1 /* uVersion */, sizeof(*pThis), picR3SaveExec, picR3LoadExec);
[81910]992 AssertRCReturn(rc, rc);
[1]993
994 /*
995 * Register the info item.
996 */
[82656]997 PDMDevHlpDBGFInfoRegister(pDevIns, "pic", "PIC info.", picR3Info);
[1]998
999 /*
1000 * Initialize the device state.
1001 */
[81909]1002 picR3Reset(pDevIns);
[1]1003
[81913]1004# ifdef VBOX_WITH_STATISTICS
[1]1005 /*
1006 * Statistics.
1007 */
[81910]1008 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSetIrqRZ, STAMTYPE_COUNTER, "SetIrqRZ", STAMUNIT_OCCURENCES, "Number of PIC SetIrq calls in ring-0/raw-mode.");
1009 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatSetIrqR3, STAMTYPE_COUNTER, "SetIrqR3", STAMUNIT_OCCURENCES, "Number of PIC SetIrq calls in ring-3.");
[1]1010
[81910]1011 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatClearedActiveIRQ2, STAMTYPE_COUNTER, "Masked/ActiveIRQ2", STAMUNIT_OCCURENCES, "Number of cleared irq 2.");
1012 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatClearedActiveMasterIRQ, STAMTYPE_COUNTER, "Masked/ActiveMaster", STAMUNIT_OCCURENCES, "Number of cleared master irqs.");
1013 PDMDevHlpSTAMRegister(pDevIns, &pThis->StatClearedActiveSlaveIRQ, STAMTYPE_COUNTER, "Masked/ActiveSlave", STAMUNIT_OCCURENCES, "Number of cleared slave irqs.");
[81913]1014# endif
[1]1015
1016 return VINF_SUCCESS;
1017}
1018
[81909]1019#else /* !IN_RING3 */
[1]1020
1021/**
[81909]1022 * @callback_method_impl{PDMDEVREGR0,pfnConstruct}
1023 */
1024static DECLCALLBACK(int) picRZConstruct(PPDMDEVINS pDevIns)
1025{
1026 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
[81914]1027 PDEVPIC pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPIC);
1028 PDEVPICCC pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVPICCC);
[81909]1029
[81910]1030 /* NOP the critsect: */
[81909]1031 int rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));
1032 AssertRCReturn(rc, rc);
1033
[81910]1034 /* Set up the PIC callbacks: */
[81909]1035 PDMPICREG PicReg;
1036 PicReg.u32Version = PDM_PICREG_VERSION;
1037 PicReg.pfnSetIrq = picSetIrq;
1038 PicReg.pfnGetInterrupt = picGetInterrupt;
1039 PicReg.u32TheEnd = PDM_PICREG_VERSION;
[81914]1040 rc = PDMDevHlpPICSetUpContext(pDevIns, &PicReg, &pThisCC->pPicHlp);
[81909]1041 AssertLogRelMsgRCReturn(rc, ("PDMDevHlpPICSetUpContext -> %Rrc\n", rc), rc);
[81914]1042 AssertPtrReturn(pThisCC->pPicHlp, VERR_INTERNAL_ERROR_3);
1043 AssertReturn(pThisCC->pPicHlp->u32Version == PDM_PICHLP_VERSION, VERR_VERSION_MISMATCH);
1044 AssertReturn(pThisCC->pPicHlp->u32TheEnd == PDM_PICHLP_VERSION, VERR_VERSION_MISMATCH);
[81909]1045
[81910]1046 /* I/O port callbacks: */
[81913]1047 Assert(RT_ELEMENTS(pThis->aPics) == 2);
[81910]1048 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aPics[0].hIoPorts0, picIOPortWrite, picIOPortRead, (void *)0);
1049 AssertRCReturn(rc, rc);
1050 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aPics[1].hIoPorts0, picIOPortWrite, picIOPortRead, (void *)1);
1051 AssertRCReturn(rc, rc);
1052
1053 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aPics[0].hIoPorts1, picIOPortElcrWrite, picIOPortElcrRead, &pThis->aPics[0]);
1054 AssertRCReturn(rc, rc);
1055 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aPics[1].hIoPorts1, picIOPortElcrWrite, picIOPortElcrRead, &pThis->aPics[1]);
1056 AssertRCReturn(rc, rc);
1057
[81909]1058 return VINF_SUCCESS;
1059}
1060
1061#endif /* !IN_RING3 */
1062
1063/**
[1]1064 * The device registration structure.
1065 */
1066const PDMDEVREG g_DeviceI8259 =
1067{
[80531]1068 /* .u32Version = */ PDM_DEVREG_VERSION,
1069 /* .uReserved0 = */ 0,
1070 /* .szName = */ "i8259",
[82041]1071 /* .fFlags = */ PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RZ | PDM_DEVREG_FLAGS_NEW_STYLE
1072 | PDM_DEVREG_FLAGS_REQUIRE_R0 | PDM_DEVREG_FLAGS_REQUIRE_RC,
[80531]1073 /* .fClass = */ PDM_DEVREG_CLASS_PIC,
1074 /* .cMaxInstances = */ 1,
1075 /* .uSharedVersion = */ 42,
1076 /* .cbInstanceShared = */ sizeof(DEVPIC),
[81914]1077 /* .cbInstanceCC = */ sizeof(DEVPICCC),
1078 /* .cbInstanceRC = */ sizeof(DEVPICRC),
[80703]1079 /* .cMaxPciDevices = */ 0,
[80704]1080 /* .cMaxMsixVectors = */ 0,
[80531]1081 /* .pszDescription = */ "Intel 8259 Programmable Interrupt Controller (PIC) Device.",
1082#if defined(IN_RING3)
1083 /* .pszRCMod = */ "VBoxDDRC.rc",
1084 /* .pszR0Mod = */ "VBoxDDR0.r0",
[81909]1085 /* .pfnConstruct = */ picR3Construct,
[80531]1086 /* .pfnDestruct = */ NULL,
[81909]1087 /* .pfnRelocate = */ picR3Relocate,
[80531]1088 /* .pfnMemSetup = */ NULL,
1089 /* .pfnPowerOn = */ NULL,
[81909]1090 /* .pfnReset = */ picR3Reset,
[80531]1091 /* .pfnSuspend = */ NULL,
1092 /* .pfnResume = */ NULL,
1093 /* .pfnAttach = */ NULL,
1094 /* .pfnDetach = */ NULL,
1095 /* .pfnQueryInterface = */ NULL,
1096 /* .pfnInitComplete = */ NULL,
1097 /* .pfnPowerOff = */ NULL,
1098 /* .pfnSoftReset = */ NULL,
1099 /* .pfnReserved0 = */ NULL,
1100 /* .pfnReserved1 = */ NULL,
1101 /* .pfnReserved2 = */ NULL,
1102 /* .pfnReserved3 = */ NULL,
1103 /* .pfnReserved4 = */ NULL,
1104 /* .pfnReserved5 = */ NULL,
1105 /* .pfnReserved6 = */ NULL,
1106 /* .pfnReserved7 = */ NULL,
1107#elif defined(IN_RING0)
1108 /* .pfnEarlyConstruct = */ NULL,
[81909]1109 /* .pfnConstruct = */ picRZConstruct,
[80531]1110 /* .pfnDestruct = */ NULL,
1111 /* .pfnFinalDestruct = */ NULL,
1112 /* .pfnRequest = */ NULL,
1113 /* .pfnReserved0 = */ NULL,
1114 /* .pfnReserved1 = */ NULL,
1115 /* .pfnReserved2 = */ NULL,
1116 /* .pfnReserved3 = */ NULL,
1117 /* .pfnReserved4 = */ NULL,
1118 /* .pfnReserved5 = */ NULL,
1119 /* .pfnReserved6 = */ NULL,
1120 /* .pfnReserved7 = */ NULL,
1121#elif defined(IN_RC)
[81909]1122 /* .pfnConstruct = */ picRZConstruct,
[80531]1123 /* .pfnReserved0 = */ NULL,
1124 /* .pfnReserved1 = */ NULL,
1125 /* .pfnReserved2 = */ NULL,
1126 /* .pfnReserved3 = */ NULL,
1127 /* .pfnReserved4 = */ NULL,
1128 /* .pfnReserved5 = */ NULL,
1129 /* .pfnReserved6 = */ NULL,
1130 /* .pfnReserved7 = */ NULL,
1131#else
1132# error "Not in IN_RING3, IN_RING0 or IN_RC!"
1133#endif
1134 /* .u32VersionEnd = */ PDM_DEVREG_VERSION
[1]1135};
1136
[490]1137#endif /* !VBOX_DEVICE_STRUCT_TESTCASE */
[1]1138
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use