ACPI: AGDI: Add support for Arm Generic Diagnostic Dump and Reset device

ANBZ: #514

cherry-picked from https://lore.kernel.org/linux-arm-kernel/20220215035553.102315-3-ilkka@os.amperecomputing.com/

ACPI for Arm Components 1.1 Platform Design Document v1.1 [0] specifices
Arm Generic Diagnostic Device Interface (AGDI). It allows an admin to
issue diagnostic dump and reset via an SDEI event or an interrupt.
This patch implements SDEI path.

[0] https://developer.arm.com/documentation/den0093/latest/

Signed-off-by: Ilkka Koskinen <ilkka@os.amperecomputing.com>
Signed-off-by: Jay Chen <jkchen@linux.alibaba.com>
Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Reviewed-by: luanshi <zhangliguang@linux.alibaba.com>
This commit is contained in:
Ilkka Koskinen 2022-02-14 19:55:53 -08:00 committed by Qiao Ma
parent 5ed44a1037
commit 7965512230
5 changed files with 77 additions and 0 deletions

View File

@ -9,3 +9,12 @@ config ACPI_IORT
config ACPI_GTDT
bool
config ACPI_AGDI
bool "Arm Generic Diagnostic Dump and Reset Device Interface"
depends on ARM_SDE_INTERFACE
help
Arm Generic Diagnostic Dump and Reset Device Interface (AGDI) is
a standard that enables issuing a non-maskable diagnostic dump and
reset command.
If set, the kernel parses AGDI table and listens for the command.

View File

@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_ACPI_IORT) += iort.o
obj-$(CONFIG_ACPI_AGDI) += agdi.o
obj-$(CONFIG_ACPI_GTDT) += gtdt.o

52
drivers/acpi/arm64/agdi.c Normal file
View File

@ -0,0 +1,52 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* This file implements handling of
* Arm Generic Diagnostic Dump and Reset Interface table (AGDI)
*
* Copyright (c) 2022, Ampere Computing LLC
*/
#define pr_fmt(fmt) "ACPI: AGDI: " fmt
#include <linux/acpi.h>
#include <linux/arm_sdei.h>
#include <linux/io.h>
#include <linux/kernel.h>
static int agdi_sdei_handler(u32 sdei_event, struct pt_regs *regs, void *arg)
{
nmi_panic(regs, "Arm Generic Diagnostic Dump and Reset SDEI event issued");
return 0;
}
void __init acpi_agdi_init(void)
{
struct acpi_table_agdi *agdi_table;
acpi_status status;
int sdei_event;
status = acpi_get_table(ACPI_SIG_AGDI, 0,
(struct acpi_table_header **) &agdi_table);
if (ACPI_FAILURE(status))
return;
if (agdi_table->flags & ACPI_AGDI_SIGNALING_MODE) {
pr_warn("Interrupt signaling is not supported");
acpi_put_table((struct acpi_table_header *)agdi_table);
return;
}
sdei_event = agdi_table->sdei_event;
acpi_put_table((struct acpi_table_header *)agdi_table);
if (sdei_event_register(sdei_event, agdi_sdei_handler, NULL)) {
pr_err("Failed to register for SDEI event %d", sdei_event);
return;
}
if (sdei_event_enable(sdei_event)) {
pr_err("Failed to enable SDEI event %d\n", sdei_event);
sdei_event_unregister(sdei_event);
return;
}
}

View File

@ -24,6 +24,7 @@
#include <asm/mpspec.h>
#include <linux/dmi.h>
#endif
#include <linux/acpi_agdi.h>
#include <linux/acpi_iort.h>
#include <linux/pci.h>
#include <acpi/apei.h>
@ -1261,6 +1262,7 @@ static int __init acpi_init(void)
acpi_wakeup_device_init();
acpi_debugger_init();
acpi_setup_sb_notify_handler();
acpi_agdi_init();
return 0;
}

13
include/linux/acpi_agdi.h Normal file
View File

@ -0,0 +1,13 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __ACPI_AGDI_H__
#define __ACPI_AGDI_H__
#include <linux/acpi.h>
#ifdef CONFIG_ACPI_AGDI
void __init acpi_agdi_init(void);
#else
static inline void acpi_agdi_init(void) {}
#endif
#endif /* __ACPI_AGDI_H__ */