qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/19] next batch of s390x changes
@ 2018-08-29  9:41 Cornelia Huck
  2018-08-29  9:41 ` [Qemu-devel] [PULL 01/19] tests/tcg: add a simple s390x test Cornelia Huck
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Cornelia Huck @ 2018-08-29  9:41 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 19b599f7664b2ebfd0f405fb79c14dd241557452:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2018-08-27-v2' into staging (2018-08-27 16:44:20 +0100)

are available in the Git repository at:

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

for you to fetch changes up to ef17064acc752d47377b1b263ef328e1281ab48e:

  target/s390x: use regular spaces in translate.c (2018-08-28 17:37:01 +0200)

----------------------------------------------------------------
- various fixes and improvements in the tcg code
- split off the individual virtio-ccw devices into separate files

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

Pavel Zbitskiy (7):
  tests/tcg: add a simple s390x test
  target/s390x: add BAL and BALR instructions
  target/s390x: fix CSST decoding and runtime alignment check
  target/s390x: fix IPM polluting irrelevant bits
  target/s390x: add EX support for TRT and TRTR
  target/s390x: fix PACK reading 1 byte less and writing 1 byte more
  target/s390x: use regular spaces in translate.c

Thomas Huth (12):
  hw/s390x/virtio-ccw: Consolidate calls to virtio_ccw_unrealize()
  hw/s390x: Move virtio-ccw-serial code to a separate file
  hw/s390x: Move virtio-ccw-balloon code to a separate file
  hw/s390x: Move virtio-ccw-scsi code to a separate file
  hw/s390x: Move virtio-ccw-rng code to a separate file
  hw/s390x: Move virtio-ccw-9p code to a separate file
  hw/s390x: Move virtio-ccw-crypto code to a separate file
  hw/s390x: Move vhost-vsock-ccw code to a separate file
  hw/s390x: Move virtio-ccw-gpu code to a separate file
  hw/s390x: Move virtio-ccw-input code to a separate file
  hw/s390x: Move virtio-ccw-net code to a separate file
  hw/s390x: Move virtio-ccw-blk code to a separate file

 MAINTAINERS                     |   4 +-
 hw/s390x/Makefile.objs          |  11 +
 hw/s390x/vhost-vsock-ccw.c      |  60 ++++
 hw/s390x/virtio-ccw-9p.c        |  65 ++++
 hw/s390x/virtio-ccw-balloon.c   |  70 +++++
 hw/s390x/virtio-ccw-blk.c       |  67 ++++
 hw/s390x/virtio-ccw-crypto.c    |  75 +++++
 hw/s390x/virtio-ccw-gpu.c       |  67 ++++
 hw/s390x/virtio-ccw-input.c     | 118 +++++++
 hw/s390x/virtio-ccw-net.c       |  70 +++++
 hw/s390x/virtio-ccw-rng.c       |  74 +++++
 hw/s390x/virtio-ccw-scsi.c      | 125 ++++++++
 hw/s390x/virtio-ccw-serial.c    |  78 +++++
 hw/s390x/virtio-ccw.c           | 676 +---------------------------------------
 target/s390x/insn-data.def      |   3 +
 target/s390x/mem_helper.c       |  24 +-
 target/s390x/translate.c        |  79 +++--
 tests/tcg/s390x/Makefile.target |   8 +
 tests/tcg/s390x/csst.c          |  43 +++
 tests/tcg/s390x/exrl-trt.c      |  48 +++
 tests/tcg/s390x/exrl-trtr.c     |  48 +++
 tests/tcg/s390x/hello-s390x.c   |   7 +
 tests/tcg/s390x/ipm.c           |  22 ++
 tests/tcg/s390x/pack.c          |  21 ++
 24 files changed, 1168 insertions(+), 695 deletions(-)
 create mode 100644 hw/s390x/vhost-vsock-ccw.c
 create mode 100644 hw/s390x/virtio-ccw-9p.c
 create mode 100644 hw/s390x/virtio-ccw-balloon.c
 create mode 100644 hw/s390x/virtio-ccw-blk.c
 create mode 100644 hw/s390x/virtio-ccw-crypto.c
 create mode 100644 hw/s390x/virtio-ccw-gpu.c
 create mode 100644 hw/s390x/virtio-ccw-input.c
 create mode 100644 hw/s390x/virtio-ccw-net.c
 create mode 100644 hw/s390x/virtio-ccw-rng.c
 create mode 100644 hw/s390x/virtio-ccw-scsi.c
 create mode 100644 hw/s390x/virtio-ccw-serial.c
 create mode 100644 tests/tcg/s390x/Makefile.target
 create mode 100644 tests/tcg/s390x/csst.c
 create mode 100644 tests/tcg/s390x/exrl-trt.c
 create mode 100644 tests/tcg/s390x/exrl-trtr.c
 create mode 100644 tests/tcg/s390x/hello-s390x.c
 create mode 100644 tests/tcg/s390x/ipm.c
 create mode 100644 tests/tcg/s390x/pack.c

-- 
2.14.4

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

end of thread, other threads:[~2018-08-29  9:55 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-29  9:41 [Qemu-devel] [PULL 00/19] next batch of s390x changes Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 01/19] tests/tcg: add a simple s390x test Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 02/19] target/s390x: add BAL and BALR instructions Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 03/19] target/s390x: fix CSST decoding and runtime alignment check Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 04/19] target/s390x: fix IPM polluting irrelevant bits Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 05/19] target/s390x: add EX support for TRT and TRTR Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 06/19] target/s390x: fix PACK reading 1 byte less and writing 1 byte more Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 07/19] hw/s390x/virtio-ccw: Consolidate calls to virtio_ccw_unrealize() Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 08/19] hw/s390x: Move virtio-ccw-serial code to a separate file Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 09/19] hw/s390x: Move virtio-ccw-balloon " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 10/19] hw/s390x: Move virtio-ccw-scsi " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 11/19] hw/s390x: Move virtio-ccw-rng " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 12/19] hw/s390x: Move virtio-ccw-9p " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 13/19] hw/s390x: Move virtio-ccw-crypto " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 14/19] hw/s390x: Move vhost-vsock-ccw " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 15/19] hw/s390x: Move virtio-ccw-gpu " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 16/19] hw/s390x: Move virtio-ccw-input " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 17/19] hw/s390x: Move virtio-ccw-net " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 18/19] hw/s390x: Move virtio-ccw-blk " Cornelia Huck
2018-08-29  9:41 ` [Qemu-devel] [PULL 19/19] target/s390x: use regular spaces in translate.c Cornelia Huck

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