Changeset 35738 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 27, 2011 2:17:41 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69688
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/PCIInternal.h
r35676 r35738 99 99 /** I/O regions. */ 100 100 PCIIOREGION aIORegions[PCI_NUM_REGIONS]; 101 /** Pointer to the PCI bus of the device. - R3 ptr*/101 /** Pointer to the PCI bus of the device. (R3 ptr) */ 102 102 R3PTRTYPE(struct PCIBus *) pBusR3; 103 /** Pointer to the PCI bus of the device. - R0 ptr*/103 /** Pointer to the PCI bus of the device. (R0 ptr) */ 104 104 R0PTRTYPE(struct PCIBus *) pBusR0; 105 /** Pointer to the PCI bus of the device. - RC ptr*/105 /** Pointer to the PCI bus of the device. (RC ptr) */ 106 106 RCPTRTYPE(struct PCIBus *) pBusRC; 107 107 #if HC_ARCH_BITS == 64 … … 109 109 #endif 110 110 111 /* Page used for MSI-X state. - R3 ptr*/111 /** Page used for MSI-X state. (R3 ptr) */ 112 112 R3PTRTYPE(void*) pMsixPageR3; 113 /* Page used for MSI-X state. - R0 ptr*/113 /** Page used for MSI-X state. (R0 ptr) */ 114 114 R0PTRTYPE(void*) pMsixPageR0; 115 /* Page used for MSI-X state. - RC ptr*/115 /** Page used for MSI-X state. (RC ptr) */ 116 116 RCPTRTYPE(void*) pMsixPageRC; 117 117 #if HC_ARCH_BITS == 64 … … 125 125 R3PTRTYPE(PFNPCICONFIGWRITE) pfnConfigWrite; 126 126 127 /* Flags of this PCI device, see PCIDEV_FLAG_ constants */ 127 /** Flags of this PCI device, see PCIDEV_FLAG_XXX constants. 128 * @todo s/uFlags/fFlags/g */ 128 129 uint32_t uFlags; 129 130 /** Current state of the IRQ pin of the device. */ 130 131 int32_t uIrqPinState; 131 132 132 /* Offset of MSI PCI capability in config space, or 0*/133 /** Offset of MSI PCI capability in config space, or 0. */ 133 134 uint8_t u8MsiCapOffset; 134 /* Size of MSI PCI capability in config space, or 0*/135 /** Size of MSI PCI capability in config space, or 0. */ 135 136 uint8_t u8MsiCapSize; 136 /* Offset of MSI-X PCI capability in config space, or 0*/137 /** Offset of MSI-X PCI capability in config space, or 0. */ 137 138 uint8_t u8MsixCapOffset; 138 /* Size of MSI-X PCI capability in config space, or 0*/139 /** Size of MSI-X PCI capability in config space, or 0. */ 139 140 uint8_t u8MsixCapSize; 140 141 141 142 uint32_t Alignment2; 142 143 143 /* Pointer to bus specific data. - R3 ptr*/144 /** Pointer to bus specific data. (R3 ptr) */ 144 145 R3PTRTYPE(const void*) pPciBusPtrR3; 145 146 … … 155 156 } PCIDEVICEINT; 156 157 157 /* Indicate that PCIDEVICE::Int.s can be declared. */158 /** Indicate that PCIDEVICE::Int.s can be declared. */ 158 159 #define PCIDEVICEINT_DECLARED 159 160
Note:
See TracChangeset
for help on using the changeset viewer.