From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33711) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKkSM-0003sV-Se for qemu-devel@nongnu.org; Mon, 09 Feb 2015 04:16:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YKkSJ-0001sj-LO for qemu-devel@nongnu.org; Mon, 09 Feb 2015 04:16:38 -0500 Received: from mailapp01.imgtec.com ([195.59.15.196]:32553) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKkSJ-0001p4-7b for qemu-devel@nongnu.org; Mon, 09 Feb 2015 04:16:35 -0500 Message-ID: <54D87ADD.5000808@imgtec.com> Date: Mon, 9 Feb 2015 09:16:13 +0000 From: Leon Alrae MIME-Version: 1.0 References: <1422778376-32141-1-git-send-email-hpoussin@reactos.org> In-Reply-To: <1422778376-32141-1-git-send-email-hpoussin@reactos.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 0/7] isa: remove isa_mem_base variable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?SGVydsOpIFBvdXNzaW5lYXU=?= , qemu-devel@nongnu.org Cc: Aurelien Jarno On 01/02/2015 08:12, Herv=C3=A9 Poussineau wrote: > Hi, >=20 > This patchset removes the isa_mem_base variable in VGA display devices. > This variable is a global variable telling at which address is the > ISA memory base address in the system memory address space. >=20 > Once removed, we're paving the way to new QEMU functionalities: > - supporting other MMIO ISA devices (like some network cards) > - supporting multiple ISA buses (not done in this patchset) >=20 > Most of the changes are MIPS-related, so maybe Aur=C3=A9lien or Leon ca= n > take care of them? Tested using Malta and looks fine for me. Since there were no objections I'll add these patches to my mips-next tree. Thanks, Leon >=20 > Changes since v1: > - correctly handle PCI0 windows in gt64xxx >=20 > Herv=C3=A9 Poussineau (7): > isa: add memory space parameter to isa_bus_new > jazz: do not explode QEMUMachineInitArgs structure > jazz: remove usage of isa_mem_base > mips: remove isa_mem_base usage > piix4: use PCI address space instead of system memory > gt64xxx: remove isa_mem_base usage > isa: remove isa_mem_base variable >=20 > hw/alpha/typhoon.c | 2 +- > hw/display/cirrus_vga.c | 2 +- > hw/display/vga-isa.c | 2 +- > hw/display/vga.c | 3 +- > hw/i386/pc_piix.c | 2 +- > hw/isa/i82378.c | 3 +- > hw/isa/isa-bus.c | 12 ++++-- > hw/isa/lpc_ich9.c | 2 +- > hw/isa/piix4.c | 3 +- > hw/isa/vt82c686.c | 3 +- > hw/mips/gt64xxx_pci.c | 95 +++++++++++++++++++++++++++++++++------= -------- > hw/mips/mips_jazz.c | 44 +++++++++++----------- > hw/mips/mips_r4k.c | 19 +++++----- > hw/pci-host/piix.c | 3 +- > hw/sparc64/sun4u.c | 3 +- > include/hw/isa/isa.h | 6 +-- > 16 files changed, 126 insertions(+), 78 deletions(-) >=20