VirtualBox

source: vbox/trunk/src/VBox/Devices/Bus/DevPciIch9.cpp@ 36121

Last change on this file since 36121 was 36116, checked in by vboxsync, 14 years ago

ICH9/PciBridge: Use the secondary bus number during device init and fix sub class code for the PCI2Host bridge

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 105.4 KB
Line 
1/* $Id: DevPciIch9.cpp 36116 2011-03-01 12:30:42Z vboxsync $ */
2/** @file
3 * DevPCI - ICH9 southbridge PCI bus emulation Device.
4 */
5
6/*
7 * Copyright (C) 2010 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 * Header Files *
20 *******************************************************************************/
21#define LOG_GROUP LOG_GROUP_DEV_PCI
22/* Hack to get PCIDEVICEINT declare at the right point - include "PCIInternal.h". */
23#define PCI_INCLUDE_PRIVATE
24#include <VBox/pci.h>
25#include <VBox/msi.h>
26#include <VBox/vmm/pdmdev.h>
27#include <iprt/asm.h>
28#include <iprt/assert.h>
29#include <iprt/string.h>
30#ifdef IN_RING3
31#include <iprt/alloc.h>
32#endif
33
34#include "VBoxDD.h"
35
36#include "MsiCommon.h"
37
38/**
39 * PCI Bus instance.
40 */
41typedef struct PCIBus
42{
43 /** Bus number. */
44 int32_t iBus;
45 /** Number of bridges attached to the bus. */
46 uint32_t cBridges;
47
48 /** Array of PCI devices. We assume 32 slots, each with 8 functions. */
49 R3PTRTYPE(PPCIDEVICE) apDevices[256];
50 /** Array of bridges attached to the bus. */
51 R3PTRTYPE(PPCIDEVICE *) papBridgesR3;
52
53 /** R3 pointer to the device instance. */
54 PPDMDEVINSR3 pDevInsR3;
55 /** Pointer to the PCI R3 helpers. */
56 PCPDMPCIHLPR3 pPciHlpR3;
57
58 /** R0 pointer to the device instance. */
59 PPDMDEVINSR0 pDevInsR0;
60 /** Pointer to the PCI R0 helpers. */
61 PCPDMPCIHLPR0 pPciHlpR0;
62
63 /** RC pointer to the device instance. */
64 PPDMDEVINSRC pDevInsRC;
65 /** Pointer to the PCI RC helpers. */
66 PCPDMPCIHLPRC pPciHlpRC;
67
68 /** The PCI device for the PCI bridge. */
69 PCIDEVICE aPciDev;
70
71} PCIBUS, *PPCIBUS;
72
73
74/** @def PCI_APIC_IRQ_PINS
75 * Number of pins for interrupts if the APIC is used.
76 */
77#define PCI_APIC_IRQ_PINS 8
78
79/**
80 * PCI Globals - This is the host-to-pci bridge and the root bus.
81 */
82typedef struct
83{
84 /** R3 pointer to the device instance. */
85 PPDMDEVINSR3 pDevInsR3;
86 /** R0 pointer to the device instance. */
87 PPDMDEVINSR0 pDevInsR0;
88 /** RC pointer to the device instance. */
89 PPDMDEVINSRC pDevInsRC;
90
91#if HC_ARCH_BITS == 64
92 uint32_t Alignment0;
93#endif
94
95 /** PCI bus which is attached to the host-to-PCI bridge. */
96 PCIBUS aPciBus;
97
98 /** I/O APIC irq levels */
99 volatile uint32_t uaPciApicIrqLevels[PCI_APIC_IRQ_PINS];
100
101#if 1 /* Will be moved into the BIOS soon. */
102 /** The next I/O port address which the PCI BIOS will use. */
103 uint32_t uPciBiosIo;
104 /** The next MMIO address which the PCI BIOS will use. */
105 uint32_t uPciBiosMmio;
106 /** Actual bus number. */
107 uint8_t uBus;
108#endif
109 /* Physical address of PCI config space MMIO region */
110 uint64_t u64PciConfigMMioAddress;
111 /* Length of PCI config space MMIO region */
112 uint64_t u64PciConfigMMioLength;
113
114
115 /** Config register. */
116 uint32_t uConfigReg;
117} PCIGLOBALS, *PPCIGLOBALS;
118
119
120typedef struct {
121 uint8_t iBus;
122 uint8_t iDeviceFunc;
123 uint16_t iRegister;
124} PciAddress;
125
126/*******************************************************************************
127 * Defined Constants And Macros *
128 *******************************************************************************/
129
130/** @def VBOX_ICH9PCI_SAVED_STATE_VERSION
131 * Saved state version of the ICH9 PCI bus device.
132 */
133#define VBOX_ICH9PCI_SAVED_STATE_VERSION_NOMSI 1
134#define VBOX_ICH9PCI_SAVED_STATE_VERSION_MSI 2
135#define VBOX_ICH9PCI_SAVED_STATE_VERSION_CURRENT VBOX_ICH9PCI_SAVED_STATE_VERSION_MSI
136
137/** Converts a bus instance pointer to a device instance pointer. */
138#define PCIBUS_2_DEVINS(pPciBus) ((pPciBus)->CTX_SUFF(pDevIns))
139/** Converts a device instance pointer to a PCIGLOBALS pointer. */
140#define DEVINS_2_PCIGLOBALS(pDevIns) ((PPCIGLOBALS)(PDMINS_2_DATA(pDevIns, PPCIGLOBALS)))
141/** Converts a device instance pointer to a PCIBUS pointer. */
142#define DEVINS_2_PCIBUS(pDevIns) ((PPCIBUS)(&PDMINS_2_DATA(pDevIns, PPCIGLOBALS)->aPciBus))
143/** Converts a pointer to a PCI root bus instance to a PCIGLOBALS pointer.
144 */
145#define PCIROOTBUS_2_PCIGLOBALS(pPciBus) ( (PPCIGLOBALS)((uintptr_t)(pPciBus) - RT_OFFSETOF(PCIGLOBALS, aPciBus)) )
146
147
148/** @def PCI_LOCK
149 * Acquires the PDM lock. This is a NOP if locking is disabled. */
150/** @def PCI_UNLOCK
151 * Releases the PDM lock. This is a NOP if locking is disabled. */
152#define PCI_LOCK(pDevIns, rc) \
153 do { \
154 int rc2 = DEVINS_2_PCIBUS(pDevIns)->CTX_SUFF(pPciHlp)->pfnLock((pDevIns), rc); \
155 if (rc2 != VINF_SUCCESS) \
156 return rc2; \
157 } while (0)
158#define PCI_UNLOCK(pDevIns) \
159 DEVINS_2_PCIBUS(pDevIns)->CTX_SUFF(pPciHlp)->pfnUnlock(pDevIns)
160
161#ifndef VBOX_DEVICE_STRUCT_TESTCASE
162
163RT_C_DECLS_BEGIN
164
165PDMBOTHCBDECL(void) ich9pciSetIrq(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel);
166PDMBOTHCBDECL(void) ich9pcibridgeSetIrq(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel);
167PDMBOTHCBDECL(int) ich9pciIOPortAddressWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb);
168PDMBOTHCBDECL(int) ich9pciIOPortAddressRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb);
169PDMBOTHCBDECL(int) ich9pciIOPortDataWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb);
170PDMBOTHCBDECL(int) ich9pciIOPortDataRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb);
171PDMBOTHCBDECL(int) ich9pciMcfgMMIOWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb);
172PDMBOTHCBDECL(int) ich9pciMcfgMMIORead (PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb);
173
174RT_C_DECLS_END
175
176/* Prototypes */
177static void ich9pciSetIrqInternal(PPCIGLOBALS pGlobals, uint8_t uDevFn, PPCIDEVICE pPciDev, int iIrq, int iLevel);
178#ifdef IN_RING3
179static void ich9pcibridgeReset(PPDMDEVINS pDevIns);
180static int ich9pciRegisterInternal(PPCIBUS pBus, int iDev, PPCIDEVICE pPciDev, const char *pszName);
181static void ich9pciUpdateMappings(PCIDevice *pDev);
182static DECLCALLBACK(uint32_t) ich9pciConfigReadDev(PCIDevice *aDev, uint32_t u32Address, unsigned len);
183DECLINLINE(PPCIDEVICE) ich9pciFindBridge(PPCIBUS pBus, uint8_t iBus);
184static void ich9pciBiosInitDevice(PPCIGLOBALS pGlobals, uint8_t uBus, uint8_t uDevFn);
185#endif
186
187// See 7.2.2. PCI Express Enhanced Configuration Mechanism for details of address
188// mapping, we take n=6 approach
189DECLINLINE(void) ich9pciPhysToPciAddr(PPCIGLOBALS pGlobals, RTGCPHYS GCPhysAddr, PciAddress* pPciAddr)
190{
191 pPciAddr->iBus = (GCPhysAddr >> 20) & ((1<<6) - 1);
192 pPciAddr->iDeviceFunc = (GCPhysAddr >> 12) & ((1<<(5+3)) - 1); // 5 bits - device, 3 bits - function
193 pPciAddr->iRegister = (GCPhysAddr >> 0) & ((1<<(6+4+2)) - 1); // 6 bits - register, 4 bits - extended register, 2 bits -Byte Enable
194}
195
196DECLINLINE(void) ich9pciStateToPciAddr(PPCIGLOBALS pGlobals, RTGCPHYS addr, PciAddress* pPciAddr)
197{
198 pPciAddr->iBus = (pGlobals->uConfigReg >> 16) & 0xff;
199 pPciAddr->iDeviceFunc = (pGlobals->uConfigReg >> 8) & 0xff;
200 pPciAddr->iRegister = (pGlobals->uConfigReg & 0xfc) | (addr & 3);
201}
202
203PDMBOTHCBDECL(void) ich9pciSetIrq(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel)
204{
205 ich9pciSetIrqInternal(PDMINS_2_DATA(pDevIns, PPCIGLOBALS), pPciDev->devfn, pPciDev, iIrq, iLevel);
206}
207
208PDMBOTHCBDECL(void) ich9pcibridgeSetIrq(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel)
209{
210 /*
211 * The PCI-to-PCI bridge specification defines how the interrupt pins
212 * are routed from the secondary to the primary bus (see chapter 9).
213 * iIrq gives the interrupt pin the pci device asserted.
214 * We change iIrq here according to the spec and call the SetIrq function
215 * of our parent passing the device which asserted the interrupt instead of the device of the bridge.
216 */
217 PPCIBUS pBus = PDMINS_2_DATA(pDevIns, PPCIBUS);
218 PPCIDEVICE pPciDevBus = pPciDev;
219 int iIrqPinBridge = iIrq;
220 uint8_t uDevFnBridge = 0;
221
222 /* Walk the chain until we reach the host bus. */
223 do
224 {
225 uDevFnBridge = pBus->aPciDev.devfn;
226 iIrqPinBridge = ((pPciDevBus->devfn >> 3) + iIrqPinBridge) & 3;
227
228 /* Get the parent. */
229 pBus = pBus->aPciDev.Int.s.CTX_SUFF(pBus);
230 pPciDevBus = &pBus->aPciDev;
231 } while (pBus->iBus != 0);
232
233 AssertMsgReturnVoid(pBus->iBus == 0, ("This is not the host pci bus iBus=%d\n", pBus->iBus));
234 ich9pciSetIrqInternal(PCIROOTBUS_2_PCIGLOBALS(pBus), uDevFnBridge, pPciDev, iIrqPinBridge, iLevel);
235}
236
237/**
238 * Port I/O Handler for PCI address OUT operations.
239 *
240 * @returns VBox status code.
241 *
242 * @param pDevIns The device instance.
243 * @param pvUser User argument - ignored.
244 * @param uPort Port number used for the OUT operation.
245 * @param u32 The value to output.
246 * @param cb The value size in bytes.
247 */
248PDMBOTHCBDECL(int) ich9pciIOPortAddressWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
249{
250 Log(("ich9pciIOPortAddressWrite: Port=%#x u32=%#x cb=%d\n", Port, u32, cb));
251 NOREF(pvUser);
252 if (cb == 4)
253 {
254 PPCIGLOBALS pThis = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
255
256 PCI_LOCK(pDevIns, VINF_IOM_HC_IOPORT_WRITE);
257 pThis->uConfigReg = u32 & ~3; /* Bits 0-1 are reserved and we silently clear them */
258 PCI_UNLOCK(pDevIns);
259 }
260
261 return VINF_SUCCESS;
262}
263
264/**
265 * Port I/O Handler for PCI address IN operations.
266 *
267 * @returns VBox status code.
268 *
269 * @param pDevIns The device instance.
270 * @param pvUser User argument - ignored.
271 * @param uPort Port number used for the IN operation.
272 * @param pu32 Where to store the result.
273 * @param cb Number of bytes read.
274 */
275PDMBOTHCBDECL(int) ich9pciIOPortAddressRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb)
276{
277 NOREF(pvUser);
278 if (cb == 4)
279 {
280 PPCIGLOBALS pThis = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
281 PCI_LOCK(pDevIns, VINF_IOM_HC_IOPORT_READ);
282 *pu32 = pThis->uConfigReg;
283 PCI_UNLOCK(pDevIns);
284 Log(("pciIOPortAddressRead: Port=%#x cb=%d -> %#x\n", Port, cb, *pu32));
285 return VINF_SUCCESS;
286 }
287
288 Log(("ich9pciIOPortAddressRead: Port=%#x cb=%d VERR_IOM_IOPORT_UNUSED\n", Port, cb));
289
290 return VERR_IOM_IOPORT_UNUSED;
291}
292
293static int ich9pciDataWriteAddr(PPCIGLOBALS pGlobals, PciAddress* pAddr,
294 uint32_t val, int cb, int rcReschedule)
295{
296 int rc = VINF_SUCCESS;
297
298 if (pAddr->iRegister > 0xff)
299 {
300 LogRel(("PCI: attempt to write extended register: %x (%d) <- val\n", pAddr->iRegister, cb, val));
301 goto out;
302 }
303
304 if (pAddr->iBus != 0)
305 {
306 if (pGlobals->aPciBus.cBridges)
307 {
308#ifdef IN_RING3 /** @todo do lookup in R0/RC too! */
309 PPCIDEVICE pBridgeDevice = ich9pciFindBridge(&pGlobals->aPciBus, pAddr->iBus);
310 if (pBridgeDevice)
311 {
312 AssertPtr(pBridgeDevice->Int.s.pfnBridgeConfigWrite);
313 pBridgeDevice->Int.s.pfnBridgeConfigWrite(pBridgeDevice->pDevIns, pAddr->iBus, pAddr->iDeviceFunc, pAddr->iRegister, val, cb);
314 }
315 else
316 {
317 // do nothing, bridge not found
318 }
319#else
320 rc = rcReschedule;
321 goto out;
322#endif
323 }
324 }
325 else
326 {
327 if (pGlobals->aPciBus.apDevices[pAddr->iDeviceFunc])
328 {
329#ifdef IN_RING3
330 R3PTRTYPE(PCIDevice *) aDev = pGlobals->aPciBus.apDevices[pAddr->iDeviceFunc];
331 Log(("ich9pciConfigWrite: %s: addr=%02x val=%08x len=%d\n", aDev->name, pAddr->iRegister, val, cb));
332 aDev->Int.s.pfnConfigWrite(aDev, pAddr->iRegister, val, cb);
333#else
334 rc = rcReschedule;
335 goto out;
336#endif
337 }
338 }
339
340 out:
341 Log2(("ich9pciDataWriteAddr: %02x:%02x:%02x reg %x(%d) %x %Rrc\n",
342 pAddr->iBus, pAddr->iDeviceFunc >> 3, pAddr->iDeviceFunc & 0x7, pAddr->iRegister,
343 cb, val, rc));
344
345 return rc;
346}
347
348static int ich9pciDataWrite(PPCIGLOBALS pGlobals, uint32_t addr, uint32_t val, int len)
349{
350 PciAddress aPciAddr;
351
352 LogFlow(("ich9pciDataWrite: config=%08x val=%08x len=%d\n", pGlobals->uConfigReg, val, len));
353
354 if (!(pGlobals->uConfigReg & (1 << 31)))
355 return VINF_SUCCESS;
356
357 if ((pGlobals->uConfigReg & 0x3) != 0)
358 return VINF_SUCCESS;
359
360 /* Compute destination device */
361 ich9pciStateToPciAddr(pGlobals, addr, &aPciAddr);
362
363 return ich9pciDataWriteAddr(pGlobals, &aPciAddr, val, len, VINF_IOM_HC_IOPORT_WRITE);
364}
365
366static void ich9pciNoMem(void* ptr, int cb)
367{
368 for (int i = 0; i < cb; i++)
369 ((uint8_t*)ptr)[i] = 0xff;
370}
371
372/**
373 * Port I/O Handler for PCI data OUT operations.
374 *
375 * @returns VBox status code.
376 *
377 * @param pDevIns The device instance.
378 * @param pvUser User argument - ignored.
379 * @param uPort Port number used for the OUT operation.
380 * @param u32 The value to output.
381 * @param cb The value size in bytes.
382 */
383PDMBOTHCBDECL(int) ich9pciIOPortDataWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
384{
385 Log(("pciIOPortDataWrite: Port=%#x u32=%#x cb=%d\n", Port, u32, cb));
386 NOREF(pvUser);
387 int rc = VINF_SUCCESS;
388 if (!(Port % cb))
389 {
390 PCI_LOCK(pDevIns, VINF_IOM_HC_IOPORT_WRITE);
391 rc = ich9pciDataWrite(PDMINS_2_DATA(pDevIns, PPCIGLOBALS), Port, u32, cb);
392 PCI_UNLOCK(pDevIns);
393 }
394 else
395 AssertMsgFailed(("Unaligned write to port %#x u32=%#x cb=%d\n", Port, u32, cb));
396 return rc;
397}
398
399static int ich9pciDataReadAddr(PPCIGLOBALS pGlobals, PciAddress* pPciAddr, int cb,
400 uint32_t *pu32, int rcReschedule)
401{
402 int rc = VINF_SUCCESS;
403
404 if (pPciAddr->iRegister > 0xff)
405 {
406 LogRel(("PCI: attempt to read extended register: %x\n", pPciAddr->iRegister));
407 ich9pciNoMem(pu32, cb);
408 goto out;
409 }
410
411
412 if (pPciAddr->iBus != 0)
413 {
414 if (pGlobals->aPciBus.cBridges)
415 {
416#ifdef IN_RING3 /** @todo do lookup in R0/RC too! */
417 PPCIDEVICE pBridgeDevice = ich9pciFindBridge(&pGlobals->aPciBus, pPciAddr->iBus);
418 if (pBridgeDevice)
419 {
420 AssertPtr(pBridgeDevice->Int.s.pfnBridgeConfigRead);
421 *pu32 = pBridgeDevice->Int.s.pfnBridgeConfigRead(pBridgeDevice->pDevIns, pPciAddr->iBus, pPciAddr->iDeviceFunc, pPciAddr->iRegister, cb);
422 }
423 else
424 ich9pciNoMem(pu32, cb);
425#else
426 rc = rcReschedule;
427 goto out;
428#endif
429 } else
430 ich9pciNoMem(pu32, cb);
431 }
432 else
433 {
434 if (pGlobals->aPciBus.apDevices[pPciAddr->iDeviceFunc])
435 {
436#ifdef IN_RING3
437 R3PTRTYPE(PCIDevice *) aDev = pGlobals->aPciBus.apDevices[pPciAddr->iDeviceFunc];
438 *pu32 = aDev->Int.s.pfnConfigRead(aDev, pPciAddr->iRegister, cb);
439 Log(("ich9pciDataReadAddr: %s: addr=%02x val=%08x len=%d\n", aDev->name, pPciAddr->iRegister, *pu32, cb));
440#else
441 rc = rcReschedule;
442 goto out;
443#endif
444 }
445 else
446 ich9pciNoMem(pu32, cb);
447 }
448
449 out:
450 Log2(("ich9pciDataReadAddr: %02x:%02x:%02x reg %x(%d) gave %x %Rrc\n",
451 pPciAddr->iBus, pPciAddr->iDeviceFunc >> 3, pPciAddr->iDeviceFunc & 0x7, pPciAddr->iRegister,
452 cb, *pu32, rc));
453
454 return rc;
455}
456
457static int ich9pciDataRead(PPCIGLOBALS pGlobals, uint32_t addr, int cb, uint32_t *pu32)
458{
459 PciAddress aPciAddr;
460
461 LogFlow(("ich9pciDataRead: config=%x cb=%d\n", pGlobals->uConfigReg, cb));
462
463 *pu32 = 0xffffffff;
464
465 if (!(pGlobals->uConfigReg & (1 << 31)))
466 return VINF_SUCCESS;
467
468 if ((pGlobals->uConfigReg & 0x3) != 0)
469 return VINF_SUCCESS;
470
471 /* Compute destination device */
472 ich9pciStateToPciAddr(pGlobals, addr, &aPciAddr);
473
474 return ich9pciDataReadAddr(pGlobals, &aPciAddr, cb, pu32, VINF_IOM_HC_IOPORT_READ);
475}
476
477/**
478 * Port I/O Handler for PCI data IN operations.
479 *
480 * @returns VBox status code.
481 *
482 * @param pDevIns The device instance.
483 * @param pvUser User argument - ignored.
484 * @param uPort Port number used for the IN operation.
485 * @param pu32 Where to store the result.
486 * @param cb Number of bytes read.
487 */
488PDMBOTHCBDECL(int) ich9pciIOPortDataRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb)
489{
490 NOREF(pvUser);
491 if (!(Port % cb))
492 {
493 PCI_LOCK(pDevIns, VINF_IOM_HC_IOPORT_READ);
494 int rc = ich9pciDataRead(PDMINS_2_DATA(pDevIns, PPCIGLOBALS), Port, cb, pu32);
495 PCI_UNLOCK(pDevIns);
496 Log(("pciIOPortDataRead: Port=%#x cb=%#x -> %#x (%Rrc)\n", Port, cb, *pu32, rc));
497 return rc;
498 }
499 AssertMsgFailed(("Unaligned read from port %#x cb=%d\n", Port, cb));
500 return VERR_IOM_IOPORT_UNUSED;
501}
502
503/* Compute mapping of PCI slot and IRQ number to APIC interrupt line */
504DECLINLINE(int) ich9pciSlot2ApicIrq(uint8_t uSlot, int irq_num)
505{
506 return (irq_num + uSlot) & 7;
507}
508
509/* return the global irq number corresponding to a given device irq
510 pin. We could also use the bus number to have a more precise
511 mapping. This is the implementation note described in the PCI spec chapter 2.2.6 */
512DECLINLINE(int) ich9pciSlotGetPirq(uint8_t uBus, uint8_t uDevFn, int iIrqNum)
513{
514 int iSlotAddend = (uDevFn >> 3) - 1;
515 return (iIrqNum + iSlotAddend) & 3;
516}
517
518/* irqs corresponding to PCI irqs A-D, must match pci_irq_list in rombios.c */
519static const uint8_t aPciIrqs[4] = { 11, 10, 9, 5 };
520
521/* Add one more level up request on APIC input line */
522DECLINLINE(void) ich9pciApicLevelUp(PPCIGLOBALS pGlobals, int irq_num)
523{
524 ASMAtomicIncU32(&pGlobals->uaPciApicIrqLevels[irq_num]);
525}
526
527/* Remove one level up request on APIC input line */
528DECLINLINE(void) ich9pciApicLevelDown(PPCIGLOBALS pGlobals, int irq_num)
529{
530 ASMAtomicDecU32(&pGlobals->uaPciApicIrqLevels[irq_num]);
531}
532
533static void ich9pciApicSetIrq(PPCIBUS pBus, uint8_t uDevFn, PCIDevice *pPciDev, int irq_num1, int iLevel, int iForcedIrq)
534{
535 /* This is only allowed to be called with a pointer to the root bus. */
536 AssertMsg(pBus->iBus == 0, ("iBus=%u\n", pBus->iBus));
537
538 if (iForcedIrq == -1)
539 {
540 int apic_irq, apic_level;
541 PPCIGLOBALS pGlobals = PCIROOTBUS_2_PCIGLOBALS(pBus);
542 int irq_num = ich9pciSlot2ApicIrq(uDevFn >> 3, irq_num1);
543
544 if ((iLevel & PDM_IRQ_LEVEL_HIGH) == PDM_IRQ_LEVEL_HIGH)
545 ich9pciApicLevelUp(pGlobals, irq_num);
546 else if ((iLevel & PDM_IRQ_LEVEL_HIGH) == PDM_IRQ_LEVEL_LOW)
547 ich9pciApicLevelDown(pGlobals, irq_num);
548
549 apic_irq = irq_num + 0x10;
550 apic_level = pGlobals->uaPciApicIrqLevels[irq_num] != 0;
551 Log3(("ich9pciApicSetIrq: %s: irq_num1=%d level=%d apic_irq=%d apic_level=%d irq_num1=%d\n",
552 R3STRING(pPciDev->name), irq_num1, iLevel, apic_irq, apic_level, irq_num));
553 pBus->CTX_SUFF(pPciHlp)->pfnIoApicSetIrq(pBus->CTX_SUFF(pDevIns), apic_irq, apic_level);
554
555 if ((iLevel & PDM_IRQ_LEVEL_FLIP_FLOP) == PDM_IRQ_LEVEL_FLIP_FLOP)
556 {
557 /**
558 * we raised it few lines above, as PDM_IRQ_LEVEL_FLIP_FLOP has
559 * PDM_IRQ_LEVEL_HIGH bit set
560 */
561 ich9pciApicLevelDown(pGlobals, irq_num);
562 pPciDev->Int.s.uIrqPinState = PDM_IRQ_LEVEL_LOW;
563 apic_level = pGlobals->uaPciApicIrqLevels[irq_num] != 0;
564 Log3(("ich9pciApicSetIrq: %s: irq_num1=%d level=%d apic_irq=%d apic_level=%d irq_num1=%d (flop)\n",
565 R3STRING(pPciDev->name), irq_num1, iLevel, apic_irq, apic_level, irq_num));
566 pBus->CTX_SUFF(pPciHlp)->pfnIoApicSetIrq(pBus->CTX_SUFF(pDevIns), apic_irq, apic_level);
567 }
568 } else {
569 Log3(("ich9pciApicSetIrq: (forced) %s: irq_num1=%d level=%d acpi_irq=%d\n",
570 R3STRING(pPciDev->name), irq_num1, iLevel, iForcedIrq));
571 pBus->CTX_SUFF(pPciHlp)->pfnIoApicSetIrq(pBus->CTX_SUFF(pDevIns), iForcedIrq, iLevel);
572 }
573}
574
575static void ich9pciSetIrqInternal(PPCIGLOBALS pGlobals, uint8_t uDevFn, PPCIDEVICE pPciDev, int iIrq, int iLevel)
576{
577
578 if (PCIDevIsIntxDisabled(pPciDev))
579 {
580 if (MsiIsEnabled(pPciDev))
581 {
582 PPDMDEVINS pDevIns = pGlobals->aPciBus.CTX_SUFF(pDevIns);
583 MsiNotify(pDevIns, pGlobals->aPciBus.CTX_SUFF(pPciHlp), pPciDev, iIrq, iLevel);
584 }
585
586 if (MsixIsEnabled(pPciDev))
587 {
588 PPDMDEVINS pDevIns = pGlobals->aPciBus.CTX_SUFF(pDevIns);
589 MsixNotify(pDevIns, pGlobals->aPciBus.CTX_SUFF(pPciHlp), pPciDev, iIrq, iLevel);
590 }
591 return;
592 }
593
594 PPCIBUS pBus = &pGlobals->aPciBus;
595 const bool fIsAcpiDevice = PCIDevGetDeviceId(pPciDev) == 0x7113;
596
597 /* Check if the state changed. */
598 if (pPciDev->Int.s.uIrqPinState != iLevel)
599 {
600 pPciDev->Int.s.uIrqPinState = (iLevel & PDM_IRQ_LEVEL_HIGH);
601
602 /* Send interrupt to I/O APIC only now. */
603 if (fIsAcpiDevice)
604 /*
605 * ACPI needs special treatment since SCI is hardwired and
606 * should not be affected by PCI IRQ routing tables at the
607 * same time SCI IRQ is shared in PCI sense hence this
608 * kludge (i.e. we fetch the hardwired value from ACPIs
609 * PCI device configuration space).
610 */
611 ich9pciApicSetIrq(pBus, uDevFn, pPciDev, -1, iLevel, PCIDevGetInterruptLine(pPciDev));
612 else
613 ich9pciApicSetIrq(pBus, uDevFn, pPciDev, iIrq, iLevel, -1);
614 }
615}
616
617PDMBOTHCBDECL(int) ich9pciMcfgMMIOWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb)
618{
619 PPCIGLOBALS pGlobals = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
620 PciAddress aDest;
621 uint32_t u32 = 0;
622
623 Log2(("ich9pciMcfgMMIOWrite: %RGp(%d) \n", GCPhysAddr, cb));
624
625 PCI_LOCK(pDevIns, VINF_IOM_HC_MMIO_WRITE);
626
627 ich9pciPhysToPciAddr(pGlobals, GCPhysAddr, &aDest);
628
629 switch (cb)
630 {
631 case 1:
632 u32 = *(uint8_t*)pv;
633 break;
634 case 2:
635 u32 = *(uint16_t*)pv;
636 break;
637 case 4:
638 u32 = *(uint32_t*)pv;
639 break;
640 default:
641 Assert(false);
642 break;
643 }
644 int rc = ich9pciDataWriteAddr(pGlobals, &aDest, u32, cb, VINF_IOM_HC_MMIO_WRITE);
645 PCI_UNLOCK(pDevIns);
646
647 return rc;
648}
649
650PDMBOTHCBDECL(int) ich9pciMcfgMMIORead (PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb)
651{
652 PPCIGLOBALS pGlobals = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
653 PciAddress aDest;
654 uint32_t rv;
655
656 LogFlow(("ich9pciMcfgMMIORead: %RGp(%d) \n", GCPhysAddr, cb));
657
658 PCI_LOCK(pDevIns, VINF_IOM_HC_MMIO_READ);
659
660 ich9pciPhysToPciAddr(pGlobals, GCPhysAddr, &aDest);
661
662 int rc = ich9pciDataReadAddr(pGlobals, &aDest, cb, &rv, VINF_IOM_HC_MMIO_READ);
663
664 if (RT_SUCCESS(rc))
665 {
666 switch (cb)
667 {
668 case 1:
669 *(uint8_t*)pv = (uint8_t)rv;
670 break;
671 case 2:
672 *(uint16_t*)pv = (uint16_t)rv;
673 break;
674 case 4:
675 *(uint32_t*)pv = (uint32_t)rv;
676 break;
677 default:
678 Assert(false);
679 break;
680 }
681 }
682 PCI_UNLOCK(pDevIns);
683
684 return rc;
685}
686
687#ifdef IN_RING3
688
689DECLINLINE(PPCIDEVICE) ich9pciFindBridge(PPCIBUS pBus, uint8_t iBus)
690{
691 /* Search for a fitting bridge. */
692 for (uint32_t iBridge = 0; iBridge < pBus->cBridges; iBridge++)
693 {
694 /*
695 * Examine secondary and subordinate bus number.
696 * If the target bus is in the range we pass the request on to the bridge.
697 */
698 PPCIDEVICE pBridge = pBus->papBridgesR3[iBridge];
699 AssertMsg(pBridge && pciDevIsPci2PciBridge(pBridge),
700 ("Device is not a PCI bridge but on the list of PCI bridges\n"));
701 uint32_t uSecondary = PCIDevGetByte(pBridge, VBOX_PCI_SECONDARY_BUS);
702 uint32_t uSubordinate = PCIDevGetByte(pBridge, VBOX_PCI_SUBORDINATE_BUS);
703 Log2(("ich9pciFindBridge on bus %p, bridge %d: %d in %d..%d\n", pBus, iBridge, iBus, uSecondary, uSubordinate));
704 if (iBus >= uSecondary && iBus <= uSubordinate)
705 return pBridge;
706 }
707
708 /* Nothing found. */
709 return NULL;
710}
711
712DECLINLINE(uint32_t) ich9pciGetRegionReg(int iRegion)
713{
714 return (iRegion == VBOX_PCI_ROM_SLOT) ?
715 VBOX_PCI_ROM_ADDRESS : (VBOX_PCI_BASE_ADDRESS_0 + iRegion * 4);
716}
717
718#define INVALID_PCI_ADDRESS ~0U
719
720static int ich9pciUnmapRegion(PPCIDEVICE pDev, int iRegion)
721{
722 PCIIORegion* pRegion = &pDev->Int.s.aIORegions[iRegion];
723 int rc = VINF_SUCCESS;
724 PPCIBUS pBus = pDev->Int.s.CTX_SUFF(pBus);
725
726 Assert (pRegion->size != 0);
727
728 if (pRegion->addr != INVALID_PCI_ADDRESS)
729 {
730 if (pRegion->type & PCI_ADDRESS_SPACE_IO)
731 {
732 /* Port IO */
733 rc = PDMDevHlpIOPortDeregister(pDev->pDevIns, pRegion->addr, pRegion->size);
734 AssertRC(rc);
735 }
736 else
737 {
738 RTGCPHYS GCPhysBase = pRegion->addr;
739 if (pBus->pPciHlpR3->pfnIsMMIO2Base(pBus->pDevInsR3, pDev->pDevIns, GCPhysBase))
740 {
741 /* unmap it. */
742 rc = pRegion->map_func(pDev, iRegion, NIL_RTGCPHYS, pRegion->size, (PCIADDRESSSPACE)(pRegion->type));
743 AssertRC(rc);
744 rc = PDMDevHlpMMIO2Unmap(pDev->pDevIns, iRegion, GCPhysBase);
745 }
746 else
747 rc = PDMDevHlpMMIODeregister(pDev->pDevIns, GCPhysBase, pRegion->size);
748 }
749
750 pRegion->addr = INVALID_PCI_ADDRESS;
751 }
752
753 return rc;
754}
755
756static void ich9pciUpdateMappings(PCIDevice* pDev)
757{
758 PPCIBUS pBus = pDev->Int.s.CTX_SUFF(pBus);
759 uint32_t uLast, uNew;
760
761 int iCmd = PCIDevGetCommand(pDev);
762 for (int iRegion = 0; iRegion < PCI_NUM_REGIONS; iRegion++)
763 {
764 PCIIORegion* pRegion = &pDev->Int.s.aIORegions[iRegion];
765 uint32_t uConfigReg = ich9pciGetRegionReg(iRegion);
766 int32_t iRegionSize = pRegion->size;
767 int rc;
768
769 if (iRegionSize == 0)
770 continue;
771
772 AssertMsg((pRegion->type & PCI_ADDRESS_SPACE_BAR64) == 0, ("64-bit BARs not yet implemented\n"));
773
774 if (pRegion->type & PCI_ADDRESS_SPACE_IO)
775 {
776 /* port IO region */
777 if (iCmd & PCI_COMMAND_IOACCESS)
778 {
779 /* IO access allowed */
780 uNew = ich9pciConfigReadDev(pDev, uConfigReg, 4);
781 uNew &= ~(iRegionSize - 1);
782 uLast = uNew + iRegionSize - 1;
783 /* only 64K ioports on PC */
784 if (uLast <= uNew || uNew == 0 || uLast >= 0x10000)
785 uNew = INVALID_PCI_ADDRESS;
786 } else
787 uNew = INVALID_PCI_ADDRESS;
788 }
789 else
790 {
791 /* MMIO region */
792 if (iCmd & PCI_COMMAND_MEMACCESS)
793 {
794 uNew = ich9pciConfigReadDev(pDev, uConfigReg, 4);
795 /* the ROM slot has a specific enable bit */
796 if (iRegion == PCI_ROM_SLOT && !(uNew & 1))
797 uNew = INVALID_PCI_ADDRESS;
798 else
799 {
800 uNew &= ~(iRegionSize - 1);
801 uLast = uNew + iRegionSize - 1;
802 /* NOTE: we do not support wrapping */
803 /* XXX: as we cannot support really dynamic
804 mappings, we handle specific values as invalid
805 mappings. */
806 if (uLast <= uNew || uNew == 0 || uLast == INVALID_PCI_ADDRESS)
807 uNew = INVALID_PCI_ADDRESS;
808 }
809 } else
810 uNew = INVALID_PCI_ADDRESS;
811 }
812 /* now do the real mapping */
813 if (uNew != pRegion->addr)
814 {
815 if (pRegion->addr != INVALID_PCI_ADDRESS)
816 ich9pciUnmapRegion(pDev, iRegion);
817
818 pRegion->addr = uNew;
819 if (pRegion->addr != INVALID_PCI_ADDRESS)
820 {
821 /* finally, map the region */
822 rc = pRegion->map_func(pDev, iRegion,
823 pRegion->addr, pRegion->size,
824 (PCIADDRESSSPACE)(pRegion->type));
825 AssertRC(rc);
826 }
827 }
828 }
829}
830
831static DECLCALLBACK(int) ich9pciRegister(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, const char *pszName, int iDev)
832{
833 PPCIBUS pBus = DEVINS_2_PCIBUS(pDevIns);
834
835 /*
836 * Check input.
837 */
838 if ( !pszName
839 || !pPciDev
840 || iDev >= (int)RT_ELEMENTS(pBus->apDevices)
841 )
842 {
843 AssertMsgFailed(("Invalid argument! pszName=%s pPciDev=%p iDev=%d\n", pszName, pPciDev, iDev));
844 return VERR_INVALID_PARAMETER;
845 }
846
847 /*
848 * Register the device.
849 */
850 return ich9pciRegisterInternal(pBus, iDev, pPciDev, pszName);
851}
852
853
854static DECLCALLBACK(int) ich9pciRegisterMsi(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PPDMMSIREG pMsiReg)
855{
856 int rc;
857
858 rc = MsiInit(pPciDev, pMsiReg);
859 if (rc != VINF_SUCCESS)
860 return rc;
861
862 rc = MsixInit(pPciDev->Int.s.CTX_SUFF(pBus)->CTX_SUFF(pPciHlp), pPciDev, pMsiReg);
863 if (rc != VINF_SUCCESS)
864 return rc;
865
866 return rc;
867}
868
869
870static DECLCALLBACK(int) ich9pcibridgeRegister(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, const char *pszName, int iDev)
871{
872
873 PPCIBUS pBus = PDMINS_2_DATA(pDevIns, PPCIBUS);
874
875 /*
876 * Check input.
877 */
878 if ( !pszName
879 || !pPciDev
880 || iDev >= (int)RT_ELEMENTS(pBus->apDevices))
881 {
882 AssertMsgFailed(("Invalid argument! pszName=%s pPciDev=%p iDev=%d\n", pszName, pPciDev, iDev));
883 return VERR_INVALID_PARAMETER;
884 }
885
886 /*
887 * Register the device.
888 */
889 return ich9pciRegisterInternal(pBus, iDev, pPciDev, pszName);
890}
891
892static DECLCALLBACK(int) ich9pciIORegionRegister(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iRegion, uint32_t cbRegion, PCIADDRESSSPACE enmType, PFNPCIIOREGIONMAP pfnCallback)
893{
894 /*
895 * Validate.
896 */
897 AssertMsgReturn( enmType == PCI_ADDRESS_SPACE_MEM
898 || enmType == PCI_ADDRESS_SPACE_IO
899 || enmType == PCI_ADDRESS_SPACE_MEM_PREFETCH,
900 ("Invalid enmType=%#x? Or was this a bitmask after all...\n", enmType),
901 VERR_INVALID_PARAMETER);
902 AssertMsgReturn((unsigned)iRegion < PCI_NUM_REGIONS,
903 ("Invalid iRegion=%d PCI_NUM_REGIONS=%d\n", iRegion, PCI_NUM_REGIONS),
904 VERR_INVALID_PARAMETER);
905 int iLastSet = ASMBitLastSetU32(cbRegion);
906 AssertMsgReturn( iLastSet != 0
907 && RT_BIT_32(iLastSet - 1) == cbRegion,
908 ("Invalid cbRegion=%#x iLastSet=%#x (not a power of 2 or 0)\n", cbRegion, iLastSet),
909 VERR_INVALID_PARAMETER);
910
911 /*
912 * Register the I/O region.
913 */
914 PPCIIOREGION pRegion = &pPciDev->Int.s.aIORegions[iRegion];
915 pRegion->addr = INVALID_PCI_ADDRESS;
916 pRegion->size = cbRegion;
917 pRegion->type = enmType;
918 pRegion->map_func = pfnCallback;
919
920 /* Set type in the config space. */
921 uint32_t u32Address = ich9pciGetRegionReg(iRegion);
922 uint32_t u32Value = (enmType == PCI_ADDRESS_SPACE_MEM_PREFETCH ? (1 << 3) : 0)
923 | (enmType == PCI_ADDRESS_SPACE_IO ? 1 : 0);
924 PCIDevSetDWord(pPciDev, u32Address, u32Value);
925
926 return VINF_SUCCESS;
927}
928
929static DECLCALLBACK(void) ich9pciSetConfigCallbacks(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld,
930 PFNPCICONFIGWRITE pfnWrite, PPFNPCICONFIGWRITE ppfnWriteOld)
931{
932 if (ppfnReadOld)
933 *ppfnReadOld = pPciDev->Int.s.pfnConfigRead;
934 pPciDev->Int.s.pfnConfigRead = pfnRead;
935
936 if (ppfnWriteOld)
937 *ppfnWriteOld = pPciDev->Int.s.pfnConfigWrite;
938 pPciDev->Int.s.pfnConfigWrite = pfnWrite;
939}
940
941/**
942 * Saves a state of the PCI device.
943 *
944 * @returns VBox status code.
945 * @param pDevIns Device instance of the PCI Bus.
946 * @param pPciDev Pointer to PCI device.
947 * @param pSSM The handle to save the state to.
948 */
949static DECLCALLBACK(int) ich9pciGenericSaveExec(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PSSMHANDLE pSSM)
950{
951 Assert(!pciDevIsPassthrough(pPciDev));
952 return SSMR3PutMem(pSSM, &pPciDev->config[0], sizeof(pPciDev->config));
953}
954
955static int ich9pciR3CommonSaveExec(PPCIBUS pBus, PSSMHANDLE pSSM)
956{
957 /*
958 * Iterate thru all the devices.
959 */
960 for (uint32_t i = 0; i < RT_ELEMENTS(pBus->apDevices); i++)
961 {
962 PPCIDEVICE pDev = pBus->apDevices[i];
963 if (pDev)
964 {
965 /* Device position */
966 SSMR3PutU32(pSSM, i);
967 /* PCI config registers */
968 SSMR3PutMem(pSSM, pDev->config, sizeof(pDev->config));
969
970 /* Device flags */
971 int rc = SSMR3PutU32(pSSM, pDev->Int.s.fFlags);
972 if (RT_FAILURE(rc))
973 return rc;
974
975 /* IRQ pin state */
976 rc = SSMR3PutS32(pSSM, pDev->Int.s.uIrqPinState);
977 if (RT_FAILURE(rc))
978 return rc;
979
980 /* MSI info */
981 rc = SSMR3PutU8(pSSM, pDev->Int.s.u8MsiCapOffset);
982 if (RT_FAILURE(rc))
983 return rc;
984 rc = SSMR3PutU8(pSSM, pDev->Int.s.u8MsiCapSize);
985 if (RT_FAILURE(rc))
986 return rc;
987
988 /* MSI-X info */
989 rc = SSMR3PutU8(pSSM, pDev->Int.s.u8MsixCapOffset);
990 if (RT_FAILURE(rc))
991 return rc;
992 rc = SSMR3PutU8(pSSM, pDev->Int.s.u8MsixCapSize);
993 if (RT_FAILURE(rc))
994 return rc;
995 /* Save MSI-X page state */
996 if (pDev->Int.s.u8MsixCapOffset != 0)
997 {
998 Assert(pDev->Int.s.pMsixPageR3 != NULL);
999 SSMR3PutMem(pSSM, pDev->Int.s.pMsixPageR3, 0x1000);
1000 if (RT_FAILURE(rc))
1001 return rc;
1002 }
1003 }
1004 }
1005 return SSMR3PutU32(pSSM, UINT32_MAX); /* terminator */
1006}
1007
1008static DECLCALLBACK(int) ich9pciR3SaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM)
1009{
1010 PPCIGLOBALS pThis = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
1011
1012 /*
1013 * Bus state data.
1014 */
1015 SSMR3PutU32(pSSM, pThis->uConfigReg);
1016
1017 /*
1018 * Save IRQ states.
1019 */
1020 for (int i = 0; i < PCI_APIC_IRQ_PINS; i++)
1021 SSMR3PutU32(pSSM, pThis->uaPciApicIrqLevels[i]);
1022
1023 SSMR3PutU32(pSSM, ~0); /* separator */
1024
1025 return ich9pciR3CommonSaveExec(&pThis->aPciBus, pSSM);
1026}
1027
1028
1029static DECLCALLBACK(int) ich9pcibridgeR3SaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM)
1030{
1031 PPCIBUS pThis = PDMINS_2_DATA(pDevIns, PPCIBUS);
1032 return ich9pciR3CommonSaveExec(pThis, pSSM);
1033}
1034
1035
1036static void ich9pcibridgeConfigWrite(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, uint32_t u32Value, unsigned cb)
1037{
1038 PPCIBUS pBus = PDMINS_2_DATA(pDevIns, PPCIBUS);
1039
1040 LogFlowFunc((": pDevIns=%p iBus=%d iDevice=%d u32Address=%u u32Value=%u cb=%d\n", pDevIns, iBus, iDevice, u32Address, u32Value, cb));
1041
1042 /* If the current bus is not the target bus search for the bus which contains the device. */
1043 if (iBus != PCIDevGetByte(&pBus->aPciDev, VBOX_PCI_SECONDARY_BUS))
1044 {
1045 PPCIDEVICE pBridgeDevice = ich9pciFindBridge(pBus, iBus);
1046 if (pBridgeDevice)
1047 {
1048 AssertPtr(pBridgeDevice->Int.s.pfnBridgeConfigWrite);
1049 pBridgeDevice->Int.s.pfnBridgeConfigWrite(pBridgeDevice->pDevIns, iBus, iDevice, u32Address, u32Value, cb);
1050 }
1051 }
1052 else
1053 {
1054 /* This is the target bus, pass the write to the device. */
1055 PPCIDEVICE pPciDev = pBus->apDevices[iDevice];
1056 if (pPciDev)
1057 {
1058 Log(("%s: %s: addr=%02x val=%08x len=%d\n", __FUNCTION__, pPciDev->name, u32Address, u32Value, cb));
1059 pPciDev->Int.s.pfnConfigWrite(pPciDev, u32Address, u32Value, cb);
1060 }
1061 }
1062}
1063
1064static uint32_t ich9pcibridgeConfigRead(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, unsigned cb)
1065{
1066 PPCIBUS pBus = PDMINS_2_DATA(pDevIns, PPCIBUS);
1067 uint32_t u32Value;
1068
1069 LogFlowFunc((": pDevIns=%p iBus=%d iDevice=%d u32Address=%u cb=%d\n", pDevIns, iBus, iDevice, u32Address, cb));
1070
1071 /* If the current bus is not the target bus search for the bus which contains the device. */
1072 if (iBus != PCIDevGetByte(&pBus->aPciDev, VBOX_PCI_SECONDARY_BUS))
1073 {
1074 PPCIDEVICE pBridgeDevice = ich9pciFindBridge(pBus, iBus);
1075 if (pBridgeDevice)
1076 {
1077 AssertPtr( pBridgeDevice->Int.s.pfnBridgeConfigRead);
1078 u32Value = pBridgeDevice->Int.s.pfnBridgeConfigRead(pBridgeDevice->pDevIns, iBus, iDevice, u32Address, cb);
1079 }
1080 else
1081 ich9pciNoMem(&u32Value, 4);
1082 }
1083 else
1084 {
1085 /* This is the target bus, pass the read to the device. */
1086 PPCIDEVICE pPciDev = pBus->apDevices[iDevice];
1087 if (pPciDev)
1088 {
1089 u32Value = pPciDev->Int.s.pfnConfigRead(pPciDev, u32Address, cb);
1090 Log(("%s: %s: u32Address=%02x u32Value=%08x cb=%d\n", __FUNCTION__, pPciDev->name, u32Address, u32Value, cb));
1091 }
1092 else
1093 ich9pciNoMem(&u32Value, 4);
1094 }
1095
1096 return u32Value;
1097}
1098
1099
1100/**
1101 * Common routine for restoring the config registers of a PCI device.
1102 *
1103 * @param pDev The PCI device.
1104 * @param pbSrcConfig The configuration register values to be loaded.
1105 * @param fIsBridge Whether this is a bridge device or not.
1106 */
1107static void pciR3CommonRestoreConfig(PPCIDEVICE pDev, uint8_t const *pbSrcConfig, bool fIsBridge)
1108{
1109 /*
1110 * This table defines the fields for normal devices and bridge devices, and
1111 * the order in which they need to be restored.
1112 */
1113 static const struct PciField
1114 {
1115 uint8_t off;
1116 uint8_t cb;
1117 uint8_t fWritable;
1118 uint8_t fBridge;
1119 const char *pszName;
1120 } s_aFields[] =
1121 {
1122 /* off,cb,fW,fB, pszName */
1123 { VBOX_PCI_VENDOR_ID, 2, 0, 3, "VENDOR_ID" },
1124 { VBOX_PCI_DEVICE_ID, 2, 0, 3, "DEVICE_ID" },
1125 { VBOX_PCI_STATUS, 2, 1, 3, "STATUS" },
1126 { VBOX_PCI_REVISION_ID, 1, 0, 3, "REVISION_ID" },
1127 { VBOX_PCI_CLASS_PROG, 1, 0, 3, "CLASS_PROG" },
1128 { VBOX_PCI_CLASS_SUB, 1, 0, 3, "CLASS_SUB" },
1129 { VBOX_PCI_CLASS_BASE, 1, 0, 3, "CLASS_BASE" },
1130 { VBOX_PCI_CACHE_LINE_SIZE, 1, 1, 3, "CACHE_LINE_SIZE" },
1131 { VBOX_PCI_LATENCY_TIMER, 1, 1, 3, "LATENCY_TIMER" },
1132 { VBOX_PCI_HEADER_TYPE, 1, 0, 3, "HEADER_TYPE" },
1133 { VBOX_PCI_BIST, 1, 1, 3, "BIST" },
1134 { VBOX_PCI_BASE_ADDRESS_0, 4, 1, 3, "BASE_ADDRESS_0" },
1135 { VBOX_PCI_BASE_ADDRESS_1, 4, 1, 3, "BASE_ADDRESS_1" },
1136 { VBOX_PCI_BASE_ADDRESS_2, 4, 1, 1, "BASE_ADDRESS_2" },
1137 { VBOX_PCI_PRIMARY_BUS, 1, 1, 2, "PRIMARY_BUS" }, // fWritable = ??
1138 { VBOX_PCI_SECONDARY_BUS, 1, 1, 2, "SECONDARY_BUS" }, // fWritable = ??
1139 { VBOX_PCI_SUBORDINATE_BUS, 1, 1, 2, "SUBORDINATE_BUS" }, // fWritable = ??
1140 { VBOX_PCI_SEC_LATENCY_TIMER, 1, 1, 2, "SEC_LATENCY_TIMER" }, // fWritable = ??
1141 { VBOX_PCI_BASE_ADDRESS_3, 4, 1, 1, "BASE_ADDRESS_3" },
1142 { VBOX_PCI_IO_BASE, 1, 1, 2, "IO_BASE" }, // fWritable = ??
1143 { VBOX_PCI_IO_LIMIT, 1, 1, 2, "IO_LIMIT" }, // fWritable = ??
1144 { VBOX_PCI_SEC_STATUS, 2, 1, 2, "SEC_STATUS" }, // fWritable = ??
1145 { VBOX_PCI_BASE_ADDRESS_4, 4, 1, 1, "BASE_ADDRESS_4" },
1146 { VBOX_PCI_MEMORY_BASE, 2, 1, 2, "MEMORY_BASE" }, // fWritable = ??
1147 { VBOX_PCI_MEMORY_LIMIT, 2, 1, 2, "MEMORY_LIMIT" }, // fWritable = ??
1148 { VBOX_PCI_BASE_ADDRESS_5, 4, 1, 1, "BASE_ADDRESS_5" },
1149 { VBOX_PCI_PREF_MEMORY_BASE, 2, 1, 2, "PREF_MEMORY_BASE" }, // fWritable = ??
1150 { VBOX_PCI_PREF_MEMORY_LIMIT, 2, 1, 2, "PREF_MEMORY_LIMIT" }, // fWritable = ??
1151 { VBOX_PCI_CARDBUS_CIS, 4, 1, 1, "CARDBUS_CIS" }, // fWritable = ??
1152 { VBOX_PCI_PREF_BASE_UPPER32, 4, 1, 2, "PREF_BASE_UPPER32" }, // fWritable = ??
1153 { VBOX_PCI_SUBSYSTEM_VENDOR_ID, 2, 0, 1, "SUBSYSTEM_VENDOR_ID" },// fWritable = !?
1154 { VBOX_PCI_PREF_LIMIT_UPPER32, 4, 1, 2, "PREF_LIMIT_UPPER32" },// fWritable = ??
1155 { VBOX_PCI_SUBSYSTEM_ID, 2, 0, 1, "SUBSYSTEM_ID" }, // fWritable = !?
1156 { VBOX_PCI_ROM_ADDRESS, 4, 1, 1, "ROM_ADDRESS" }, // fWritable = ?!
1157 { VBOX_PCI_IO_BASE_UPPER16, 2, 1, 2, "IO_BASE_UPPER16" }, // fWritable = ?!
1158 { VBOX_PCI_IO_LIMIT_UPPER16, 2, 1, 2, "IO_LIMIT_UPPER16" }, // fWritable = ?!
1159 { VBOX_PCI_CAPABILITY_LIST, 4, 0, 3, "CAPABILITY_LIST" }, // fWritable = !? cb=!?
1160 { VBOX_PCI_RESERVED_38, 4, 1, 1, "RESERVED_38" }, // ???
1161 { VBOX_PCI_ROM_ADDRESS_BR, 4, 1, 2, "ROM_ADDRESS_BR" }, // fWritable = !? cb=!? fBridge=!?
1162 { VBOX_PCI_INTERRUPT_LINE, 1, 1, 3, "INTERRUPT_LINE" }, // fBridge=??
1163 { VBOX_PCI_INTERRUPT_PIN, 1, 0, 3, "INTERRUPT_PIN" }, // fBridge=??
1164 { VBOX_PCI_MIN_GNT, 1, 0, 1, "MIN_GNT" },
1165 { VBOX_PCI_BRIDGE_CONTROL, 2, 1, 2, "BRIDGE_CONTROL" }, // fWritable = !?
1166 { VBOX_PCI_MAX_LAT, 1, 0, 1, "MAX_LAT" },
1167 /* The COMMAND register must come last as it requires the *ADDRESS*
1168 registers to be restored before we pretent to change it from 0 to
1169 whatever value the guest assigned it. */
1170 { VBOX_PCI_COMMAND, 2, 1, 3, "COMMAND" },
1171 };
1172
1173#ifdef RT_STRICT
1174 /* Check that we've got full register coverage. */
1175 uint32_t bmDevice[0x40 / 32];
1176 uint32_t bmBridge[0x40 / 32];
1177 RT_ZERO(bmDevice);
1178 RT_ZERO(bmBridge);
1179 for (uint32_t i = 0; i < RT_ELEMENTS(s_aFields); i++)
1180 {
1181 uint8_t off = s_aFields[i].off;
1182 uint8_t cb = s_aFields[i].cb;
1183 uint8_t f = s_aFields[i].fBridge;
1184 while (cb-- > 0)
1185 {
1186 if (f & 1) AssertMsg(!ASMBitTest(bmDevice, off), ("%#x\n", off));
1187 if (f & 2) AssertMsg(!ASMBitTest(bmBridge, off), ("%#x\n", off));
1188 if (f & 1) ASMBitSet(bmDevice, off);
1189 if (f & 2) ASMBitSet(bmBridge, off);
1190 off++;
1191 }
1192 }
1193 for (uint32_t off = 0; off < 0x40; off++)
1194 {
1195 AssertMsg(ASMBitTest(bmDevice, off), ("%#x\n", off));
1196 AssertMsg(ASMBitTest(bmBridge, off), ("%#x\n", off));
1197 }
1198#endif
1199
1200 /*
1201 * Loop thru the fields covering the 64 bytes of standard registers.
1202 */
1203 uint8_t const fBridge = fIsBridge ? 2 : 1;
1204 Assert(!pciDevIsPassthrough(pDev));
1205 uint8_t *pbDstConfig = &pDev->config[0];
1206
1207 for (uint32_t i = 0; i < RT_ELEMENTS(s_aFields); i++)
1208 if (s_aFields[i].fBridge & fBridge)
1209 {
1210 uint8_t const off = s_aFields[i].off;
1211 uint8_t const cb = s_aFields[i].cb;
1212 uint32_t u32Src;
1213 uint32_t u32Dst;
1214 switch (cb)
1215 {
1216 case 1:
1217 u32Src = pbSrcConfig[off];
1218 u32Dst = pbDstConfig[off];
1219 break;
1220 case 2:
1221 u32Src = *(uint16_t const *)&pbSrcConfig[off];
1222 u32Dst = *(uint16_t const *)&pbDstConfig[off];
1223 break;
1224 case 4:
1225 u32Src = *(uint32_t const *)&pbSrcConfig[off];
1226 u32Dst = *(uint32_t const *)&pbDstConfig[off];
1227 break;
1228 default:
1229 AssertFailed();
1230 continue;
1231 }
1232
1233 if ( u32Src != u32Dst
1234 || off == VBOX_PCI_COMMAND)
1235 {
1236 if (u32Src != u32Dst)
1237 {
1238 if (!s_aFields[i].fWritable)
1239 LogRel(("PCI: %8s/%u: %2u-bit field %s: %x -> %x - !READ ONLY!\n",
1240 pDev->name, pDev->pDevIns->iInstance, cb*8, s_aFields[i].pszName, u32Dst, u32Src));
1241 else
1242 LogRel(("PCI: %8s/%u: %2u-bit field %s: %x -> %x\n",
1243 pDev->name, pDev->pDevIns->iInstance, cb*8, s_aFields[i].pszName, u32Dst, u32Src));
1244 }
1245 if (off == VBOX_PCI_COMMAND)
1246 PCIDevSetCommand(pDev, 0); /* For remapping, see ich9pciR3CommonLoadExec. */
1247 pDev->Int.s.pfnConfigWrite(pDev, off, u32Src, cb);
1248 }
1249 }
1250
1251 /*
1252 * The device dependent registers.
1253 *
1254 * We will not use ConfigWrite here as we have no clue about the size
1255 * of the registers, so the device is responsible for correctly
1256 * restoring functionality governed by these registers.
1257 */
1258 for (uint32_t off = 0x40; off < sizeof(pDev->config); off++)
1259 if (pbDstConfig[off] != pbSrcConfig[off])
1260 {
1261 LogRel(("PCI: %8s/%u: register %02x: %02x -> %02x\n",
1262 pDev->name, pDev->pDevIns->iInstance, off, pbDstConfig[off], pbSrcConfig[off])); /** @todo make this Log() later. */
1263 pbDstConfig[off] = pbSrcConfig[off];
1264 }
1265}
1266
1267/**
1268 * Common worker for ich9pciR3LoadExec and ich9pcibridgeR3LoadExec.
1269 *
1270 * @returns VBox status code.
1271 * @param pBus The bus which data is being loaded.
1272 * @param pSSM The saved state handle.
1273 * @param uVersion The data version.
1274 * @param uPass The pass.
1275 */
1276static DECLCALLBACK(int) ich9pciR3CommonLoadExec(PPCIBUS pBus, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
1277{
1278 uint32_t u32;
1279 uint32_t i;
1280 int rc;
1281
1282 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
1283
1284 /*
1285 * Iterate thru all the devices and write 0 to the COMMAND register so
1286 * that all the memory is unmapped before we start restoring the saved
1287 * mapping locations.
1288 *
1289 * The register value is restored afterwards so we can do proper
1290 * LogRels in pciR3CommonRestoreConfig.
1291 */
1292 for (i = 0; i < RT_ELEMENTS(pBus->apDevices); i++)
1293 {
1294 PPCIDEVICE pDev = pBus->apDevices[i];
1295 if (pDev)
1296 {
1297 uint16_t u16 = PCIDevGetCommand(pDev);
1298 pDev->Int.s.pfnConfigWrite(pDev, VBOX_PCI_COMMAND, 0, 2);
1299 PCIDevSetCommand(pDev, u16);
1300 Assert(PCIDevGetCommand(pDev) == u16);
1301 }
1302 }
1303
1304 void* pvMsixPage = RTMemTmpAllocZ(0x1000);
1305 /*
1306 * Iterate all the devices.
1307 */
1308 for (i = 0;; i++)
1309 {
1310 PPCIDEVICE pDev;
1311 PCIDEVICE DevTmp;
1312
1313 /* index / terminator */
1314 rc = SSMR3GetU32(pSSM, &u32);
1315 if (RT_FAILURE(rc))
1316 return rc;
1317 if (u32 == (uint32_t)~0)
1318 break;
1319 if ( u32 >= RT_ELEMENTS(pBus->apDevices)
1320 || u32 < i)
1321 {
1322 AssertMsgFailed(("u32=%#x i=%#x\n", u32, i));
1323 goto out;
1324 }
1325
1326 /* skip forward to the device checking that no new devices are present. */
1327 for (; i < u32; i++)
1328 {
1329 pDev = pBus->apDevices[i];
1330 if (pDev)
1331 {
1332 LogRel(("New device in slot %#x, %s (vendor=%#06x device=%#06x)\n", i, pDev->name,
1333 PCIDevGetVendorId(pDev), PCIDevGetDeviceId(pDev)));
1334 if (SSMR3HandleGetAfter(pSSM) != SSMAFTER_DEBUG_IT)
1335 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("New device in slot %#x, %s (vendor=%#06x device=%#06x)"),
1336 i, pDev->name, PCIDevGetVendorId(pDev), PCIDevGetDeviceId(pDev));
1337 }
1338 }
1339
1340 /* get the data */
1341 DevTmp.Int.s.fFlags = 0;
1342 DevTmp.Int.s.u8MsiCapOffset = 0;
1343 DevTmp.Int.s.u8MsiCapSize = 0;
1344 DevTmp.Int.s.u8MsixCapOffset = 0;
1345 DevTmp.Int.s.u8MsixCapSize = 0;
1346 DevTmp.Int.s.uIrqPinState = ~0; /* Invalid value in case we have an older saved state to force a state change in pciSetIrq. */
1347 SSMR3GetMem(pSSM, DevTmp.config, sizeof(DevTmp.config));
1348
1349 rc = SSMR3GetU32(pSSM, &DevTmp.Int.s.fFlags);
1350 if (RT_FAILURE(rc))
1351 goto out;
1352
1353 rc = SSMR3GetS32(pSSM, &DevTmp.Int.s.uIrqPinState);
1354 if (RT_FAILURE(rc))
1355 goto out;
1356
1357 rc = SSMR3GetU8(pSSM, &DevTmp.Int.s.u8MsiCapOffset);
1358 if (RT_FAILURE(rc))
1359 goto out;
1360
1361 rc = SSMR3GetU8(pSSM, &DevTmp.Int.s.u8MsiCapSize);
1362 if (RT_FAILURE(rc))
1363 goto out;
1364
1365 rc = SSMR3GetU8(pSSM, &DevTmp.Int.s.u8MsixCapOffset);
1366 if (RT_FAILURE(rc))
1367 goto out;
1368
1369 rc = SSMR3GetU8(pSSM, &DevTmp.Int.s.u8MsixCapSize);
1370 if (RT_FAILURE(rc))
1371 goto out;
1372
1373 /* Load MSI-X page state */
1374 if (DevTmp.Int.s.u8MsixCapOffset != 0)
1375 {
1376 Assert(pvMsixPage != NULL);
1377 SSMR3GetMem(pSSM, pvMsixPage, 0x1000);
1378 if (RT_FAILURE(rc))
1379 goto out;
1380 }
1381
1382 /* check that it's still around. */
1383 pDev = pBus->apDevices[i];
1384 if (!pDev)
1385 {
1386 LogRel(("Device in slot %#x has been removed! vendor=%#06x device=%#06x\n", i,
1387 PCIDevGetVendorId(&DevTmp), PCIDevGetDeviceId(&DevTmp)));
1388 if (SSMR3HandleGetAfter(pSSM) != SSMAFTER_DEBUG_IT)
1389 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Device in slot %#x has been removed! vendor=%#06x device=%#06x"),
1390 i, PCIDevGetVendorId(&DevTmp), PCIDevGetDeviceId(&DevTmp));
1391 continue;
1392 }
1393
1394 /* match the vendor id assuming that this will never be changed. */
1395 if ( PCIDevGetVendorId(&DevTmp) != PCIDevGetVendorId(pDev))
1396 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Device in slot %#x (%s) vendor id mismatch! saved=%.4Rhxs current=%.4Rhxs"),
1397 i, pDev->name, PCIDevGetVendorId(&DevTmp), PCIDevGetVendorId(pDev));
1398
1399 /* commit the loaded device config. */
1400 Assert(!pciDevIsPassthrough(pDev));
1401 pciR3CommonRestoreConfig(pDev, &DevTmp.config[0], false ); /** @todo fix bridge fun! */
1402
1403 pDev->Int.s.uIrqPinState = DevTmp.Int.s.uIrqPinState;
1404 pDev->Int.s.u8MsiCapOffset = DevTmp.Int.s.u8MsiCapOffset;
1405 pDev->Int.s.u8MsiCapSize = DevTmp.Int.s.u8MsiCapSize;
1406 pDev->Int.s.u8MsixCapOffset = DevTmp.Int.s.u8MsixCapOffset;
1407 pDev->Int.s.u8MsixCapSize = DevTmp.Int.s.u8MsixCapSize;
1408 if (DevTmp.Int.s.u8MsixCapSize != 0)
1409 {
1410 Assert(pDev->Int.s.pMsixPageR3 != NULL);
1411 memcpy(pDev->Int.s.pMsixPageR3, pvMsixPage, 0x1000);
1412 }
1413 }
1414
1415 out:
1416 if (pvMsixPage)
1417 RTMemTmpFree(pvMsixPage);
1418
1419 return rc;
1420}
1421
1422/**
1423 * Loads a saved PCI device state.
1424 *
1425 * @returns VBox status code.
1426 * @param pDevIns Device instance of the PCI Bus.
1427 * @param pPciDev Pointer to PCI device.
1428 * @param pSSM The handle to the saved state.
1429 */
1430static DECLCALLBACK(int) ich9pciGenericLoadExec(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PSSMHANDLE pSSM)
1431{
1432 Assert(!pciDevIsPassthrough(pPciDev));
1433 return SSMR3GetMem(pSSM, &pPciDev->config[0], sizeof(pPciDev->config));
1434}
1435
1436static DECLCALLBACK(int) ich9pciR3LoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
1437{
1438 PPCIGLOBALS pThis = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
1439 PPCIBUS pBus = &pThis->aPciBus;
1440 uint32_t u32;
1441 int rc;
1442
1443 /* We ignore this version as there's no saved state with it anyway */
1444 if (uVersion == VBOX_ICH9PCI_SAVED_STATE_VERSION_NOMSI)
1445 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
1446 if (uVersion > VBOX_ICH9PCI_SAVED_STATE_VERSION_MSI)
1447 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
1448
1449 /*
1450 * Bus state data.
1451 */
1452 SSMR3GetU32(pSSM, &pThis->uConfigReg);
1453
1454 /*
1455 * Load IRQ states.
1456 */
1457 for (int i = 0; i < PCI_APIC_IRQ_PINS; i++)
1458 SSMR3GetU32(pSSM, (uint32_t*)&pThis->uaPciApicIrqLevels[i]);
1459
1460 /* separator */
1461 rc = SSMR3GetU32(pSSM, &u32);
1462 if (RT_FAILURE(rc))
1463 return rc;
1464 if (u32 != (uint32_t)~0)
1465 AssertMsgFailedReturn(("u32=%#x\n", u32), rc);
1466
1467 return ich9pciR3CommonLoadExec(pBus, pSSM, uVersion, uPass);
1468}
1469
1470static DECLCALLBACK(int) ich9pcibridgeR3LoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
1471{
1472 PPCIBUS pThis = PDMINS_2_DATA(pDevIns, PPCIBUS);
1473 if (uVersion > VBOX_ICH9PCI_SAVED_STATE_VERSION_MSI)
1474 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
1475 return ich9pciR3CommonLoadExec(pThis, pSSM, uVersion, uPass);
1476}
1477
1478static uint32_t ich9pciConfigRead(PPCIGLOBALS pGlobals, uint8_t uBus, uint8_t uDevFn, uint32_t addr, uint32_t len)
1479{
1480 /* Will only work in LSB case */
1481 uint32_t u32Val;
1482 PciAddress aPciAddr;
1483
1484 aPciAddr.iBus = uBus;
1485 aPciAddr.iDeviceFunc = uDevFn;
1486 aPciAddr.iRegister = addr;
1487
1488 /* cannot be rescheduled, as already in R3 */
1489 int rc = ich9pciDataReadAddr(pGlobals, &aPciAddr, len, &u32Val, VERR_INTERNAL_ERROR);
1490 AssertRC(rc);
1491 return u32Val;
1492}
1493
1494static void ich9pciConfigWrite(PPCIGLOBALS pGlobals, uint8_t uBus, uint8_t uDevFn, uint32_t addr, uint32_t val, uint32_t len)
1495{
1496 PciAddress aPciAddr;
1497
1498 aPciAddr.iBus = uBus;
1499 aPciAddr.iDeviceFunc = uDevFn;
1500 aPciAddr.iRegister = addr;
1501
1502 /* cannot be rescheduled, as already in R3 */
1503 int rc = ich9pciDataWriteAddr(pGlobals, &aPciAddr, val, len, VERR_INTERNAL_ERROR);
1504 AssertRC(rc);
1505}
1506
1507static void ich9pciSetRegionAddress(PPCIGLOBALS pGlobals, uint8_t uBus, uint8_t uDevFn, int iRegion, uint32_t addr)
1508{
1509 uint32_t uReg = ich9pciGetRegionReg(iRegion);
1510
1511 /* Read memory type first. */
1512 uint8_t uResourceType = ich9pciConfigRead(pGlobals, uBus, uDevFn, uReg, 1);
1513 /* Read command register. */
1514 uint16_t uCmd = ich9pciConfigRead(pGlobals, uBus, uDevFn, VBOX_PCI_COMMAND, 2);
1515
1516 if ( iRegion == PCI_ROM_SLOT )
1517 uCmd |= PCI_COMMAND_MEMACCESS;
1518 else if ((uResourceType & PCI_ADDRESS_SPACE_IO) == PCI_ADDRESS_SPACE_IO)
1519 uCmd |= PCI_COMMAND_IOACCESS; /* Enable I/O space access. */
1520 else /* The region is MMIO. */
1521 uCmd |= PCI_COMMAND_MEMACCESS; /* Enable MMIO access. */
1522
1523 /* Write address of the device. */
1524 ich9pciConfigWrite(pGlobals, uBus, uDevFn, uReg, addr, 4);
1525
1526 /* enable memory mappings */
1527 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_COMMAND, uCmd, 2);
1528}
1529
1530
1531static void ich9pciBiosInitBridge(PPCIGLOBALS pGlobals, uint8_t uBus, uint8_t uDevFn)
1532{
1533 Log(("BIOS init bridge: %02x::%02x.%d\n", uBus, uDevFn >> 3, uDevFn & 7));
1534
1535 /*
1536 * The I/O range for the bridge must be aligned to a 4KB boundary.
1537 * This does not change anything really as the access to the device is not going
1538 * through the bridge but we want to be compliant to the spec.
1539 */
1540 if ((pGlobals->uPciBiosIo % 4096) != 0)
1541 {
1542 pGlobals->uPciBiosIo = RT_ALIGN_32(pGlobals->uPciBiosIo, 4*1024);
1543 Log(("%s: Aligned I/O start address. New address %#x\n", __FUNCTION__, pGlobals->uPciBiosIo));
1544 }
1545 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_IO_BASE, (pGlobals->uPciBiosIo >> 8) & 0xf0, 1);
1546
1547 /* The MMIO range for the bridge must be aligned to a 1MB boundary. */
1548 if ((pGlobals->uPciBiosMmio % (1024 * 1024)) != 0)
1549 {
1550 pGlobals->uPciBiosMmio = RT_ALIGN_32(pGlobals->uPciBiosMmio, 1024*1024);
1551 Log(("%s: Aligned MMIO start address. New address %#x\n", __FUNCTION__, pGlobals->uPciBiosMmio));
1552 }
1553 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_MEMORY_BASE, (pGlobals->uPciBiosMmio >> 16) & UINT32_C(0xffff0), 2);
1554
1555 /* Save values to compare later to. */
1556 uint32_t u32IoAddressBase = pGlobals->uPciBiosIo;
1557 uint32_t u32MMIOAddressBase = pGlobals->uPciBiosMmio;
1558 uint8_t uBridgeBus = ich9pciConfigRead(pGlobals, uBus, uDevFn, VBOX_PCI_SECONDARY_BUS, 1);
1559
1560 /* Init devices behind the bridge and possibly other bridges as well. */
1561 for (int iDev = 0; iDev <= 255; iDev++)
1562 ich9pciBiosInitDevice(pGlobals, uBridgeBus, iDev);
1563
1564 /*
1565 * Set I/O limit register. If there is no device with I/O space behind the bridge
1566 * we set a lower value than in the base register.
1567 * The result with a real bridge is that no I/O transactions are passed to the secondary
1568 * interface. Again this doesn't really matter here but we want to be compliant to the spec.
1569 */
1570 if ((u32IoAddressBase != pGlobals->uPciBiosIo) && ((pGlobals->uPciBiosIo % 4096) != 0))
1571 {
1572 /* The upper boundary must be one byte less than a 4KB boundary. */
1573 pGlobals->uPciBiosIo = RT_ALIGN_32(pGlobals->uPciBiosIo, 4*1024);
1574 }
1575
1576 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_IO_LIMIT, ((pGlobals->uPciBiosIo >> 8) & 0xf0) - 1, 1);
1577
1578 /* Same with the MMIO limit register but with 1MB boundary here. */
1579 if ((u32MMIOAddressBase != pGlobals->uPciBiosMmio) && ((pGlobals->uPciBiosMmio % (1024 * 1024)) != 0))
1580 {
1581 /* The upper boundary must be one byte less than a 1MB boundary. */
1582 pGlobals->uPciBiosMmio = RT_ALIGN_32(pGlobals->uPciBiosMmio, 1024*1024);
1583 }
1584 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_MEMORY_LIMIT, ((pGlobals->uPciBiosMmio >> 16) & UINT32_C(0xfff0)) - 1, 2);
1585
1586 /*
1587 * Set the prefetch base and limit registers. We currently have no device with a prefetchable region
1588 * which may be behind a bridge. That's why it is unconditionally disabled here atm by writing a higher value into
1589 * the base register than in the limit register.
1590 */
1591 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_PREF_MEMORY_BASE, 0xfff0, 2);
1592 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_PREF_MEMORY_LIMIT, 0x0, 2);
1593 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_PREF_BASE_UPPER32, 0x00, 4);
1594 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_PREF_LIMIT_UPPER32, 0x00, 4);
1595}
1596
1597static void ich9pciBiosInitDevice(PPCIGLOBALS pGlobals, uint8_t uBus, uint8_t uDevFn)
1598{
1599 uint32_t *paddr;
1600 uint16_t uDevClass, uVendor, uDevice;
1601 uint8_t uCmd;
1602
1603 uDevClass = ich9pciConfigRead(pGlobals, uBus, uDevFn, VBOX_PCI_CLASS_DEVICE, 2);
1604 uVendor = ich9pciConfigRead(pGlobals, uBus, uDevFn, VBOX_PCI_VENDOR_ID, 2);
1605 uDevice = ich9pciConfigRead(pGlobals, uBus, uDevFn, VBOX_PCI_DEVICE_ID, 2);
1606
1607 /* If device is present */
1608 if (uVendor == 0xffff)
1609 return;
1610
1611 Log(("BIOS init device: %02x::%02x.%d\n", uBus, uDevFn >> 3, uDevFn & 7));
1612
1613 switch (uDevClass)
1614 {
1615 case 0x0101:
1616 /* IDE controller */
1617 ich9pciConfigWrite(pGlobals, uBus, uDevFn, 0x40, 0x8000, 2); /* enable IDE0 */
1618 ich9pciConfigWrite(pGlobals, uBus, uDevFn, 0x42, 0x8000, 2); /* enable IDE1 */
1619 goto default_map;
1620 break;
1621 case 0x0300:
1622 /* VGA controller */
1623 if (uVendor != 0x80ee)
1624 goto default_map;
1625 /* VGA: map frame buffer to default Bochs VBE address */
1626 ich9pciSetRegionAddress(pGlobals, uBus, uDevFn, 0, 0xE0000000);
1627 /*
1628 * Legacy VGA I/O ports are implicitly decoded by a VGA class device. But
1629 * only the framebuffer (i.e., a memory region) is explicitly registered via
1630 * ich9pciSetRegionAddress, so I/O decoding must be enabled manually.
1631 */
1632 uCmd = ich9pciConfigRead(pGlobals, uBus, uDevFn, VBOX_PCI_COMMAND, 1);
1633 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_COMMAND,
1634 /* Enable I/O space access. */
1635 uCmd | PCI_COMMAND_IOACCESS,
1636 1);
1637 break;
1638 case 0x0604:
1639 /* PCI-to-PCI bridge. */
1640 AssertMsg(pGlobals->uBus < 255, ("Too many bridges on the bus\n"));
1641 ich9pciBiosInitBridge(pGlobals, uBus, uDevFn);
1642 break;
1643 default:
1644 default_map:
1645 {
1646 /* default memory mappings */
1647 /*
1648 * We ignore ROM region here.
1649 */
1650 for (int iRegion = 0; iRegion < (PCI_NUM_REGIONS-1); iRegion++)
1651 {
1652 uint32_t u32Address = ich9pciGetRegionReg(iRegion);
1653
1654 /* Calculate size - we write all 1s into the BAR, and then evaluate which bits
1655 are cleared. . */
1656 uint8_t u8ResourceType = ich9pciConfigRead(pGlobals, uBus, uDevFn, u32Address, 1);
1657 ich9pciConfigWrite(pGlobals, uBus, uDevFn, u32Address, UINT32_C(0xffffffff), 4);
1658 uint32_t u32Size = ich9pciConfigRead(pGlobals, uBus, uDevFn, u32Address, 4);
1659 /* Clear resource information depending on resource type. */
1660 if ((u8ResourceType & PCI_COMMAND_IOACCESS) == PCI_COMMAND_IOACCESS) /* I/O */
1661 u32Size &= ~(0x01);
1662 else /* MMIO */
1663 u32Size &= ~(0x0f);
1664
1665 bool fIsPio = ((u8ResourceType & PCI_COMMAND_IOACCESS) == PCI_COMMAND_IOACCESS);
1666 /*
1667 * Invert all bits and add 1 to get size of the region.
1668 * (From PCI implementation note)
1669 */
1670 if (fIsPio && (u32Size & UINT32_C(0xffff0000)) == 0)
1671 u32Size = (~(u32Size | UINT32_C(0xffff0000))) + 1;
1672 else
1673 u32Size = (~u32Size) + 1;
1674
1675 Log(("%s: Size of region %u for device %d on bus %d is %u\n", __FUNCTION__, iRegion, uDevFn, uBus, u32Size));
1676
1677 if (u32Size)
1678 {
1679 paddr = fIsPio ? &pGlobals->uPciBiosIo : &pGlobals->uPciBiosMmio;
1680 *paddr = (*paddr + u32Size - 1) & ~(u32Size - 1);
1681 Log(("%s: Start address of %s region %u is %#x\n", __FUNCTION__, (fIsPio ? "I/O" : "MMIO"), iRegion, *paddr));
1682 ich9pciSetRegionAddress(pGlobals, uBus, uDevFn, iRegion, *paddr);
1683 *paddr += u32Size;
1684 Log(("%s: New address is %#x\n", __FUNCTION__, *paddr));
1685 }
1686 }
1687 break;
1688 }
1689 }
1690
1691 /* map the interrupt */
1692 uint32_t iPin = ich9pciConfigRead(pGlobals, uBus, uDevFn, VBOX_PCI_INTERRUPT_PIN, 1);
1693 if (iPin != 0)
1694 {
1695 iPin--;
1696
1697 if (uBus != 0)
1698 {
1699 /* Find bus this device attached to. */
1700 PPCIBUS pBus = &pGlobals->aPciBus;
1701 while (1)
1702 {
1703 PPCIDEVICE pBridge = ich9pciFindBridge(pBus, uBus);
1704 if (!pBridge)
1705 {
1706 Assert(false);
1707 break;
1708 }
1709 if (uBus == PCIDevGetByte(pBridge, VBOX_PCI_SECONDARY_BUS))
1710 {
1711 /* OK, found bus this device attached to. */
1712 break;
1713 }
1714 pBus = PDMINS_2_DATA(pBridge->pDevIns, PPCIBUS);
1715 }
1716
1717 /* We need to go up to the host bus to see which irq pin this
1718 * device will use there. See logic in ich9pcibridgeSetIrq().
1719 */
1720 while (pBus->iBus != 0)
1721 {
1722 /* Get the pin the device would assert on the bridge. */
1723 iPin = ((pBus->aPciDev.devfn >> 3) + iPin) & 3;
1724 pBus = pBus->aPciDev.Int.s.pBusR3;
1725 };
1726 }
1727
1728 int iIrq = aPciIrqs[ich9pciSlotGetPirq(uBus, uDevFn, iPin)];
1729 Log(("Using pin %d and IRQ %d for device %02x:%02x.%d\n",
1730 iPin, iIrq, uBus, uDevFn>>3, uDevFn&7));
1731 ich9pciConfigWrite(pGlobals, uBus, uDevFn, VBOX_PCI_INTERRUPT_LINE, iIrq, 1);
1732 }
1733}
1734
1735/* Initializes bridges registers used for routing. */
1736static void ich9pciInitBridgeTopology(PPCIGLOBALS pGlobals, PPCIBUS pBus)
1737{
1738 PPCIDEVICE pBridgeDev = &pBus->aPciDev;
1739 PCIDevSetByte(pBridgeDev, VBOX_PCI_PRIMARY_BUS, pGlobals->uBus);
1740
1741 /* For simplicity, let's start numbering PCI bridges from 0,
1742 * not 1, so don't increment count on Host->PCI bridge.
1743 */
1744 if (strcmp(pBridgeDev->name, "i82801") != 0)
1745 pGlobals->uBus++;
1746
1747 PCIDevSetByte(pBridgeDev, VBOX_PCI_SECONDARY_BUS, pGlobals->uBus);
1748 for (uint32_t iBridge = 0; iBridge < pBus->cBridges; iBridge++)
1749 {
1750 PPCIDEVICE pBridge = pBus->papBridgesR3[iBridge];
1751 AssertMsg(pBridge && pciDevIsPci2PciBridge(pBridge),
1752 ("Device is not a PCI bridge but on the list of PCI bridges\n"));
1753 PPCIBUS pChildBus = PDMINS_2_DATA(pBridge->pDevIns, PPCIBUS);
1754 ich9pciInitBridgeTopology(pGlobals, pChildBus);
1755 }
1756 PCIDevSetByte(pBridgeDev, VBOX_PCI_SUBORDINATE_BUS, pGlobals->uBus);
1757 Log2(("ich9pciInitBridgeTopology: for bus %p: primary=%d secondary=%d subordinate=%d\n",
1758 pBus,
1759 PCIDevGetByte(pBridgeDev, VBOX_PCI_PRIMARY_BUS),
1760 PCIDevGetByte(pBridgeDev, VBOX_PCI_SECONDARY_BUS),
1761 PCIDevGetByte(pBridgeDev, VBOX_PCI_SUBORDINATE_BUS)
1762 ));
1763}
1764
1765
1766static DECLCALLBACK(int) ich9pciFakePCIBIOS(PPDMDEVINS pDevIns)
1767{
1768 unsigned i;
1769 uint8_t elcr[2] = {0, 0};
1770 PPCIGLOBALS pGlobals = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
1771 PVM pVM = PDMDevHlpGetVM(pDevIns);
1772 Assert(pVM);
1773
1774 /*
1775 * Set the start addresses.
1776 */
1777 pGlobals->uPciBiosIo = 0xd000;
1778 pGlobals->uPciBiosMmio = UINT32_C(0xf0000000);
1779 pGlobals->uBus = 0;
1780
1781 /**
1782 * Assign bridge topology, for further routing to work.
1783 */
1784 PPCIBUS pBus = &pGlobals->aPciBus;
1785 ich9pciInitBridgeTopology(pGlobals, pBus);
1786
1787 /**
1788 * Init the devices.
1789 */
1790 for (i = 0; i < 256; i++)
1791 {
1792 ich9pciBiosInitDevice(pGlobals, 0, i);
1793 }
1794
1795 return VINF_SUCCESS;
1796}
1797
1798static DECLCALLBACK(uint32_t) ich9pciConfigReadDev(PCIDevice *aDev, uint32_t u32Address, unsigned len)
1799{
1800 if ((u32Address + len) > 256 && (u32Address + len) < 4096)
1801 {
1802 AssertMsgReturn(false, ("Read from extended registers falled back to generic code\n"), 0);
1803 }
1804
1805 AssertMsgReturn(u32Address + len <= 256, ("Read after end of PCI config space\n"),
1806 0);
1807 if ( pciDevIsMsiCapable(aDev)
1808 && (u32Address >= aDev->Int.s.u8MsiCapOffset)
1809 && (u32Address < aDev->Int.s.u8MsiCapOffset + aDev->Int.s.u8MsiCapSize)
1810 )
1811 {
1812 return MsiPciConfigRead(aDev->Int.s.CTX_SUFF(pBus)->CTX_SUFF(pDevIns), aDev, u32Address, len);
1813 }
1814
1815 if ( pciDevIsMsixCapable(aDev)
1816 && (u32Address >= aDev->Int.s.u8MsixCapOffset)
1817 && (u32Address < aDev->Int.s.u8MsixCapOffset + aDev->Int.s.u8MsixCapSize)
1818 )
1819 {
1820 return MsixPciConfigRead(aDev->Int.s.CTX_SUFF(pBus)->CTX_SUFF(pDevIns), aDev, u32Address, len);
1821 }
1822
1823 AssertMsgReturn(u32Address + len <= 256, ("Read after end of PCI config space\n"),
1824 0);
1825 switch (len)
1826 {
1827 case 1:
1828 return PCIDevGetByte(aDev, u32Address);
1829 case 2:
1830 return PCIDevGetWord(aDev, u32Address);
1831 case 4:
1832 return PCIDevGetDWord(aDev, u32Address);
1833 default:
1834 Assert(false);
1835 return 0;
1836 }
1837}
1838
1839DECLINLINE(void) ich9pciWriteBarByte(PCIDevice *aDev, int iRegion, int iOffset, uint8_t u8Val)
1840{
1841 PCIIORegion * pRegion = &aDev->Int.s.aIORegions[iRegion];
1842
1843 int iRegionSize = pRegion->size;
1844
1845 Log3(("ich9pciWriteBarByte: region=%d off=%d val=%x size=%d\n",
1846 iRegion, iOffset, u8Val, iRegionSize));
1847
1848 /* Region doesn't exist */
1849 if (iRegionSize == 0)
1850 return;
1851
1852 uint32_t uAddr = ich9pciGetRegionReg(iRegion) + iOffset;
1853 /* Region size must be power of two */
1854 Assert((iRegionSize & (iRegionSize - 1)) == 0);
1855 uint8_t uMask = (((uint32_t)iRegionSize - 1) >> (iOffset*8) ) & 0xff;
1856
1857 if (iOffset == 0)
1858 {
1859 uMask |= (pRegion->type & PCI_ADDRESS_SPACE_IO) ?
1860 (1 << 2) - 1 /* 2 lowest bits for IO region */ :
1861 (1 << 4) - 1 /* 4 lowest bits for memory region, also ROM enable bit for ROM region */;
1862
1863 }
1864
1865 uint8_t u8Old = PCIDevGetByte(aDev, uAddr) & uMask;
1866 u8Val = (u8Old & uMask) | (u8Val & ~uMask);
1867
1868 Log3(("ich9pciWriteBarByte: was %x writing %x\n", u8Old, u8Val));
1869
1870 PCIDevSetByte(aDev, uAddr, u8Val);
1871}
1872/**
1873 * See paragraph 7.5 of PCI Express specification (p. 349) for definition of
1874 * registers and their writability policy.
1875 */
1876static DECLCALLBACK(void) ich9pciConfigWriteDev(PCIDevice *aDev, uint32_t u32Address,
1877 uint32_t val, unsigned len)
1878{
1879 Assert(len <= 4);
1880
1881 if ((u32Address + len) > 256 && (u32Address + len) < 4096)
1882 {
1883 AssertMsgReturnVoid(false, ("Write to extended registers falled back to generic code\n"));
1884 }
1885
1886 AssertMsgReturnVoid(u32Address + len <= 256, ("Write after end of PCI config space\n"));
1887
1888 if ( pciDevIsMsiCapable(aDev)
1889 && (u32Address >= aDev->Int.s.u8MsiCapOffset)
1890 && (u32Address < aDev->Int.s.u8MsiCapOffset + aDev->Int.s.u8MsiCapSize)
1891 )
1892 {
1893 MsiPciConfigWrite(aDev->Int.s.CTX_SUFF(pBus)->CTX_SUFF(pDevIns),
1894 aDev->Int.s.CTX_SUFF(pBus)->CTX_SUFF(pPciHlp),
1895 aDev, u32Address, val, len);
1896 return;
1897 }
1898
1899 if ( pciDevIsMsixCapable(aDev)
1900 && (u32Address >= aDev->Int.s.u8MsixCapOffset)
1901 && (u32Address < aDev->Int.s.u8MsixCapOffset + aDev->Int.s.u8MsixCapSize)
1902 )
1903 {
1904 MsixPciConfigWrite(aDev->Int.s.CTX_SUFF(pBus)->CTX_SUFF(pDevIns),
1905 aDev->Int.s.CTX_SUFF(pBus)->CTX_SUFF(pPciHlp),
1906 aDev, u32Address, val, len);
1907 return;
1908 }
1909
1910 uint32_t addr = u32Address;
1911 bool fUpdateMappings = false;
1912 bool fP2PBridge = false;
1913 for (uint32_t i = 0; i < len; i++)
1914 {
1915 bool fWritable = false;
1916 bool fRom = false;
1917 switch (PCIDevGetHeaderType(aDev))
1918 {
1919 case 0x00: /* normal device */
1920 case 0x80: /* multi-function device */
1921 switch (addr)
1922 {
1923 /* Read-only registers */
1924 case VBOX_PCI_VENDOR_ID: case VBOX_PCI_VENDOR_ID+1:
1925 case VBOX_PCI_DEVICE_ID: case VBOX_PCI_DEVICE_ID+1:
1926 case VBOX_PCI_REVISION_ID:
1927 case VBOX_PCI_CLASS_PROG:
1928 case VBOX_PCI_CLASS_SUB:
1929 case VBOX_PCI_CLASS_BASE:
1930 case VBOX_PCI_HEADER_TYPE:
1931 case VBOX_PCI_SUBSYSTEM_VENDOR_ID: case VBOX_PCI_SUBSYSTEM_VENDOR_ID+1:
1932 case VBOX_PCI_SUBSYSTEM_ID: case VBOX_PCI_SUBSYSTEM_ID+1:
1933 case VBOX_PCI_ROM_ADDRESS: case VBOX_PCI_ROM_ADDRESS+1: case VBOX_PCI_ROM_ADDRESS+2: case VBOX_PCI_ROM_ADDRESS+3:
1934 case VBOX_PCI_CAPABILITY_LIST:
1935 case VBOX_PCI_INTERRUPT_PIN:
1936 fWritable = false;
1937 break;
1938 /* Others can be written */
1939 default:
1940 fWritable = true;
1941 break;
1942 }
1943 break;
1944 case 0x01: /* PCI-PCI bridge */
1945 fP2PBridge = true;
1946 switch (addr)
1947 {
1948 /* Read-only registers */
1949 case VBOX_PCI_VENDOR_ID: case VBOX_PCI_VENDOR_ID+1:
1950 case VBOX_PCI_DEVICE_ID: case VBOX_PCI_DEVICE_ID+1:
1951 case VBOX_PCI_REVISION_ID:
1952 case VBOX_PCI_CLASS_PROG:
1953 case VBOX_PCI_CLASS_SUB:
1954 case VBOX_PCI_CLASS_BASE:
1955 case VBOX_PCI_HEADER_TYPE:
1956 case VBOX_PCI_ROM_ADDRESS_BR: case VBOX_PCI_ROM_ADDRESS_BR+1: case VBOX_PCI_ROM_ADDRESS_BR+2: case VBOX_PCI_ROM_ADDRESS_BR+3:
1957 case VBOX_PCI_INTERRUPT_PIN:
1958 fWritable = false;
1959 break;
1960 default:
1961 fWritable = true;
1962 break;
1963 }
1964 break;
1965 default:
1966 AssertMsgFailed(("Unknown header type %x\n", PCIDevGetHeaderType(aDev)));
1967 fWritable = false;
1968 break;
1969 }
1970
1971 uint8_t u8Val = (uint8_t)val;
1972 switch (addr)
1973 {
1974 case VBOX_PCI_COMMAND: /* Command register, bits 0-7. */
1975 fUpdateMappings = true;
1976 PCIDevSetByte(aDev, addr, u8Val);
1977 break;
1978 case VBOX_PCI_COMMAND+1: /* Command register, bits 8-15. */
1979 /* don't change reserved bits (11-15) */
1980 u8Val &= UINT32_C(~0xf8);
1981 fUpdateMappings = true;
1982 PCIDevSetByte(aDev, addr, u8Val);
1983 break;
1984 case VBOX_PCI_STATUS: /* Status register, bits 0-7. */
1985 /* don't change read-only bits => actually all lower bits are read-only */
1986 u8Val &= UINT32_C(~0xff);
1987 /* status register, low part: clear bits by writing a '1' to the corresponding bit */
1988 aDev->config[addr] &= ~u8Val;
1989 break;
1990 case VBOX_PCI_STATUS+1: /* Status register, bits 8-15. */
1991 /* don't change read-only bits */
1992 u8Val &= UINT32_C(~0x06);
1993 /* status register, high part: clear bits by writing a '1' to the corresponding bit */
1994 aDev->config[addr] &= ~u8Val;
1995 break;
1996 case VBOX_PCI_ROM_ADDRESS: case VBOX_PCI_ROM_ADDRESS +1: case VBOX_PCI_ROM_ADDRESS +2: case VBOX_PCI_ROM_ADDRESS +3:
1997 fRom = true;
1998 case VBOX_PCI_BASE_ADDRESS_0: case VBOX_PCI_BASE_ADDRESS_0+1: case VBOX_PCI_BASE_ADDRESS_0+2: case VBOX_PCI_BASE_ADDRESS_0+3:
1999 case VBOX_PCI_BASE_ADDRESS_1: case VBOX_PCI_BASE_ADDRESS_1+1: case VBOX_PCI_BASE_ADDRESS_1+2: case VBOX_PCI_BASE_ADDRESS_1+3:
2000 case VBOX_PCI_BASE_ADDRESS_2: case VBOX_PCI_BASE_ADDRESS_2+1: case VBOX_PCI_BASE_ADDRESS_2+2: case VBOX_PCI_BASE_ADDRESS_2+3:
2001 case VBOX_PCI_BASE_ADDRESS_3: case VBOX_PCI_BASE_ADDRESS_3+1: case VBOX_PCI_BASE_ADDRESS_3+2: case VBOX_PCI_BASE_ADDRESS_3+3:
2002 case VBOX_PCI_BASE_ADDRESS_4: case VBOX_PCI_BASE_ADDRESS_4+1: case VBOX_PCI_BASE_ADDRESS_4+2: case VBOX_PCI_BASE_ADDRESS_4+3:
2003 case VBOX_PCI_BASE_ADDRESS_5: case VBOX_PCI_BASE_ADDRESS_5+1: case VBOX_PCI_BASE_ADDRESS_5+2: case VBOX_PCI_BASE_ADDRESS_5+3:
2004 {
2005 /* We check that, as same PCI register numbers as BARs may mean different registers for bridges */
2006 if (fP2PBridge)
2007 goto default_case;
2008 else
2009 {
2010 int iRegion = fRom ? VBOX_PCI_ROM_SLOT : (addr - VBOX_PCI_BASE_ADDRESS_0) >> 2;
2011 int iOffset = addr & 0x3;
2012 ich9pciWriteBarByte(aDev, iRegion, iOffset, u8Val);
2013 fUpdateMappings = true;
2014 }
2015 break;
2016 }
2017 default:
2018 default_case:
2019 if (fWritable)
2020 PCIDevSetByte(aDev, addr, u8Val);
2021 }
2022 addr++;
2023 val >>= 8;
2024 }
2025
2026 if (fUpdateMappings)
2027 /* if the command/base address register is modified, we must modify the mappings */
2028 ich9pciUpdateMappings(aDev);
2029}
2030
2031/* Slot/functions assignment per table at p. 12 of ICH9 family spec update */
2032static const struct {
2033 const char* pszName;
2034 int32_t iSlot;
2035 int32_t iFunction;
2036} PciSlotAssignments[] = {
2037 /* The only override that have to be here, as host controller is added in the way invisible to bus slot assignment management,
2038 maybe to be changed in the future. */
2039 {
2040 "i82801", 30, 0 /* Host Controller */
2041 },
2042};
2043
2044static bool assignPosition(PPCIBUS pBus, PPCIDEVICE pPciDev, const char *pszName, int iDevFn, PciAddress* aPosition)
2045{
2046 aPosition->iBus = 0;
2047 aPosition->iDeviceFunc = iDevFn;
2048 aPosition->iRegister = 0; /* N/A */
2049
2050 /* Hardcoded slots/functions, per chipset spec */
2051 for (size_t i = 0; i < RT_ELEMENTS(PciSlotAssignments); i++)
2052 {
2053 if (!strcmp(pszName, PciSlotAssignments[i].pszName))
2054 {
2055 pciDevSetRequestedDevfunc(pPciDev);
2056 aPosition->iDeviceFunc =
2057 (PciSlotAssignments[i].iSlot << 3) + PciSlotAssignments[i].iFunction;
2058 return true;
2059 }
2060 }
2061
2062 /* Explicit slot request */
2063 if (iDevFn >=0 && iDevFn < (int)RT_ELEMENTS(pBus->apDevices))
2064 return true;
2065
2066 int iStartPos = 0;
2067
2068 /* Otherwise when assigning a slot, we need to make sure all its functions are available */
2069 for (int iPos = iStartPos; iPos < (int)RT_ELEMENTS(pBus->apDevices); iPos += 8)
2070 {
2071 if ( !pBus->apDevices[iPos]
2072 && !pBus->apDevices[iPos + 1]
2073 && !pBus->apDevices[iPos + 2]
2074 && !pBus->apDevices[iPos + 3]
2075 && !pBus->apDevices[iPos + 4]
2076 && !pBus->apDevices[iPos + 5]
2077 && !pBus->apDevices[iPos + 6]
2078 && !pBus->apDevices[iPos + 7])
2079 {
2080 pciDevClearRequestedDevfunc(pPciDev);
2081 aPosition->iDeviceFunc = iPos;
2082 return true;
2083 }
2084 }
2085
2086 return false;
2087}
2088
2089static bool hasHardAssignedDevsInSlot(PPCIBUS pBus, int iSlot)
2090{
2091 PCIDevice** aSlot = &pBus->apDevices[iSlot << 3];
2092
2093 return (aSlot[0] && pciDevIsRequestedDevfunc(aSlot[0]))
2094 || (aSlot[1] && pciDevIsRequestedDevfunc(aSlot[1]))
2095 || (aSlot[2] && pciDevIsRequestedDevfunc(aSlot[2]))
2096 || (aSlot[3] && pciDevIsRequestedDevfunc(aSlot[3]))
2097 || (aSlot[4] && pciDevIsRequestedDevfunc(aSlot[4]))
2098 || (aSlot[5] && pciDevIsRequestedDevfunc(aSlot[5]))
2099 || (aSlot[6] && pciDevIsRequestedDevfunc(aSlot[6]))
2100 || (aSlot[7] && pciDevIsRequestedDevfunc(aSlot[7]))
2101 ;
2102}
2103
2104static int ich9pciRegisterInternal(PPCIBUS pBus, int iDev, PPCIDEVICE pPciDev, const char *pszName)
2105{
2106 PciAddress aPosition = {0, 0, 0};
2107
2108 /*
2109 * Find device position
2110 */
2111 if (!assignPosition(pBus, pPciDev, pszName, iDev, &aPosition))
2112 {
2113 AssertMsgFailed(("Couldn't asssign position!\n"));
2114 return VERR_PDM_TOO_PCI_MANY_DEVICES;
2115 }
2116
2117 AssertMsgReturn(aPosition.iBus == 0,
2118 ("Assigning behind the bridge not implemented yet\n"),
2119 VERR_PDM_TOO_PCI_MANY_DEVICES);
2120
2121
2122 iDev = aPosition.iDeviceFunc;
2123 /*
2124 * Check if we can really take this slot, possibly by relocating
2125 * its current habitant, if it wasn't hard assigned too.
2126 */
2127 if (pciDevIsRequestedDevfunc(pPciDev) &&
2128 pBus->apDevices[iDev] &&
2129 pciDevIsRequestedDevfunc(pBus->apDevices[iDev]))
2130 {
2131 AssertReleaseMsgFailed(("Configuration error:'%s' and '%s' are both configured as device %d\n",
2132 pszName, pBus->apDevices[iDev]->name, iDev));
2133 return VERR_INTERNAL_ERROR;
2134 }
2135
2136 if (pBus->apDevices[iDev])
2137 {
2138 /* if we got here, we shall (and usually can) relocate the device */
2139 bool assigned = assignPosition(pBus, pBus->apDevices[iDev], pBus->apDevices[iDev]->name, -1, &aPosition);
2140 AssertMsgReturn(aPosition.iBus == 0,
2141 ("Assigning behind the bridge not implemented yet\n"),
2142 VERR_PDM_TOO_PCI_MANY_DEVICES);
2143 int iRelDev = aPosition.iDeviceFunc;
2144 if (!assigned || iRelDev == iDev)
2145 {
2146 AssertMsgFailed(("Couldn't find free spot!\n"));
2147 return VERR_PDM_TOO_PCI_MANY_DEVICES;
2148 }
2149 /* Copy device function by function to its new position */
2150 for (int i = 0; i < 8; i++)
2151 {
2152 if (!pBus->apDevices[iDev + i])
2153 continue;
2154 Log(("PCI: relocating '%s' from slot %#x to %#x\n", pBus->apDevices[iDev + i]->name, iDev + i, iRelDev + i));
2155 pBus->apDevices[iRelDev + i] = pBus->apDevices[iDev + i];
2156 pBus->apDevices[iRelDev + i]->devfn = iRelDev + i;
2157 pBus->apDevices[iDev + i] = NULL;
2158 }
2159 }
2160
2161 /*
2162 * Fill in device information.
2163 */
2164 pPciDev->devfn = iDev;
2165 pPciDev->name = pszName;
2166 pPciDev->Int.s.pBusR3 = pBus;
2167 pPciDev->Int.s.pBusR0 = MMHyperR3ToR0(PDMDevHlpGetVM(pBus->CTX_SUFF(pDevIns)), pBus);
2168 pPciDev->Int.s.pBusRC = MMHyperR3ToRC(PDMDevHlpGetVM(pBus->CTX_SUFF(pDevIns)), pBus);
2169 pPciDev->Int.s.pfnConfigRead = ich9pciConfigReadDev;
2170 pPciDev->Int.s.pfnConfigWrite = ich9pciConfigWriteDev;
2171 pBus->apDevices[iDev] = pPciDev;
2172 if (pciDevIsPci2PciBridge(pPciDev))
2173 {
2174 AssertMsg(pBus->cBridges < RT_ELEMENTS(pBus->apDevices), ("Number of bridges exceeds the number of possible devices on the bus\n"));
2175 AssertMsg(pPciDev->Int.s.pfnBridgeConfigRead && pPciDev->Int.s.pfnBridgeConfigWrite,
2176 ("device is a bridge but does not implement read/write functions\n"));
2177 Log2(("Setting bridge %d on bus %p\n", pBus->cBridges, pBus));
2178 pBus->papBridgesR3[pBus->cBridges] = pPciDev;
2179 pBus->cBridges++;
2180 }
2181
2182 Log(("PCI: Registered device %d function %d on bus %d (%#x) '%s'.\n",
2183 iDev >> 3, iDev & 7, pBus->iBus, 0x80000000 | (iDev << 8), pszName));
2184
2185 return VINF_SUCCESS;
2186}
2187
2188static void printIndent(PCDBGFINFOHLP pHlp, int iIndent)
2189{
2190 for (int i = 0; i < iIndent; i++)
2191 {
2192 pHlp->pfnPrintf(pHlp, " ");
2193 }
2194}
2195static uint32_t ich9pciGetCfg(PCIDevice* aDev, int32_t iRegister, int cb)
2196{
2197 return aDev->Int.s.pfnConfigRead(aDev, iRegister, cb);
2198}
2199
2200static uint8_t ich9pciGetByte(PCIDevice* aDev, int32_t iRegister)
2201{
2202 return (uint8_t)ich9pciGetCfg(aDev, iRegister, 1);
2203}
2204
2205static uint16_t ich9pciGetWord(PCIDevice* aDev, int32_t iRegister)
2206{
2207 return (uint16_t)ich9pciGetCfg(aDev, iRegister, 2);
2208}
2209
2210static uint32_t ich9pciGetDWord(PCIDevice* aDev, int32_t iRegister)
2211{
2212 return (uint32_t)ich9pciGetCfg(aDev, iRegister, 4);
2213}
2214
2215static void ich9pciBusInfo(PPCIBUS pBus, PCDBGFINFOHLP pHlp, int iIndent, bool fRegisters)
2216{
2217 for (uint32_t iDev = 0; iDev < RT_ELEMENTS(pBus->apDevices); iDev++)
2218 {
2219 PPCIDEVICE pPciDev = pBus->apDevices[iDev];
2220 if (pPciDev != NULL)
2221 {
2222 printIndent(pHlp, iIndent);
2223
2224 /**
2225 * For passthrough devices MSI/MSI-X mostly reflects the way interrupts delivered to the guest,
2226 * as host driver handles real devices interrupts.
2227 */
2228 pHlp->pfnPrintf(pHlp, "%02x:%02x:%02x %s%s: %04x-%04x%s%s",
2229 pBus->iBus, (iDev >> 3) & 0xff, iDev & 0x7,
2230 pPciDev->name,
2231 pciDevIsPassthrough(pPciDev) ? " (PASSTHROUGH)" : "",
2232 ich9pciGetWord(pPciDev, VBOX_PCI_VENDOR_ID), ich9pciGetWord(pPciDev, VBOX_PCI_DEVICE_ID),
2233 pciDevIsMsiCapable(pPciDev) ? " MSI" : "",
2234 pciDevIsMsixCapable(pPciDev) ? " MSI-X" : ""
2235 );
2236 if (!pciDevIsPassthrough(pPciDev) && PCIDevGetInterruptPin(pPciDev) != 0)
2237 pHlp->pfnPrintf(pHlp, " IRQ%d", PCIDevGetInterruptLine(pPciDev));
2238
2239 pHlp->pfnPrintf(pHlp, "\n");
2240
2241 int iCmd = ich9pciGetWord(pPciDev, VBOX_PCI_COMMAND);
2242 if ((iCmd & (VBOX_PCI_COMMAND_IO | VBOX_PCI_COMMAND_MEMORY)) != 0)
2243 {
2244 for (int iRegion = 0; iRegion < PCI_NUM_REGIONS; iRegion++)
2245 {
2246 PCIIORegion* pRegion = &pPciDev->Int.s.aIORegions[iRegion];
2247 int32_t iRegionSize = pRegion->size;
2248
2249 if (iRegionSize == 0)
2250 continue;
2251
2252 uint32_t u32Addr = ich9pciGetDWord(pPciDev, ich9pciGetRegionReg(iRegion));
2253 const char * szDesc;
2254
2255 if (pRegion->type & PCI_ADDRESS_SPACE_IO)
2256 {
2257 szDesc = "IO";
2258 u32Addr &= ~0x3;
2259 }
2260 else
2261 {
2262 szDesc = "MMIO";
2263 u32Addr &= ~0xf;
2264 }
2265
2266 printIndent(pHlp, iIndent + 2);
2267 pHlp->pfnPrintf(pHlp, " %s region #%d: %x..%x\n",
2268 szDesc, iRegion, u32Addr, u32Addr+iRegionSize);
2269 }
2270 }
2271
2272 if (fRegisters)
2273 {
2274 printIndent(pHlp, iIndent + 2);
2275 pHlp->pfnPrintf(pHlp, " PCI registers:\n");
2276 for (int iReg = 0; iReg < 0x100; )
2277 {
2278 int iPerLine = 0x10;
2279 Assert (0x100 % iPerLine == 0);
2280 printIndent(pHlp, iIndent + 3);
2281
2282 while (iPerLine-- > 0)
2283 {
2284 pHlp->pfnPrintf(pHlp, "%02x ", ich9pciGetByte(pPciDev, iReg++));
2285 }
2286 pHlp->pfnPrintf(pHlp, "\n");
2287 }
2288 }
2289 }
2290 }
2291
2292 if (pBus->cBridges > 0)
2293 {
2294 printIndent(pHlp, iIndent);
2295 pHlp->pfnPrintf(pHlp, "Registered %d bridges, subordinate buses info follows\n", pBus->cBridges);
2296 for (uint32_t iBridge = 0; iBridge < pBus->cBridges; iBridge++)
2297 {
2298 PPCIBUS pBusSub = PDMINS_2_DATA(pBus->papBridgesR3[iBridge]->pDevIns, PPCIBUS);
2299 ich9pciBusInfo(pBusSub, pHlp, iIndent + 1, fRegisters);
2300 }
2301 }
2302}
2303
2304/**
2305 * Info handler, device version.
2306 *
2307 * @param pDevIns Device instance which registered the info.
2308 * @param pHlp Callback functions for doing output.
2309 * @param pszArgs Argument string. Optional and specific to the handler.
2310 */
2311static DECLCALLBACK(void) ich9pciInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
2312{
2313 PPCIBUS pBus = DEVINS_2_PCIBUS(pDevIns);
2314
2315 if (pszArgs == NULL || !strcmp(pszArgs, "basic"))
2316 {
2317 ich9pciBusInfo(pBus, pHlp, 0, false);
2318 }
2319 else if (!strcmp(pszArgs, "verbose"))
2320 {
2321 ich9pciBusInfo(pBus, pHlp, 0, true);
2322 }
2323 else
2324 {
2325 pHlp->pfnPrintf(pHlp, "Invalid argument. Recognized arguments are 'basic', 'verbose'.\n");
2326 }
2327}
2328
2329
2330static DECLCALLBACK(int) ich9pciConstruct(PPDMDEVINS pDevIns,
2331 int iInstance,
2332 PCFGMNODE pCfg)
2333{
2334 Assert(iInstance == 0);
2335 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
2336
2337 /*
2338 * Validate and read configuration.
2339 */
2340 if (!CFGMR3AreValuesValid(pCfg,
2341 "IOAPIC\0"
2342 "GCEnabled\0"
2343 "R0Enabled\0"
2344 "McfgBase\0"
2345 "McfgLength\0"
2346 ))
2347 return VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES;
2348
2349 /* query whether we got an IOAPIC */
2350 bool fUseIoApic;
2351 int rc = CFGMR3QueryBoolDef(pCfg, "IOAPIC", &fUseIoApic, false);
2352 if (RT_FAILURE(rc))
2353 return PDMDEV_SET_ERROR(pDevIns, rc,
2354 N_("Configuration error: Failed to query boolean value \"IOAPIC\""));
2355
2356 /* check if RC code is enabled. */
2357 bool fGCEnabled;
2358 rc = CFGMR3QueryBoolDef(pCfg, "GCEnabled", &fGCEnabled, true);
2359 if (RT_FAILURE(rc))
2360 return PDMDEV_SET_ERROR(pDevIns, rc,
2361 N_("Configuration error: Failed to query boolean value \"GCEnabled\""));
2362
2363 /* check if R0 code is enabled. */
2364 bool fR0Enabled;
2365 rc = CFGMR3QueryBoolDef(pCfg, "R0Enabled", &fR0Enabled, true);
2366 if (RT_FAILURE(rc))
2367 return PDMDEV_SET_ERROR(pDevIns, rc,
2368 N_("Configuration error: Failed to query boolean value \"R0Enabled\""));
2369
2370 Log(("PCI: fUseIoApic=%RTbool fGCEnabled=%RTbool fR0Enabled=%RTbool\n", fUseIoApic, fGCEnabled, fR0Enabled));
2371
2372 /*
2373 * Init data.
2374 */
2375 PPCIGLOBALS pGlobals = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
2376 PPCIBUS pBus = &pGlobals->aPciBus;
2377 /* Zero out everything */
2378 memset(pGlobals, 0, sizeof(*pGlobals));
2379 /* And fill values */
2380 if (!fUseIoApic)
2381 return PDMDEV_SET_ERROR(pDevIns, rc,
2382 N_("Must use IO-APIC with ICH9 chipset"));
2383 rc = CFGMR3QueryU64Def(pCfg, "McfgBase", &pGlobals->u64PciConfigMMioAddress, 0);
2384 if (RT_FAILURE(rc))
2385 return PDMDEV_SET_ERROR(pDevIns, rc,
2386 N_("Configuration error: Failed to read \"McfgBase\""));
2387 rc = CFGMR3QueryU64Def(pCfg, "McfgLength", &pGlobals->u64PciConfigMMioLength, 0);
2388 if (RT_FAILURE(rc))
2389 return PDMDEV_SET_ERROR(pDevIns, rc,
2390 N_("Configuration error: Failed to read \"McfgLength\""));
2391
2392 pGlobals->pDevInsR3 = pDevIns;
2393 pGlobals->pDevInsR0 = PDMDEVINS_2_R0PTR(pDevIns);
2394 pGlobals->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
2395
2396 pGlobals->aPciBus.pDevInsR3 = pDevIns;
2397 pGlobals->aPciBus.pDevInsR0 = PDMDEVINS_2_R0PTR(pDevIns);
2398 pGlobals->aPciBus.pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
2399 pGlobals->aPciBus.papBridgesR3 = (PPCIDEVICE *)PDMDevHlpMMHeapAllocZ(pDevIns, sizeof(PPCIDEVICE) * RT_ELEMENTS(pGlobals->aPciBus.apDevices));
2400
2401 /*
2402 * Register bus
2403 */
2404 PDMPCIBUSREG PciBusReg;
2405 PciBusReg.u32Version = PDM_PCIBUSREG_VERSION;
2406 PciBusReg.pfnRegisterR3 = ich9pciRegister;
2407 PciBusReg.pfnRegisterMsiR3 = ich9pciRegisterMsi;
2408 PciBusReg.pfnIORegionRegisterR3 = ich9pciIORegionRegister;
2409 PciBusReg.pfnSetConfigCallbacksR3 = ich9pciSetConfigCallbacks;
2410 PciBusReg.pfnSetIrqR3 = ich9pciSetIrq;
2411 PciBusReg.pfnSaveExecR3 = ich9pciGenericSaveExec;
2412 PciBusReg.pfnLoadExecR3 = ich9pciGenericLoadExec;
2413 PciBusReg.pfnFakePCIBIOSR3 = ich9pciFakePCIBIOS;
2414 PciBusReg.pszSetIrqRC = fGCEnabled ? "ich9pciSetIrq" : NULL;
2415 PciBusReg.pszSetIrqR0 = fR0Enabled ? "ich9pciSetIrq" : NULL;
2416 rc = PDMDevHlpPCIBusRegister(pDevIns, &PciBusReg, &pBus->pPciHlpR3);
2417 if (RT_FAILURE(rc))
2418 return PDMDEV_SET_ERROR(pDevIns, rc,
2419 N_("Failed to register ourselves as a PCI Bus"));
2420 if (pBus->pPciHlpR3->u32Version != PDM_PCIHLPR3_VERSION)
2421 return PDMDevHlpVMSetError(pDevIns, VERR_VERSION_MISMATCH, RT_SRC_POS,
2422 N_("PCI helper version mismatch; got %#x expected %#x"),
2423 pBus->pPciHlpR3->u32Version, PDM_PCIHLPR3_VERSION);
2424
2425 pBus->pPciHlpRC = pBus->pPciHlpR3->pfnGetRCHelpers(pDevIns);
2426 pBus->pPciHlpR0 = pBus->pPciHlpR3->pfnGetR0Helpers(pDevIns);
2427
2428 /*
2429 * Fill in PCI configs and add them to the bus.
2430 */
2431
2432 /**
2433 * We emulate 82801IB ICH9 IO chip used in Q35,
2434 * see http://ark.intel.com/Product.aspx?id=31892
2435 *
2436 * Stepping S-Spec Top Marking
2437 *
2438 * A2 SLA9M NH82801IB
2439 */
2440 /* Host bridge device */
2441 /* @todo: move to separate driver? */
2442 PCIDevSetVendorId( &pBus->aPciDev, 0x8086); /* Intel */
2443 PCIDevSetDeviceId( &pBus->aPciDev, 0x244e); /* Desktop */
2444 PCIDevSetRevisionId(&pBus->aPciDev, 0x92); /* rev. A2 */
2445 PCIDevSetClassBase( &pBus->aPciDev, 0x06); /* bridge */
2446 PCIDevSetClassSub( &pBus->aPciDev, 0x00); /* Host/PCI bridge */
2447 PCIDevSetClassProg( &pBus->aPciDev, 0x01); /* Supports subtractive decoding. */
2448 PCIDevSetHeaderType(&pBus->aPciDev, 0x01); /* bridge */
2449 PCIDevSetWord(&pBus->aPciDev, VBOX_PCI_SEC_STATUS, 0x0280); /* secondary status */
2450 PCIDevSetDWord(&pBus->aPciDev, 0x4c, 0x00001200); /* Bridge policy configuration */
2451 PCIDevSetStatus (&pBus->aPciDev, VBOX_PCI_STATUS_CAP_LIST);
2452 PCIDevSetCapabilityList(&pBus->aPciDev, 0x50);
2453 /* capability */
2454 PCIDevSetWord(&pBus->aPciDev, 0x50, VBOX_PCI_CAP_ID_SSVID);
2455 PCIDevSetDWord(&pBus->aPciDev, 0x54, 0x00000000); /* Subsystem vendor ids */
2456
2457 pBus->aPciDev.pDevIns = pDevIns;
2458 /* We register Host<->PCI controller on the bus */
2459 ich9pciRegisterInternal(pBus, -1, &pBus->aPciDev, "i82801");
2460
2461 /*
2462 * Register I/O ports and save state.
2463 */
2464 rc = PDMDevHlpIOPortRegister(pDevIns, 0x0cf8, 1, NULL, ich9pciIOPortAddressWrite, ich9pciIOPortAddressRead, NULL, NULL, "ICH9 (PCI)");
2465 if (RT_FAILURE(rc))
2466 return rc;
2467 rc = PDMDevHlpIOPortRegister(pDevIns, 0x0cfc, 4, NULL, ich9pciIOPortDataWrite, ich9pciIOPortDataRead, NULL, NULL, "ICH9 (PCI)");
2468 if (RT_FAILURE(rc))
2469 return rc;
2470 if (fGCEnabled)
2471 {
2472 rc = PDMDevHlpIOPortRegisterRC(pDevIns, 0x0cf8, 1, NIL_RTGCPTR, "ich9pciIOPortAddressWrite", "ich9pciIOPortAddressRead", NULL, NULL, "ICH9 (PCI)");
2473 if (RT_FAILURE(rc))
2474 return rc;
2475 rc = PDMDevHlpIOPortRegisterRC(pDevIns, 0x0cfc, 4, NIL_RTGCPTR, "ich9pciIOPortDataWrite", "ich9pciIOPortDataRead", NULL, NULL, "ICH9 (PCI)");
2476 if (RT_FAILURE(rc))
2477 return rc;
2478 }
2479 if (fR0Enabled)
2480 {
2481 rc = PDMDevHlpIOPortRegisterR0(pDevIns, 0x0cf8, 1, NIL_RTR0PTR, "ich9pciIOPortAddressWrite", "ich9pciIOPortAddressRead", NULL, NULL, "ICH9 (PCI)");
2482 if (RT_FAILURE(rc))
2483 return rc;
2484 rc = PDMDevHlpIOPortRegisterR0(pDevIns, 0x0cfc, 4, NIL_RTR0PTR, "ich9pciIOPortDataWrite", "ich9pciIOPortDataRead", NULL, NULL, "ICH9 (PCI)");
2485 if (RT_FAILURE(rc))
2486 return rc;
2487 }
2488
2489 if (pGlobals->u64PciConfigMMioAddress != 0)
2490 {
2491 rc = PDMDevHlpMMIORegister(pDevIns,
2492 pGlobals->u64PciConfigMMioAddress,
2493 pGlobals->u64PciConfigMMioLength,
2494 0,
2495 ich9pciMcfgMMIOWrite,
2496 ich9pciMcfgMMIORead,
2497 NULL /* fill */,
2498 "MCFG ranges");
2499 if (RT_FAILURE(rc))
2500 {
2501 AssertMsgRC(rc, ("Cannot register MCFG MMIO: %Rrc\n", rc));
2502 return rc;
2503 }
2504
2505 if (fGCEnabled)
2506 {
2507
2508 rc = PDMDevHlpMMIORegisterRC(pDevIns,
2509 pGlobals->u64PciConfigMMioAddress,
2510 pGlobals->u64PciConfigMMioLength,
2511 0,
2512 "ich9pciMcfgMMIOWrite",
2513 "ich9pciMcfgMMIORead",
2514 NULL /* fill */);
2515 if (RT_FAILURE(rc))
2516 {
2517 AssertMsgRC(rc, ("Cannot register MCFG MMIO (GC): %Rrc\n", rc));
2518 return rc;
2519 }
2520 }
2521
2522
2523 if (fR0Enabled)
2524 {
2525
2526 rc = PDMDevHlpMMIORegisterR0(pDevIns,
2527 pGlobals->u64PciConfigMMioAddress,
2528 pGlobals->u64PciConfigMMioLength,
2529 0,
2530 "ich9pciMcfgMMIOWrite",
2531 "ich9pciMcfgMMIORead",
2532 NULL /* fill */);
2533 if (RT_FAILURE(rc))
2534 {
2535 AssertMsgRC(rc, ("Cannot register MCFG MMIO (R0): %Rrc\n", rc));
2536 return rc;
2537 }
2538 }
2539 }
2540
2541 rc = PDMDevHlpSSMRegisterEx(pDevIns, VBOX_ICH9PCI_SAVED_STATE_VERSION_CURRENT,
2542 sizeof(*pBus) + 16*128, "pgm",
2543 NULL, NULL, NULL,
2544 NULL, ich9pciR3SaveExec, NULL,
2545 NULL, ich9pciR3LoadExec, NULL);
2546 if (RT_FAILURE(rc))
2547 return rc;
2548
2549
2550 /** @todo: other chipset devices shall be registered too */
2551 /** @todo: what to with bridges? */
2552
2553 PDMDevHlpDBGFInfoRegister(pDevIns, "pci", "Display PCI bus status. (no arguments)", ich9pciInfo);
2554
2555 return VINF_SUCCESS;
2556}
2557
2558static void ich9pciResetDevice(PPCIDEVICE pDev)
2559{
2560 PPCIBUS pBus = pDev->Int.s.CTX_SUFF(pBus);
2561 int rc;
2562
2563 /* Clear regions */
2564 for (int iRegion = 0; iRegion < PCI_NUM_REGIONS; iRegion++)
2565 {
2566 PCIIORegion* pRegion = &pDev->Int.s.aIORegions[iRegion];
2567 if (pRegion->size == 0)
2568 continue;
2569
2570 ich9pciUnmapRegion(pDev, iRegion);
2571 }
2572
2573 PCIDevSetCommand(pDev,
2574 PCIDevGetCommand(pDev)
2575 &
2576 ~(VBOX_PCI_COMMAND_IO |
2577 VBOX_PCI_COMMAND_MEMORY |
2578 VBOX_PCI_COMMAND_MASTER));
2579
2580 /* Bridge device reset handlers processed later */
2581 if (!pciDevIsPci2PciBridge(pDev))
2582 {
2583 PCIDevSetByte(pDev, VBOX_PCI_CACHE_LINE_SIZE, 0x0);
2584 PCIDevSetInterruptLine(pDev, 0x0);
2585 }
2586}
2587
2588
2589/**
2590 * @copydoc FNPDMDEVRESET
2591 */
2592static DECLCALLBACK(void) ich9pciReset(PPDMDEVINS pDevIns)
2593{
2594 PPCIGLOBALS pGlobals = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
2595 PPCIBUS pBus = &pGlobals->aPciBus;
2596
2597 /* PCI-specific reset for each device. */
2598 for (uint32_t i = 0; i < RT_ELEMENTS(pBus->apDevices); i++)
2599 {
2600 if (pBus->apDevices[i])
2601 ich9pciResetDevice(pBus->apDevices[i]);
2602 }
2603
2604 for (uint32_t iBridge = 0; iBridge < pBus->cBridges; iBridge++)
2605 {
2606 if (pBus->papBridgesR3[iBridge])
2607 ich9pcibridgeReset(pBus->papBridgesR3[iBridge]->pDevIns);
2608 }
2609
2610 ich9pciFakePCIBIOS(pDevIns);
2611}
2612
2613static void ich9pciRelocateDevice(PPCIDEVICE pDev, RTGCINTPTR offDelta)
2614{
2615 if (pDev)
2616 {
2617 pDev->Int.s.pBusRC += offDelta;
2618 if (pDev->Int.s.pMsixPageRC)
2619 pDev->Int.s.pMsixPageRC += offDelta;
2620 }
2621}
2622
2623/**
2624 * @copydoc FNPDMDEVRELOCATE
2625 */
2626static DECLCALLBACK(void) ich9pciRelocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta)
2627{
2628 PPCIGLOBALS pGlobals = PDMINS_2_DATA(pDevIns, PPCIGLOBALS);
2629 PPCIBUS pBus = &pGlobals->aPciBus;
2630 pGlobals->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
2631
2632 pBus->pPciHlpRC = pBus->pPciHlpR3->pfnGetRCHelpers(pDevIns);
2633 pBus->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
2634
2635 /* Relocate RC pointers for the attached pci devices. */
2636 for (uint32_t i = 0; i < RT_ELEMENTS(pBus->apDevices); i++)
2637 ich9pciRelocateDevice(pBus->apDevices[i], offDelta);
2638
2639}
2640
2641/**
2642 * @interface_method_impl{PDMDEVREG,pfnConstruct}
2643 */
2644static DECLCALLBACK(int) ich9pcibridgeConstruct(PPDMDEVINS pDevIns,
2645 int iInstance,
2646 PCFGMNODE pCfg)
2647{
2648 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
2649
2650 /*
2651 * Validate and read configuration.
2652 */
2653 if (!CFGMR3AreValuesValid(pCfg, "GCEnabled\0" "R0Enabled\0"))
2654 return VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES;
2655
2656 /* check if RC code is enabled. */
2657 bool fGCEnabled;
2658 int rc = CFGMR3QueryBoolDef(pCfg, "GCEnabled", &fGCEnabled, true);
2659 if (RT_FAILURE(rc))
2660 return PDMDEV_SET_ERROR(pDevIns, rc,
2661 N_("Configuration error: Failed to query boolean value \"GCEnabled\""));
2662
2663 /* check if R0 code is enabled. */
2664 bool fR0Enabled;
2665 rc = CFGMR3QueryBoolDef(pCfg, "R0Enabled", &fR0Enabled, true);
2666 if (RT_FAILURE(rc))
2667 return PDMDEV_SET_ERROR(pDevIns, rc,
2668 N_("Configuration error: Failed to query boolean value \"R0Enabled\""));
2669 Log(("PCI: fGCEnabled=%RTbool fR0Enabled=%RTbool\n", fGCEnabled, fR0Enabled));
2670
2671 /*
2672 * Init data and register the PCI bus.
2673 */
2674 PPCIBUS pBus = PDMINS_2_DATA(pDevIns, PPCIBUS);
2675 pBus->pDevInsR3 = pDevIns;
2676 pBus->pDevInsR0 = PDMDEVINS_2_R0PTR(pDevIns);
2677 pBus->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
2678 pBus->papBridgesR3 = (PPCIDEVICE *)PDMDevHlpMMHeapAllocZ(pDevIns, sizeof(PPCIDEVICE) * RT_ELEMENTS(pBus->apDevices));
2679
2680 PDMPCIBUSREG PciBusReg;
2681 PciBusReg.u32Version = PDM_PCIBUSREG_VERSION;
2682 PciBusReg.pfnRegisterR3 = ich9pcibridgeRegister;
2683 PciBusReg.pfnRegisterMsiR3 = ich9pciRegisterMsi;
2684 PciBusReg.pfnIORegionRegisterR3 = ich9pciIORegionRegister;
2685 PciBusReg.pfnSetConfigCallbacksR3 = ich9pciSetConfigCallbacks;
2686 PciBusReg.pfnSetIrqR3 = ich9pcibridgeSetIrq;
2687 PciBusReg.pfnSaveExecR3 = ich9pciGenericSaveExec;
2688 PciBusReg.pfnLoadExecR3 = ich9pciGenericLoadExec;
2689 PciBusReg.pfnFakePCIBIOSR3 = NULL; /* Only needed for the first bus. */
2690 PciBusReg.pszSetIrqRC = fGCEnabled ? "ich9pcibridgeSetIrq" : NULL;
2691 PciBusReg.pszSetIrqR0 = fR0Enabled ? "ich9pcibridgeSetIrq" : NULL;
2692 rc = PDMDevHlpPCIBusRegister(pDevIns, &PciBusReg, &pBus->pPciHlpR3);
2693 if (RT_FAILURE(rc))
2694 return PDMDEV_SET_ERROR(pDevIns, rc,
2695 N_("Failed to register ourselves as a PCI Bus"));
2696 if (pBus->pPciHlpR3->u32Version != PDM_PCIHLPR3_VERSION)
2697 return PDMDevHlpVMSetError(pDevIns, VERR_VERSION_MISMATCH, RT_SRC_POS,
2698 N_("PCI helper version mismatch; got %#x expected %#x"),
2699 pBus->pPciHlpR3->u32Version, PDM_PCIHLPR3_VERSION);
2700
2701 pBus->pPciHlpRC = pBus->pPciHlpR3->pfnGetRCHelpers(pDevIns);
2702 pBus->pPciHlpR0 = pBus->pPciHlpR3->pfnGetR0Helpers(pDevIns);
2703
2704 /*
2705 * Fill in PCI configs and add them to the bus.
2706 */
2707 PCIDevSetVendorId( &pBus->aPciDev, 0x8086); /* Intel */
2708 PCIDevSetDeviceId( &pBus->aPciDev, 0x2448); /* 82801 Mobile PCI bridge. */
2709 PCIDevSetRevisionId(&pBus->aPciDev, 0xf2);
2710 PCIDevSetClassSub( &pBus->aPciDev, 0x04); /* pci2pci */
2711 PCIDevSetClassBase( &pBus->aPciDev, 0x06); /* PCI_bridge */
2712 PCIDevSetClassProg( &pBus->aPciDev, 0x01); /* Supports subtractive decoding. */
2713 PCIDevSetHeaderType(&pBus->aPciDev, 0x01); /* Single function device which adheres to the PCI-to-PCI bridge spec. */
2714 PCIDevSetCommand( &pBus->aPciDev, 0x00);
2715 PCIDevSetStatus( &pBus->aPciDev, 0x20); /* 66MHz Capable. */
2716 PCIDevSetInterruptLine(&pBus->aPciDev, 0x00); /* This device does not assert interrupts. */
2717
2718 /*
2719 * This device does not generate interrupts. Interrupt delivery from
2720 * devices attached to the bus is unaffected.
2721 */
2722 PCIDevSetInterruptPin (&pBus->aPciDev, 0x00);
2723
2724 pBus->aPciDev.pDevIns = pDevIns;
2725
2726 /* Bridge-specific data */
2727 pciDevSetPci2PciBridge(&pBus->aPciDev);
2728 pBus->aPciDev.Int.s.pfnBridgeConfigRead = ich9pcibridgeConfigRead;
2729 pBus->aPciDev.Int.s.pfnBridgeConfigWrite = ich9pcibridgeConfigWrite;
2730
2731 /*
2732 * Register this PCI bridge. The called function will take care on which bus we will get registered.
2733 */
2734 rc = PDMDevHlpPCIRegister (pDevIns, &pBus->aPciDev);
2735 if (RT_FAILURE(rc))
2736 return rc;
2737
2738 /*
2739 * The iBus property doesn't really represent the bus number
2740 * because the guest and the BIOS can choose different bus numbers
2741 * for them.
2742 * The bus number is mainly for the setIrq function to indicate
2743 * when the host bus is reached which will have iBus = 0.
2744 * That's why the + 1.
2745 */
2746 pBus->iBus = iInstance + 1;
2747
2748 /*
2749 * Register SSM handlers. We use the same saved state version as for the host bridge
2750 * to make changes easier.
2751 */
2752 rc = PDMDevHlpSSMRegisterEx(pDevIns, VBOX_ICH9PCI_SAVED_STATE_VERSION_CURRENT,
2753 sizeof(*pBus) + 16*128,
2754 "pgm" /* before */,
2755 NULL, NULL, NULL,
2756 NULL, ich9pcibridgeR3SaveExec, NULL,
2757 NULL, ich9pcibridgeR3LoadExec, NULL);
2758 if (RT_FAILURE(rc))
2759 return rc;
2760
2761
2762 return VINF_SUCCESS;
2763}
2764
2765/**
2766 * @copydoc FNPDMDEVRESET
2767 */
2768static void ich9pcibridgeReset(PPDMDEVINS pDevIns)
2769{
2770 PPCIBUS pBus = PDMINS_2_DATA(pDevIns, PPCIBUS);
2771
2772 /* Reset config space to default values. */
2773 PCIDevSetByte(&pBus->aPciDev, VBOX_PCI_PRIMARY_BUS, 0);
2774 PCIDevSetByte(&pBus->aPciDev, VBOX_PCI_SECONDARY_BUS, 0);
2775 PCIDevSetByte(&pBus->aPciDev, VBOX_PCI_SUBORDINATE_BUS, 0);
2776
2777 /* PCI-specific reset for each device. */
2778 for (uint32_t i = 0; i < RT_ELEMENTS(pBus->apDevices); i++)
2779 {
2780 if (pBus->apDevices[i])
2781 ich9pciResetDevice(pBus->apDevices[i]);
2782 }
2783}
2784
2785
2786/**
2787 * @copydoc FNPDMDEVRELOCATE
2788 */
2789static DECLCALLBACK(void) ich9pcibridgeRelocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta)
2790{
2791 PPCIBUS pBus = PDMINS_2_DATA(pDevIns, PPCIBUS);
2792 pBus->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
2793
2794 /* Relocate RC pointers for the attached pci devices. */
2795 for (uint32_t i = 0; i < RT_ELEMENTS(pBus->apDevices); i++)
2796 ich9pciRelocateDevice(pBus->apDevices[i], offDelta);
2797}
2798
2799/**
2800 * The PCI bus device registration structure.
2801 */
2802const PDMDEVREG g_DevicePciIch9 =
2803{
2804 /* u32Version */
2805 PDM_DEVREG_VERSION,
2806 /* szName */
2807 "ich9pci",
2808 /* szRCMod */
2809 "VBoxDDGC.gc",
2810 /* szR0Mod */
2811 "VBoxDDR0.r0",
2812 /* pszDescription */
2813 "ICH9 PCI bridge",
2814 /* fFlags */
2815 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0,
2816 /* fClass */
2817 PDM_DEVREG_CLASS_BUS_PCI | PDM_DEVREG_CLASS_BUS_ISA,
2818 /* cMaxInstances */
2819 1,
2820 /* cbInstance */
2821 sizeof(PCIGLOBALS),
2822 /* pfnConstruct */
2823 ich9pciConstruct,
2824 /* pfnDestruct */
2825 NULL,
2826 /* pfnRelocate */
2827 ich9pciRelocate,
2828 /* pfnIOCtl */
2829 NULL,
2830 /* pfnPowerOn */
2831 NULL,
2832 /* pfnReset */
2833 ich9pciReset,
2834 /* pfnSuspend */
2835 NULL,
2836 /* pfnResume */
2837 NULL,
2838 /* pfnAttach */
2839 NULL,
2840 /* pfnDetach */
2841 NULL,
2842 /* pfnQueryInterface */
2843 NULL,
2844 /* pfnInitComplete */
2845 NULL,
2846 /* pfnPowerOff */
2847 NULL,
2848 /* pfnSoftReset */
2849 NULL,
2850 /* u32VersionEnd */
2851 PDM_DEVREG_VERSION
2852};
2853
2854/**
2855 * The device registration structure
2856 * for the PCI-to-PCI bridge.
2857 */
2858const PDMDEVREG g_DevicePciIch9Bridge =
2859{
2860 /* u32Version */
2861 PDM_DEVREG_VERSION,
2862 /* szName */
2863 "ich9pcibridge",
2864 /* szRCMod */
2865 "VBoxDDGC.gc",
2866 /* szR0Mod */
2867 "VBoxDDR0.r0",
2868 /* pszDescription */
2869 "ICH9 PCI to PCI bridge",
2870 /* fFlags */
2871 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0,
2872 /* fClass */
2873 PDM_DEVREG_CLASS_BUS_PCI,
2874 /* cMaxInstances */
2875 ~0,
2876 /* cbInstance */
2877 sizeof(PCIBUS),
2878 /* pfnConstruct */
2879 ich9pcibridgeConstruct,
2880 /* pfnDestruct */
2881 NULL,
2882 /* pfnRelocate */
2883 ich9pcibridgeRelocate,
2884 /* pfnIOCtl */
2885 NULL,
2886 /* pfnPowerOn */
2887 NULL,
2888 /* pfnReset */
2889 NULL, /* Must be NULL, to make sure only bus driver handles reset */
2890 /* pfnSuspend */
2891 NULL,
2892 /* pfnResume */
2893 NULL,
2894 /* pfnAttach */
2895 NULL,
2896 /* pfnDetach */
2897 NULL,
2898 /* pfnQueryInterface */
2899 NULL,
2900 /* pfnInitComplete */
2901 NULL,
2902 /* pfnPowerOff */
2903 NULL,
2904 /* pfnSoftReset */
2905 NULL,
2906 /* u32VersionEnd */
2907 PDM_DEVREG_VERSION
2908};
2909
2910#endif /* IN_RING3 */
2911#endif /* !VBOX_DEVICE_STRUCT_TESTCASE */
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