Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
39 lines
912 B
C
39 lines
912 B
C
/*
|
|
* Guest driven VM launch state update device via IGVM.
|
|
* For details and specification, please look at docs/specs/vmlaunchupdate.rst.
|
|
*
|
|
* Copyright (C) 2026 Red Hat, Inc.
|
|
*
|
|
* Authors: Ani Sinha <[email protected]>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*
|
|
*/
|
|
#ifndef VMLAUNCHUPDATE_H
|
|
#define VMLAUNCHUPDATE_H
|
|
|
|
#include "hw/core/qdev.h"
|
|
#include "qom/object.h"
|
|
#include "qemu/units.h"
|
|
#include "system/igvm-cfg.h"
|
|
#include "standard-headers/misc/vmlaunchupdate.h"
|
|
|
|
#define TYPE_VMLAUNCHUPDATE "vm-launch-update"
|
|
|
|
typedef struct VMLaunchUpdateState {
|
|
DeviceState parent_obj;
|
|
VMLaunchUpdate launch_update;
|
|
bool disabled;
|
|
bool host_igvm_on_reset;
|
|
ResettableState reset_state;
|
|
} VMLaunchUpdateState;
|
|
|
|
|
|
typedef struct VMLaunchUpdateStateClass {
|
|
ObjectClass parent_class;
|
|
} VMLaunchUpdateStateClass;
|
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VMLaunchUpdateState, VMLAUNCHUPDATE);
|
|
|
|
#endif
|