Changeset 57218 in vbox for trunk/include
- Timestamp:
- Aug 6, 2015 2:53:27 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101971
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r57108 r57218 389 389 * can be accessed from ring-3 and raw-mode context. */ 390 390 uint32_t fGetGipCpu; 391 /** GIP flags, see SUPGIP_FLAGS_XXX. */ 392 volatile uint32_t fFlags; 391 393 392 394 /** Padding / reserved space for future data. */ 393 uint32_t au32Padding1[2 5];395 uint32_t au32Padding1[24]; 394 396 395 397 /** Table indexed by the CPU APIC ID to get the CPU table index. */ … … 424 426 * Upper 16 bits is the major version. Major version is only changed with 425 427 * incompatible changes in the GIP. */ 426 #define SUPGLOBALINFOPAGE_VERSION 0x0006000 0428 #define SUPGLOBALINFOPAGE_VERSION 0x00060001 427 429 428 430 /** … … 491 493 SUPDECL(PSUPGLOBALINFOPAGE) SUPGetGIP(void); 492 494 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 /** @} */ 493 508 494 509 /** @internal */ … … 1708 1723 SUPR3DECL(int) SUPR3TscDeltaMeasure(RTCPUID idCpu, bool fAsync, bool fForce, uint8_t cRetries, uint8_t cMsWaitRetry); 1709 1724 1725 1710 1726 /** 1711 1727 * Reads the delta-adjust TSC value. … … 1718 1734 SUPR3DECL(int) SUPR3ReadTsc(uint64_t *puTsc, uint16_t *pidApic); 1719 1735 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 */ 1744 SUPR3DECL(int) SUPR3GipSetFlags(uint32_t fOrMask, uint32_t fAndMask); 1720 1745 /** @} */ 1721 1746 #endif /* IN_RING3 */ -
trunk/include/VBox/sup.mac
r54252 r57218 80 80 .enmUseTscDelta resd 1 81 81 .fGetGipCpu resd 1 82 .au32Padding1 resd 25 82 .fFlags resd 1 83 .au32Padding1 resd 24 83 84 .aiCpuFromApicId resw 256 84 85 .aiCpuFromCpuSetIdx resw 256
Note:
See TracChangeset
for help on using the changeset viewer.