From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvvP6-0004xA-GH for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvvOv-0004gL-PK for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:39 -0400 Received: from [199.232.76.173] (port=57571 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvvOv-0004fC-7F for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40208) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvvOu-0002Kc-Lp for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:32 -0400 From: Gleb Natapov Date: Thu, 8 Oct 2009 17:59:16 +0200 Message-Id: <1255017566-26220-12-git-send-email-gleb@redhat.com> In-Reply-To: <1255017566-26220-1-git-send-email-gleb@redhat.com> References: <1255017566-26220-1-git-send-email-gleb@redhat.com> Subject: [Qemu-devel] [PATCH 11/21] Restrict pci interrupts to irq 5/9/10/11 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kevin@koconnor.net Cc: qemu-devel@nongnu.org we need to specify the pci interrupts as active high; this reduces the number of override entries we have to add. Qemu pcbios commit 0f79abf26ff3e61dab712dbccdbc08a04619e7c0 Signed-off-by: Gleb Natapov --- src/acpi-dsdt.dsl | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/acpi-dsdt.dsl b/src/acpi-dsdt.dsl index 9d6aba9..905d58b 100644 --- a/src/acpi-dsdt.dsl +++ b/src/acpi-dsdt.dsl @@ -341,7 +341,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) { @@ -388,7 +388,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) { @@ -435,7 +435,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) { @@ -482,7 +482,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.3.3