[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/6] kvm: bios: restrict pci interrupts to irq 5/9/1
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 2/6] kvm: bios: restrict pci interrupts to irq 5/9/10/11 |
Date: |
Fri, 14 Aug 2009 14:21:54 +0200 |
From: Avi Kivity <address@hidden>
we need to specify the pci interrupts as active high; this reduces
the number of override entries we have to add.
Signed-off-by: Gerd Hoffmann <address@hidden>
---
acpi-dsdt.dsl | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/acpi-dsdt.dsl b/acpi-dsdt.dsl
index 76ff100..f7fda62 100644
--- a/acpi-dsdt.dsl
+++ b/acpi-dsdt.dsl
@@ -442,7 +442,7 @@ DefinitionBlock (
Name(_UID, 1)
Name(_PRS, ResourceTemplate(){
IRQ (Level, ActiveHigh, Shared)
- {3,4,5,6,7,9,10,11,12}
+ { 5, 9, 10, 11 }
})
Method (_STA, 0, NotSerialized)
{
@@ -489,7 +489,7 @@ DefinitionBlock (
Name(_UID, 2)
Name(_PRS, ResourceTemplate(){
IRQ (Level, ActiveHigh, Shared)
- {3,4,5,6,7,9,10,11,12}
+ { 5, 9, 10, 11 }
})
Method (_STA, 0, NotSerialized)
{
@@ -536,7 +536,7 @@ DefinitionBlock (
Name(_UID, 3)
Name(_PRS, ResourceTemplate(){
IRQ (Level, ActiveHigh, Shared)
- {3,4,5,6,7,9,10,11,12}
+ { 5, 9, 10, 11 }
})
Method (_STA, 0, NotSerialized)
{
@@ -583,7 +583,7 @@ DefinitionBlock (
Name(_UID, 4)
Name(_PRS, ResourceTemplate(){
IRQ (Level, ActiveHigh, Shared)
- {3,4,5,6,7,9,10,11,12}
+ { 5, 9, 10, 11 }
})
Method (_STA, 0, NotSerialized)
{
--
1.6.2.5
[Qemu-devel] [PATCH 3/6] kvm: bios: use extended interrupt descriptor for pci irqs, Gerd Hoffmann, 2009/08/14
[Qemu-devel] [PATCH 6/6] add interrupt override entries for IRQs 5, 9, 10, 11 to the MADT, Gerd Hoffmann, 2009/08/14
[Qemu-devel] [PATCH 5/6] kvm: bios: correct default pci irq links, Gerd Hoffmann, 2009/08/14