From: Avi Kivity <avi@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>, qemu-devel@nongnu.org
Cc: kvm@vger.kernel.org
Subject: [Qemu-devel] [PATCH v2 00/24] Memory API batch 4: more conversions
Date: Mon, 15 Aug 2011 17:17:14 +0300 [thread overview]
Message-ID: <1313417858-6454-1-git-send-email-avi@redhat.com> (raw)
This patchset converts a few more devices (and boards) to the memory API.
Nothing is really interesting except for the last patch, which brings
proper PAM support (and better SMRAM emulation). It should also fix the
regressions that were reported in some non-default pc configurations.
v2:
fix wrong return value in versatile_pci
don't drop calls to omap_badwidth_*() functions
Avi Kivity (24):
apb_pci: convert to memory API
apic: convert to memory API
arm_gic: convert to memory API
arm_sysctl: convert to memory API
arm_timer: convert to memory API
armv7m: convert to memory API
gt64xxx.c: convert to memory API
tusb6010: move declarations to new file tusb6010.h
omap_gpmc/nseries/tusb6010: convert to memory API
onenand: convert to memory API
pcie_host: convert to memory API
ppc405_uc: convert to memory API
ppc4xx_sdram: convert to memory API
stellaris_enet: convert to memory API
sysbus: add a variant of sysbus_init_mmio_cb with an unmap callback
sh_pci: convert to memory API
arm11mpcore: use sysbus_init_mmio_cb2
versatile_pci: convert to memory API
ppce500_pci: convert to sysbus_init_mmio_cb2()
sysbus: remove sysbus_init_mmio_cb()
isa: add isa_address_space()
pci: add pci_address_space()
vga: drop get_system_memory() from vga devices and derivatives
440fx: fix PAM, PCI holes
hw/apb_pci.c | 84 +++++++++++++++-------------------
hw/apic.c | 25 ++++------
hw/arm11mpcore.c | 7 ++-
hw/arm_gic.c | 22 +++------
hw/arm_sysctl.c | 27 ++++-------
hw/arm_timer.c | 55 ++++++++--------------
hw/armv7m.c | 24 ++++------
hw/armv7m_nvic.c | 3 +-
hw/cirrus_vga.c | 12 ++--
hw/devices.h | 7 ---
hw/gt64xxx.c | 36 ++++++--------
hw/isa-bus.c | 6 ++
hw/isa.h | 1 +
hw/mips_jazz.c | 3 +-
hw/mpcore.c | 37 +++++++--------
hw/nseries.c | 1 +
hw/omap.h | 3 +-
hw/omap_gpmc.c | 60 ++++++++++++++----------
hw/onenand.c | 69 +++++++++++++++-------------
hw/pc.c | 14 ++++--
hw/pc.h | 18 +++++--
hw/pc_piix.c | 23 +++++++--
hw/pci.c | 5 ++
hw/pci.h | 1 +
hw/pcie_host.c | 98 ++++++++++-----------------------------
hw/pcie_host.h | 12 ++--
hw/piix_pci.c | 114 ++++++++++++++++++++++++++++++++-------------
hw/ppc405.h | 9 ++-
hw/ppc405_boards.c | 18 +++++--
hw/ppc405_uc.c | 128 +++++++++++++++++++++++---------------------------
hw/ppc440.c | 7 ++-
hw/ppc4xx.h | 2 +
hw/ppc4xx_devs.c | 50 ++++++++++++++------
hw/ppce500_pci.c | 12 ++++-
hw/qxl.c | 2 +-
hw/realview_gic.c | 38 +++++++--------
hw/sh_pci.c | 63 +++++++++++++++++--------
hw/stellaris_enet.c | 29 +++++-------
hw/sysbus.c | 9 ++-
hw/sysbus.h | 5 +-
hw/tusb6010.c | 32 ++++++-------
hw/tusb6010.h | 28 +++++++++++
hw/versatile_pci.c | 92 +++++++++++++++++-------------------
hw/vga-isa-mm.c | 15 +++---
hw/vga-isa.c | 5 +-
hw/vga-pci.c | 4 +-
hw/vga.c | 9 ++--
hw/vga_int.h | 4 +-
hw/vmware_vga.c | 9 ++--
49 files changed, 703 insertions(+), 634 deletions(-)
create mode 100644 hw/tusb6010.h
--
1.7.5.3
next reply other threads:[~2011-08-15 14:17 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-15 14:17 Avi Kivity [this message]
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 01/24] apb_pci: convert to memory API Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 02/24] apic: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 03/24] arm_gic: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 04/24] arm_sysctl: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 05/24] arm_timer: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 06/24] armv7m: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 07/24] gt64xxx.c: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 08/24] tusb6010: move declarations to new file tusb6010.h Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 09/24] omap_gpmc/nseries/tusb6010: convert to memory API Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 10/24] onenand: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 11/24] pcie_host: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 12/24] ppc405_uc: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 13/24] ppc4xx_sdram: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 14/24] stellaris_enet: " Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 15/24] sysbus: add a variant of sysbus_init_mmio_cb with an unmap callback Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 16/24] sh_pci: convert to memory API Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 17/24] arm11mpcore: use sysbus_init_mmio_cb2 Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 18/24] versatile_pci: convert to memory API Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 19/24] ppce500_pci: convert to sysbus_init_mmio_cb2() Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 20/24] sysbus: remove sysbus_init_mmio_cb() Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 21/24] isa: add isa_address_space() Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 22/24] pci: add pci_address_space() Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 23/24] vga: drop get_system_memory() from vga devices and derivatives Avi Kivity
2011-08-15 14:17 ` [Qemu-devel] [PATCH v2 24/24] 440fx: fix PAM, PCI holes Avi Kivity
2011-08-22 7:38 ` [Qemu-devel] [PATCH v2 00/24] Memory API batch 4: more conversions Avi Kivity
2011-08-22 16:33 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1313417858-6454-1-git-send-email-avi@redhat.com \
--to=avi@redhat.com \
--cc=anthony@codemonkey.ws \
--cc=kvm@vger.kernel.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).