2 * ACPI Error Record Serialization Table, ERST, Implementation
4 * ACPI ERST introduced in ACPI 4.0, June 16, 2009.
5 * ACPI Platform Error Interfaces : Error Serialization
7 * Copyright (c) 2021 Oracle and/or its affiliates.
9 * SPDX-License-Identifier: GPL-2.0-or-later
11 #ifndef HW_ACPI_ERST_H
12 #define HW_ACPI_ERST_H
14 #include "hw/acpi/bios-linker-loader.h"
15 #include "qom/object.h"
17 void build_erst(GArray
*table_data
, BIOSLinker
*linker
, Object
*erst_dev
,
18 const char *oem_id
, const char *oem_table_id
);
20 #define TYPE_ACPI_ERST "acpi-erst"
22 /* returns NULL unless there is exactly one device */
23 static inline Object
*find_erst_dev(void)
25 return object_resolve_path_type("", TYPE_ACPI_ERST
, NULL
);