* [PULL v2 00/26] target-arm queue
@ 2021-05-10 16:27 Peter Maydell
2021-05-10 18:52 ` Peter Maydell
0 siblings, 1 reply; 2+ messages in thread
From: Peter Maydell @ 2021-05-10 16:27 UTC (permalink / raw)
To: qemu-devel
v2: fix compile issue when building user-mode emulators with clang
-- PMM
The following changes since commit 4cc10cae64c51e17844dc4358481c393d7bf1ed4:
Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging (2021-05-06 18:56:17 +0100)
are available in the Git repository at:
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210510-1
for you to fetch changes up to c3080fbdaa381012666428fef2e5f7ce422ecfee:
hw/arm/xlnx: Fix PHY address for xilinx-zynq-a9 (2021-05-10 17:21:54 +0100)
----------------------------------------------------------------
target-arm queue:
* docs: fix link in sbsa description
* linux-user/aarch64: Enable hwcap for RND, BTI, and MTE
* target/arm: Fix tlbbits calculation in tlbi_aa64_vae2is_write()
* target/arm: Split neon and vfp translation to their own
compilation units
* target/arm: Make WFI a NOP for userspace emulators
* hw/sd/omap_mmc: Use device_cold_reset() instead of
device_legacy_reset()
* include: More fixes for 'extern "C"' block use
* hw/arm/imx25_pdk: Fix error message for invalid RAM size
* hw/arm/mps2-tz: Implement AN524 memory remapping via machine property
* hw/arm/xlnx: Fix PHY address for xilinx-zynq-a9
----------------------------------------------------------------
Alex Bennée (1):
docs: fix link in sbsa description
Guenter Roeck (1):
hw/arm/xlnx: Fix PHY address for xilinx-zynq-a9
Peter Maydell (22):
target/arm: Fix tlbbits calculation in tlbi_aa64_vae2is_write()
target/arm: Move constant expanders to translate.h
target/arm: Share unallocated_encoding() and gen_exception_insn()
target/arm: Make functions used by m-nocp global
target/arm: Split m-nocp trans functions into their own file
target/arm: Move gen_aa32 functions to translate-a32.h
target/arm: Move vfp_{load, store}_reg{32, 64} to translate-vfp.c.inc
target/arm: Make functions used by translate-vfp global
target/arm: Make translate-vfp.c.inc its own compilation unit
target/arm: Move vfp_reg_ptr() to translate-neon.c.inc
target/arm: Delete unused typedef
target/arm: Move NeonGenThreeOpEnvFn typedef to translate.h
target/arm: Make functions used by translate-neon global
target/arm: Make translate-neon.c.inc its own compilation unit
target/arm: Make WFI a NOP for userspace emulators
hw/sd/omap_mmc: Use device_cold_reset() instead of device_legacy_reset()
osdep: Make os-win32.h and os-posix.h handle 'extern "C"' themselves
include/qemu/bswap.h: Handle being included outside extern "C" block
include/disas/dis-asm.h: Handle being included outside 'extern "C"'
hw/misc/mps2-scc: Add "QEMU interface" comment
hw/misc/mps2-scc: Support using CFG0 bit 0 for remapping
hw/arm/mps2-tz: Implement AN524 memory remapping via machine property
Philippe Mathieu-Daudé (1):
hw/arm/imx25_pdk: Fix error message for invalid RAM size
Richard Henderson (1):
linux-user/aarch64: Enable hwcap for RND, BTI, and MTE
docs/system/arm/mps2.rst | 10 +
docs/system/arm/sbsa.rst | 2 +-
include/disas/dis-asm.h | 12 +-
include/hw/misc/mps2-scc.h | 21 ++
include/qemu/bswap.h | 26 ++-
include/qemu/osdep.h | 8 +-
include/sysemu/os-posix.h | 8 +
include/sysemu/os-win32.h | 8 +
target/arm/translate-a32.h | 144 +++++++++++++
target/arm/translate-a64.h | 2 -
target/arm/translate.h | 29 +++
hw/arm/imx25_pdk.c | 5 +-
hw/arm/mps2-tz.c | 108 +++++++++-
hw/arm/xilinx_zynq.c | 2 +-
hw/misc/mps2-scc.c | 13 +-
hw/sd/omap_mmc.c | 2 +-
linux-user/elfload.c | 13 ++
target/arm/helper.c | 2 +-
target/arm/op_helper.c | 14 ++
target/arm/translate-a64.c | 15 --
target/arm/translate-m-nocp.c | 221 ++++++++++++++++++++
.../arm/{translate-neon.c.inc => translate-neon.c} | 19 +-
.../arm/{translate-vfp.c.inc => translate-vfp.c} | 230 +++------------------
target/arm/translate.c | 200 ++++--------------
disas/arm-a64.cc | 2 -
disas/nanomips.cpp | 2 -
target/arm/meson.build | 15 +-
27 files changed, 720 insertions(+), 413 deletions(-)
create mode 100644 target/arm/translate-a32.h
create mode 100644 target/arm/translate-m-nocp.c
rename target/arm/{translate-neon.c.inc => translate-neon.c} (99%)
rename target/arm/{translate-vfp.c.inc => translate-vfp.c} (94%)
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PULL v2 00/26] target-arm queue
2021-05-10 16:27 [PULL v2 00/26] target-arm queue Peter Maydell
@ 2021-05-10 18:52 ` Peter Maydell
0 siblings, 0 replies; 2+ messages in thread
From: Peter Maydell @ 2021-05-10 18:52 UTC (permalink / raw)
To: QEMU Developers
On Mon, 10 May 2021 at 17:27, Peter Maydell <peter.maydell@linaro.org> wrote:
>
> v2: fix compile issue when building user-mode emulators with clang
>
> -- PMM
>
> The following changes since commit 4cc10cae64c51e17844dc4358481c393d7bf1ed4:
>
> Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging (2021-05-06 18:56:17 +0100)
>
> are available in the Git repository at:
>
> https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210510-1
>
> for you to fetch changes up to c3080fbdaa381012666428fef2e5f7ce422ecfee:
>
> hw/arm/xlnx: Fix PHY address for xilinx-zynq-a9 (2021-05-10 17:21:54 +0100)
>
> ----------------------------------------------------------------
> target-arm queue:
> * docs: fix link in sbsa description
> * linux-user/aarch64: Enable hwcap for RND, BTI, and MTE
> * target/arm: Fix tlbbits calculation in tlbi_aa64_vae2is_write()
> * target/arm: Split neon and vfp translation to their own
> compilation units
> * target/arm: Make WFI a NOP for userspace emulators
> * hw/sd/omap_mmc: Use device_cold_reset() instead of
> device_legacy_reset()
> * include: More fixes for 'extern "C"' block use
> * hw/arm/imx25_pdk: Fix error message for invalid RAM size
> * hw/arm/mps2-tz: Implement AN524 memory remapping via machine property
> * hw/arm/xlnx: Fix PHY address for xilinx-zynq-a9
Applied, thanks.
Please update the changelog at https://wiki.qemu.org/ChangeLog/6.1
for any user-visible changes.
-- PMM
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-05-10 18:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-10 16:27 [PULL v2 00/26] target-arm queue Peter Maydell
2021-05-10 18:52 ` Peter Maydell
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).