Changeset 61077 in vbox for trunk/src/VBox
- Timestamp:
- May 20, 2016 4:15:05 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107344
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/APICInternal.h
r61076 r61077 29 29 */ 30 30 31 /** The APIC hardware version number for Pentium 4. */ 32 #define XAPIC_HARDWARE_VERSION_P4 UINT8_C(0x14) 33 /** Maximum number of LVT entries for Pentium 4. */ 34 #define XAPIC_MAX_LVT_ENTRIES_P4 UINT8_C(6) 35 /** Size of the APIC ID bits for Pentium 4. */ 36 #define XAPIC_APIC_ID_BIT_COUNT_P4 UINT8_C(8) 37 38 /** The APIC hardware version number for Pentium 6. */ 39 #define XAPIC_HARDWARE_VERSION_P6 UINT8_C(0x10) 40 /** Maximum number of LVT entries for Pentium 6. */ 41 #define XAPIC_MAX_LVT_ENTRIES_P6 UINT8_C(4) 42 /** Size of the APIC ID bits for Pentium 6. */ 43 #define XAPIC_APIC_ID_BIT_COUNT_P6 UINT8_C(4) 44 31 45 /** The APIC hardware version we are emulating. */ 32 46 #define XAPIC_HARDWARE_VERSION XAPIC_HARDWARE_VERSION_P4 … … 67 81 /** Bit position at offset in an APIC 256-bit sparse register. */ 68 82 #define XAPIC_REG256_VECTOR_BIT(a_Vector) ((a_Vector) & UINT32_C(0x1f)) 69 70 /** Maximum number of LVT entries for Pentium 4. */71 #define XAPIC_MAX_LVT_ENTRIES_P4 UINT8_C(6)72 /** Size of the APIC ID bits for Pentium 4. */73 #define XAPIC_APIC_ID_BIT_COUNT_P4 UINT8_C(8)74 /** The APIC hardware version number for Pentium 4. */75 #define XAPIC_HARDWARE_VERSION_P4 UINT8_C(0x14)76 77 /** Maximum number of LVT entries for Pentium 6. */78 #define XAPIC_MAX_LVT_ENTRIES_P6 UINT8_C(4)79 /** Size of the APIC ID bits for Pentium 6. */80 #define XAPIC_APIC_ID_BIT_COUNT_P6 UINT8_C(4)81 /** The APIC hardware version number for Pentium 6. */82 #define XAPIC_HARDWARE_VERSION_P6 UINT8_C(0x10)83 83 84 84 /** Maximum valid offset for a register (16-byte aligned, 4 byte wide access). */
Note:
See TracChangeset
for help on using the changeset viewer.