1*aa16508fSDongjiu Geng /* 2*aa16508fSDongjiu Geng * Support for generating APEI tables and recording CPER for Guests 3*aa16508fSDongjiu Geng * 4*aa16508fSDongjiu Geng * Copyright (c) 2020 HUAWEI TECHNOLOGIES CO., LTD. 5*aa16508fSDongjiu Geng * 6*aa16508fSDongjiu Geng * Author: Dongjiu Geng <gengdongjiu@huawei.com> 7*aa16508fSDongjiu Geng * 8*aa16508fSDongjiu Geng * This program is free software; you can redistribute it and/or modify 9*aa16508fSDongjiu Geng * it under the terms of the GNU General Public License as published by 10*aa16508fSDongjiu Geng * the Free Software Foundation; either version 2 of the License, or 11*aa16508fSDongjiu Geng * (at your option) any later version. 12*aa16508fSDongjiu Geng 13*aa16508fSDongjiu Geng * This program is distributed in the hope that it will be useful, 14*aa16508fSDongjiu Geng * but WITHOUT ANY WARRANTY; without even the implied warranty of 15*aa16508fSDongjiu Geng * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16*aa16508fSDongjiu Geng * GNU General Public License for more details. 17*aa16508fSDongjiu Geng 18*aa16508fSDongjiu Geng * You should have received a copy of the GNU General Public License along 19*aa16508fSDongjiu Geng * with this program; if not, see <http://www.gnu.org/licenses/>. 20*aa16508fSDongjiu Geng */ 21*aa16508fSDongjiu Geng 22*aa16508fSDongjiu Geng #ifndef ACPI_GHES_H 23*aa16508fSDongjiu Geng #define ACPI_GHES_H 24*aa16508fSDongjiu Geng 25*aa16508fSDongjiu Geng #include "hw/acpi/bios-linker-loader.h" 26*aa16508fSDongjiu Geng 27*aa16508fSDongjiu Geng void build_ghes_error_table(GArray *hardware_errors, BIOSLinker *linker); 28*aa16508fSDongjiu Geng #endif 29