a27bd6c779
In my "build everything" tree, changing hw/qdev-properties.h triggers a recompile of some 2700 out of 6600 objects (not counting tests and objects that don't depend on qemu/osdep.h). Many places including hw/qdev-properties.h (directly or via hw/qdev.h) actually need only hw/qdev-core.h. Include hw/qdev-core.h there instead. hw/qdev.h is actually pointless: all it does is include hw/qdev-core.h and hw/qdev-properties.h, which in turn includes hw/qdev-core.h. Replace the remaining uses of hw/qdev.h by hw/qdev-properties.h. While there, delete a few superfluous inclusions of hw/qdev-core.h. Touching hw/qdev-properties.h now recompiles some 1200 objects. Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: "Daniel P. Berrangé" <berrange@redhat.com> Cc: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20190812052359.30071-22-armbru@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-core.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) */
|
|
} VmGenIdState;
|
|
|
|
/* returns NULL unless there is exactly one device */
|
|
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
|