VirtualBox

Changeset 80531 in vbox for trunk/src/VBox/VMM/include


Ignore:
Timestamp:
Sep 1, 2019 11:03:34 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
133038
Message:

VMM,Devices: Some PDM device model refactoring. bugref:9218

Location:
trunk/src/VBox/VMM/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/APICInternal.h

    r80281 r80531  
    2323
    2424#include <VBox/sup.h>
    25 #include <VBox/types.h>
     25#include <VBox/vmm/pdmdev.h> /* before apic.h! */
    2626#include <VBox/vmm/apic.h>
    27 #include <VBox/vmm/pdmdev.h>
    2827
    2928/** @defgroup grp_apic_int       Internal
     
    14341433void                          apicResetCpu(PVMCPUCC pVCpu, bool fResetApicBaseMsr);
    14351434
     1435DECLCALLBACK(int)             apicR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg);
     1436DECLCALLBACK(int)             apicR3Destruct(PPDMDEVINS pDevIns);
     1437DECLCALLBACK(void)            apicR3Relocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta);
     1438DECLCALLBACK(void)            apicR3Reset(PPDMDEVINS pDevIns);
     1439DECLCALLBACK(int)             apicR3InitComplete(PPDMDEVINS pDevIns);
     1440
    14361441RT_C_DECLS_END
    14371442
  • trunk/src/VBox/VMM/include/PDMInternal.h

    r80281 r80531  
    120120    PDMASYNCCOMPLETIONEPCLASSTYPE_32BIT_HACK = 0x7fffffff
    121121} PDMASYNCCOMPLETIONEPCLASSTYPE;
     122
     123/**
     124 * Private device instance data, ring-3.
     125 */
     126typedef 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 */
     161typedef 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 */
     187typedef struct PDMDEVINSINTRC
     188{
     189    /** Pointer to the VM this instance was created for. */
     190    RGPTRTYPE(PVM)                  pVMRC;
     191} PDMDEVINSINTRC;
     192
    122193
    123194/**
     
    166237 * @{ */
    167238/** 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)
    169240/** Indicates that the device hasn't been powered on or resumed.
    170241 * This is used by PDMR3PowerOn, PDMR3Resume, PDMR3Suspend and PDMR3PowerOff
     
    176247 * PDMR3Suspend.
    177248 */
    178 #define PDMDEVINSINT_FLAGS_SUSPENDED     RT_BIT_32(1)
     249#define PDMDEVINSINT_FLAGS_SUSPENDED        RT_BIT_32(1)
    179250/** 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)
    181258/** @} */
    182259
     
    438515 * device, like for instance the PS/2 keyboard port on the
    439516 * keyboard controller device. The LUNs are chained on the
    440  * device the belong to (PDMDEVINSINT::pLunsR3).
     517 * device they belong to (PDMDEVINSINT::pLunsR3).
    441518 */
    442519typedef struct PDMLUN
     
    463540
    464541/**
    465  * PDM Device.
     542 * PDM Device, ring-3.
    466543 */
    467544typedef struct PDMDEV
     
    470547    R3PTRTYPE(PPDMDEV)              pNext;
    471548    /** Device name length. (search optimization) */
    472     RTUINT                          cchName;
     549    uint32_t                        cchName;
    473550    /** Registration structure. */
    474     R3PTRTYPE(const struct PDMDEVREG *) pReg;
     551    R3PTRTYPE(const struct PDMDEVREGR3 *) pReg;
    475552    /** Number of instances. */
    476553    uint32_t                        cInstances;
     
    482559    char                           *pszR0SearchPath;
    483560} PDMDEV;
     561
     562
     563#if 0
     564/**
     565 * PDM Device, ring-0.
     566 */
     567typedef 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
    484581
    485582
     
    11221219
    11231220
     1221/**
     1222 * PDM data kept in the ring-0 GVM.
     1223 */
     1224typedef 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
    11241232
    11251233/**
     
    12001308        AssertPtr(pDevIns); \
    12011309        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]); \
    12031311    } while (0)
    12041312#else
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette