qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/10] s390x update
@ 2019-02-05 16:40 Cornelia Huck
  2019-02-05 16:41 ` [Qemu-devel] [PULL 01/10] target/s390x: define TCG_GUEST_DEFAULT_MO for MTTCG Cornelia Huck
                   ` (10 more replies)
  0 siblings, 11 replies; 23+ messages in thread
From: Cornelia Huck @ 2019-02-05 16:40 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-s390x, qemu-devel, Cornelia Huck

The following changes since commit a61faa3d02159d24d4fa984733dbc0c905508752:

  Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.0-20190204' into staging (2019-02-04 10:33:40 +0000)

are available in the Git repository at:

  https://github.com/cohuck/qemu tags/s390x-20190205

for you to fetch changes up to 2313a88fe68cb970532ba1641ffc35c848daae86:

  s390x/pci: Unplug remaining requested devices on pcihost reset (2019-02-05 10:34:06 +0100)

----------------------------------------------------------------
Fixes and improvements in tcg and the zPCI code.

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

Alex Bennée (1):
  target/s390x: define TCG_GUEST_DEFAULT_MO for MTTCG

Cornelia Huck (1):
  s390x/pci: mark zpci devices as unmigratable

David Hildenbrand (7):
  s390x/pci: Introduce unplug requests and split unplug handler
  s390x/pci: Drop release timer and replace it with a flag
  s390x/tcg: Don't model FP registers as globals
  s390x/pci: Fix primary bus number for PCI bridges
  s390x/pci: Fix hotplugging of PCI bridges
  s390x/pci: Warn when adding PCI devices without the 'zpci' feature
  s390x/pci: Unplug remaining requested devices on pcihost reset

Igor Mammedov (1):
  s390x: remove direct reference to mem_path global from s390x code

 hw/s390x/s390-pci-bus.c    | 244 ++++++++++++++++++++++++-------------
 hw/s390x/s390-pci-bus.h    |   4 +-
 target/s390x/cpu.h         |   4 +
 target/s390x/insn-data.def | 150 +++++++++++------------
 target/s390x/kvm.c         |   5 +-
 target/s390x/translate.c   | 135 ++++++++++++--------
 6 files changed, 330 insertions(+), 212 deletions(-)

-- 
2.17.2

^ permalink raw reply	[flat|nested] 23+ messages in thread
* [Qemu-devel] [PULL 00/10] s390x update
@ 2019-02-18 11:11 Cornelia Huck
  2019-02-18 11:44 ` no-reply
                   ` (9 more replies)
  0 siblings, 10 replies; 23+ messages in thread
From: Cornelia Huck @ 2019-02-18 11:11 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-s390x, qemu-devel, Cornelia Huck

The following changes since commit 1e36232994c8ad01774501d2e299deba3a2469af:

  Merge remote-tracking branch 'remotes/mcayland/tags/qemu-openbios-20190215' into staging (2019-02-15 11:12:14 +0000)

are available in the Git repository at:

  https://github.com/cohuck/qemu tags/s390x-20190218

for you to fetch changes up to 0922e8c093a564219fcb7f43b18ceb12714dd931:

  s390x: upgrade status of KVM cores to "supported" (2019-02-18 12:00:44 +0100)

----------------------------------------------------------------
s390x updates:
- tcg: implement STCK and friends for CONFIG_USER_ONLY
- add zpci to qemu cpu model, as pci is now always built
- add mepoch to default z14 cpu model
- add cpu model for z14 GA2
- various improvements

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

Collin Walling (3):
  s390x/cpumodel: mepochptff: warn when no mepoch and re-align group
    init
  s390x/cpumodel: default enable mepoch for z14 and later
  s390x/cpumodel: add z14 GA2 model

Cornelia Huck (3):
  s390x: always provide pci support
  s390x/kvm: add tracepoint to ioeventfd interface
  s390x: upgrade status of KVM cores to "supported"

David Hildenbrand (1):
  s390x: add zPCI feature to "qemu" CPU model

Richard Henderson (2):
  target/s390x: Split out s390-tod.h
  target/s390x: Implement STCK et al for CONFIG_USER_ONLY

Thomas Huth (1):
  s390x: Fix the confusing contributions-after-2012 license statements

 MAINTAINERS                   |  2 +-
 hw/s390x/Makefile.objs        |  3 +-
 hw/s390x/s390-pci-stub.c      | 77 -----------------------------------
 hw/s390x/s390-virtio-ccw.c    |  8 ++--
 include/hw/s390x/tod.h        | 16 +-------
 linux-user/s390x/target_cpu.h | 19 ++++-----
 target/s390x/cpu.c            | 19 ++++-----
 target/s390x/cpu.h            | 19 ++++-----
 target/s390x/cpu_features.c   |  2 +-
 target/s390x/cpu_models.c     | 34 +++++++++++++---
 target/s390x/cpu_models.h     |  2 +
 target/s390x/gen-features.c   | 18 ++++++--
 target/s390x/helper.h         |  2 +-
 target/s390x/insn-data.def    | 11 ++---
 target/s390x/kvm.c            | 25 +++++-------
 target/s390x/misc_helper.c    | 34 ++++++++++------
 target/s390x/s390-tod.h       | 29 +++++++++++++
 target/s390x/trace-events     |  1 +
 target/s390x/translate.c      |  2 +
 19 files changed, 150 insertions(+), 173 deletions(-)
 delete mode 100644 hw/s390x/s390-pci-stub.c
 create mode 100644 target/s390x/s390-tod.h

-- 
2.17.2

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

end of thread, other threads:[~2019-02-18 14:12 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-05 16:40 [Qemu-devel] [PULL 00/10] s390x update Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 01/10] target/s390x: define TCG_GUEST_DEFAULT_MO for MTTCG Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 02/10] s390x: remove direct reference to mem_path global from s390x code Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 03/10] s390x/pci: Introduce unplug requests and split unplug handler Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 04/10] s390x/pci: Drop release timer and replace it with a flag Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 05/10] s390x/pci: mark zpci devices as unmigratable Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 06/10] s390x/tcg: Don't model FP registers as globals Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 07/10] s390x/pci: Fix primary bus number for PCI bridges Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 08/10] s390x/pci: Fix hotplugging of " Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 09/10] s390x/pci: Warn when adding PCI devices without the 'zpci' feature Cornelia Huck
2019-02-05 16:41 ` [Qemu-devel] [PULL 10/10] s390x/pci: Unplug remaining requested devices on pcihost reset Cornelia Huck
2019-02-05 18:21 ` [Qemu-devel] [PULL 00/10] s390x update Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2019-02-18 11:11 Cornelia Huck
2019-02-18 11:44 ` no-reply
2019-02-18 11:48 ` no-reply
2019-02-18 12:19 ` no-reply
2019-02-18 12:22 ` no-reply
2019-02-18 12:55 ` no-reply
2019-02-18 12:59 ` no-reply
2019-02-18 13:31 ` no-reply
2019-02-18 14:07 ` no-reply
2019-02-18 14:09 ` Peter Maydell
2019-02-18 14:11 ` no-reply

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