mirror of https://github.com/acidanthera/audk.git
OvmfPkg: unlike PIIX4, qemu needs ActiveHigh for interrupt sharing
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13620 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
cc16a9298b
commit
56daf8b90e
|
@ -255,7 +255,7 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 1, "INTEL ", "OVMF ", 3) {
|
||||||
// whose single vector defaults to zero
|
// whose single vector defaults to zero
|
||||||
//
|
//
|
||||||
Name (BUF0, ResourceTemplate () {
|
Name (BUF0, ResourceTemplate () {
|
||||||
Interrupt (ResourceConsumer, Level, ActiveLow, Shared){0}
|
Interrupt (ResourceConsumer, Level, ActiveHigh, Shared){0}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -279,7 +279,7 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 1, "INTEL ", "OVMF ", 3) {
|
||||||
// _PRS resource for LNKA, LNKB, LNKC, LNKD
|
// _PRS resource for LNKA, LNKB, LNKC, LNKD
|
||||||
//
|
//
|
||||||
Name (PPRS, ResourceTemplate () {
|
Name (PPRS, ResourceTemplate () {
|
||||||
Interrupt (ResourceConsumer, Level, ActiveLow, Shared) {
|
Interrupt (ResourceConsumer, Level, ActiveHigh, Shared) {
|
||||||
3, 4, 5, 7, 9, 10, 11, 12, 14, 15
|
3, 4, 5, 7, 9, 10, 11, 12, 14, 15
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue