mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00

Handle interception of the CHSC SEI instruction for requests indicating the guest's AP configuration has changed. If configuring --without-default-devices, hw/s390x/ap-stub.c was created to handle such circumstance. Also added the following to hw/s390x/meson.build if CONFIG_VFIO_AP is false, it will use the stub file. Signed-off-by: Rorie Reyes <rreyes@linux.ibm.com> Reviewed-by: Anthony Krowiak <akrowiak@linux.ibm.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Link: https://lore.kernel.org/qemu-devel/20250609164418.17585-5-rreyes@linux.ibm.com Signed-off-by: Cédric Le Goater <clg@redhat.com>
21 lines
382 B
C
21 lines
382 B
C
/*
|
|
* VFIO based AP matrix device assignment
|
|
*
|
|
* Copyright 2025 IBM Corp.
|
|
* Author(s): Rorie Reyes <rreyes@linux.ibm.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/s390x/ap-bridge.h"
|
|
|
|
int ap_chsc_sei_nt0_get_event(void *res)
|
|
{
|
|
return EVENT_INFORMATION_NOT_STORED;
|
|
}
|
|
|
|
bool ap_chsc_sei_nt0_have_event(void)
|
|
{
|
|
return false;
|
|
}
|