From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PULL 00/24] target-arm queue
Date: Fri, 2 Jul 2021 13:59:30 +0100 [thread overview]
Message-ID: <20210702125954.13247-1-peter.maydell@linaro.org> (raw)
The following changes since commit 5a67d7735d4162630769ef495cf813244fc850df:
Merge remote-tracking branch 'remotes/berrange-gitlab/tags/tls-deps-pull-request' into staging (2021-07-02 08:22:39 +0100)
are available in the Git repository at:
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210702
for you to fetch changes up to 04ea4d3cfd0a21b248ece8eb7a9436a3d9898dd8:
target/arm: Implement MVE shifts by register (2021-07-02 11:48:38 +0100)
----------------------------------------------------------------
target-arm queue:
* more MVE instructions
* hw/gpio/gpio_pwr: use shutdown function for reboot
* target/arm: Check NaN mode before silencing NaN
* tests: Boot and halt a Linux guest on the Raspberry Pi 2 machine
* hw/arm: Add basic power management to raspi.
* docs/system/arm: Add quanta-gbs-bmc, quanta-q7l1-bmc
----------------------------------------------------------------
Joe Komlodi (1):
target/arm: Check NaN mode before silencing NaN
Maxim Uvarov (1):
hw/gpio/gpio_pwr: use shutdown function for reboot
Nolan Leake (1):
hw/arm: Add basic power management to raspi.
Patrick Venture (2):
docs/system/arm: Add quanta-q7l1-bmc reference
docs/system/arm: Add quanta-gbs-bmc reference
Peter Maydell (18):
target/arm: Fix MVE widening/narrowing VLDR/VSTR offset calculation
target/arm: Fix bugs in MVE VRMLALDAVH, VRMLSLDAVH
target/arm: Make asimd_imm_const() public
target/arm: Use asimd_imm_const for A64 decode
target/arm: Use dup_const() instead of bitfield_replicate()
target/arm: Implement MVE logical immediate insns
target/arm: Implement MVE vector shift left by immediate insns
target/arm: Implement MVE vector shift right by immediate insns
target/arm: Implement MVE VSHLL
target/arm: Implement MVE VSRI, VSLI
target/arm: Implement MVE VSHRN, VRSHRN
target/arm: Implement MVE saturating narrowing shifts
target/arm: Implement MVE VSHLC
target/arm: Implement MVE VADDLV
target/arm: Implement MVE long shifts by immediate
target/arm: Implement MVE long shifts by register
target/arm: Implement MVE shifts by immediate
target/arm: Implement MVE shifts by register
Philippe Mathieu-Daudé (1):
tests: Boot and halt a Linux guest on the Raspberry Pi 2 machine
docs/system/arm/aspeed.rst | 1 +
docs/system/arm/nuvoton.rst | 5 +-
include/hw/arm/bcm2835_peripherals.h | 3 +-
include/hw/misc/bcm2835_powermgt.h | 29 ++
target/arm/helper-mve.h | 108 +++++++
target/arm/translate.h | 41 +++
target/arm/mve.decode | 177 ++++++++++-
target/arm/t32.decode | 71 ++++-
hw/arm/bcm2835_peripherals.c | 13 +-
hw/gpio/gpio_pwr.c | 2 +-
hw/misc/bcm2835_powermgt.c | 160 ++++++++++
target/arm/helper-a64.c | 12 +-
target/arm/mve_helper.c | 524 +++++++++++++++++++++++++++++++--
target/arm/translate-a64.c | 86 +-----
target/arm/translate-mve.c | 261 +++++++++++++++-
target/arm/translate-neon.c | 81 -----
target/arm/translate.c | 327 +++++++++++++++++++-
target/arm/vfp_helper.c | 24 +-
hw/misc/meson.build | 1 +
tests/acceptance/boot_linux_console.py | 43 +++
20 files changed, 1760 insertions(+), 209 deletions(-)
create mode 100644 include/hw/misc/bcm2835_powermgt.h
create mode 100644 hw/misc/bcm2835_powermgt.c
next reply other threads:[~2021-07-02 13:02 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-02 12:59 Peter Maydell [this message]
2021-07-02 12:59 ` [PULL 01/24] docs/system/arm: Add quanta-q7l1-bmc reference Peter Maydell
2021-07-02 12:59 ` [PULL 02/24] docs/system/arm: Add quanta-gbs-bmc reference Peter Maydell
2021-07-02 12:59 ` [PULL 03/24] hw/arm: Add basic power management to raspi Peter Maydell
2021-07-02 12:59 ` [PULL 04/24] tests: Boot and halt a Linux guest on the Raspberry Pi 2 machine Peter Maydell
2021-07-02 12:59 ` [PULL 05/24] target/arm: Check NaN mode before silencing NaN Peter Maydell
2021-07-02 12:59 ` [PULL 06/24] hw/gpio/gpio_pwr: use shutdown function for reboot Peter Maydell
2021-07-02 12:59 ` [PULL 07/24] target/arm: Fix MVE widening/narrowing VLDR/VSTR offset calculation Peter Maydell
2021-07-02 12:59 ` [PULL 08/24] target/arm: Fix bugs in MVE VRMLALDAVH, VRMLSLDAVH Peter Maydell
2021-07-02 12:59 ` [PULL 09/24] target/arm: Make asimd_imm_const() public Peter Maydell
2021-07-02 12:59 ` [PULL 10/24] target/arm: Use asimd_imm_const for A64 decode Peter Maydell
2021-07-02 12:59 ` [PULL 11/24] target/arm: Use dup_const() instead of bitfield_replicate() Peter Maydell
2021-07-02 12:59 ` [PULL 12/24] target/arm: Implement MVE logical immediate insns Peter Maydell
2021-07-02 12:59 ` [PULL 13/24] target/arm: Implement MVE vector shift left by " Peter Maydell
2021-07-02 12:59 ` [PULL 14/24] target/arm: Implement MVE vector shift right " Peter Maydell
2021-07-02 12:59 ` [PULL 15/24] target/arm: Implement MVE VSHLL Peter Maydell
2021-07-02 12:59 ` [PULL 16/24] target/arm: Implement MVE VSRI, VSLI Peter Maydell
2021-07-02 12:59 ` [PULL 17/24] target/arm: Implement MVE VSHRN, VRSHRN Peter Maydell
2021-07-02 12:59 ` [PULL 18/24] target/arm: Implement MVE saturating narrowing shifts Peter Maydell
2021-07-02 12:59 ` [PULL 19/24] target/arm: Implement MVE VSHLC Peter Maydell
2021-07-02 12:59 ` [PULL 20/24] target/arm: Implement MVE VADDLV Peter Maydell
2021-07-02 12:59 ` [PULL 21/24] target/arm: Implement MVE long shifts by immediate Peter Maydell
2021-07-02 12:59 ` [PULL 22/24] target/arm: Implement MVE long shifts by register Peter Maydell
2021-07-02 12:59 ` [PULL 23/24] target/arm: Implement MVE shifts by immediate Peter Maydell
2021-07-02 12:59 ` [PULL 24/24] target/arm: Implement MVE shifts by register Peter Maydell
2021-07-04 13:03 ` [PULL 00/24] target-arm queue Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2024-07-11 13:17 Peter Maydell
2024-07-11 21:32 ` Richard Henderson
2023-10-19 13:35 Peter Maydell
2023-10-20 16:06 ` Stefan Hajnoczi
2023-08-31 10:44 Peter Maydell
2023-08-31 16:15 ` Stefan Hajnoczi
2022-10-20 12:21 Peter Maydell
2022-10-20 20:04 ` Stefan Hajnoczi
2020-11-23 11:42 Peter Maydell
2020-11-23 17:03 ` Peter Maydell
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=20210702125954.13247-1-peter.maydell@linaro.org \
--to=peter.maydell@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).