From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y3Puz-0003j7-K9 for qemu-devel@nongnu.org; Tue, 23 Dec 2014 08:54:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y3Pux-00013m-LQ for qemu-devel@nongnu.org; Tue, 23 Dec 2014 08:54:33 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:54613) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y3Pux-00013H-AV for qemu-devel@nongnu.org; Tue, 23 Dec 2014 08:54:31 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1Y3Put-00042v-R9 for qemu-devel@nongnu.org; Tue, 23 Dec 2014 13:54:27 +0000 From: Peter Maydell Date: Tue, 23 Dec 2014 13:53:56 +0000 Message-Id: <1419342867-15527-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 00/31] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Two major things in this pull: * finally getting to the point when we can actually enable TrustZone (for 32 bit CPUs); there's more to come next year, notably GIC support, but this is now something people can actually use * support for passing a command line specified kernel/initrd to firmware (ie UEFI) for it to boot thanks -- PMM The following changes since commit 7e58e2ac7778cca3234c33387e49577bb7732714: Merge remote-tracking branch 'remotes/gonglei/tags/bootdevice-next-20141222' into staging (2014-12-22 14:52:52 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20141223 for you to fetch changes up to aa351061dbb0e3054db11c00a69395785c4186c8: hw/arm/virt: enable passing of EFI-stubbed kernel to guest UEFI firmware (2014-12-22 23:39:20 +0000) ---------------------------------------------------------------- target-arm queue: * enable 32-bit EL3 (TrustZone) for vexpress and virt boards * add fw_cfg device to virt board for UEFI firmware config * support passing commandline kernel/initrd to firmware ---------------------------------------------------------------- Fabian Aggeler (1): target-arm: add cpu feature EL3 to CPUs with Security Extensions Greg Bellows (15): target-arm: Merge EL3 CP15 register lists target-arm: Add vexpress class and machine types target-arm: Add vexpress a9 & a15 machine objects target-arm: Switch to common vexpress machine init target-arm: Add vexpress machine secure property target-arm: Change vexpress daughterboard init arg target-arm: Add virt class and machine types target-arm: Add virt machine secure property target-arm: Add feature unset function target-arm: Add ARMCPU secure property target-arm: Add arm_boot_info secure_boot control target-arm: Enable CPU has_el3 prop during VE init target-arm: Set CPU has_el3 prop during virt init target-arm: Breakout integratorcp and versatilepb cpu init target-arm: Disable EL3 on unsupported machines Laszlo Ersek (10): fw_cfg: hard separation between the MMIO and I/O port mappings fw_cfg: move boards to fw_cfg_init_io() / fw_cfg_init_mem() fw_cfg_mem: max access size and region size are the same for data register fw_cfg_mem: flip ctl_mem_ops and data_mem_ops to DEVICE_BIG_ENDIAN fw_cfg_mem: introduce the "data_width" property fw_cfg_mem: expose the "data_width" property with fw_cfg_init_mem_wide() arm: add fw_cfg to "virt" board hw/loader: split out load_image_gzipped_buffer() hw/arm: pass pristine kernel image to guest firmware over fw_cfg hw/arm/virt: enable passing of EFI-stubbed kernel to guest UEFI firmware Marcel Apfelbaum (3): machine: remove qemu_machine_opts global list vl.c: simplified machine_set_property vl.c: add HMP help to machine Paolo Bonzini (1): exec: allows 8-byte accesses in subpage_ops Peter Maydell (1): audio: Don't free hw resources until after hw backend is stopped audio/audio_template.h | 2 +- exec.c | 13 ++- hw/arm/boot.c | 98 +++++++++++++++++- hw/arm/exynos4210.c | 11 ++ hw/arm/highbank.c | 12 +++ hw/arm/integratorcp.c | 31 +++++- hw/arm/realview.c | 12 +++ hw/arm/versatilepb.c | 32 +++++- hw/arm/vexpress.c | 141 ++++++++++++++++++++------ hw/arm/virt.c | 97 ++++++++++++++++-- hw/arm/xilinx_zynq.c | 12 +++ hw/core/loader.c | 30 ++++-- hw/core/machine.c | 45 +++++++++ hw/i386/pc.c | 11 +- hw/nvram/fw_cfg.c | 250 +++++++++++++++++++++++++++++++++++----------- hw/ppc/mac_newworld.c | 2 +- hw/ppc/mac_oldworld.c | 2 +- hw/ppc/spapr.c | 3 + hw/sparc/sun4m.c | 2 +- hw/sparc64/sun4u.c | 2 +- include/hw/arm/arm.h | 9 ++ include/hw/loader.h | 9 ++ include/hw/nvram/fw_cfg.h | 6 +- include/qemu/typedefs.h | 2 + target-arm/cpu-qom.h | 2 + target-arm/cpu.c | 32 ++++++ target-arm/helper.c | 55 +++++----- vl.c | 117 +++++++--------------- 28 files changed, 803 insertions(+), 237 deletions(-)