Not much here, mostly documentation, but a few bug fixes. thanks -- PMM
The following changes since commit 873ec69aeb12e24eec7fb317fd0cd8494e8489dd: Merge remote-tracking branch 'remotes/cminyard/tags/for-qemu-i2c-5' into staging (2020-07-20 11:03:09 +0100) are available in the Git repository at: https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20200720 for you to fetch changes up to 6a0b7505f1fd6769c3f1558fda76464d51e4118a: docs/system: Document the arm virt board (2020-07-20 11:35:17 +0100) ---------------------------------------------------------------- target-arm queue: * virt: Don't enable MTE emulation by default * virt: Diagnose attempts to use MTE with memory-hotplug or KVM (rather than silently not working correctly) * util: Implement qemu_get_thread_id() for OpenBSD * qdev: Add doc comments for qdev_unrealize and GPIO functions, and standardize on doc-comments-in-header-file * hw/arm/armsse: Assert info->num_cpus is in-bounds in armsse_realize() * docs/system: Document canon-a1100, collie, gumstix, virt boards ---------------------------------------------------------------- David CARLIER (1): util: Implement qemu_get_thread_id() for OpenBSD Peter Maydell (8): qdev: Move doc comments from qdev.c to qdev-core.h qdev: Document qdev_unrealize() qdev: Document GPIO related functions hw/arm/armsse: Assert info->num_cpus is in-bounds in armsse_realize() docs/system: Briefly document canon-a1100 board docs/system: Briefly document collie board docs/system: Briefly document gumstix boards docs/system: Document the arm virt board Richard Henderson (3): hw/arm/virt: Enable MTE via a machine property hw/arm/virt: Error for MTE enabled with KVM hw/arm/virt: Disable memory hotplug when MTE is enabled docs/system/arm/collie.rst | 16 +++ docs/system/arm/digic.rst | 11 ++ docs/system/arm/gumstix.rst | 21 ++++ docs/system/arm/virt.rst | 161 ++++++++++++++++++++++++++ docs/system/target-arm.rst | 4 + include/hw/arm/virt.h | 1 + include/hw/qdev-core.h | 267 ++++++++++++++++++++++++++++++++++++++++++- include/hw/qdev-properties.h | 13 +++ hw/arm/armsse.c | 2 + hw/arm/virt.c | 50 +++++++- hw/core/qdev.c | 33 ------ target/arm/cpu.c | 19 +-- target/arm/cpu64.c | 5 +- util/oslib-posix.c | 2 + MAINTAINERS | 4 + 15 files changed, 559 insertions(+), 50 deletions(-) create mode 100644 docs/system/arm/collie.rst create mode 100644 docs/system/arm/digic.rst create mode 100644 docs/system/arm/gumstix.rst create mode 100644 docs/system/arm/virt.rst