qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

erst.h (675B)


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