All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/45] target-arm queue
@ 2018-10-19 16:56 Peter Maydell
  2018-10-19 16:56 ` [Qemu-devel] [PULL 01/45] ssi-sd: Make devices picking up backends unavailable with -device Peter Maydell
                   ` (44 more replies)
  0 siblings, 45 replies; 51+ messages in thread
From: Peter Maydell @ 2018-10-19 16:56 UTC (permalink / raw)
  To: qemu-devel

As promised, another pullreq... This one's mostly RTH's patches.

thanks
-- PMM

The following changes since commit 784c2e4f232adf5ef47a84a262ec72a07d068d6a:

  Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging (2018-10-19 15:30:40 +0100)

are available in the Git repository at:

  https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20181019

for you to fetch changes up to 88c9add25e7120e8622796c81ad3f3fb7f8d40e7:

  target/arm: Only flush tlb if ASID changes (2018-10-19 17:38:48 +0100)

----------------------------------------------------------------
target-arm queue:
 * ssi-sd: Make devices picking up backends unavailable with -device
 * Add support for VCPU event states
 * Move towards making ID registers the source of truth for
   whether a guest CPU implements a feature, rather than having
   parallel ID registers and feature bit flags
 * Implement various HCR hypervisor trap/config bits
 * Get IL bit correct for v7 syndrome values
 * Report correct syndrome for FP/SIMD traps to Hyp mode
 * hw/arm/boot: Increase compliance with kernel arm64 boot protocol
 * Refactor A32 Neon to use generic vector infrastructure
 * Fix a bug in A32 VLD2 "(multiple 2-element structures)" insn
 * net: cadence_gem: Report features correctly in ID register
 * Avoid some unnecessary TLB flushes on TTBR register writes

----------------------------------------------------------------
Dongjiu Geng (1):
      target/arm: Add support for VCPU event states

Edgar E. Iglesias (2):
      net: cadence_gem: Announce availability of priority queues
      net: cadence_gem: Announce 64bit addressing support

Markus Armbruster (1):
      ssi-sd: Make devices picking up backends unavailable with -device

Peter Maydell (10):
      target/arm: Improve debug logging of AArch32 exception return
      target/arm: Make switch_mode() file-local
      target/arm: Implement HCR.FB
      target/arm: Implement HCR.DC
      target/arm: ISR_EL1 bits track virtual interrupts if IMO/FMO set
      target/arm: Implement HCR.VI and VF
      target/arm: Implement HCR.PTW
      target/arm: New utility function to extract EC from syndrome
      target/arm: Get IL bit correct for v7 syndrome values
      target/arm: Report correct syndrome for FP/SIMD traps to Hyp mode

Richard Henderson (30):
      target/arm: Move some system registers into a substructure
      target/arm: V8M should not imply V7VE
      target/arm: Convert v8 extensions from feature bits to isar tests
      target/arm: Convert division from feature bits to isar0 tests
      target/arm: Convert jazelle from feature bit to isar1 test
      target/arm: Convert t32ee from feature bit to isar3 test
      target/arm: Convert sve from feature bit to aa64pfr0 test
      target/arm: Convert v8.2-fp16 from feature bit to aa64pfr0 test
      target/arm: Hoist address increment for vector memory ops
      target/arm: Don't call tcg_clear_temp_count
      target/arm: Use tcg_gen_gvec_dup_i64 for LD[1-4]R
      target/arm: Promote consecutive memory ops for aa64
      target/arm: Mark some arrays const
      target/arm: Use gvec for NEON VDUP
      target/arm: Use gvec for NEON VMOV, VMVN, VBIC & VORR (immediate)
      target/arm: Use gvec for NEON_3R_LOGIC insns
      target/arm: Use gvec for NEON_3R_VADD_VSUB insns
      target/arm: Use gvec for NEON_2RM_VMN, NEON_2RM_VNEG
      target/arm: Use gvec for NEON_3R_VMUL
      target/arm: Use gvec for VSHR, VSHL
      target/arm: Use gvec for VSRA
      target/arm: Use gvec for VSRI, VSLI
      target/arm: Use gvec for NEON_3R_VML
      target/arm: Use gvec for NEON_3R_VTST_VCEQ, NEON_3R_VCGT, NEON_3R_VCGE
      target/arm: Use gvec for NEON VLD all lanes
      target/arm: Reorg NEON VLD/VST all elements
      target/arm: Promote consecutive memory ops for aa32
      target/arm: Reorg NEON VLD/VST single element to one lane
      target/arm: Remove writefn from TTBR0_EL3
      target/arm: Only flush tlb if ASID changes

