s390: guest support for diagnose 0x318
commitfabdada9357b9cfd980c7744ddce47e34600bbef
authorCollin Walling <walling@linux.ibm.com>
Tue, 15 Sep 2020 19:44:16 +0000 (15 15:44 -0400)
committerCornelia Huck <cohuck@redhat.com>
Fri, 2 Oct 2020 11:52:49 +0000 (2 13:52 +0200)
treee8f5a1624d4842362f16da9c6afcf85d764127bc
parent1ecd6078f587cfadda8edc93d45b5072e35f2d17
s390: guest support for diagnose 0x318

DIAGNOSE 0x318 (diag318) is an s390 instruction that allows the storage
of diagnostic information that is collected by the firmware in the case
of hardware/firmware service events.

QEMU handles the instruction by storing the info in the CPU state. A
subsequent register sync will communicate the data to the hypervisor.

QEMU handles the migration via a VM State Description.

This feature depends on the Extended-Length SCCB (els) feature. If
els is not present, then a warning will be printed and the SCLP bit
that allows the Linux kernel to execute the instruction will not be
set.

Availability of this instruction is determined by byte 134 (aka fac134)
bit 0 of the SCLP Read Info block. This coincidentally expands into the
space used for CPU entries, which means VMs running with the diag318
capability may not be able to read information regarding all CPUs
unless the guest kernel supports an extended-length SCCB.

This feature is not supported in protected virtualization mode.

Signed-off-by: Collin Walling <walling@linux.ibm.com>
Acked-by: Janosch Frank <frankja@linux.ibm.com>
Acked-by: Thomas Huth <thuth@redhat.com>
Acked-by: David Hildenbrand <david@redhat.com>
Acked-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Message-Id: <20200915194416.107460-9-walling@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
hw/s390x/sclp.c
include/hw/s390x/sclp.h
target/s390x/cpu.h
target/s390x/cpu_features.h
target/s390x/cpu_features_def.h.inc
target/s390x/cpu_models.c
target/s390x/gen-features.c
target/s390x/kvm.c
target/s390x/machine.c