From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60395) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1alJ2K-0006bw-Lo for qemu-devel@nongnu.org; Wed, 30 Mar 2016 12:32:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1alJ2E-000106-Uy for qemu-devel@nongnu.org; Wed, 30 Mar 2016 12:32:04 -0400 Received: from orth.archaic.org.uk ([2001:8b0:1d0::2]:56294) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1alJ2E-0000zt-O2 for qemu-devel@nongnu.org; Wed, 30 Mar 2016 12:31:58 -0400 Received: from pm215 by orth.archaic.org.uk with local (Exim 4.84_2) (envelope-from ) id 1alJ2C-0001HP-Fh for qemu-devel@nongnu.org; Wed, 30 Mar 2016 17:31:56 +0100 From: Peter Maydell Date: Wed, 30 Mar 2016 17:31:55 +0100 Message-Id: <1459355515-24370-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL v2 00/17] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Last lot of target-arm patches just sneaking under the wire: * m25p80 (should be safe enough since not really used by anything) * virt power key bugfix * query-gic-capabilities QMP command changes v1->v2: new monitor.c is config-softmmu only. thanks -- PMM The following changes since commit 489ef4c810033e63af570c8a430af8b9858bfa5f: Merge remote-tracking branch 'remotes/lalrae/tags/mips-20160329-2' into staging (2016-03-30 16:06:45 +0100) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20160330-1 for you to fetch changes up to db31e49a565fc4c165fd98201721b313c3412c1f: arm: implement query-gic-capabilities (2016-03-30 17:27:24 +0100) ---------------------------------------------------------------- target-arm queue: * virt: fix the virtual power button by adding a modelled "key press for 100ms" device * various improvements to m25p80 flash devices * implement new QMP query-gic-capability command to let the management layer know what versions of GIC we support ---------------------------------------------------------------- Marcin Krzeminski (11): block: m25p80: Removed unused variable block: m25p80: RESET_ENABLE and RESET_MEMORY commands block: m25p80: Widen flags variable block: m25p80: Extend address mode block: m25p80: 4byte address mode block: m25p80: Add configuration registers block: m25p80: Dummy cycles for N25Q256/512 block: m25p80: Fast read and 4bytes commands block: m25p80: Implemented FSR register block: m25p80: n25q256a/n25q512a models block: m25p80: at25128a/at25256a models Peter Xu (4): arm: qmp: add query-gic-capabilities interface arm: enhance kvm_arm_create_scratch_host_vcpu kvm: add kvm_device_supported() helper function arm: implement query-gic-capabilities Shannon Zhao (2): hw/gpio: Add the emulation of gpio_key ARM: Virt: Use gpio_key for power button default-configs/arm-softmmu.mak | 1 + hw/arm/virt.c | 7 +- hw/block/m25p80.c | 330 +++++++++++++++++++++++++++++++++++++--- hw/gpio/Makefile.objs | 1 + hw/gpio/gpio_key.c | 104 +++++++++++++ include/sysemu/kvm.h | 9 ++ kvm-all.c | 15 ++ monitor.c | 8 + qapi-schema.json | 36 +++++ qmp-commands.hx | 27 ++++ target-arm/Makefile.objs | 2 +- target-arm/kvm.c | 14 +- target-arm/kvm_arm.h | 7 +- target-arm/monitor.c | 84 ++++++++++ 14 files changed, 620 insertions(+), 25 deletions(-) create mode 100644 hw/gpio/gpio_key.c create mode 100644 target-arm/monitor.c