From patchwork Fri Apr 26 18:19:09 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 239907 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 59B572C00F1 for ; Sat, 27 Apr 2013 04:24:05 +1000 (EST) Received: from localhost ([::1]:57651 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVnJT-00069D-3E for incoming@patchwork.ozlabs.org; Fri, 26 Apr 2013 14:24:03 -0400 Received: from eggs.gnu.org ([208.118.235.92]:54324) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVnFA-0007n3-RJ for qemu-devel@nongnu.org; Fri, 26 Apr 2013 14:19:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UVnF9-0004Ax-4R for qemu-devel@nongnu.org; Fri, 26 Apr 2013 14:19:36 -0400 Received: from cantor2.suse.de ([195.135.220.15]:38695 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVnF8-0004AS-Rj; Fri, 26 Apr 2013 14:19:35 -0400 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 47B3E5E000202; Fri, 26 Apr 2013 20:19:34 +0200 (CEST) From: Alexander Graf To: qemu-ppc@nongnu.org Date: Fri, 26 Apr 2013 20:19:09 +0200 Message-Id: <1367000373-7972-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-devel@nongnu.org, Aurelien Jarno Subject: [Qemu-devel] [PULL 00/24] s390 patch queue 2013-04-26 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 s390. Please pull. Alex The following changes since commit bf9b255f484fd61cbaa91faeff254140a0ecd18c: Anthony Liguori (1): gtk: refactor menu creation are available in the git repository at: git://github.com/agraf/qemu.git s390-for-upstream Alexander Graf (12): S390: Make IPL reset address dynamic S390: IPL: Support ELF firmware S390: IPL: Use different firmware for different machines S390: ccw firmware: Add start assembly S390: ccw firmware: Add main program S390: ccw firmware: Add sclp output S390: ccw firmware: Add virtio device drivers S390: ccw firmware: Add glue header S390: ccw firmware: Add bootmap interpreter S390: ccw firmware: Add Makefile S390: ccw firmware: Add compiled blob S390: CCW: Use new, working firmware by default Christian Borntraeger (4): s390-ccw.img: replace while loop with a disabled wait on s390 bios s390-ccw.img: build s390-ccw rom on s3900 system by default s390-ccw.img: Take care of the elf->img transition s390-ccw.img: Fix compile warning in s390 ccw virtio code Cornelia Huck (4): s390-ccw.img: Detect devices with stsch. s390-ccw.img: Enhance drain_irqs(). s390-ccw.img: Rudimentary error checking. s390-ccw.img: Get queue config from host. Dominik Dingel (1): Common: Add quick access to first boot device Jason J. Herne (2): Allow selective runtime register synchronization Utilize selective runtime reg sync for hot code paths KONRAD Frederic (1): virtio-rng-s390: add properties. .gitignore | 2 + Makefile | 1 + configure | 7 +- hw/s390x/ipl.c | 41 +++--- hw/s390x/s390-virtio-bus.c | 8 + hw/s390x/s390-virtio-ccw.c | 2 +- hw/s390x/s390-virtio.c | 7 +- hw/s390x/s390-virtio.h | 3 +- include/sysemu/sysemu.h | 2 + pc-bios/s390-ccw.img | Bin 0 -> 9432 bytes pc-bios/s390-ccw/Makefile | 26 ++++ pc-bios/s390-ccw/bootmap.c | 235 ++++++++++++++++++++++++++++++ pc-bios/s390-ccw/cio.h | 322 +++++++++++++++++++++++++++++++++++++++++ pc-bios/s390-ccw/main.c | 61 ++++++++ pc-bios/s390-ccw/s390-ccw.h | 134 +++++++++++++++++ pc-bios/s390-ccw/sclp-ascii.c | 81 ++++++++++ pc-bios/s390-ccw/sclp.h | 107 ++++++++++++++ pc-bios/s390-ccw/start.S | 31 ++++ pc-bios/s390-ccw/virtio.c | 298 ++++++++++++++++++++++++++++++++++++++ pc-bios/s390-ccw/virtio.h | 163 +++++++++++++++++++++ target-s390x/cpu.h | 17 ++ target-s390x/kvm.c | 82 ++++++++++- vl.c | 18 +++ 23 files changed, 1622 insertions(+), 26 deletions(-) create mode 100644 pc-bios/s390-ccw.img create mode 100644 pc-bios/s390-ccw/Makefile create mode 100644 pc-bios/s390-ccw/bootmap.c create mode 100644 pc-bios/s390-ccw/cio.h create mode 100644 pc-bios/s390-ccw/main.c create mode 100644 pc-bios/s390-ccw/s390-ccw.h create mode 100644 pc-bios/s390-ccw/sclp-ascii.c create mode 100644 pc-bios/s390-ccw/sclp.h create mode 100644 pc-bios/s390-ccw/start.S create mode 100644 pc-bios/s390-ccw/virtio.c create mode 100644 pc-bios/s390-ccw/virtio.h