mirror of
https://github.com/qemu/qemu.git
synced 2025-01-14 09:33:59 +08:00
f2a1ae45d8
The WRITE_POINTER linker/loader command that underlies VMGENID depends on commitbaf2d5bfba
("fw-cfg: support writeable blobs", 2017-01-12), which in turn depends on fw_cfg DMA. DMA for fw_cfg is enabled in 2.5+ machine types only (see commite6915b5f3a
, "fw_cfg: unbreak migration compatibility for 2.4 and earlier machines", 2016-02-18). Cc: "Michael S. Tsirkin" <mst@redhat.com> Cc: Ben Warren <ben@skyportsystems.com> Cc: Igor Mammedov <imammedo@redhat.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Ben Warren <ben@skyportsystems.com <mailto:ben@skyportsystems.com>> Reviewed-by: Igor Mammedov <imammedo@redhat.com>
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
#ifndef ACPI_VMGENID_H
|
|
#define ACPI_VMGENID_H
|
|
|
|
#include "hw/acpi/bios-linker-loader.h"
|
|
#include "hw/qdev.h"
|
|
#include "qemu/uuid.h"
|
|
|
|
#define VMGENID_DEVICE "vmgenid"
|
|
#define VMGENID_GUID "guid"
|
|
#define VMGENID_GUID_FW_CFG_FILE "etc/vmgenid_guid"
|
|
#define VMGENID_ADDR_FW_CFG_FILE "etc/vmgenid_addr"
|
|
|
|
#define VMGENID_FW_CFG_SIZE 4096 /* Occupy a page of memory */
|
|
#define VMGENID_GUID_OFFSET 40 /* allow space for
|
|
* OVMF SDT Header Probe Supressor
|
|
*/
|
|
|
|
#define VMGENID(obj) OBJECT_CHECK(VmGenIdState, (obj), VMGENID_DEVICE)
|
|
|
|
typedef struct VmGenIdState {
|
|
DeviceClass parent_obj;
|
|
QemuUUID guid; /* The 128-bit GUID seen by the guest */
|
|
uint8_t vmgenid_addr_le[8]; /* Address of the GUID (little-endian) */
|
|
bool write_pointer_available;
|
|
} VmGenIdState;
|
|
|
|
static inline Object *find_vmgenid_dev(void)
|
|
{
|
|
return object_resolve_path_type("", VMGENID_DEVICE, NULL);
|
|
}
|
|
|
|
void vmgenid_build_acpi(VmGenIdState *vms, GArray *table_data, GArray *guid,
|
|
BIOSLinker *linker);
|
|
void vmgenid_add_fw_cfg(VmGenIdState *vms, FWCfgState *s, GArray *guid);
|
|
|
|
#endif
|