Stewart Hildebrand (1):
      hw/arm/boot: Increase compliance with kernel arm64 boot protocol

 target/arm/cpu.h            |  227 ++++++-
 target/arm/internals.h      |   45 +-
 target/arm/kvm_arm.h        |   24 +
 target/arm/translate.h      |   21 +
 hw/arm/boot.c               |   18 +
 hw/intc/armv7m_nvic.c       |   12 +-
 hw/net/cadence_gem.c        |    9 +-
 hw/sd/ssi-sd.c              |    2 +
 linux-user/aarch64/signal.c |    4 +-
 linux-user/elfload.c        |   60 +-
 linux-user/syscall.c        |   10 +-
 target/arm/cpu.c            |  242 ++++----
 target/arm/cpu64.c          |  148 +++--
 target/arm/helper.c         |  397 ++++++++----
 target/arm/kvm.c            |   60 ++
 target/arm/kvm32.c          |   13 +
 target/arm/kvm64.c          |   15 +-
 target/arm/machine.c        |   28 +-
 target/arm/op_helper.c      |    2 +-
 target/arm/translate-a64.c  |  715 ++++-----------------
 target/arm/translate.c      | 1451 ++++++++++++++++++++++++++++---------------
 21 files changed, 2021 insertions(+), 1482 deletions(-)

