device: 0.110 semantic: 0.103 performance: 0.097 other: 0.096 permissions: 0.089 files: 0.085 graphic: 0.070 socket: 0.065 PID: 0.059 network: 0.058 debug: 0.056 vnc: 0.048 KVM: 0.032 boot: 0.031 files: 0.117 debug: 0.114 other: 0.108 PID: 0.082 semantic: 0.078 boot: 0.075 device: 0.075 permissions: 0.070 vnc: 0.060 socket: 0.056 performance: 0.054 network: 0.050 graphic: 0.033 KVM: 0.028 ID_MMFR0 has an invalid value on aarch64 cpu (A57, A53) The ID_MMFR0 register, accessed from aarch64 state as an invalid value: - ARM ARM v8 documentation (D7.2 General system control registers) described bits AuxReg[23:20] to be "In ARMv8-A the only permitted value is 0010" - Cortex A53 and Cortex A57 TRM describe the value to be 0x10201105, so AuxReg[23:20] is 0010 too - in QEMU target/arm/cpu64.c, the relevant value is cpu->id_mmfr0 = 0x10101105; The 1 should be changed to 2. Spotted & Tested on the following qemu revision: commit 48ae1f60d8c9a770e6da64407984d84e25253c69 Merge: 78b62d3 b867eaa Author: Peter Maydell