From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvvP5-0004wB-FK for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvvOx-0004jf-IG for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:40 -0400 Received: from [199.232.76.173] (port=39104 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvvOx-0004jL-9M for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10050) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvvOw-0002La-OR for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:35 -0400 From: Gleb Natapov Date: Thu, 8 Oct 2009 17:59:22 +0200 Message-Id: <1255017566-26220-18-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 17/21] Add 26 pci slots, bringing the total to 32. 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 Lack of pci slots causes Windows to complain when installing too many device. Qemu pcbios commit 001fd46e3b551de05c62590ba5ed4cbf6cbe3510 Signed-off-by: Gleb Natapov --- src/acpi-dsdt.dsl | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/src/acpi-dsdt.dsl b/src/acpi-dsdt.dsl index c7e6547..cee038a 100644 --- a/src/acpi-dsdt.dsl +++ b/src/acpi-dsdt.dsl @@ -63,6 +63,32 @@ DefinitionBlock ( prt_slot3(0x0003), prt_slot0(0x0004), prt_slot1(0x0005), + prt_slot2(0x0006), + prt_slot3(0x0007), + prt_slot0(0x0008), + prt_slot1(0x0009), + prt_slot2(0x000a), + prt_slot3(0x000b), + prt_slot0(0x000c), + prt_slot1(0x000d), + prt_slot2(0x000e), + prt_slot3(0x000f), + prt_slot0(0x0010), + prt_slot1(0x0011), + prt_slot2(0x0012), + prt_slot3(0x0013), + prt_slot0(0x0014), + prt_slot1(0x0015), + prt_slot2(0x0016), + prt_slot3(0x0017), + prt_slot0(0x0018), + prt_slot1(0x0019), + prt_slot2(0x001a), + prt_slot3(0x001b), + prt_slot0(0x001c), + prt_slot1(0x001d), + prt_slot2(0x001e), + prt_slot3(0x001f), }) OperationRegion(PCST, SystemIO, 0xae00, 0x08) -- 1.6.3.3