qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/15] first s390x update for 2.13
@ 2018-05-04  7:24 Cornelia Huck
  2018-05-04  7:25 ` [Qemu-devel] [PULL 01/15] s390x: introduce 2.13 compat machine Cornelia Huck
                   ` (15 more replies)
  0 siblings, 16 replies; 22+ messages in thread
From: Cornelia Huck @ 2018-05-04  7:24 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, qemu-s390x, qemu-devel,
	Cornelia Huck

The following changes since commit 6f0c4706b35dead265509115ddbd2a8d1af516c1:

  Merge remote-tracking branch 'remotes/kraxel/tags/usb-20180427-pull-request' into staging (2018-04-27 12:27:59 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 532cd4b067d37b96496dbacbfab6c990c063d33d:

  Merge tag 'tags/s390x-2018-05-02' into staging (2018-05-03 16:33:01 +0200)

----------------------------------------------------------------
First s390x pull request for 2.13.
- new machine type
- extend SCLP event masks
- support configuration of consoles via -serial
- firmware improvements: non-sequential entries in boot menu, support
  for indirect loading via .INS files in s390-netboot
- bugfixes and cleanups

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

Claudio Imbrenda (1):
  s390x/sclp: extend SCLP event masks to 64 bits

Collin Walling (4):
  pc-bios/s390-ccw: rename MAX_TABLE_ENTRIES to MAX_BOOT_ENTRIES
  pc-bios/s390-ccw: fix loadparm initialization and int conversion
  pc-bios/s390-ccw: fix non-sequential boot entries (eckd)
  pc-bios/s390-ccw: fix non-sequential boot entries (enum)

Cornelia Huck (2):
  s390x: introduce 2.13 compat machine
  s390-ccw: force diag 308 subcode to unsigned long

David Hildenbrand (1):
  s390x/kvm: cleanup calls to cpu_synchronize_state()

Greg Kurz (1):
  vfio-ccw: introduce vfio_ccw_get_device()

Thomas Huth (6):
  hw/s390x: Allow to configure the consoles with the "-serial" parameter
  pc-bios/s390-ccw: size_t should be unsigned
  pc-bios/s390-ccw/net: Split up net_load() into init, load and release
    parts
  pc-bios/s390-ccw/net: Use diag308 to reset machine before jumping to
    the OS
  pc-bios/s390-ccw/net: Add support for .INS config files
  pc-bios/s390: Update firmware images

 hw/s390x/event-facility.c         |  64 +++++++++++++--
 hw/s390x/ipl.c                    |   4 +
 hw/s390x/s390-pci-inst.c          |   8 --
 hw/s390x/s390-virtio-ccw.c        |  36 +++++++-
 hw/vfio/ccw.c                     |  56 ++++++++-----
 include/hw/boards.h               |   1 -
 include/hw/s390x/event-facility.h |   4 +-
 pc-bios/s390-ccw.img              | Bin 30520 -> 34568 bytes
 pc-bios/s390-ccw/Makefile         |   4 +-
 pc-bios/s390-ccw/bootmap.c        |  79 +++---------------
 pc-bios/s390-ccw/bootmap.h        |   6 --
 pc-bios/s390-ccw/iplb.h           |   3 +-
 pc-bios/s390-ccw/jump2ipl.c       |  91 +++++++++++++++++++++
 pc-bios/s390-ccw/libc.c           |   2 +-
 pc-bios/s390-ccw/libc.h           |   2 +-
 pc-bios/s390-ccw/main.c           |  14 ++--
 pc-bios/s390-ccw/menu.c           |  58 +++++++++----
 pc-bios/s390-ccw/netboot.mak      |   3 +-
 pc-bios/s390-ccw/netmain.c        | 168 +++++++++++++++++++++++++++++++-------
 pc-bios/s390-ccw/s390-ccw.h       |   8 +-
 pc-bios/s390-netboot.img          | Bin 83856 -> 87872 bytes
 target/s390x/kvm.c                |  20 +----
 tests/boot-serial-test.c          |   3 +-
 vl.c                              |  50 ------------
 24 files changed, 436 insertions(+), 248 deletions(-)
 create mode 100644 pc-bios/s390-ccw/jump2ipl.c

-- 
2.14.3

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2018-05-22 18:41 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-04  7:24 [Qemu-devel] [PULL 00/15] first s390x update for 2.13 Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 01/15] s390x: introduce 2.13 compat machine Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 02/15] s390x/sclp: extend SCLP event masks to 64 bits Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 03/15] vfio-ccw: introduce vfio_ccw_get_device() Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 04/15] s390x/kvm: cleanup calls to cpu_synchronize_state() Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 05/15] hw/s390x: Allow to configure the consoles with the "-serial" parameter Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 06/15] pc-bios/s390-ccw: size_t should be unsigned Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 07/15] pc-bios/s390-ccw: rename MAX_TABLE_ENTRIES to MAX_BOOT_ENTRIES Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 08/15] pc-bios/s390-ccw: fix loadparm initialization and int conversion Cornelia Huck
2018-05-15  8:45   ` Laszlo Ersek
2018-05-22 12:44     ` Cornelia Huck
2018-05-22 14:09       ` Collin Walling
2018-05-22 18:40       ` Laszlo Ersek
2018-05-04  7:25 ` [Qemu-devel] [PULL 09/15] pc-bios/s390-ccw: fix non-sequential boot entries (eckd) Cornelia Huck
2018-05-15  8:46   ` Laszlo Ersek
2018-05-04  7:25 ` [Qemu-devel] [PULL 10/15] pc-bios/s390-ccw: fix non-sequential boot entries (enum) Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 11/15] pc-bios/s390-ccw/net: Split up net_load() into init, load and release parts Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 12/15] pc-bios/s390-ccw/net: Use diag308 to reset machine before jumping to the OS Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 13/15] pc-bios/s390-ccw/net: Add support for .INS config files Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 14/15] s390-ccw: force diag 308 subcode to unsigned long Cornelia Huck
2018-05-04  7:25 ` [Qemu-devel] [PULL 15/15] pc-bios/s390: Update firmware images Cornelia Huck
2018-05-04 12:48 ` [Qemu-devel] [PULL 00/15] first s390x update for 2.13 Peter Maydell

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).