The following changes since commit 3054ca26152d01aed6e4a9b7dc03e447882aeccc: Merge branch 's390x-pull-2021-08-03' of https://gitlab.com/frankja/kvm-unit-tests.git into 'master' (2021-03-08 14:35:51 +0000) are available in the Git repository at: https://gitlab.com/rhdrjones/kvm-unit-tests.git arm/queue for you to fetch changes up to a09aa3fb909cf5be5a7bb0e0c1f2c36fdde2af94: arm64: Output PC load offset on unhandled exceptions (2021-03-25 17:26:05 +0100) ---------------------------------------------------------------- Alexandru Elisei (19): arm: pmu: Don't read PMCR if PMU is not present lib: arm/arm64: gicv3: Add missing barrier when sending IPIs lib: arm/arm64: gicv2: Document existing barriers when sending IPIs arm/arm64: gic: Remove SMP synchronization from ipi_clear_active_handler() arm/arm64: gic: Remove unnecessary synchronization with stats_reset() arm/arm64: gic: Use correct memory ordering for the IPI test arm/arm64: gic: Check spurious and bad_sender in the active test arm/arm64: gic: Wait for writes to acked or spurious to complete arm/arm64: gic: Split check_acked() into two functions arm/arm64: gic: Make check_acked() more generic arm64: gic: its-trigger: Don't trigger the LPI while it is pending arm64: gic: Use IPI test checking for the LPI tests configure: arm/arm64: Add --earlycon option to set UART type and address arm64: Remove unnecessary ISB when writing to SPSel arm/arm64: Remove dcache_line_size global variable arm/arm64: Remove unnecessary ISB when doing dcache maintenance lib: arm64: Consolidate register definitions to sysreg.h arm64: Configure SCTLR_EL1 at boot arm64: Disable TTBR1_EL1 translation table walks Andrew Jones (4): compiler: Add builtin overflow flag and predicate wrappers arm/arm64: Zero BSS and stack at startup arm64: argc is an int arm64: Output PC load offset on unhandled exceptions Jingyi Wang (1): arm64: microbench: fix unexpected PPI Nikos Nikoleris (7): lib/string: Add strnlen, strrchr and strtoul libfdt: Pull v1.6.0 Makefile: Remove overriding recipe for libfdt_clean devicetree: Parse correctly the stdout-path arm/arm64: Avoid calling cpumask_test_cpu for CPUs above nr_cpus arm/arm64: Read system registers to get the state of the MMU arm/arm64: Add sanity checks to the cpumask API Makefile | 16 +- arm/Makefile.common | 2 +- arm/cstart.S | 39 +- arm/cstart64.S | 53 ++- arm/flat.lds | 5 + arm/gic.c | 336 ++++++++-------- arm/micro-bench.c | 2 +- arm/pmu.c | 3 +- configure | 53 +++ lib/arm/asm/assembler.h | 53 +++ lib/arm/asm/cpumask.h | 7 +- lib/arm/asm/mmu-api.h | 7 +- lib/arm/asm/processor.h | 9 +- lib/arm/gic-v2.c | 6 + lib/arm/gic-v3.c | 6 + lib/arm/mmu.c | 20 +- lib/arm/processor.c | 5 + lib/arm/setup.c | 7 - lib/arm64/asm/arch_gicv3.h | 6 - lib/arm64/asm/assembler.h | 54 +++ lib/arm64/asm/pgtable-hwdef.h | 1 + lib/arm64/asm/processor.h | 18 +- lib/arm64/asm/sysreg.h | 24 ++ lib/arm64/processor.c | 12 + lib/devicetree.c | 15 +- lib/libfdt/Makefile.libfdt | 10 +- lib/libfdt/README | 5 +- lib/libfdt/fdt.c | 200 ++++++---- lib/libfdt/fdt.h | 53 +-- lib/libfdt/fdt_addresses.c | 101 +++++ lib/libfdt/fdt_check.c | 74 ++++ lib/libfdt/fdt_empty_tree.c | 48 +-- lib/libfdt/fdt_overlay.c | 881 ++++++++++++++++++++++++++++++++++++++++++ lib/libfdt/fdt_ro.c | 512 ++++++++++++++++++------ lib/libfdt/fdt_rw.c | 231 ++++++----- lib/libfdt/fdt_strerror.c | 53 +-- lib/libfdt/fdt_sw.c | 297 +++++++++----- lib/libfdt/fdt_wip.c | 90 ++--- lib/libfdt/libfdt.h | 766 +++++++++++++++++++++++++++++++----- lib/libfdt/libfdt_env.h | 109 +++--- lib/libfdt/libfdt_internal.h | 206 +++++++--- lib/libfdt/version.lds | 24 +- lib/linux/compiler.h | 33 ++ lib/stdlib.h | 13 + lib/string.c | 101 ++++- lib/string.h | 5 +- powerpc/Makefile.common | 2 +- 47 files changed, 3478 insertions(+), 1095 deletions(-) create mode 100644 lib/arm/asm/assembler.h create mode 100644 lib/arm64/asm/assembler.h create mode 100644 lib/libfdt/fdt_addresses.c create mode 100644 lib/libfdt/fdt_check.c create mode 100644 lib/libfdt/fdt_overlay.c create mode 100644 lib/stdlib.h