From patchwork Mon Jan 7 15:38:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 209958 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 0B6872C0087 for ; Tue, 8 Jan 2013 02:39:17 +1100 (EST) Received: from localhost ([::1]:50278 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsEnD-0004Dp-5P for incoming@patchwork.ozlabs.org; Mon, 07 Jan 2013 10:39:15 -0500 Received: from eggs.gnu.org ([208.118.235.92]:40801) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsEn2-0004De-Re for qemu-devel@nongnu.org; Mon, 07 Jan 2013 10:39:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TsEn1-000737-Np for qemu-devel@nongnu.org; Mon, 07 Jan 2013 10:39:04 -0500 Received: from cantor2.suse.de ([195.135.220.15]:39842 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsEn1-00072u-EY; Mon, 07 Jan 2013 10:39:03 -0500 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id E3F7EA41E0; Mon, 7 Jan 2013 16:39:02 +0100 (CET) From: Alexander Graf To: qemu-devel@nongnu.org Date: Mon, 7 Jan 2013 16:38:29 +0100 Message-Id: <1357573140-8877-1-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: Blue Swirl , qemu-ppc@nongnu.org, Aurelien Jarno Subject: [Qemu-devel] [PULL 00/31] ppc patch queue 2013-01-07 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Hi Blue / Aurelien, This is my current patch queue for ppc. Please pull. Alex The following changes since commit 8e4a424b305e29dc0e454f52df3b35577f342975: Blue Swirl (1): Revert "virtio-pci: replace byte swap hack" are available in the git repository at: git://repo.or.cz/qemu/agraf.git ppc-for-upstream Alexander Graf (3): openpic: fix coding style issues kvm: Update kernel headers PPC: Bring EPR support closer to reality Andreas Färber (2): target-ppc: Slim conversion of model definitions to QOM subclasses target-ppc: Error out for -cpu host on unknown PVR Bharat Bhushan (2): powerpc: linux header sync script includes epapr_hcalls.h PPC: Reset qemu timers when guest reset Samuel Seay (2): PPC: fix segfault in signal handling code PPC: linux-user: Calculate context pointer explicitly Scott Wood (21): openpic: symbolicize some magic numbers openpic: remove pcsr (CPU sensitivity register) openpic: support large vectors on FSL mpic openpic: BRR1 is not a CPU-specific register. openpic: s/opp->nb_irqs -1/opp->nb_cpus - 1/ openpic: don't crash on a register access without a CPU context openpic: fix debug prints openpic: lower interrupt when reading the MSI register ppc/booke: fix crit/mcheck/debug exceptions openpic: make register names correspond better with hw docs openpic: rework critical interrupt support openpic: make ctpr signed openpic/fsl: critical interrupts ignore mask before v4.1 openpic: always call IRQ_check from IRQ_get_next Revert "openpic: Accelerate pending irq search" openpic: use standard bitmap operations openpic: add some bounds checking for IRQ numbers openpic: fix sense and priority bits openpic: IRQ_check: search the queue a word at a time openpic: move IACK to its own function openpic: fix CTPR and de-assertion of interrupts Stuart Yoder (1): PPC: KVM: set has-idle in guest device tree hw/openpic.c | 1032 ++++++++++++++++++----------- hw/ppc/e500.c | 8 +- hw/ppc_booke.c | 13 + linux-headers/asm-powerpc/epapr_hcalls.h | 98 +++ linux-headers/asm-powerpc/kvm.h | 86 +++ linux-headers/asm-powerpc/kvm_para.h | 13 +- linux-headers/linux/kvm.h | 21 +- linux-headers/linux/kvm_para.h | 6 +- linux-headers/linux/vfio.h | 6 +- linux-headers/linux/virtio_config.h | 6 +- linux-headers/linux/virtio_ring.h | 6 +- linux-user/signal.c | 6 +- scripts/update-linux-headers.sh | 3 + target-ppc/Makefile.objs | 4 +- target-ppc/cpu-qom.h | 5 + target-ppc/cpu.h | 8 +- target-ppc/excp_helper.c | 35 +- target-ppc/helper.c | 50 -- target-ppc/helper.h | 1 - target-ppc/kvm.c | 77 ++- target-ppc/kvm_ppc.h | 9 +- target-ppc/mpic_helper.c | 35 - target-ppc/translate_init.c | 352 +++++++---- 23 files changed, 1225 insertions(+), 655 deletions(-) create mode 100644 linux-headers/asm-powerpc/epapr_hcalls.h delete mode 100644 target-ppc/helper.c delete mode 100644 target-ppc/mpic_helper.c