qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Cornelia Huck <cornelia.huck@de.ibm.com>
To: peter.maydell@linaro.org
Cc: borntraeger@de.ibm.com, agraf@suse.de, jfrei@linux.vnet.ibm.com,
	qemu-devel@nongnu.org, Cornelia Huck <cornelia.huck@de.ibm.com>
Subject: [Qemu-devel] [PULL 00/25] s390x patches for 2.7
Date: Mon, 11 Jul 2016 10:08:47 +0200	[thread overview]
Message-ID: <20160711080912.13947-1-cornelia.huck@de.ibm.com> (raw)

The following changes since commit 4f4a9ca4a4386c137301b3662faba076455ff15a:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160707' into staging (2016-07-07 14:49:38 +0100)

are available in the git repository at:

  git://github.com/cohuck/qemu tags/s390x-20160711

for you to fetch changes up to 93d16d81c8af0fe93a04bee8a4cb3259f480cab6:

  s390x/pci: make hot-unplug handler smoother (2016-07-11 09:48:05 +0200)

----------------------------------------------------------------
Last round of s390x patches for 2.7:
- A large update of the s390x PCI code, bringing it in line with
  the architecture
- Fixes and improvements in the ipl (boot) code
- Refactoring in the css code

----------------------------------------------------------------

Alexander Yarygin (1):
  s390x/ipl: Support IPL from selected SCSI device

Cornelia Huck (1):
  pc-bios/s390-ccw.img: rebuild image

David Hildenbrand (1):
  s390x/ipl: fix reboots for migration from different bios

Eugene (jno) Dvurechenski (1):
  pc-bios/s390-ccw: Pass selected SCSI device to IPL

Jing Liu (2):
  s390x/css: Factor out virtual css bridge and bus
  s390x/css: Unplug handler of virtual css bridge

Sascha Silbe (2):
  s390x/css: factor out some generic code from
    virtio_ccw_device_realize()
  s390x/css: use define for "virtual-css-bridge" literal

Yi Min Zhao (17):
  s390x/pci: fix failures of dma map/unmap
  s390x/pci: acceleration for getting S390pciState
  s390x/pci: write fid in CLP_QUERY_PCI_FN
  s390x/pci: unify FH_ macros
  s390x/pci: refactor s390_pci_find_dev_by_fh
  s390x/pci: enforce zPCI state checking
  s390x/pci: introduce S390PCIBus
  s390x/pci: introduce S390PCIIOMMU
  s390x/pci: introduce S390PCIBusDevice qdev
  s390x/pci: enable uid-checking
  s390x/pci: enable zpci hot-plug/hot-unplug
  s390x/pci: add checkings in CLP_SET_PCI_FN
  s390x/pci: refactor s390_pci_find_dev_by_idx
  s390x/pci: refactor list_pci
  s390x/pci: fix stpcifc_service_call
  s390x/pci: replace fid with idx in msg data of msix
  s390x/pci: make hot-unplug handler smoother

 hw/s390x/Makefile.objs         |   2 +
 hw/s390x/ccw-device.c          |  27 ++
 hw/s390x/ccw-device.h          |  43 +++
 hw/s390x/css-bridge.c          | 124 +++++++++
 hw/s390x/css.c                 | 143 ++++++++++
 hw/s390x/ipl.c                 |  37 ++-
 hw/s390x/ipl.h                 |  15 ++
 hw/s390x/s390-pci-bus.c        | 579 +++++++++++++++++++++++++++++++----------
 hw/s390x/s390-pci-bus.h        |  77 +++++-
 hw/s390x/s390-pci-inst.c       | 266 ++++++++++++++-----
 hw/s390x/s390-pci-inst.h       |   7 +-
 hw/s390x/s390-virtio-ccw.c     |   3 +-
 hw/s390x/virtio-ccw.c          | 271 ++++---------------
 hw/s390x/virtio-ccw.h          |  20 +-
 include/hw/s390x/css-bridge.h  |  31 +++
 include/hw/s390x/css.h         |  18 ++
 include/hw/s390x/sclp.h        |   1 +
 pc-bios/s390-ccw.img           | Bin 26424 -> 26440 bytes
 pc-bios/s390-ccw/iplb.h        |  12 +
 pc-bios/s390-ccw/main.c        |  12 +
 pc-bios/s390-ccw/virtio-scsi.c |  11 +
 pc-bios/s390-ccw/virtio.h      |   2 +
 target-s390x/kvm.c             |   4 +-
 23 files changed, 1249 insertions(+), 456 deletions(-)
 create mode 100644 hw/s390x/ccw-device.c
 create mode 100644 hw/s390x/ccw-device.h
 create mode 100644 hw/s390x/css-bridge.c
 create mode 100644 include/hw/s390x/css-bridge.h

-- 
2.9.0

             reply	other threads:[~2016-07-11  8:09 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-11  8:08 Cornelia Huck [this message]
2016-07-11  8:08 ` [Qemu-devel] [PULL 01/25] pc-bios/s390-ccw: Pass selected SCSI device to IPL Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 02/25] pc-bios/s390-ccw.img: rebuild image Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 03/25] s390x/ipl: Support IPL from selected SCSI device Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 04/25] s390x/ipl: fix reboots for migration from different bios Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 05/25] s390x/css: factor out some generic code from virtio_ccw_device_realize() Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 06/25] s390x/css: use define for "virtual-css-bridge" literal Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 07/25] s390x/css: Factor out virtual css bridge and bus Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 08/25] s390x/css: Unplug handler of virtual css bridge Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 09/25] s390x/pci: fix failures of dma map/unmap Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 10/25] s390x/pci: acceleration for getting S390pciState Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 11/25] s390x/pci: write fid in CLP_QUERY_PCI_FN Cornelia Huck
2016-07-11  8:08 ` [Qemu-devel] [PULL 12/25] s390x/pci: unify FH_ macros Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 13/25] s390x/pci: refactor s390_pci_find_dev_by_fh Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 14/25] s390x/pci: enforce zPCI state checking Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 15/25] s390x/pci: introduce S390PCIBus Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 16/25] s390x/pci: introduce S390PCIIOMMU Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 17/25] s390x/pci: introduce S390PCIBusDevice qdev Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 18/25] s390x/pci: enable uid-checking Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 19/25] s390x/pci: enable zpci hot-plug/hot-unplug Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 20/25] s390x/pci: add checkings in CLP_SET_PCI_FN Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 21/25] s390x/pci: refactor s390_pci_find_dev_by_idx Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 22/25] s390x/pci: refactor list_pci Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 23/25] s390x/pci: fix stpcifc_service_call Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 24/25] s390x/pci: replace fid with idx in msg data of msix Cornelia Huck
2016-07-11  8:09 ` [Qemu-devel] [PULL 25/25] s390x/pci: make hot-unplug handler smoother Cornelia Huck
2016-07-12  8:48 ` [Qemu-devel] [PULL 00/25] s390x patches for 2.7 Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160711080912.13947-1-cornelia.huck@de.ibm.com \
    --to=cornelia.huck@de.ibm.com \
    --cc=agraf@suse.de \
    --cc=borntraeger@de.ibm.com \
    --cc=jfrei@linux.vnet.ibm.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).