VirtualBox

Changeset 57218 in vbox for trunk/include


Ignore:
Timestamp:
Aug 6, 2015 2:53:27 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
101971
Message:

SUPDrv, tstGIP-2: Add support for GIP flags and testing TSC frequency compatibility.

Location:
trunk/include/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/sup.h

    r57108 r57218  
    389389     * can be accessed from ring-3 and raw-mode context. */
    390390    uint32_t            fGetGipCpu;
     391    /** GIP flags, see SUPGIP_FLAGS_XXX. */
     392    volatile uint32_t   fFlags;
    391393
    392394    /** Padding / reserved space for future data. */
    393     uint32_t            au32Padding1[25];
     395    uint32_t            au32Padding1[24];
    394396
    395397    /** Table indexed by the CPU APIC ID to get the CPU table index. */
     
    424426 * Upper 16 bits is the major version. Major version is only changed with
    425427 * incompatible changes in the GIP. */
    426 #define SUPGLOBALINFOPAGE_VERSION   0x00060000
     428#define SUPGLOBALINFOPAGE_VERSION   0x00060001
    427429
    428430/**
     
    491493SUPDECL(PSUPGLOBALINFOPAGE)             SUPGetGIP(void);
    492494
     495/** @name SUPGIP_FLAGS_XXX - SUPR3GipSetFlags flags.
     496 * @{ */
     497/** Enable GIP test mode. */
     498#define SUPGIP_FLAGS_TESTING_ENABLE          RT_BIT_32(0)
     499/** Valid mask of flags that can be set through the ioctl. */
     500#define SUPGIP_FLAGS_VALID_MASK              RT_BIT_32(0)
     501/** GIP test mode needs to be checked (e.g. when enabled or being disabled). */
     502#define SUPGIP_FLAGS_TESTING                 RT_BIT_32(24)
     503/** Prepare to start GIP test mode. */
     504#define SUPGIP_FLAGS_TESTING_START           RT_BIT_32(25)
     505/** Prepare to stop GIP test mode. */
     506#define SUPGIP_FLAGS_TESTING_STOP            RT_BIT_32(26)
     507/** @} */
    493508
    494509/** @internal  */
     
    17081723SUPR3DECL(int) SUPR3TscDeltaMeasure(RTCPUID idCpu, bool fAsync, bool fForce, uint8_t cRetries, uint8_t cMsWaitRetry);
    17091724
     1725
    17101726/**
    17111727 * Reads the delta-adjust TSC value.
     
    17181734SUPR3DECL(int) SUPR3ReadTsc(uint64_t *puTsc, uint16_t *pidApic);
    17191735
     1736
     1737/**
     1738 * Sets the GIP flags.
     1739 *
     1740 * @returns VBox status code.
     1741 * @param   fOrMask         The OR mask of the GIP flags, see SUPGIP_FLAGS_XXX.
     1742 * @param   fAndMask        The AND mask of the GIP flags, see SUPGIP_FLAGS_XXX.
     1743 */
     1744SUPR3DECL(int) SUPR3GipSetFlags(uint32_t fOrMask, uint32_t fAndMask);
    17201745/** @} */
    17211746#endif /* IN_RING3 */
  • trunk/include/VBox/sup.mac

    r54252 r57218  
    8080    .enmUseTscDelta             resd 1
    8181    .fGetGipCpu                 resd 1
    82     .au32Padding1               resd 25
     82    .fFlags                     resd 1
     83    .au32Padding1               resd 24
    8384    .aiCpuFromApicId            resw 256
    8485    .aiCpuFromCpuSetIdx         resw 256
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