From patchwork Sun Oct 11 18:59:07 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gleb Natapov X-Patchwork-Id: 35718 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6732EB70B3 for ; Mon, 12 Oct 2009 05:59:51 +1100 (EST) Received: from localhost ([127.0.0.1]:35309 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mx3e0-0006T4-92 for incoming@patchwork.ozlabs.org; Sun, 11 Oct 2009 14:59:48 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mx3dT-0006S1-JP for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mx3dO-0006Qi-Va for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:15 -0400 Received: from [199.232.76.173] (port=57414 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mx3dO-0006Qe-TT for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45465) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mx3dO-0000lr-CG for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:10 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9BIx9dS010988; Sun, 11 Oct 2009 14:59:09 -0400 Received: from dhcp-1-237.tlv.redhat.com (dhcp-1-237.tlv.redhat.com [10.35.1.237]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n9BIx8CL005467; Sun, 11 Oct 2009 14:59:08 -0400 Received: by dhcp-1-237.tlv.redhat.com (Postfix, from userid 13519) id 2F71618D417; Sun, 11 Oct 2009 20:59:07 +0200 (IST) From: Gleb Natapov To: kevin@koconnor.net Date: Sun, 11 Oct 2009 20:59:07 +0200 Message-Id: <1255287547-28329-5-git-send-email-gleb@redhat.com> In-Reply-To: <1255287547-28329-1-git-send-email-gleb@redhat.com> References: <1255287547-28329-1-git-send-email-gleb@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 5/5] Set the PCI base address to 0xf0000000. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Qemu starts PCI hole at 0xe0000000, but lets set it to the same value as pcbios uses for now. Signed-off-by: Gleb Natapov --- src/pciinit.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/pciinit.c b/src/pciinit.c index 53fbfcf..67d6a26 100644 --- a/src/pciinit.c +++ b/src/pciinit.c @@ -202,7 +202,7 @@ pci_setup(void) dprintf(3, "pci setup\n"); pci_bios_io_addr = 0xc000; - pci_bios_mem_addr = 0xc0000000; + pci_bios_mem_addr = 0xf0000000; pci_bios_bigmem_addr = RamSize; if (pci_bios_bigmem_addr < 0x90000000) pci_bios_bigmem_addr = 0x90000000;