qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/14] s390x update
@ 2020-07-03 10:06 Cornelia Huck
  2020-07-03 10:06 ` [PULL 01/14] pc-bios: s390x: cio.c cleanup and compile fix Cornelia Huck
                   ` (15 more replies)
  0 siblings, 16 replies; 24+ messages in thread
From: Cornelia Huck @ 2020-07-03 10:06 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-s390x, Cornelia Huck, qemu-devel

The following changes since commit 64f0ad8ad8e13257e7c912df470d46784b55c3fd:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2020-07-02' into staging (2020-07-02 15:54:09 +0100)

are available in the Git repository at:

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

for you to fetch changes up to f196f6a8c7cca5e8bd1d6d37995447e1d6028223:

  Merge tag 's390-ccw-bios-2020-07-02' into s390-next-staging (2020-07-03 11:17:03 +0200)

----------------------------------------------------------------
s390 update:
- various fixes
- cleanup in the s390x-ccw bios

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

Halil Pasic (2):
  virtio-ccw: fix virtio_set_ind_atomic
  s390x/pci: fix set_ind_atomic

Janosch Frank (9):
  pc-bios: s390x: cio.c cleanup and compile fix
  pc-bios: s390x: Consolidate timing functions into time.h
  pc-bios: s390x: Move sleep and yield to helper.h
  pc-bios: s390x: Get rid of magic offsets into the lowcore
  pc-bios: s390x: Rename PSW_MASK_ZMODE to PSW_MASK_64
  pc-bios: s390x: Use PSW masks where possible and introduce
    PSW_MASK_SHORT_ADDR
  pc-bios: s390x: Move panic() into header and add infinite loop
  pc-bios: s390x: Use ebcdic2ascii table
  pc-bios: s390x: Make u32 ptr check explicit

Richard Henderson (1):
  target/s390x: Fix SQXBR

Thomas Huth (2):
  pc-bios/s390-ccw: Generate and include dependency files in the
    Makefile
  pc-bios/s390: Update s390-ccw bios binaries with the latest changes

-- 
2.25.4



