From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54385) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1Eh9-00058D-6J for qemu-devel@nongnu.org; Mon, 22 Jul 2013 07:54:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V1Eh3-0001Ck-NY for qemu-devel@nongnu.org; Mon, 22 Jul 2013 07:54:27 -0400 Received: from 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1d0::1]:58897 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1Eh3-0001CZ-Gk for qemu-devel@nongnu.org; Mon, 22 Jul 2013 07:54:21 -0400 From: Peter Maydell Date: Mon, 22 Jul 2013 12:43:37 +0100 Message-Id: <1374493427-3254-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 00/10] arm-devs queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, Paul Brook Hi; here's the latest arm-devs queue, containing two things: * virtio-mmio * Soren's patches to add support for initrd with u-boot-header These are features, but they've both had code on the list for some time (and in particular since before softfreeze). I don't intend to submit anything except bugfixes after this pull. Please pull. thanks -- PMM The following changes since commit 24943978cbe79634a9a8b02a20efb25b29b3ab49: boot-order-test: Add tests for Sun4u (2013-07-18 13:27:47 -0500) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-arm-devs-20130722 for you to fetch changes up to fd76663e3fe59dc7f7d5c439561b74f472727137: hw/arm: Use 'load_ramdisk()' for loading ramdisks w/ U-Boot header (2013-07-22 12:01:37 +0100) ---------------------------------------------------------------- arm-devs queue ---------------------------------------------------------------- Peter Maydell (8): device_tree: Add qemu_devtree_setprop_sized_cells() utility functions arm/boot: Use qemu_devtree_setprop_sized_cells() virtio: Add support for guest setting of queue size virtio: Support transports which can specify the vring alignment virtio: Implement MMIO based virtio transport arm/boot: Allow boards to modify the FDT blob vexpress: Make VEDBoardInfo extend arm_boot_info vexpress: Add virtio-mmio transports Soren Brinkmann (2): hw/loader: Support ramdisk with u-boot header hw/arm: Use 'load_ramdisk()' for loading ramdisks w/ U-Boot header device_tree.c | 33 ++++ hw/arm/boot.c | 48 +++-- hw/arm/vexpress.c | 128 ++++++++++-- hw/core/loader.c | 84 +++++--- hw/virtio/Makefile.objs | 1 + hw/virtio/virtio-mmio.c | 421 ++++++++++++++++++++++++++++++++++++++++ hw/virtio/virtio.c | 40 +++- include/hw/arm/arm.h | 4 + include/hw/loader.h | 13 ++ include/hw/virtio/virtio-bus.h | 6 + include/hw/virtio/virtio.h | 2 + include/sysemu/device_tree.h | 59 ++++++ 12 files changed, 771 insertions(+), 68 deletions(-) create mode 100644 hw/virtio/virtio-mmio.c