]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
hw/riscv/virt: Add OEM_ID and OEM_TABLE_ID fields
authorSunil V L <sunilvl@ventanamicro.com>
Thu, 2 Mar 2023 09:12:05 +0000 (14:42 +0530)
committerPalmer Dabbelt <palmer@rivosinc.com>
Mon, 6 Mar 2023 19:35:02 +0000 (11:35 -0800)
ACPI needs OEM_ID and OEM_TABLE_ID for the machine. Add these fields
in the RISCVVirtState structure and initialize with default values.

Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
Reviewed-by: Bin Meng <bmeng@tinylab.org>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
Message-ID: <20230302091212.999767-2-sunilvl@ventanamicro.com>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
hw/riscv/virt.c
include/hw/riscv/virt.h

index 26eb81d03615298a77bedcefe51627f5d27995ff..5a059489b54f168fab153b8784ff8c2379de62b7 100644 (file)
@@ -49,6 +49,7 @@
 #include "hw/pci/pci.h"
 #include "hw/pci-host/gpex.h"
 #include "hw/display/ramfb.h"
+#include "hw/acpi/aml-build.h"
 
 /*
  * The virt machine physical address space used by some of the devices
@@ -1528,6 +1529,10 @@ static void virt_machine_init(MachineState *machine)
 
 static void virt_machine_instance_init(Object *obj)
 {
+    RISCVVirtState *s = RISCV_VIRT_MACHINE(obj);
+
+    s->oem_id = g_strndup(ACPI_BUILD_APPNAME6, 6);
+    s->oem_table_id = g_strndup(ACPI_BUILD_APPNAME8, 8);
 }
 
 static char *virt_get_aia_guests(Object *obj, Error **errp)
index b3d26135c0ac7f6c538d628540289658f85490aa..6c7885bf8938a7a7054fdf9a0ffbbfc9351919f6 100644 (file)
@@ -56,6 +56,8 @@ struct RISCVVirtState {
     bool have_aclint;
     RISCVVirtAIAType aia_type;
     int aia_guests;
+    char *oem_id;
+    char *oem_table_id;
 };
 
 enum {