Changeset 80531 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Sep 1, 2019 11:03:34 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133038
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/APICInternal.h
r80281 r80531 23 23 24 24 #include <VBox/sup.h> 25 #include <VBox/ types.h>25 #include <VBox/vmm/pdmdev.h> /* before apic.h! */ 26 26 #include <VBox/vmm/apic.h> 27 #include <VBox/vmm/pdmdev.h>28 27 29 28 /** @defgroup grp_apic_int Internal … … 1434 1433 void apicResetCpu(PVMCPUCC pVCpu, bool fResetApicBaseMsr); 1435 1434 1435 DECLCALLBACK(int) apicR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg); 1436 DECLCALLBACK(int) apicR3Destruct(PPDMDEVINS pDevIns); 1437 DECLCALLBACK(void) apicR3Relocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta); 1438 DECLCALLBACK(void) apicR3Reset(PPDMDEVINS pDevIns); 1439 DECLCALLBACK(int) apicR3InitComplete(PPDMDEVINS pDevIns); 1440 1436 1441 RT_C_DECLS_END 1437 1442 -
trunk/src/VBox/VMM/include/PDMInternal.h
r80281 r80531 120 120 PDMASYNCCOMPLETIONEPCLASSTYPE_32BIT_HACK = 0x7fffffff 121 121 } PDMASYNCCOMPLETIONEPCLASSTYPE; 122 123 /** 124 * Private device instance data, ring-3. 125 */ 126 typedef struct PDMDEVINSINTR3 127 { 128 /** Pointer to the next instance. 129 * (Head is pointed to by PDM::pDevInstances.) */ 130 R3PTRTYPE(PPDMDEVINS) pNextR3; 131 /** Pointer to the next per device instance. 132 * (Head is pointed to by PDMDEV::pInstances.) */ 133 R3PTRTYPE(PPDMDEVINS) pPerDeviceNextR3; 134 /** Pointer to device structure. */ 135 R3PTRTYPE(PPDMDEV) pDevR3; 136 /** Pointer to the list of logical units associated with the device. (FIFO) */ 137 R3PTRTYPE(PPDMLUN) pLunsR3; 138 /** Pointer to the asynchronous notification callback set while in 139 * FNPDMDEVSUSPEND or FNPDMDEVPOWEROFF. */ 140 R3PTRTYPE(PFNPDMDEVASYNCNOTIFY) pfnAsyncNotify; 141 /** Configuration handle to the instance node. */ 142 R3PTRTYPE(PCFGMNODE) pCfgHandle; 143 144 /** R3 pointer to the VM this instance was created for. */ 145 PVMR3 pVMR3; 146 /** Associated PCI device list head (first is default). */ 147 R3PTRTYPE(PPDMPCIDEV) pHeadPciDevR3; 148 149 /** Flags, see PDMDEVINSINT_FLAGS_XXX. */ 150 uint32_t fIntFlags; 151 /** The last IRQ tag (for tracing it thru clearing). */ 152 uint32_t uLastIrqTag; 153 /** The ring-0 device index (for making ring-0 calls). */ 154 uint32_t idxR0Device; 155 } PDMDEVINSINTR3; 156 157 158 /** 159 * Private device instance data, ring-0. 160 */ 161 typedef struct PDMDEVINSINTR0 162 { 163 /** Pointer to the VM this instance was created for. */ 164 R0PTRTYPE(PGVM) pGVM; 165 /** Associated PCI device list head (first is default). */ 166 R0PTRTYPE(PPDMPCIDEV) pHeadPciDevR0; 167 /** Pointer to device structure. */ 168 R0PTRTYPE(struct PDMDEVREGR0 const *) pRegR0; 169 /** The ring-0 module reference. */ 170 RTR0PTR hMod; 171 /** Pointer to the ring-0 mapping of the ring-3 internal data (for uLastIrqTag). */ 172 R0PTRTYPE(PDMDEVINSINTR3 *) pIntR3R0; 173 /** Pointer to the ring-0 mapping of the ring-3 instance (for idTracing). */ 174 R0PTRTYPE(struct PDMDEVINSR3 *) pInsR3R0; 175 /** The device instance memory. */ 176 RTR0MEMOBJ hMemObj; 177 /** The ring-3 mapping object. */ 178 RTR0MEMOBJ hMapObj; 179 /** Index into PDMR0PERVM::apDevInstances. */ 180 uint32_t idxR0Device; 181 } PDMDEVINSINTR0; 182 183 184 /** 185 * Private device instance data, raw-mode 186 */ 187 typedef struct PDMDEVINSINTRC 188 { 189 /** Pointer to the VM this instance was created for. */ 190 RGPTRTYPE(PVM) pVMRC; 191 } PDMDEVINSINTRC; 192 122 193 123 194 /** … … 166 237 * @{ */ 167 238 /** Used by pdmR3Load to mark device instances it found in the saved state. */ 168 #define PDMDEVINSINT_FLAGS_FOUND RT_BIT_32(0)239 #define PDMDEVINSINT_FLAGS_FOUND RT_BIT_32(0) 169 240 /** Indicates that the device hasn't been powered on or resumed. 170 241 * This is used by PDMR3PowerOn, PDMR3Resume, PDMR3Suspend and PDMR3PowerOff … … 176 247 * PDMR3Suspend. 177 248 */ 178 #define PDMDEVINSINT_FLAGS_SUSPENDED RT_BIT_32(1)249 #define PDMDEVINSINT_FLAGS_SUSPENDED RT_BIT_32(1) 179 250 /** Indicates that the device has been reset already. Used by PDMR3Reset. */ 180 #define PDMDEVINSINT_FLAGS_RESET RT_BIT_32(2) 251 #define PDMDEVINSINT_FLAGS_RESET RT_BIT_32(2) 252 #define PDMDEVINSINT_FLAGS_R0_ENABLED RT_BIT_32(3) 253 #define PDMDEVINSINT_FLAGS_RC_ENABLED RT_BIT_32(4) 254 /** Set if we've called the ring-0 constructor. */ 255 #define PDMDEVINSINT_FLAGS_R0_CONTRUCT RT_BIT_32(5) 256 /** Set if using non-default critical section. */ 257 #define PDMDEVINSINT_FLAGS_CHANGED_CRITSECT RT_BIT_32(6) 181 258 /** @} */ 182 259 … … 438 515 * device, like for instance the PS/2 keyboard port on the 439 516 * keyboard controller device. The LUNs are chained on the 440 * device the belong to (PDMDEVINSINT::pLunsR3).517 * device they belong to (PDMDEVINSINT::pLunsR3). 441 518 */ 442 519 typedef struct PDMLUN … … 463 540 464 541 /** 465 * PDM Device .542 * PDM Device, ring-3. 466 543 */ 467 544 typedef struct PDMDEV … … 470 547 R3PTRTYPE(PPDMDEV) pNext; 471 548 /** Device name length. (search optimization) */ 472 RTUINTcchName;549 uint32_t cchName; 473 550 /** Registration structure. */ 474 R3PTRTYPE(const struct PDMDEVREG *) pReg;551 R3PTRTYPE(const struct PDMDEVREGR3 *) pReg; 475 552 /** Number of instances. */ 476 553 uint32_t cInstances; … … 482 559 char *pszR0SearchPath; 483 560 } PDMDEV; 561 562 563 #if 0 564 /** 565 * PDM Device, ring-0. 566 */ 567 typedef struct PDMDEVR0 568 { 569 /** Pointer to the next device. */ 570 R0PTRTYPE(PPDMDEVR0) pNext; 571 /** Device name length. (search optimization) */ 572 uint32_t cchName; 573 /** Registration structure. */ 574 R3PTRTYPE(const struct PDMDEVREGR0 *) pReg; 575 /** Number of instances. */ 576 uint32_t cInstances; 577 /** Pointer to chain of instances. */ 578 PPDMDEVINSR0 pInstances; 579 } PDMDEVR0; 580 #endif 484 581 485 582 … … 1122 1219 1123 1220 1221 /** 1222 * PDM data kept in the ring-0 GVM. 1223 */ 1224 typedef struct PDMR0PERVM 1225 { 1226 /** Number of valid ring-0 device instances (apDevInstances). */ 1227 uint32_t cDevInstances; 1228 /** Pointer to ring-0 device instances. */ 1229 R0PTRTYPE(struct PDMDEVINSR0 *) apDevInstances[190]; 1230 } PDMR0PERVM; 1231 1124 1232 1125 1233 /** … … 1200 1308 AssertPtr(pDevIns); \ 1201 1309 Assert(pDevIns->u32Version == PDM_DEVINS_VERSION); \ 1202 Assert(pDevIns->CTX_SUFF(pvInstanceData ) == (void *)&pDevIns->achInstanceData[0]); \1310 Assert(pDevIns->CTX_SUFF(pvInstanceDataFor) == (void *)&pDevIns->achInstanceData[0]); \ 1203 1311 } while (0) 1204 1312 #else
Note:
See TracChangeset
for help on using the changeset viewer.