The following changes since commit 1bde9127da4c103603972cdf60b6c6c383866447: x86/nVMX: Test L1 interception of #BP and #OF in the L2 guest (2016-12-16 17:10:19 +0100) are available in the git repository at: https://github.com/rhdrjones/kvm-unit-tests tags/for-master for you to fetch changes up to da905c9d2c48a5c88ec973e6fd4b808336aafdaa: arm/arm64: support 64-bit MPIDRs (2016-12-19 15:57:53 +0100) ---------------------------------------------------------------- arm/arm64 patches ready for master ---------------------------------------------------------------- Alex Bennée (1): arm/Makefile.common: force -fno-pic Alexander Gordeev (4): pci: Remove redundant alignment of BAR size pci: Align PCI addresses on BAR size boundary pci: Make all ones invalid translate address pci: Assert when PCI bus address can not be translated Andrew Jones (16): arm/pmu: fix probe on AArch64 arm/pmu: don't run tcg tests arm/arm64: yield on cpu_relax arm/arm64: smp: support more than 8 cpus arm/arm64: add some delay routines arm/arm64: irq enable/disable arm/arm64: add initial gicv2 support arm/arm64: gicv2: add an IPI test arm/arm64: add initial gicv3 support arm/arm64: gicv3: add an IPI test arm/arm64: gic: don't just use zero arm/pci-test: skip on pci/pci-testdev probe failure lib/arm/setup: fix and comment init order lib/powerpc/setup: comment init dependencies devicetree: cpu nodes may have 64-bit regs arm/arm64: support 64-bit MPIDRs Christopher Covington (3): arm: Add PMU test arm: pmu: Check cycle count increases arm: pmu: Add CPI checking Peter Xu (1): libcflat: add IS_ALIGNED() macro, and page sizes Wei Huang (2): arm: rename cp15.h to sysreg.h arm: Add support for read_sysreg() and write_sysreg() arm/run | 19 ++- arm/Makefile.common | 12 +- lib/arm/asm/arch_gicv3.h | 65 +++++++++ lib/arm/asm/barrier.h | 5 +- lib/arm/asm/delay.h | 14 ++ lib/arm/asm/gic-v2.h | 42 ++++++ lib/arm/asm/gic-v3.h | 117 +++++++++++++++ lib/arm/asm/gic.h | 65 +++++++++ lib/arm/asm/processor.h | 42 +++++- lib/arm/asm/setup.h | 4 +- lib/arm/asm/{cp15.h => sysreg.h} | 25 +++- lib/arm64/asm/arch_gicv3.h | 64 +++++++++ lib/arm64/asm/barrier.h | 3 +- lib/arm64/asm/delay.h | 1 + lib/arm64/asm/gic-v2.h | 1 + lib/arm64/asm/gic-v3.h | 1 + lib/arm64/asm/gic.h | 1 + lib/arm64/asm/processor.h | 42 ++++-- lib/arm64/asm/sysreg.h | 56 ++++++++ lib/alloc.h | 2 - lib/devicetree.h | 2 +- lib/libcflat.h | 11 +- lib/arm/delay.c | 29 ++++ lib/arm/gic-v2.c | 57 ++++++++ lib/arm/gic-v3.c | 145 +++++++++++++++++++ lib/arm/gic.c | 147 +++++++++++++++++++ lib/arm/setup.c | 23 ++- lib/devicetree.c | 9 +- lib/pci-host-generic.c | 13 +- lib/pci.c | 6 +- lib/powerpc/setup.c | 6 +- lib/powerpc/smp.c | 2 +- arm/cstart.S | 2 +- arm/gic.c | 298 +++++++++++++++++++++++++++++++++++++++ arm/pci-test.c | 13 +- arm/pmu.c | 297 ++++++++++++++++++++++++++++++++++++++ arm/selftest.c | 7 +- powerpc/tm.c | 2 +- arm/unittests.cfg | 33 +++++ 39 files changed, 1621 insertions(+), 62 deletions(-) create mode 100644 lib/arm/asm/arch_gicv3.h create mode 100644 lib/arm/asm/delay.h create mode 100644 lib/arm/asm/gic-v2.h create mode 100644 lib/arm/asm/gic-v3.h create mode 100644 lib/arm/asm/gic.h rename lib/arm/asm/{cp15.h => sysreg.h} (68%) create mode 100644 lib/arm64/asm/arch_gicv3.h create mode 100644 lib/arm64/asm/delay.h create mode 100644 lib/arm64/asm/gic-v2.h create mode 100644 lib/arm64/asm/gic-v3.h create mode 100644 lib/arm64/asm/gic.h create mode 100644 lib/arm64/asm/sysreg.h create mode 100644 lib/arm/delay.c create mode 100644 lib/arm/gic-v2.c create mode 100644 lib/arm/gic-v3.c create mode 100644 lib/arm/gic.c create mode 100644 arm/gic.c create mode 100644 arm/pmu.c -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html