diff options
author | jhb <jhb@FreeBSD.org> | 2014-07-22 03:14:37 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2014-07-22 03:14:37 +0000 |
commit | c1fe945ebd0d209b238eb98b47c40c115576f2e4 (patch) | |
tree | 60ebdda4ab095737aad1e22d1f84da4708e9a68c /sys/amd64/include/vmm.h | |
parent | 87624b14336f152a9daf40db972abf2f70cf951d (diff) | |
download | FreeBSD-src-c1fe945ebd0d209b238eb98b47c40c115576f2e4.zip FreeBSD-src-c1fe945ebd0d209b238eb98b47c40c115576f2e4.tar.gz |
MFC 266125:
Implement a PCI interrupt router to route PCI legacy INTx interrupts to
the legacy 8259A PICs.
Diffstat (limited to 'sys/amd64/include/vmm.h')
-rw-r--r-- | sys/amd64/include/vmm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/amd64/include/vmm.h b/sys/amd64/include/vmm.h index 68240b9..50d879b 100644 --- a/sys/amd64/include/vmm.h +++ b/sys/amd64/include/vmm.h @@ -301,6 +301,11 @@ enum x2apic_state { X2APIC_STATE_LAST }; +enum vm_intr_trigger { + EDGE_TRIGGER, + LEVEL_TRIGGER +}; + /* * The 'access' field has the format specified in Table 21-2 of the Intel * Architecture Manual vol 3b. |