[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/12] target-arm queue
|
From: |
Peter Maydell |
|
Subject: |
[PULL 00/12] target-arm queue |
|
Date: |
Fri, 12 May 2023 16:34:11 +0100 |
Hi; here's a relatively small target-arm queue, pretty much all
bug fixes. (There are a few non-arm patches that I've thrown in
there too for my convenience :-))
thanks
-- PMM
The following changes since commit 278238505d28d292927bff7683f39fb4fbca7fd1:
Merge tag 'pull-tcg-20230511-2' of https://gitlab.com/rth7680/qemu into
staging (2023-05-11 11:44:23 +0100)
are available in the Git repository at:
https://git.linaro.org/people/pmaydell/qemu-arm.git
tags/pull-target-arm-20230512
for you to fetch changes up to 478dccbb99db0bf8f00537dd0b4d0de88d5cb537:
target/arm: Correct AArch64.S2MinTxSZ 32-bit EL1 input size check (2023-05-12
16:01:25 +0100)
----------------------------------------------------------------
target-arm queue:
* More refactoring of files into tcg/
* Don't allow stage 2 page table walks to downgrade to NS
* Fix handling of SW and NSW bits for stage 2 walks
* MAINTAINERS: Update Akihiko Odaki's email address
* ui: Fix pixel colour channel order for PNG screenshots
* docs: Remove unused weirdly-named cross-reference targets
* hw/mips/malta: Fix minor dead code issue
* Fixes for the "allow CONFIG_TCG=n" changes
* tests/qtest: Don't run cdrom boot tests if no accelerator is present
* target/arm: Correct AArch64.S2MinTxSZ 32-bit EL1 input size check
----------------------------------------------------------------
Akihiko Odaki (1):
MAINTAINERS: Update Akihiko Odaki's email address
Fabiano Rosas (3):
target/arm: Select SEMIHOSTING when using TCG
target/arm: Select CONFIG_ARM_V7M when TCG is enabled
tests/qtest: Don't run cdrom boot tests if no accelerator is present
Peter Maydell (6):
target/arm: Don't allow stage 2 page table walks to downgrade to NS
target/arm: Fix handling of SW and NSW bits for stage 2 walks
ui: Fix pixel colour channel order for PNG screenshots
docs: Remove unused weirdly-named cross-reference targets
hw/mips/malta: Fix minor dead code issue
target/arm: Correct AArch64.S2MinTxSZ 32-bit EL1 input size check
Richard Henderson (2):
target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h to tcg/
target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/
MAINTAINERS | 4 +-
docs/system/devices/igb.rst | 2 +-
docs/system/devices/ivshmem.rst | 2 -
docs/system/devices/net.rst | 2 +-
docs/system/devices/usb.rst | 2 -
docs/system/keys.rst | 2 +-
docs/system/linuxboot.rst | 2 +-
docs/system/target-i386.rst | 4 --
target/arm/helper.h | 8 +--
target/arm/internals.h | 12 +++-
target/arm/{ => tcg}/arm_ldst.h | 0
target/arm/{ => tcg}/helper-a64.h | 0
target/arm/{ => tcg}/helper-mve.h | 0
target/arm/{ => tcg}/helper-sme.h | 0
target/arm/{ => tcg}/helper-sve.h | 0
target/arm/{ => tcg}/sve_ldst_internal.h | 0
target/arm/{ => tcg}/translate-a32.h | 0
hw/mips/malta.c | 5 +-
target/arm/gdbstub64.c | 2 +-
target/arm/helper.c | 15 ++++-
target/arm/ptw.c | 95 +++++++++++++++++++-------------
target/arm/tcg/pauth_helper.c | 6 +-
tests/qtest/cdrom-test.c | 10 ++++
ui/console.c | 4 +-
target/arm/Kconfig | 9 +--
25 files changed, 109 insertions(+), 77 deletions(-)
rename target/arm/{ => tcg}/arm_ldst.h (100%)
rename target/arm/{ => tcg}/helper-a64.h (100%)
rename target/arm/{ => tcg}/helper-mve.h (100%)
rename target/arm/{ => tcg}/helper-sme.h (100%)
rename target/arm/{ => tcg}/helper-sve.h (100%)
rename target/arm/{ => tcg}/sve_ldst_internal.h (100%)
rename target/arm/{ => tcg}/translate-a32.h (100%)
- [PULL 00/12] target-arm queue,
Peter Maydell <=
- [PULL 01/12] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h to tcg/, Peter Maydell, 2023/05/12
- [PULL 04/12] target/arm: Fix handling of SW and NSW bits for stage 2 walks, Peter Maydell, 2023/05/12
- [PULL 07/12] docs: Remove unused weirdly-named cross-reference targets, Peter Maydell, 2023/05/12
- [PULL 11/12] tests/qtest: Don't run cdrom boot tests if no accelerator is present, Peter Maydell, 2023/05/12
- [PULL 02/12] target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/, Peter Maydell, 2023/05/12
- [PULL 03/12] target/arm: Don't allow stage 2 page table walks to downgrade to NS, Peter Maydell, 2023/05/12
- [PULL 05/12] MAINTAINERS: Update Akihiko Odaki's email address, Peter Maydell, 2023/05/12
- [PULL 08/12] hw/mips/malta: Fix minor dead code issue, Peter Maydell, 2023/05/12
- [PULL 09/12] target/arm: Select SEMIHOSTING when using TCG, Peter Maydell, 2023/05/12
- [PULL 06/12] ui: Fix pixel colour channel order for PNG screenshots, Peter Maydell, 2023/05/12