From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46359) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RflKx-0002JL-CN for qemu-devel@nongnu.org; Tue, 27 Dec 2011 23:42:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RflKv-0005ms-Jp for qemu-devel@nongnu.org; Tue, 27 Dec 2011 23:41:59 -0500 Received: from usrksweb02.endace.com ([174.143.168.194]:39090) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RflKv-0005md-FN for qemu-devel@nongnu.org; Tue, 27 Dec 2011 23:41:57 -0500 Message-ID: <4EFA9DF0.7050902@endace.com> Date: Wed, 28 Dec 2011 17:41:20 +1300 From: Alexey Korolev MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [Seabios] [PATCH 0/3] 64bit PCI BARs allocations List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, seabios@seabios.org, mst@redhat.com Cc: sfd@endace.com, yamahata@valinux.co.jp Hi, There were a number of requests about support of 64bit PCI BAR allocations. Also we have observed the issue on guests with older linux version (2.6.18): if we have a 64bit BAR allocated within first 4GB, the OS may hang during start process. (I guess it is an OS bug, but we need to take care of this). This patch addresses these two issues and allows 64bit BARs to be allocated in ranges above 4GB. Patch consists of three parts: 1. Add new range above 4GB in _CRS table to let Windows 2008 work properly. Thanks a lot to Michael S. Triskin for this brilliant idea. 2. Added new PCI_REGION_TYPE_PREFMEM_64 region type in pciinit and changed types of variables. 3. Take care about PCI devices with 64bit BARs on secondary buses. Patches have been tested on several configurations which includes linux 2.6.18 - 3.0 & windows 2008. Everything works quite well.