^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PULL 00/14] s390x update
@ 2020-12-22 10:44 Cornelia Huck
  2021-01-01 19:57 ` Peter Maydell
  0 siblings, 1 reply; 24+ messages in thread
From: Cornelia Huck @ 2020-12-22 10:44 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-s390x, Cornelia Huck, qemu-devel

The following changes since commit a05f8ecd88f15273d033b6f044b850a8af84a5b8:

  Merge remote-tracking branch 'remotes/alistair/tags/pull-riscv-to-apply-20201217-1' into staging (2020-12-18 11:12:35 +0000)

are available in the Git repository at:

  https://gitlab.com/cohuck/qemu.git tags/s390x-20201222

for you to fetch changes up to 24bfaae13958b823a4f33b70fca52f086851641f:

  tests/acceptance: Add a test with the Fedora 31 kernel and initrd (2020-12-22 09:23:09 +0100)

----------------------------------------------------------------
Further s390x updates:
- enhance the s390 devices acceptance test
- tcg: improve carry computation
- qga: send the ccw address with the fsinfo data
- fixes for protected virtualisation and zpci

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

CI: https://gitlab.com/cohuck/qemu/-/pipelines/233190604

[I've pushed out the same branch to

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

as well this time.]

Cornelia Huck (2):
  MAINTAINERS: move my git tree to gitlab
  tests/acceptance: test hot(un)plug of ccw devices

Janosch Frank (1):
  s390x: pv: Fence additional unavailable SCLP facilities for PV guests

Matthew Rosato (2):
  s390x/pci: fix pcistb length
  s390x/pci: Fix memory_region_access_valid call

Richard Henderson (4):
  target/s390x: Improve cc computation for ADD LOGICAL
  target/s390x: Improve ADD LOGICAL WITH CARRY
  target/s390x: Improve cc computation for SUBTRACT LOGICAL
  target/s390x: Improve SUB LOGICAL WITH BORROW

Thomas Huth (5):
  qga/commands-posix: Send CCW address on s390x with the fsinfo data
  tests/acceptance: Extract the code to clear dmesg and wait for CRW
    reports
  tests/acceptance: Test virtio-rng on s390 via /dev/hwrng
  tests/acceptance: Test the virtio-balloon device on s390x
  tests/acceptance: Add a test with the Fedora 31 kernel and initrd

 MAINTAINERS                                 |  10 +-
 hw/s390x/s390-pci-inst.c                    |  14 +-
 qga/commands-posix.c                        |  34 +++
 qga/qapi-schema.json                        |  20 +-
 target/s390x/cc_helper.c                    | 123 ++-------
 target/s390x/cpu_features.c                 |  39 ++-
 target/s390x/cpu_models.c                   |  25 +-
 target/s390x/helper.c                       |  10 +-
 target/s390x/insn-data.def                  |  76 +++---
 target/s390x/internal.h                     |  11 +-
 target/s390x/translate.c                    | 287 +++++++++++---------
 tests/acceptance/machine_s390_ccw_virtio.py | 169 +++++++++++-
 12 files changed, 507 insertions(+), 311 deletions(-)

-- 
2.26.2



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

end of thread, other threads:[~2021-01-01 19:58 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-03 10:06 [PULL 00/14] s390x update Cornelia Huck
2020-07-03 10:06 ` [PULL 01/14] pc-bios: s390x: cio.c cleanup and compile fix Cornelia Huck
2020-07-03 10:06 ` [PULL 02/14] pc-bios: s390x: Consolidate timing functions into time.h Cornelia Huck
2020-07-03 10:06 ` [PULL 03/14] pc-bios: s390x: Move sleep and yield to helper.h Cornelia Huck
2020-07-03 10:06 ` [PULL 04/14] pc-bios: s390x: Get rid of magic offsets into the lowcore Cornelia Huck
2020-07-03 10:06 ` [PULL 05/14] pc-bios: s390x: Rename PSW_MASK_ZMODE to PSW_MASK_64 Cornelia Huck
2020-07-03 10:06 ` [PULL 06/14] pc-bios: s390x: Use PSW masks where possible and introduce PSW_MASK_SHORT_ADDR Cornelia Huck
2020-07-03 10:06 ` [PULL 07/14] pc-bios: s390x: Move panic() into header and add infinite loop Cornelia Huck
2020-07-03 10:06 ` [PULL 08/14] pc-bios: s390x: Use ebcdic2ascii table Cornelia Huck
2020-07-03 10:06 ` [PULL 09/14] pc-bios: s390x: Make u32 ptr check explicit Cornelia Huck
2020-07-03 10:06 ` [PULL 10/14] pc-bios/s390-ccw: Generate and include dependency files in the Makefile Cornelia Huck
2020-07-03 10:06 ` [PULL 11/14] pc-bios/s390: Update s390-ccw bios binaries with the latest changes Cornelia Huck
2020-07-03 10:06 ` [PULL 12/14] target/s390x: Fix SQXBR Cornelia Huck
2020-07-03 10:06 ` [PULL 13/14] virtio-ccw: fix virtio_set_ind_atomic Cornelia Huck
2020-07-06 11:23   ` Halil Pasic
2020-07-06 11:38     ` Cornelia Huck
2020-09-08  9:34   ` Halil Pasic
2020-07-03 10:06 ` [PULL 14/14] s390x/pci: fix set_ind_atomic Cornelia Huck
2020-07-06 11:23   ` Halil Pasic
2020-09-08  9:36   ` Halil Pasic
2020-07-03 10:46 ` [PULL 00/14] s390x update no-reply
2020-07-04 13:58 ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2020-12-22 10:44 Cornelia Huck
2021-01-01 19:57 ` 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).