From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PULL 00/20] target-arm queue
Date: Thu, 23 Jan 2020 15:30:21 +0000 [thread overview]
Message-ID: <20200123153041.4248-1-peter.maydell@linaro.org> (raw)
The following changes since commit b7c359c748a2e3ccb97a184b9739feb2cd48de2f:
Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.0-pull-request' into staging (2020-01-23 14:38:43 +0000)
are available in the Git repository at:
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20200123
for you to fetch changes up to 53c75ad8e72dc3a5102de7ed21e4990969cb0a19:
hw/arm/exynos4210: Connect serial port DMA busy signals with pl330 (2020-01-23 15:22:42 +0000)
----------------------------------------------------------------
target-arm queue:
* fix bug in PAuth emulation
* add PMU to Cortex-R5, Cortex-R5F
* qemu-nbd: Convert documentation to rST
* qemu-block-drivers: Convert documentation to rST
* Fix Exynos4210 UART DMA support
* Various minor code cleanups
----------------------------------------------------------------
Andrew Jones (1):
target/arm/arch_dump: Add SVE notes
Clement Deschamps (1):
target/arm: add PMU feature to cortex-r5 and cortex-r5f
Guenter Roeck (8):
dma/pl330: Convert to support tracing
hw/core/or-irq: Increase limit of or-lines to 48
hw/arm/exynos4210: Fix DMA initialization
hw/char/exynos4210_uart: Convert to support tracing
hw/char/exynos4210_uart: Implement post_load function
hw/char/exynos4210_uart: Implement Rx FIFO level triggers and timeouts
hw/char/exynos4210_uart: Add receive DMA support
hw/arm/exynos4210: Connect serial port DMA busy signals with pl330
Keqian Zhu (2):
hw/acpi: Remove extra indent in ACPI GED hotplug cb
hw/arm: Use helper function to trigger hotplug handler plug
Peter Maydell (3):
qemu-nbd: Convert invocation documentation to rST
docs: Create stub system manual
qemu-block-drivers: Convert to rST
Philippe Mathieu-Daudé (1):
hw/misc/stm32f4xx_syscfg: Fix copy/paste error
Richard Henderson (3):
tests/tcg/aarch64: Fix compilation parameters for pauth-%
tests/tcg/aarch64: Add pauth-3
tests/tcg/aarch64: Add pauth-4
Vincent Dehors (1):
target/arm: Fix PAuth sbox functions
Makefile | 37 +-
tests/tcg/aarch64/Makefile.softmmu-target | 5 +-
tests/tcg/aarch64/Makefile.target | 3 +-
include/elf.h | 1 +
include/hw/arm/exynos4210.h | 4 +
include/hw/or-irq.h | 2 +-
target/arm/cpu.h | 25 +
hw/acpi/generic_event_device.c | 2 +-
hw/arm/exynos4210.c | 77 ++-
hw/arm/virt.c | 6 +-
hw/char/exynos4210_uart.c | 245 +++++---
hw/dma/pl330.c | 88 +--
hw/misc/stm32f4xx_syscfg.c | 2 +-
target/arm/arch_dump.c | 124 +++-
target/arm/cpu.c | 1 +
target/arm/kvm64.c | 24 -
target/arm/pauth_helper.c | 4 +-
tests/tcg/aarch64/pauth-1.c | 2 -
tests/tcg/aarch64/pauth-2.c | 2 -
tests/tcg/aarch64/pauth-4.c | 25 +
tests/tcg/aarch64/system/pauth-3.c | 40 ++
MAINTAINERS | 1 +
docs/index.html.in | 1 +
docs/interop/conf.py | 4 +-
docs/interop/index.rst | 1 +
docs/interop/qemu-nbd.rst | 263 ++++++++
docs/interop/qemu-option-trace.rst.inc | 30 +
docs/qemu-block-drivers.texi | 889 ---------------------------
docs/system/conf.py | 22 +
docs/system/index.rst | 17 +
docs/system/qemu-block-drivers.rst | 985 ++++++++++++++++++++++++++++++
hw/char/trace-events | 20 +
hw/dma/trace-events | 24 +
qemu-doc.texi | 18 -
qemu-nbd.texi | 214 -------
qemu-option-trace.texi | 4 +
qemu-options.hx | 2 +-
37 files changed, 1897 insertions(+), 1317 deletions(-)
create mode 100644 tests/tcg/aarch64/pauth-4.c
create mode 100644 tests/tcg/aarch64/system/pauth-3.c
create mode 100644 docs/interop/qemu-nbd.rst
create mode 100644 docs/interop/qemu-option-trace.rst.inc
delete mode 100644 docs/qemu-block-drivers.texi
create mode 100644 docs/system/conf.py
create mode 100644 docs/system/index.rst
create mode 100644 docs/system/qemu-block-drivers.rst
delete mode 100644 qemu-nbd.texi
next reply other threads:[~2020-01-23 17:51 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-23 15:30 Peter Maydell [this message]
2020-01-23 15:30 ` [PULL 01/20] target/arm: add PMU feature to cortex-r5 and cortex-r5f Peter Maydell
2020-01-23 15:30 ` [PULL 02/20] target/arm: Fix PAuth sbox functions Peter Maydell
2020-01-23 15:30 ` [PULL 03/20] tests/tcg/aarch64: Fix compilation parameters for pauth-% Peter Maydell
2020-01-23 15:30 ` [PULL 04/20] tests/tcg/aarch64: Add pauth-3 Peter Maydell
2020-01-23 15:30 ` [PULL 05/20] tests/tcg/aarch64: Add pauth-4 Peter Maydell
2020-01-23 15:30 ` [PULL 06/20] hw/acpi: Remove extra indent in ACPI GED hotplug cb Peter Maydell
2020-01-23 15:30 ` [PULL 07/20] hw/arm: Use helper function to trigger hotplug handler plug Peter Maydell
2020-01-23 15:30 ` [PULL 08/20] qemu-nbd: Convert invocation documentation to rST Peter Maydell
2020-01-23 15:30 ` [PULL 09/20] docs: Create stub system manual Peter Maydell
2020-01-23 15:30 ` [PULL 10/20] qemu-block-drivers: Convert to rST Peter Maydell
2020-01-23 15:30 ` [PULL 11/20] target/arm/arch_dump: Add SVE notes Peter Maydell
2020-01-23 15:30 ` [PULL 12/20] hw/misc/stm32f4xx_syscfg: Fix copy/paste error Peter Maydell
2020-01-23 15:30 ` [PULL 13/20] dma/pl330: Convert to support tracing Peter Maydell
2020-01-23 15:30 ` [PULL 14/20] hw/core/or-irq: Increase limit of or-lines to 48 Peter Maydell
2020-01-23 15:30 ` [PULL 15/20] hw/arm/exynos4210: Fix DMA initialization Peter Maydell
2020-01-23 15:30 ` [PULL 16/20] hw/char/exynos4210_uart: Convert to support tracing Peter Maydell
2020-01-23 15:30 ` [PULL 17/20] hw/char/exynos4210_uart: Implement post_load function Peter Maydell
2020-01-23 15:30 ` [PULL 18/20] hw/char/exynos4210_uart: Implement Rx FIFO level triggers and timeouts Peter Maydell
2020-01-23 15:30 ` [PULL 19/20] hw/char/exynos4210_uart: Add receive DMA support Peter Maydell
2020-01-23 15:30 ` [PULL 20/20] hw/arm/exynos4210: Connect serial port DMA busy signals with pl330 Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2020-12-15 14:12 [PULL 00/20] target-arm queue Peter Maydell
2020-12-15 21:16 ` Peter Maydell
2024-03-05 13:52 Peter Maydell
2024-03-05 15:26 ` Peter Maydell
2024-03-11 19:12 Peter Maydell
2024-03-12 13:07 ` Peter Maydell
2025-07-21 13:26 Peter Maydell
2025-07-21 18:31 ` Stefan Hajnoczi
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=20200123153041.4248-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).