From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55452) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TrEpI-0005go-3a for qemu-devel@nongnu.org; Fri, 04 Jan 2013 16:29:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TrEpH-0004fu-5e for qemu-devel@nongnu.org; Fri, 04 Jan 2013 16:29:16 -0500 Received: from smtp1-g21.free.fr ([2a01:e0c:1:1599::10]:58967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TrEpG-0004e9-JE for qemu-devel@nongnu.org; Fri, 04 Jan 2013 16:29:15 -0500 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Fri, 4 Jan 2013 22:29:35 +0100 Message-Id: <1357334986-13941-1-git-send-email-hpoussin@reactos.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 00/10] memory: remove old_portio usage List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= , =?UTF-8?q?Herv=C3=A9=20Poussineau?= These proposed patches aim at removing the .old_portio member of MemoryRegionOps structure, and replacing their usage by .read/.write handlers. That way, faked I/O address space can be removed from architectures which don't have it (MIPS, PowerPC...), and commits like a178274efabcbbc5d44805b51def874e47051325 ("PPC: pseries: Remove hack for PIO window") can be reapplied. Changes since RFC: - fixed ppc/oldworld, ppc/newworld and sun4u machines - removed bochs port changes, as they have been committed Gerd Hoffmann (1): uhci: stop using portio lists Herv=C3=A9 Poussineau (9): ppc/newworld: add ISA bus, required by VGA card ppc/oldworld: add ISA bus, required by VGA card sun4u: create VGA card after ISA bus xen_platform: do not use old_portio-style callbacks acpi-piix4: do not use old_portio-style callbacks vga/qxl: do not use portio_list_init/portio_list_add isa: use memory regions instead of portio_list_* functions ioport: remove now useless portio_list_* functions memory: remove old_portio-style callbacks support hw/acpi_piix4.c | 91 ++++++++++++++++------------------- hw/isa-bus.c | 127 +++++++++++++++++++++++++++++++++++++++++++= ++++-- hw/isa.h | 2 +- hw/ppc_newworld.c | 1 + hw/ppc_oldworld.c | 1 + hw/qxl.c | 4 +- hw/sun4u.c | 3 +- hw/usb/hcd-uhci.c | 106 ++++++++++++----------------------------- hw/vga.c | 8 +--- hw/xen_platform.c | 21 ++++---- include/exec/ioport.h | 19 -------- include/exec/memory.h | 4 -- ioport.c | 121 -------------------------------------------= --- memory.c | 44 ----------------- trace-events | 2 - 15 files changed, 212 insertions(+), 342 deletions(-) --=20 1.7.10.4