]> git.proxmox.com Git - mirror_qemu.git/commitdiff
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190816' into...
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 16 Aug 2019 16:21:39 +0000 (17:21 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 16 Aug 2019 16:21:40 +0000 (17:21 +0100)
target-arm queue:
 * target/arm: generate a custom MIDR for -cpu max
 * hw/misc/zynq_slcr: refactor to use standard register definition
 * Set ENET_BD_BDU in I.MX FEC controller
 * target/arm: Fix routing of singlestep exceptions
 * refactor a32/t32 decoder handling of PC
 * minor optimisations/cleanups of some a32/t32 codegen
 * target/arm/cpu64: Ensure kvm really supports aarch64=off
 * target/arm/cpu: Ensure we can use the pmu with kvm
 * target/arm: Minor cleanups preparatory to KVM SVE support

# gpg: Signature made Fri 16 Aug 2019 14:15:55 BST
# gpg:                using RSA key E1A5C593CD419DE28E8315CF3C2525ED14360CDE
# gpg:                issuer "peter.maydell@linaro.org"
# gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>" [ultimate]
# gpg:                 aka "Peter Maydell <pmaydell@gmail.com>" [ultimate]
# gpg:                 aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>" [ultimate]
# Primary key fingerprint: E1A5 C593 CD41 9DE2 8E83  15CF 3C25 25ED 1436 0CDE

* remotes/pmaydell/tags/pull-target-arm-20190816: (29 commits)
  target/arm: Use tcg_gen_extrh_i64_i32 to extract the high word
  target/arm: Simplify SMMLA, SMMLAR, SMMLS, SMMLSR
  target/arm: Use tcg_gen_rotri_i32 for gen_swap_half
  target/arm: Use ror32 instead of open-coding the operation
  target/arm: Remove redundant shift tests
  target/arm: Use tcg_gen_deposit_i32 for PKHBT, PKHTB
  target/arm: Use tcg_gen_extract_i32 for shifter_out_im
  target/arm/kvm64: Move the get/put of fpsimd registers out
  target/arm/kvm64: Fix error returns
  target/arm/cpu: Use div-round-up to determine predicate register array size
  target/arm/helper: zcr: Add build bug next to value range assumption
  target/arm/cpu: Ensure we can use the pmu with kvm
  target/arm/cpu64: Ensure kvm really supports aarch64=off
  target/arm: Remove helper_double_saturate
  target/arm: Use unallocated_encoding for aarch32
  target/arm: Remove offset argument to gen_exception_bkpt_insn
  target/arm: Replace offset with pc in gen_exception_internal_insn
  target/arm: Replace offset with pc in gen_exception_insn
  target/arm: Replace s->pc with s->base.pc_next
  target/arm: Remove redundant s->pc & ~1
  ...

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
1  2 
hw/misc/zynq_slcr.c
hw/net/imx_fec.c
target/arm/cpu.h
target/arm/cpu64.c
target/arm/helper.c
target/arm/kvm.c
target/arm/kvm64.c

index 04adf618e50a94efd81291ec944d69d59bbc41ed,dd766a6779279d8393fc14c8d9ec221023110ccf..b9a38272d96bcfc3e6b71df0110801d0fe9d126a
   */
  
  #include "qemu/osdep.h"
 -#include "hw/hw.h"
  #include "qemu/timer.h"
 +#include "sysemu/runstate.h"
  #include "hw/sysbus.h"
 -#include "sysemu/sysemu.h"
 +#include "migration/vmstate.h"
  #include "qemu/log.h"
  #include "qemu/module.h"
+ #include "hw/registerfields.h"
  
  #ifndef ZYNQ_SLCR_ERR_DEBUG
  #define ZYNQ_SLCR_ERR_DEBUG 0
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 59ed579d02e73728df299a8a7824d1a0ffa6216d,0b004d5d30504aff878da372ceaa54554c16b774..28f6db57d5eec6ec041366c52ea692614c84f568
  #include "qemu/timer.h"
  #include "qemu/error-report.h"
  #include "qemu/host-utils.h"
 +#include "qemu/main-loop.h"
  #include "exec/gdbstub.h"
 -#include "sysemu/sysemu.h"
  #include "sysemu/kvm.h"
+ #include "sysemu/kvm_int.h"
  #include "kvm_arm.h"
+ #include "hw/boards.h"
  #include "internals.h"
  
  static bool have_guest_debug;