^ permalink raw reply	[flat|nested] 51+ messages in thread
* [Qemu-devel] [PULL 00/45] target-arm queue
@ 2018-08-14 18:17 Peter Maydell
  2018-08-15 12:29 ` Peter Maydell
  0 siblings, 1 reply; 51+ messages in thread
From: Peter Maydell @ 2018-08-14 18:17 UTC (permalink / raw)
  To: qemu-devel

First pullreq of the 3.1 release cycle, with lots of
Arm related patches accumulated during freeze. Most
notable here is Luc's GICv2 virtualization support and
my execute-from-MMIO patches.

I stopped looking at my to-review queue towards the
end of freeze, since 45 patches is already pushing what
I consider a reasonable sized pullreq; once this goes into
master I'll start working through it again.

thanks
-- PMM

The following changes since commit 38441756b70eec5807b5f60dad11a93a91199866:

  Update version for v3.0.0 release (2018-08-14 16:38:43 +0100)

are available in the Git repository at:

  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20180814

for you to fetch changes up to 054e7adf4e64e4acb3b033348ebf7cc871baa34f:

  target/arm: Fix typo in helper_sve_movz_d (2018-08-14 17:17:22 +0100)

----------------------------------------------------------------
target-arm queue:
 * Implement more of ARMv6-M support
 * Support direct execution from non-RAM regions;
   use this to implmeent execution from small (<1K) MPU regions
 * GICv2: implement the virtualization extensions
 * support a virtualization-capable GICv2 in the virt and
   xlnx-zynqmp boards
 * arm: Fix return code of arm_load_elf() so we can detect
   failure to load the file correctly
 * Implement HCR_EL2.TGE ("trap general exceptions") bit
 * Implement tailchaining for M profile cores
 * Fix bugs in SVE compare, saturating add/sub, WHILE, MOVZ

----------------------------------------------------------------
Adam Lackorzynski (1):
      arm: Fix return code of arm_load_elf

Julia Suvorova (4):
      target/arm: Forbid unprivileged mode for M Baseline
      nvic: Handle ARMv6-M SCS reserved registers
      arm: Add ARMv6-M programmer's model support
      nvic: Change NVIC to support ARMv6-M

Luc Michel (20):
      intc/arm_gic: Refactor operations on the distributor
      intc/arm_gic: Implement GICD_ISACTIVERn and GICD_ICACTIVERn registers
      intc/arm_gic: Remove some dead code and put some functions static
      vmstate.h: Provide VMSTATE_UINT16_SUB_ARRAY
      intc/arm_gic: Add the virtualization extensions to the GIC state
      intc/arm_gic: Add virtual interface register definitions
      intc/arm_gic: Add virtualization extensions helper macros and functions
      intc/arm_gic: Refactor secure/ns access check in the CPU interface
      intc/arm_gic: Add virtualization enabled IRQ helper functions
      intc/arm_gic: Implement virtualization extensions in gic_(activate_irq|drop_prio)
      intc/arm_gic: Implement virtualization extensions in gic_acknowledge_irq
      intc/arm_gic: Implement virtualization extensions in gic_(deactivate|complete_irq)
      intc/arm_gic: Implement virtualization extensions in gic_cpu_(read|write)
      intc/arm_gic: Wire the vCPU interface
      intc/arm_gic: Implement the virtual interface registers
      intc/arm_gic: Implement gic_update_virt() function
      intc/arm_gic: Implement maintenance interrupt generation
      intc/arm_gic: Improve traces
      xlnx-zynqmp: Improve GIC wiring and MMIO mapping
      arm/virt: Add support for GICv2 virtualization extensions

Peter Maydell (16):
      accel/tcg: Pass read access type through to io_readx()
      accel/tcg: Handle get_page_addr_code() returning -1 in hashtable lookups
      accel/tcg: Handle get_page_addr_code() returning -1 in tb_check_watchpoint()
      accel/tcg: tb_gen_code(): Create single-insn TB for execution from non-RAM
      accel/tcg: Return -1 for execution from MMIO regions in get_page_addr_code()
      target/arm: Allow execution from small regions
      accel/tcg: Check whether TLB entry is RAM consistently with how we set it up
      target/arm: Mask virtual interrupts if HCR_EL2.TGE is set
      target/arm: Honour HCR_EL2.TGE and MDCR_EL2.TDE in debug register access checks
      target/arm: Honour HCR_EL2.TGE when raising synchronous exceptions
      target/arm: Provide accessor functions for HCR_EL2.{IMO, FMO, AMO}
      target/arm: Treat SCTLR_EL1.M as if it were zero when HCR_EL2.TGE is set
      target/arm: Improve exception-taken logging
      target/arm: Initialize exc_secure correctly in do_v7m_exception_exit()
      target/arm: Restore M-profile CONTROL.SPSEL before any tailchaining
      target/arm: Implement tailchaining for M profile cores

Richard Henderson (4):
      target/arm: Fix sign of sve_cmpeq_ppzw/sve_cmpne_ppzw
      target/arm: Fix typo in do_sat_addsub_64
      target/arm: Reorganize SVE WHILE
      target/arm: Fix typo in helper_sve_movz_d

 accel/tcg/softmmu_template.h     |  11 +-
 hw/intc/gic_internal.h           | 282 +++++++++--
 include/exec/exec-all.h          |   2 -
 include/hw/arm/virt.h            |   4 +-
 include/hw/arm/xlnx-zynqmp.h     |   4 +-
 include/hw/intc/arm_gic_common.h |  43 +-
 include/hw/intc/armv7m_nvic.h    |   1 +
 include/migration/vmstate.h      |   3 +
 include/qom/cpu.h                |   6 +
 target/arm/cpu.h                 |  62 ++-
 accel/tcg/cpu-exec.c             |   3 +
 accel/tcg/cputlb.c               | 111 +----
 accel/tcg/translate-all.c        |  23 +-
 exec.c                           |   6 -
 hw/arm/boot.c                    |   8 +-
 hw/arm/virt-acpi-build.c         |   6 +-
 hw/arm/virt.c                    |  52 ++-
 hw/arm/xlnx-zynqmp.c             |  92 +++-
 hw/intc/arm_gic.c                | 987 +++++++++++++++++++++++++++++++--------
 hw/intc/arm_gic_common.c         | 154 ++++--
 hw/intc/arm_gic_kvm.c            |  31 +-
 hw/intc/arm_gicv3_cpuif.c        |  19 +-
 hw/intc/armv7m_nvic.c            |  82 +++-
 memory.c                         |   3 +-
 target/arm/cpu.c                 |   4 +
 target/arm/helper.c              | 127 +++--
 target/arm/op_helper.c           |  14 +
 target/arm/sve_helper.c          |  19 +-
 target/arm/translate-sve.c       |  51 +-
 hw/intc/trace-events             |  12 +-
 30 files changed, 1724 insertions(+), 498 deletions(-)

^ permalink raw reply	[flat|nested] 51+ messages in thread
* [Qemu-devel] [PULL 00/45] target-arm queue
@ 2014-02-26 18:01 Peter Maydell
  2014-02-27 11:33 ` Peter Maydell
  0 siblings, 1 reply; 51+ messages in thread
From: Peter Maydell @ 2014-02-26 18:01 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Blue Swirl, qemu-devel, Aurelien Jarno

The following changes since commit d5001cf787ad0514839a81d0f2e771e01e076e21:

  xilinx: Delete hw/include/xilinx.h (2014-02-26 14:54:45 +1000)

are available in the git repository at:

  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20140226

for you to fetch changes up to c04018e93390e31b40044f3db92c173fb0ccb3d2:

  dma/pl330: implement dmaadnh instruction (2014-02-26 17:20:09 +0000)

