[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v9 05/12] acpi/ghes: add a notifier to notify when error data is
|
From: |
Mauro Carvalho Chehab |
|
Subject: |
[PATCH v9 05/12] acpi/ghes: add a notifier to notify when error data is ready |
|
Date: |
Sun, 25 Aug 2024 05:46:00 +0200 |
Some error injection notify methods are async, like GPIO
notify. Add a notifier to be used when the error record is
ready to be sent to the guest OS.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
---
hw/acpi/ghes.c | 5 +++++
include/hw/acpi/ghes.h | 3 +++
2 files changed, 8 insertions(+)
diff --git a/hw/acpi/ghes.c b/hw/acpi/ghes.c
index 10ed9c0614ff..2b7103a678a1 100644
--- a/hw/acpi/ghes.c
+++ b/hw/acpi/ghes.c
@@ -402,6 +402,9 @@ void acpi_ghes_add_fw_cfg(AcpiGhesState *ags, FWCfgState *s,
ags->present = true;
}
+NotifierList acpi_generic_error_notifiers =
+ NOTIFIER_LIST_INITIALIZER(error_device_notifiers);
+
void ghes_record_cper_errors(const void *cper, size_t len,
uint16_t source_id, Error **errp)
{
@@ -492,6 +495,8 @@ void ghes_record_cper_errors(const void *cper, size_t len,
/* Write the generic error data entry into guest memory */
cpu_physical_memory_write(cper_addr, cper, len);
+
+ notifier_list_notify(&acpi_generic_error_notifiers, NULL);
}
int acpi_ghes_memory_errors(int source_id, uint64_t physical_address)
diff --git a/include/hw/acpi/ghes.h b/include/hw/acpi/ghes.h
index be53b7c53c91..b1ec9795270f 100644
--- a/include/hw/acpi/ghes.h
+++ b/include/hw/acpi/ghes.h
@@ -24,6 +24,9 @@
#include "hw/acpi/bios-linker-loader.h"
#include "qapi/error.h"
+#include "qemu/notify.h"
+
+extern NotifierList acpi_generic_error_notifiers;
/*
* Values for Hardware Error Notification Type field
--
2.46.0
- [PATCH v9 00/12] Add ACPI CPER firmware first error injection on ARM emulation, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 11/12] target/arm: add an experimental mpidr arm cpu property object, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 10/12] scripts/ghes_inject: add a script to generate GHES error inject, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 12/12] scripts/arm_processor_error.py: retrieve mpidr if not filled, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 03/12] acpi/ghes: rename etc/hardware_error file macros, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 05/12] acpi/ghes: add a notifier to notify when error data is ready,
Mauro Carvalho Chehab <=
- [PATCH v9 06/12] acpi/generic_event_device: add an APEI error device, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 09/12] docs: acpi_hest_ghes: fix documentation for CPER size, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 01/12] acpi/ghes: add a firmware file with HEST address, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 07/12] arm/virt: Wire up a GED error device for ACPI / GHES, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 04/12] acpi/ghes: better name GHES memory error function, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 02/12] acpi/ghes: rework the logic to handle HEST source ID, Mauro Carvalho Chehab, 2024/08/24
- [PATCH v9 08/12] qapi/acpi-hest: add an interface to do generic CPER error injection, Mauro Carvalho Chehab, 2024/08/24