Changeset 88260 in vbox
- Timestamp:
- Mar 23, 2021 1:41:27 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143464
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuIntel.cpp
r88258 r88260 405 405 AssertCompile(sizeof(g_au32Rw1cMasks1) == VTD_MMIO_GROUP_1_SIZE); 406 406 407 /** Array of RW masks for all register groups. */407 /** Array of RW masks for each register group. */ 408 408 static const uint8_t *g_apbRwMasks[] = { (uint8_t *)&g_au32RwMasks0[0], (uint8_t *)&g_au32RwMasks1[0] }; 409 409 410 /** Array of RW1C masks for all register groups. */410 /** Array of RW1C masks for each register group. */ 411 411 static const uint8_t *g_apbRw1cMasks[] = { (uint8_t *)&g_au32Rw1cMasks0[0], (uint8_t *)&g_au32Rw1cMasks1[0] }; 412 412 … … 829 829 /* .fFlags = */ PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RZ | PDM_DEVREG_FLAGS_NEW_STYLE, 830 830 /* .fClass = */ PDM_DEVREG_CLASS_PCI_BUILTIN, 831 /* .cMaxInstances = */ ~0U,831 /* .cMaxInstances = */ 1, 832 832 /* .uSharedVersion = */ 42, 833 833 /* .cbInstanceShared = */ sizeof(IOMMU), 834 834 /* .cbInstanceCC = */ sizeof(IOMMUCC), 835 835 /* .cbInstanceRC = */ sizeof(IOMMURC), 836 /* .cMaxPciDevices = */ 1, 836 /* .cMaxPciDevices = */ 1, /** @todo Make this 0 if this isn't a PCI device. */ 837 837 /* .cMaxMsixVectors = */ 0, 838 838 /* .pszDescription = */ "IOMMU (Intel)",
Note:
See TracChangeset
for help on using the changeset viewer.