----------------------------------------------------------------
target-arm queue:
 * fixes for various Coverity-spotted bugs
 * support new KVM device control API for VGIC
 * support KVM VGIC save/restore/migration
 * more AArch64 system mode foundations
 * support ARMv8 CRC instructions for A32/T32
 * PL330 minor fixes and cleanup

----------------------------------------------------------------
Christoffer Dall (6):
      hw/intc/arm_gic: Fix GIC_SET_LEVEL
      linux-headers: Update from v3.14-rc3
      kvm: Introduce kvm_arch_irqchip_create
      kvm: Common device control API functions
      arm: vgic device control api support
      hw: arm_gic_kvm: Add KVM VGIC save/restore logic

Peter Crosthwaite (7):
      dma/pl330: Delete overly verbose debug printf
      dma/pl330: Fix misleading type
      dma/pl330: printf format type sweep.
      dma/pl330: Rename parent_obj
      dma/pl330: Add event debugging printfs
      dma/pl330: Fix buffer depth
      dma/pl330: implement dmaadnh instruction

Peter Maydell (30):
      hw/misc/arm_sysctl: Fix bad boundary check on mb clock accesses
      hw/net/stellaris_enet: Avoid unintended sign extension
      hw/timer/arm_timer: Avoid array overrun for bad addresses
      target-arm: Fix incorrect arithmetic constructing short-form PAR for ATS ops
      hw/intc/exynos4210_combiner: Don't overrun output_irq array in init
      hw/arm/musicpal: Remove nonexistent CDTP2, CDTP3 registers
      target-arm: Load correct access bits from ARMv5 level 2 page table descriptors
      target-arm: Fix raw read and write functions on AArch64 registers
      target-arm: A64: Make cache ID registers visible to AArch64
      target-arm: Implement AArch64 CurrentEL sysreg
      target-arm: Implement AArch64 MIDR_EL1
      target-arm: Implement AArch64 cache invalidate/clean ops
      target-arm: Implement AArch64 TLB invalidate ops
      target-arm: Implement AArch64 dummy MDSCR_EL1
      target-arm: Implement AArch64 memory attribute registers
      target-arm: Implement AArch64 SCTLR_EL1
      target-arm: Implement AArch64 TCR_EL1
      target-arm: Implement AArch64 VBAR_EL1
      target-arm: Implement AArch64 TTBR*
      target-arm: Implement AArch64 MPIDR
      target-arm: Implement AArch64 generic timers
      target-arm: Implement AArch64 ID and feature registers
      target-arm: Implement AArch64 dummy breakpoint and watchpoint registers
      target-arm: Implement AArch64 OSLAR_EL1 sysreg as WI
      target-arm: Get MMU index information correct for A64 code
      target-arm: A64: Implement WFI
      target-arm: Store AIF bits in env->pstate for AArch32
      target-arm: A64: Implement MSR (immediate) instructions
      target-arm: Implement AArch64 view of CPACR
      target-arm: Add utility function for checking AA32/64 state of an EL

Will Newton (2):
      include/qemu/crc32c.h: Rename include guards to match filename
      target-arm: Add support for AArch32 ARMv8 CRC32 instructions

 configure                        |   2 +-
 cpu-exec.c                       |   4 +-
 hw/arm/musicpal.c                |   6 +-
 hw/arm/pxa2xx.c                  |   6 +-
 hw/dma/pl330.c                   |  55 ++--
 hw/intc/arm_gic_kvm.c            | 446 ++++++++++++++++++++++++++++++-
 hw/intc/exynos4210_combiner.c    |   2 +-
 hw/intc/gic_internal.h           |   2 +-
 hw/misc/arm_sysctl.c             |   4 +-
 hw/net/stellaris_enet.c          |   3 +-
 hw/timer/arm_timer.c             |   2 +
 include/hw/intc/arm_gic_common.h |   1 +
 include/qemu/crc32c.h            |   4 +-
 include/sysemu/kvm.h             |  34 +++
 kvm-all.c                        |  50 +++-
 linux-headers/asm-arm/kvm.h      |  28 ++
 linux-headers/asm-arm64/kvm.h    |  30 ++-
 linux-headers/asm-powerpc/kvm.h  |   3 +
 linux-headers/asm-x86/hyperv.h   |  16 +-
 linux-headers/linux/kvm.h        |   1 +
 stubs/Makefile.objs              |   1 +
 stubs/kvm.c                      |   7 +
 target-arm/cpu-qom.h             |  10 +
 target-arm/cpu.c                 |  13 +-
 target-arm/cpu.h                 |  80 ++++--
 target-arm/cpu64.c               |   1 +
 target-arm/helper.c              | 562 +++++++++++++++++++++++++++++++--------
 target-arm/helper.h              |   5 +
 target-arm/kvm.c                 |  55 +++-
 target-arm/kvm_arm.h             |  17 +-
 target-arm/op_helper.c           |  25 ++
 target-arm/translate-a64.c       |  39 ++-
 target-arm/translate.c           |  56 ++++
 trace-events                     |   1 +
 34 files changed, 1379 insertions(+), 192 deletions(-)
 create mode 100644 stubs/kvm.c

