Skip to content

Commit

Permalink
Added Hyper-V features
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjj20 committed Nov 2, 2022
1 parent 40d1060 commit de34e36
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions src/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,76 @@ cpuids:

0x40000000:
name: "Hypervisor ID"
data_type:
type: Start

0x40000001:
name: "Hypervisor Vendor-Neutral ID"
data_type:
type: String

0x40000002:
name: "Hypervisor System ID"
data_type:
type: BitField
eax:
- {type: Int, name: "Build Number", bounds: {start: 0, end: 31}}
ebx:
- {type: Int, name: "Major", bounds: {start: 16, end: 31}}
- {type: Int, name: "Minor", bounds: {start: 0, end: 15}}
ecx: []
edx: []

0x40000003:
name: "Hypervisor Feature ID"
data_type:
type: BitField
eax:
- {type: Int, name: "Privilege Mask Low", bounds: {start: 0, end: 31}}
ebx:
- {type: Int, name: "Privilege Mask High", bounds: {start: 0, end: 31}}
ecx:
- {type: Flag, name: Mperf, bit: 5}
- {type: Flag, name: "Shadow Stack", bit: 6}
- {type: Flag, name: PMU, bit: 7}
- {type: Flag, name: "Trap Intercept", bit: 8}
edx:
- {type: Flag, name: MWAIT(Depricated), bit: 0}
- {type: Flag, name: Debug, bit: 1}
- {type: Flag, name: PerfMon, bit: 2}
- {type: Flag, name: "Physical partition events", bit: 3}
- {type: Flag, name: Hypercall XMM, bit: 4}
- {type: Flag, name: Guest Idle, bit: 5}
- {type: Flag, name: Hypervisor sleep, bit: 6}
- {type: Flag, name: NUMA, bit: 7}
- {type: Flag, name: Timer Freq., bit: 8}
- {type: Flag, name: MCEInject, bit: 9}
- {type: Flag, name: Crash MSR, bit: 10}
- {type: Flag, name: Debug MSR, bit: 11}
- {type: Flag, name: NPIEP, bit: 12}
- {type: Flag, name: DisableHypervisorAvailable, bit: 13}
- {type: Flag, name: ExtendedGvaRangesForFlushVirtualAddressListAvailable, bit: 14}
- {type: Flag, name: Hypercall XMM Return, bit: 15}
- {type: Flag, name: SintPollingModeAvailable, bit: 17}
- {type: Flag, name: HypercallMsrLockAvailable, bit: 18}
- {type: Flag, name: Direct Synthetic Timers, bit: 19}
- {type: Flag, name: PAT VSM, bit: 20}
- {type: Flag, name: bindcfgs VSM, bit: 21}
- {type: Flag, name: Unhalted Timer, bit: 23}
- {type: Flag, name: LBR, bit: 26}

0x40000005:
name: "Hypervisor Feature ID"
data_type:
type: BitField
eax:
- {type: Int, name: "Max Virtual Porcessors", bounds: {start: 0, end: 31}}
ebx:
- {type: Int, name: "Max Logical Porcessors", bounds: {start: 0, end: 31}}
ecx:
- {type: Int, name: "Max Pysical Interrupt Vectors", bounds: {start: 0, end: 31}}
edx: []

0x80000002:
name: "Brand String 1"
data_type:
Expand Down

0 comments on commit de34e36

Please sign in to comment.