qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Subject: Re: [PULL v2 00/12] target/arm patch queue
Date: Wed, 3 Nov 2021 11:23:42 -0400	[thread overview]
Message-ID: <c7c0b20d-9792-e474-8122-a01b76daa66c@linaro.org> (raw)
In-Reply-To: <20211102182519.320319-1-richard.henderson@linaro.org>

On 11/2/21 2:25 PM, Richard Henderson wrote:
> v2:
>    Dropped the errant npcm7xx_sdhci test case.
>    Added the hvf fix for openbsd.
> 
> 
> r~
> 
> 
> The following changes since commit 91e8394415f9bc9cd81c02bfafe02012855d4f98:
> 
>    Merge remote-tracking branch 'remotes/juanquintela/tags/migration-20211031-pull-request' into staging (2021-11-02 10:07:27 -0400)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/rth7680/qemu.git tags/pull-arm-20211102-2
> 
> for you to fetch changes up to 5fd6a3e23669444026f84f466a7ed402c203a84e:
> 
>    hvf: arm: Ignore cache operations on MMIO (2021-11-02 14:18:33 -0400)
> 
> ----------------------------------------------------------------
> Add nuvoton sd module for NPCM7XX
> Add gdb-xml for MVE
> More uses of tcg_constant_* in target/arm
> Fix parameter naming for default-bus-bypass-iommu
> Ignore cache operations to mmio in HVF
> 
> ----------------------------------------------------------------
> Alexander Graf (1):
>        hvf: arm: Ignore cache operations on MMIO
> 
> Jean-Philippe Brucker (1):
>        hw/arm/virt: Rename default_bus_bypass_iommu
> 
> Peter Maydell (1):
>        target/arm: Advertise MVE to gdb when present
> 
> Philippe Mathieu-Daudé (5):
>        target/arm: Use tcg_constant_i32() in op_smlad()
>        target/arm: Introduce store_cpu_field_constant() helper
>        target/arm: Use the constant variant of store_cpu_field() when possible
>        target/arm: Use tcg_constant_i64() in do_sat_addsub_64()
>        target/arm: Use tcg_constant_i32() in gen_rev16()
> 
> Shengtan Mao (4):
>        hw/sd: add nuvoton MMC
>        hw/arm: Add Nuvoton SD module to board
>        hw/arm: Attach MMC to quanta-gbs-bmc
>        tests/qtest/libqos: add SDHCI commands
> 
>   configs/targets/aarch64-softmmu.mak  |   2 +-
>   configs/targets/arm-linux-user.mak   |   2 +-
>   configs/targets/arm-softmmu.mak      |   2 +-
>   configs/targets/armeb-linux-user.mak |   2 +-
>   include/hw/arm/npcm7xx.h             |   2 +
>   include/hw/sd/npcm7xx_sdhci.h        |  65 +++++++++++++
>   target/arm/translate-a32.h           |   3 +
>   tests/qtest/libqos/sdhci-cmd.h       |  70 ++++++++++++++
>   hw/arm/npcm7xx.c                     |  12 ++-
>   hw/arm/npcm7xx_boards.c              |  20 ++++
>   hw/arm/virt.c                        |   4 +-
>   hw/sd/npcm7xx_sdhci.c                | 182 +++++++++++++++++++++++++++++++++++
>   target/arm/gdbstub.c                 |  25 +++++
>   target/arm/hvf/hvf.c                 |   7 ++
>   target/arm/translate-sve.c           |  17 ++--
>   target/arm/translate.c               |  27 ++----
>   tests/qtest/libqos/sdhci-cmd.c       | 116 ++++++++++++++++++++++
>   gdb-xml/arm-m-profile-mve.xml        |  19 ++++
>   hw/sd/meson.build                    |   1 +
>   tests/qtest/libqos/meson.build       |   1 +
>   20 files changed, 544 insertions(+), 35 deletions(-)
>   create mode 100644 include/hw/sd/npcm7xx_sdhci.h
>   create mode 100644 tests/qtest/libqos/sdhci-cmd.h
>   create mode 100644 hw/sd/npcm7xx_sdhci.c
>   create mode 100644 tests/qtest/libqos/sdhci-cmd.c
>   create mode 100644 gdb-xml/arm-m-profile-mve.xml

Applied, thanks.

r~



      parent reply	other threads:[~2021-11-03 15:29 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-02 18:25 [PULL v2 00/12] target/arm patch queue Richard Henderson
2021-11-02 18:25 ` [PULL v2 01/12] hw/sd: add nuvoton MMC Richard Henderson
2021-11-02 18:25 ` [PULL v2 02/12] hw/arm: Add Nuvoton SD module to board Richard Henderson
2021-11-02 18:25 ` [PULL v2 03/12] hw/arm: Attach MMC to quanta-gbs-bmc Richard Henderson
2021-11-02 18:25 ` [PULL v2 04/12] tests/qtest/libqos: add SDHCI commands Richard Henderson
2021-11-02 22:49   ` Hao Wu
2021-11-02 18:25 ` [PULL v2 05/12] target/arm: Advertise MVE to gdb when present Richard Henderson
2021-11-02 18:25 ` [PULL v2 06/12] target/arm: Use tcg_constant_i32() in op_smlad() Richard Henderson
2021-11-02 18:25 ` [PULL v2 07/12] target/arm: Introduce store_cpu_field_constant() helper Richard Henderson
2021-11-02 18:25 ` [PULL v2 08/12] target/arm: Use the constant variant of store_cpu_field() when possible Richard Henderson
2021-11-02 18:25 ` [PULL v2 09/12] target/arm: Use tcg_constant_i64() in do_sat_addsub_64() Richard Henderson
2021-11-02 18:25 ` [PULL v2 10/12] target/arm: Use tcg_constant_i32() in gen_rev16() Richard Henderson
2021-11-02 18:25 ` [PULL v2 11/12] hw/arm/virt: Rename default_bus_bypass_iommu Richard Henderson
2021-11-02 18:25 ` [PULL v2 12/12] hvf: arm: Ignore cache operations on MMIO Richard Henderson
2021-11-03 15:23 ` Richard Henderson [this message]

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=c7c0b20d-9792-e474-8122-a01b76daa66c@linaro.org \
    --to=richard.henderson@linaro.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).