^ permalink raw reply	[flat|nested] 51+ messages in thread

end of thread, other threads:[~2018-11-02 16:32 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-19 16:56 [Qemu-devel] [PULL 00/45] target-arm queue Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 01/45] ssi-sd: Make devices picking up backends unavailable with -device Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 02/45] target/arm: Add support for VCPU event states Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 03/45] target/arm: Move some system registers into a substructure Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 04/45] target/arm: V8M should not imply V7VE Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 05/45] target/arm: Convert v8 extensions from feature bits to isar tests Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 06/45] target/arm: Convert division from feature bits to isar0 tests Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 07/45] target/arm: Convert jazelle from feature bit to isar1 test Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 08/45] target/arm: Convert t32ee from feature bit to isar3 test Peter Maydell
2018-10-19 16:56 ` [Qemu-devel] [PULL 09/45] target/arm: Convert sve from feature bit to aa64pfr0 test Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 10/45] target/arm: Convert v8.2-fp16 " Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 11/45] target/arm: Improve debug logging of AArch32 exception return Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 12/45] target/arm: Make switch_mode() file-local Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 13/45] target/arm: Implement HCR.FB Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 14/45] target/arm: Implement HCR.DC Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 15/45] target/arm: ISR_EL1 bits track virtual interrupts if IMO/FMO set Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 16/45] target/arm: Implement HCR.VI and VF Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 17/45] target/arm: Implement HCR.PTW Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 18/45] target/arm: New utility function to extract EC from syndrome Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 19/45] target/arm: Get IL bit correct for v7 syndrome values Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 20/45] target/arm: Report correct syndrome for FP/SIMD traps to Hyp mode Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 21/45] hw/arm/boot: Increase compliance with kernel arm64 boot protocol Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 22/45] target/arm: Hoist address increment for vector memory ops Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 23/45] target/arm: Don't call tcg_clear_temp_count Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 24/45] target/arm: Use tcg_gen_gvec_dup_i64 for LD[1-4]R Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 25/45] target/arm: Promote consecutive memory ops for aa64 Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 26/45] target/arm: Mark some arrays const Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 27/45] target/arm: Use gvec for NEON VDUP Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 28/45] target/arm: Use gvec for NEON VMOV, VMVN, VBIC & VORR (immediate) Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 29/45] target/arm: Use gvec for NEON_3R_LOGIC insns Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 30/45] target/arm: Use gvec for NEON_3R_VADD_VSUB insns Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 31/45] target/arm: Use gvec for NEON_2RM_VMN, NEON_2RM_VNEG Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 32/45] target/arm: Use gvec for NEON_3R_VMUL Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 33/45] target/arm: Use gvec for VSHR, VSHL Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 34/45] target/arm: Use gvec for VSRA Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 35/45] target/arm: Use gvec for VSRI, VSLI Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 36/45] target/arm: Use gvec for NEON_3R_VML Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 37/45] target/arm: Use gvec for NEON_3R_VTST_VCEQ, NEON_3R_VCGT, NEON_3R_VCGE Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 38/45] target/arm: Use gvec for NEON VLD all lanes Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 39/45] target/arm: Reorg NEON VLD/VST all elements Peter Maydell
2018-11-02 16:31   ` Laurent Vivier
2018-10-19 16:57 ` [Qemu-devel] [PULL 40/45] target/arm: Promote consecutive memory ops for aa32 Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 41/45] target/arm: Reorg NEON VLD/VST single element to one lane Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 42/45] net: cadence_gem: Announce availability of priority queues Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 43/45] net: cadence_gem: Announce 64bit addressing support Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 44/45] target/arm: Remove writefn from TTBR0_EL3 Peter Maydell
2018-10-19 16:57 ` [Qemu-devel] [PULL 45/45] target/arm: Only flush tlb if ASID changes Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2018-08-14 18:17 [Qemu-devel] [PULL 00/45] target-arm queue Peter Maydell
2018-08-15 12:29 ` Peter Maydell
2014-02-26 18:01 Peter Maydell
2014-02-27 11:33 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.