* [PATCH V2 0/2] CPER ARM error information parsing
@ 2017-12-07 19:25 Tyler Baicar
[not found] ` <1512674727-25770-1-git-send-email-tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Tyler Baicar @ 2017-12-07 19:25 UTC (permalink / raw)
To: matt-mF/unelCI9GS6iBeEJttW/XRex20P6io,
ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A, will.deacon-5wv7dgnIgG8,
james.morse-5wv7dgnIgG8, andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA,
linux-efi-u79uwXL29TY76Z2rM5mHXA
Cc: Tyler Baicar
Break out the ARM CPER code into a new file so it's separate from the main of
the CPER code.
Add parsing for the ARM error information value based on UEFI 2.7 spec tables
263-265.
Tyler Baicar (2):
efi: move ARM CPER code to new file
efi: parse ARM error information value
drivers/firmware/efi/Kconfig | 5 +
drivers/firmware/efi/Makefile | 1 +
drivers/firmware/efi/cper-arm.c | 356 ++++++++++++++++++++++++++++++++++++++++
drivers/firmware/efi/cper.c | 123 --------------
include/linux/cper.h | 53 ++++++
5 files changed, 415 insertions(+), 123 deletions(-)
create mode 100644 drivers/firmware/efi/cper-arm.c
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH V2 1/2] efi: move ARM CPER code to new file
[not found] ` <1512674727-25770-1-git-send-email-tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
@ 2017-12-07 19:25 ` Tyler Baicar
[not found] ` <1512674727-25770-2-git-send-email-tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-12-07 19:25 ` [PATCH V2 2/2] efi: parse ARM error information value Tyler Baicar
1 sibling, 1 reply; 9+ messages in thread
From: Tyler Baicar @ 2017-12-07 19:25 UTC (permalink / raw)
To: matt-mF/unelCI9GS6iBeEJttW/XRex20P6io,
ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A, will.deacon-5wv7dgnIgG8,
james.morse-5wv7dgnIgG8, andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA,
linux-efi-u79uwXL29TY76Z2rM5mHXA
Cc: Tyler Baicar
The ARM CPER code is currently mixed in with the other CPER code. Move it
to a new file to separate it from the rest of the CPER code.
Signed-off-by: Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
---
drivers/firmware/efi/Kconfig | 5 ++
drivers/firmware/efi/Makefile | 1 +
drivers/firmware/efi/cper-arm.c | 147 ++++++++++++++++++++++++++++++++++++++++
drivers/firmware/efi/cper.c | 123 ---------------------------------
include/linux/cper.h | 9 +++
5 files changed, 162 insertions(+), 123 deletions(-)
create mode 100644 drivers/firmware/efi/cper-arm.c
diff --git a/drivers/firmware/efi/Kconfig b/drivers/firmware/efi/Kconfig
index 2b4c39f..aab108e 100644
--- a/drivers/firmware/efi/Kconfig
+++ b/drivers/firmware/efi/Kconfig
@@ -166,6 +166,11 @@ endmenu
config UEFI_CPER
bool
+config UEFI_CPER_ARM
+ bool
+ depends on UEFI_CPER && ( ARM || ARM64 )
+ default y
+
config EFI_DEV_PATH_PARSER
bool
depends on ACPI
diff --git a/drivers/firmware/efi/Makefile b/drivers/firmware/efi/Makefile
index 269501d..a3e73d6 100644
--- a/drivers/firmware/efi/Makefile
+++ b/drivers/firmware/efi/Makefile
@@ -30,3 +30,4 @@ arm-obj-$(CONFIG_EFI) := arm-init.o arm-runtime.o
obj-$(CONFIG_ARM) += $(arm-obj-y)
obj-$(CONFIG_ARM64) += $(arm-obj-y)
obj-$(CONFIG_EFI_CAPSULE_LOADER) += capsule-loader.o
+obj-$(CONFIG_UEFI_CPER_ARM) += cper-arm.o
diff --git a/drivers/firmware/efi/cper-arm.c b/drivers/firmware/efi/cper-arm.c
new file mode 100644
index 0000000..1b56014
--- /dev/null
+++ b/drivers/firmware/efi/cper-arm.c
@@ -0,0 +1,147 @@
+/*
+ * UEFI Common Platform Error Record (CPER) support
+ *
+ * Copyright (C) 2017, The Linux Foundation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License version
+ * 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/time.h>
+#include <linux/cper.h>
+#include <linux/dmi.h>
+#include <linux/acpi.h>
+#include <linux/pci.h>
+#include <linux/aer.h>
+#include <linux/printk.h>
+#include <linux/bcd.h>
+#include <acpi/ghes.h>
+#include <ras/ras_event.h>
+
+#define INDENT_SP " "
+
+static const char * const arm_reg_ctx_strs[] = {
+ "AArch32 general purpose registers",
+ "AArch32 EL1 context registers",
+ "AArch32 EL2 context registers",
+ "AArch32 secure context registers",
+ "AArch64 general purpose registers",
+ "AArch64 EL1 context registers",
+ "AArch64 EL2 context registers",
+ "AArch64 EL3 context registers",
+ "Misc. system register structure",
+};
+
+void cper_print_proc_arm(const char *pfx,
+ const struct cper_sec_proc_arm *proc)
+{
+ int i, len, max_ctx_type;
+ struct cper_arm_err_info *err_info;
+ struct cper_arm_ctx_info *ctx_info;
+ char newpfx[64];
+
+ printk("%sMIDR: 0x%016llx\n", pfx, proc->midr);
+
+ len = proc->section_length - (sizeof(*proc) +
+ proc->err_info_num * (sizeof(*err_info)));
+ if (len < 0) {
+ printk("%ssection length: %d\n", pfx, proc->section_length);
+ printk("%ssection length is too small\n", pfx);
+ printk("%sfirmware-generated error record is incorrect\n", pfx);
+ printk("%sERR_INFO_NUM is %d\n", pfx, proc->err_info_num);
+ return;
+ }
+
+ if (proc->validation_bits & CPER_ARM_VALID_MPIDR)
+ printk("%sMultiprocessor Affinity Register (MPIDR): 0x%016llx\n",
+ pfx, proc->mpidr);
+
+ if (proc->validation_bits & CPER_ARM_VALID_AFFINITY_LEVEL)
+ printk("%serror affinity level: %d\n", pfx,
+ proc->affinity_level);
+
+ if (proc->validation_bits & CPER_ARM_VALID_RUNNING_STATE) {
+ printk("%srunning state: 0x%x\n", pfx, proc->running_state);
+ printk("%sPower State Coordination Interface state: %d\n",
+ pfx, proc->psci_state);
+ }
+
+ snprintf(newpfx, sizeof(newpfx), "%s%s", pfx, INDENT_SP);
+
+ err_info = (struct cper_arm_err_info *)(proc + 1);
+ for (i = 0; i < proc->err_info_num; i++) {
+ printk("%sError info structure %d:\n", pfx, i);
+
+ printk("%snum errors: %d\n", pfx, err_info->multiple_error + 1);
+
+ if (err_info->validation_bits & CPER_ARM_INFO_VALID_FLAGS) {
+ if (err_info->flags & CPER_ARM_INFO_FLAGS_FIRST)
+ printk("%sfirst error captured\n", newpfx);
+ if (err_info->flags & CPER_ARM_INFO_FLAGS_LAST)
+ printk("%slast error captured\n", newpfx);
+ if (err_info->flags & CPER_ARM_INFO_FLAGS_PROPAGATED)
+ printk("%spropagated error captured\n",
+ newpfx);
+ if (err_info->flags & CPER_ARM_INFO_FLAGS_OVERFLOW)
+ printk("%soverflow occurred, error info is incomplete\n",
+ newpfx);
+ }
+
+ printk("%serror_type: %d, %s\n", newpfx, err_info->type,
+ err_info->type < ARRAY_SIZE(proc_error_type_strs) ?
+ proc_error_type_strs[err_info->type] : "unknown");
+ if (err_info->validation_bits & CPER_ARM_INFO_VALID_ERR_INFO)
+ printk("%serror_info: 0x%016llx\n", newpfx,
+ err_info->error_info);
+ if (err_info->validation_bits & CPER_ARM_INFO_VALID_VIRT_ADDR)
+ printk("%svirtual fault address: 0x%016llx\n",
+ newpfx, err_info->virt_fault_addr);
+ if (err_info->validation_bits & CPER_ARM_INFO_VALID_PHYSICAL_ADDR)
+ printk("%sphysical fault address: 0x%016llx\n",
+ newpfx, err_info->physical_fault_addr);
+ err_info += 1;
+ }
+
+ ctx_info = (struct cper_arm_ctx_info *)err_info;
+ max_ctx_type = ARRAY_SIZE(arm_reg_ctx_strs) - 1;
+ for (i = 0; i < proc->context_info_num; i++) {
+ int size = sizeof(*ctx_info) + ctx_info->size;
+
+ printk("%sContext info structure %d:\n", pfx, i);
+ if (len < size) {
+ printk("%ssection length is too small\n", newpfx);
+ printk("%sfirmware-generated error record is incorrect\n", pfx);
+ return;
+ }
+ if (ctx_info->type > max_ctx_type) {
+ printk("%sInvalid context type: %d (max: %d)\n",
+ newpfx, ctx_info->type, max_ctx_type);
+ return;
+ }
+ printk("%sregister context type: %s\n", newpfx,
+ arm_reg_ctx_strs[ctx_info->type]);
+ print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4,
+ (ctx_info + 1), ctx_info->size, 0);
+ len -= size;
+ ctx_info = (struct cper_arm_ctx_info *)((long)ctx_info + size);
+ }
+
+ if (len > 0) {
+ printk("%sVendor specific error info has %u bytes:\n", pfx,
+ len);
+ print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4, ctx_info,
+ len, true);
+ }
+}
diff --git a/drivers/firmware/efi/cper.c b/drivers/firmware/efi/cper.c
index d2fcafc..86d51d6 100644
--- a/drivers/firmware/efi/cper.c
+++ b/drivers/firmware/efi/cper.c
@@ -122,13 +122,6 @@ void cper_print_bits(const char *pfx, unsigned int bits,
"ARM A64",
};
-static const char * const proc_error_type_strs[] = {
- "cache error",
- "TLB error",
- "bus error",
- "micro-architectural error",
-};
-
static const char * const proc_op_strs[] = {
"unknown or generic",
"data read",
@@ -188,122 +181,6 @@ static void cper_print_proc_generic(const char *pfx,
printk("%s""IP: 0x%016llx\n", pfx, proc->ip);
}
-#if defined(CONFIG_ARM64) || defined(CONFIG_ARM)
-static const char * const arm_reg_ctx_strs[] = {
- "AArch32 general purpose registers",
- "AArch32 EL1 context registers",
- "AArch32 EL2 context registers",
- "AArch32 secure context registers",
- "AArch64 general purpose registers",
- "AArch64 EL1 context registers",
- "AArch64 EL2 context registers",
- "AArch64 EL3 context registers",
- "Misc. system register structure",
-};
-
-static void cper_print_proc_arm(const char *pfx,
- const struct cper_sec_proc_arm *proc)
-{
- int i, len, max_ctx_type;
- struct cper_arm_err_info *err_info;
- struct cper_arm_ctx_info *ctx_info;
- char newpfx[64];
-
- printk("%sMIDR: 0x%016llx\n", pfx, proc->midr);
-
- len = proc->section_length - (sizeof(*proc) +
- proc->err_info_num * (sizeof(*err_info)));
- if (len < 0) {
- printk("%ssection length: %d\n", pfx, proc->section_length);
- printk("%ssection length is too small\n", pfx);
- printk("%sfirmware-generated error record is incorrect\n", pfx);
- printk("%sERR_INFO_NUM is %d\n", pfx, proc->err_info_num);
- return;
- }
-
- if (proc->validation_bits & CPER_ARM_VALID_MPIDR)
- printk("%sMultiprocessor Affinity Register (MPIDR): 0x%016llx\n",
- pfx, proc->mpidr);
-
- if (proc->validation_bits & CPER_ARM_VALID_AFFINITY_LEVEL)
- printk("%serror affinity level: %d\n", pfx,
- proc->affinity_level);
-
- if (proc->validation_bits & CPER_ARM_VALID_RUNNING_STATE) {
- printk("%srunning state: 0x%x\n", pfx, proc->running_state);
- printk("%sPower State Coordination Interface state: %d\n",
- pfx, proc->psci_state);
- }
-
- snprintf(newpfx, sizeof(newpfx), "%s%s", pfx, INDENT_SP);
-
- err_info = (struct cper_arm_err_info *)(proc + 1);
- for (i = 0; i < proc->err_info_num; i++) {
- printk("%sError info structure %d:\n", pfx, i);
-
- printk("%snum errors: %d\n", pfx, err_info->multiple_error + 1);
-
- if (err_info->validation_bits & CPER_ARM_INFO_VALID_FLAGS) {
- if (err_info->flags & CPER_ARM_INFO_FLAGS_FIRST)
- printk("%sfirst error captured\n", newpfx);
- if (err_info->flags & CPER_ARM_INFO_FLAGS_LAST)
- printk("%slast error captured\n", newpfx);
- if (err_info->flags & CPER_ARM_INFO_FLAGS_PROPAGATED)
- printk("%spropagated error captured\n",
- newpfx);
- if (err_info->flags & CPER_ARM_INFO_FLAGS_OVERFLOW)
- printk("%soverflow occurred, error info is incomplete\n",
- newpfx);
- }
-
- printk("%serror_type: %d, %s\n", newpfx, err_info->type,
- err_info->type < ARRAY_SIZE(proc_error_type_strs) ?
- proc_error_type_strs[err_info->type] : "unknown");
- if (err_info->validation_bits & CPER_ARM_INFO_VALID_ERR_INFO)
- printk("%serror_info: 0x%016llx\n", newpfx,
- err_info->error_info);
- if (err_info->validation_bits & CPER_ARM_INFO_VALID_VIRT_ADDR)
- printk("%svirtual fault address: 0x%016llx\n",
- newpfx, err_info->virt_fault_addr);
- if (err_info->validation_bits & CPER_ARM_INFO_VALID_PHYSICAL_ADDR)
- printk("%sphysical fault address: 0x%016llx\n",
- newpfx, err_info->physical_fault_addr);
- err_info += 1;
- }
-
- ctx_info = (struct cper_arm_ctx_info *)err_info;
- max_ctx_type = ARRAY_SIZE(arm_reg_ctx_strs) - 1;
- for (i = 0; i < proc->context_info_num; i++) {
- int size = sizeof(*ctx_info) + ctx_info->size;
-
- printk("%sContext info structure %d:\n", pfx, i);
- if (len < size) {
- printk("%ssection length is too small\n", newpfx);
- printk("%sfirmware-generated error record is incorrect\n", pfx);
- return;
- }
- if (ctx_info->type > max_ctx_type) {
- printk("%sInvalid context type: %d (max: %d)\n",
- newpfx, ctx_info->type, max_ctx_type);
- return;
- }
- printk("%sregister context type: %s\n", newpfx,
- arm_reg_ctx_strs[ctx_info->type]);
- print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4,
- (ctx_info + 1), ctx_info->size, 0);
- len -= size;
- ctx_info = (struct cper_arm_ctx_info *)((long)ctx_info + size);
- }
-
- if (len > 0) {
- printk("%sVendor specific error info has %u bytes:\n", pfx,
- len);
- print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4, ctx_info,
- len, true);
- }
-}
-#endif
-
static const char * const mem_err_type_strs[] = {
"unknown",
"no error",
diff --git a/include/linux/cper.h b/include/linux/cper.h
index 723e952..0a2d5c5 100644
--- a/include/linux/cper.h
+++ b/include/linux/cper.h
@@ -494,6 +494,13 @@ struct cper_sec_pcie {
/* Reset to default packing */
#pragma pack()
+static const char * const proc_error_type_strs[] = {
+ "cache error",
+ "TLB error",
+ "bus error",
+ "micro-architectural error",
+};
+
u64 cper_next_record_id(void);
const char *cper_severity_str(unsigned int);
const char *cper_mem_err_type_str(unsigned int);
@@ -503,5 +510,7 @@ void cper_mem_err_pack(const struct cper_sec_mem_err *,
struct cper_mem_err_compact *);
const char *cper_mem_err_unpack(struct trace_seq *,
struct cper_mem_err_compact *);
+void cper_print_proc_arm(const char *pfx,
+ const struct cper_sec_proc_arm *proc);
#endif
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH V2 2/2] efi: parse ARM error information value
[not found] ` <1512674727-25770-1-git-send-email-tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-12-07 19:25 ` [PATCH V2 1/2] efi: move ARM CPER code to new file Tyler Baicar
@ 2017-12-07 19:25 ` Tyler Baicar
1 sibling, 0 replies; 9+ messages in thread
From: Tyler Baicar @ 2017-12-07 19:25 UTC (permalink / raw)
To: matt-mF/unelCI9GS6iBeEJttW/XRex20P6io,
ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A, will.deacon-5wv7dgnIgG8,
james.morse-5wv7dgnIgG8, andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA,
linux-efi-u79uwXL29TY76Z2rM5mHXA
Cc: Tyler Baicar
ARM errors just print out the error information value, then the
value needs to be manually decoded as per the UEFI spec. Add
decoding of the ARM error information value so that the kernel
logs capture all of the valid information at first glance.
ARM error information value decoding is captured in UEFI 2.7
spec tables 263-265.
Signed-off-by: Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org
---
drivers/firmware/efi/cper-arm.c | 213 +++++++++++++++++++++++++++++++++++++++-
include/linux/cper.h | 44 +++++++++
2 files changed, 255 insertions(+), 2 deletions(-)
diff --git a/drivers/firmware/efi/cper-arm.c b/drivers/firmware/efi/cper-arm.c
index 1b56014..25cc553 100644
--- a/drivers/firmware/efi/cper-arm.c
+++ b/drivers/firmware/efi/cper-arm.c
@@ -44,13 +44,218 @@
"Misc. system register structure",
};
+static const char * const arm_err_trans_type_strs[] = {
+ "Instruction",
+ "Data Access",
+ "Generic",
+};
+
+static const char * const arm_bus_err_op_strs[] = {
+ "Generic error (type cannot be determined)",
+ "Generic read (type of instruction or data request cannot be determined)",
+ "Generic write (type of instruction of data request cannot be determined)",
+ "Data read",
+ "Data write",
+ "Instruction fetch",
+ "Prefetch",
+};
+
+static const char * const arm_cache_err_op_strs[] = {
+ "Generic error (type cannot be determined)",
+ "Generic read (type of instruction or data request cannot be determined)",
+ "Generic write (type of instruction of data request cannot be determined)",
+ "Data read",
+ "Data write",
+ "Instruction fetch",
+ "Prefetch",
+ "Eviction",
+ "Snooping (processor initiated a cache snoop that resulted in an error)",
+ "Snooped (processor raised a cache error caused by another processor or device snooping its cache)",
+ "Management",
+};
+
+static const char * const arm_tlb_err_op_strs[] = {
+ "Generic error (type cannot be determined)",
+ "Generic read (type of instruction or data request cannot be determined)",
+ "Generic write (type of instruction of data request cannot be determined)",
+ "Data read",
+ "Data write",
+ "Instruction fetch",
+ "Prefetch",
+ "Local management operation (processor initiated a TLB management operation that resulted in an error)",
+ "External management operation (processor raised a TLB error caused by another processor or device broadcasting TLB operations)",
+};
+
+static const char * const arm_bus_err_part_type_strs[] = {
+ "Local processor originated request",
+ "Local processor responded to request",
+ "Local processor observed",
+ "Generic",
+};
+
+static const char * const arm_bus_err_addr_space_strs[] = {
+ "External Memory Access",
+ "Internal Memory Access",
+ "Unknown",
+ "Device Memory Access",
+};
+
+static void cper_print_arm_err_info(const char *pfx, u32 type,
+ u64 error_info)
+{
+ u8 trans_type, op_type, level, participation_type, address_space;
+ u16 mem_attributes;
+ bool proc_context_corrupt, corrected, precise_pc, restartable_pc;
+ bool time_out, access_mode;
+
+ /* If the type is unknown, bail. */
+ if (type > CPER_ARM_MAX_TYPE)
+ return;
+
+ /*
+ * Vendor type errors have error information values that are vendor
+ * specific.
+ */
+ if (type == CPER_ARM_VENDOR_ERROR)
+ return;
+
+ if (error_info & CPER_ARM_ERR_VALID_TRANSACTION_TYPE) {
+ trans_type = ((error_info >> CPER_ARM_ERR_TRANSACTION_SHIFT)
+ & CPER_ARM_ERR_TRANSACTION_MASK);
+ if (trans_type < ARRAY_SIZE(arm_err_trans_type_strs)) {
+ printk("%stransaction type: %s\n", pfx,
+ arm_err_trans_type_strs[trans_type]);
+ }
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_OPERATION_TYPE) {
+ op_type = ((error_info >> CPER_ARM_ERR_OPERATION_SHIFT)
+ & CPER_ARM_ERR_OPERATION_MASK);
+ switch (type) {
+ case CPER_ARM_CACHE_ERROR:
+ if (op_type < ARRAY_SIZE(arm_cache_err_op_strs)) {
+ printk("%soperation type: %s\n", pfx,
+ arm_cache_err_op_strs[op_type]);
+ }
+ break;
+ case CPER_ARM_TLB_ERROR:
+ if (op_type < ARRAY_SIZE(arm_tlb_err_op_strs)) {
+ printk("%soperation type: %s\n", pfx,
+ arm_tlb_err_op_strs[op_type]);
+ }
+ break;
+ case CPER_ARM_BUS_ERROR:
+ if (op_type < ARRAY_SIZE(arm_bus_err_op_strs)) {
+ printk("%soperation type: %s\n", pfx,
+ arm_bus_err_op_strs[op_type]);
+ }
+ break;
+ }
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_LEVEL) {
+ level = ((error_info >> CPER_ARM_ERR_LEVEL_SHIFT)
+ & CPER_ARM_ERR_LEVEL_MASK);
+ switch (type) {
+ case CPER_ARM_CACHE_ERROR:
+ printk("%scache level: %d\n", pfx, level);
+ break;
+ case CPER_ARM_TLB_ERROR:
+ printk("%sTLB level: %d\n", pfx, level);
+ break;
+ case CPER_ARM_BUS_ERROR:
+ printk("%saffinity level at which the bus error occurred: %d\n",
+ pfx, level);
+ break;
+ }
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_PROC_CONTEXT_CORRUPT) {
+ proc_context_corrupt = ((error_info >> CPER_ARM_ERR_PC_CORRUPT_SHIFT)
+ & CPER_ARM_ERR_PC_CORRUPT_MASK);
+ if (proc_context_corrupt)
+ printk("%sprocessor context corrupted\n", pfx);
+ else
+ printk("%sprocessor context not corrupted\n", pfx);
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_CORRECTED) {
+ corrected = ((error_info >> CPER_ARM_ERR_CORRECTED_SHIFT)
+ & CPER_ARM_ERR_CORRECTED_MASK);
+ if (corrected)
+ printk("%sthe error has been corrected\n", pfx);
+ else
+ printk("%sthe error has not been corrected\n", pfx);
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_PRECISE_PC) {
+ precise_pc = ((error_info >> CPER_ARM_ERR_PRECISE_PC_SHIFT)
+ & CPER_ARM_ERR_PRECISE_PC_MASK);
+ if (precise_pc)
+ printk("%sPC is precise\n", pfx);
+ else
+ printk("%sPC is imprecise\n", pfx);
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_RESTARTABLE_PC) {
+ restartable_pc = ((error_info >> CPER_ARM_ERR_RESTARTABLE_PC_SHIFT)
+ & CPER_ARM_ERR_RESTARTABLE_PC_MASK);
+ if (restartable_pc)
+ printk("%sProgram execution can be restarted reliably at the PC associated with the error.\n", pfx);
+ }
+
+ /* The rest of the fields are specific to bus errors */
+ if (type != CPER_ARM_BUS_ERROR)
+ return;
+
+ if (error_info & CPER_ARM_ERR_VALID_PARTICIPATION_TYPE) {
+ participation_type = ((error_info >> CPER_ARM_ERR_PARTICIPATION_TYPE_SHIFT)
+ & CPER_ARM_ERR_PARTICIPATION_TYPE_MASK);
+ if (participation_type < ARRAY_SIZE(arm_bus_err_part_type_strs)) {
+ printk("%sparticipation type: %s\n", pfx,
+ arm_bus_err_part_type_strs[participation_type]);
+ }
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_TIME_OUT) {
+ time_out = ((error_info >> CPER_ARM_ERR_TIME_OUT_SHIFT)
+ & CPER_ARM_ERR_TIME_OUT_MASK);
+ if (time_out)
+ printk("%srequest timed out\n", pfx);
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_ADDRESS_SPACE) {
+ address_space = ((error_info >> CPER_ARM_ERR_ADDRESS_SPACE_SHIFT)
+ & CPER_ARM_ERR_ADDRESS_SPACE_MASK);
+ if (address_space < ARRAY_SIZE(arm_bus_err_addr_space_strs)) {
+ printk("%saddress space: %s\n", pfx,
+ arm_bus_err_addr_space_strs[address_space]);
+ }
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_MEM_ATTRIBUTES) {
+ mem_attributes = ((error_info >> CPER_ARM_ERR_MEM_ATTRIBUTES_SHIFT)
+ & CPER_ARM_ERR_MEM_ATTRIBUTES_MASK);
+ printk("%smemory access attributes:0x%x\n", pfx, mem_attributes);
+ }
+
+ if (error_info & CPER_ARM_ERR_VALID_ACCESS_MODE) {
+ access_mode = ((error_info >> CPER_ARM_ERR_ACCESS_MODE_SHIFT)
+ & CPER_ARM_ERR_ACCESS_MODE_MASK);
+ if (access_mode)
+ printk("%saccess mode: normal\n", pfx);
+ else
+ printk("%saccess mode: secure\n", pfx);
+ }
+}
+
void cper_print_proc_arm(const char *pfx,
const struct cper_sec_proc_arm *proc)
{
int i, len, max_ctx_type;
struct cper_arm_err_info *err_info;
struct cper_arm_ctx_info *ctx_info;
- char newpfx[64];
+ char newpfx[64], infopfx[64];
printk("%sMIDR: 0x%016llx\n", pfx, proc->midr);
@@ -102,9 +307,13 @@ void cper_print_proc_arm(const char *pfx,
printk("%serror_type: %d, %s\n", newpfx, err_info->type,
err_info->type < ARRAY_SIZE(proc_error_type_strs) ?
proc_error_type_strs[err_info->type] : "unknown");
- if (err_info->validation_bits & CPER_ARM_INFO_VALID_ERR_INFO)
+ if (err_info->validation_bits & CPER_ARM_INFO_VALID_ERR_INFO) {
printk("%serror_info: 0x%016llx\n", newpfx,
err_info->error_info);
+ snprintf(infopfx, sizeof(infopfx), "%s%s", newpfx, INDENT_SP);
+ cper_print_arm_err_info(infopfx, err_info->type,
+ err_info->error_info);
+ }
if (err_info->validation_bits & CPER_ARM_INFO_VALID_VIRT_ADDR)
printk("%svirtual fault address: 0x%016llx\n",
newpfx, err_info->virt_fault_addr);
diff --git a/include/linux/cper.h b/include/linux/cper.h
index 0a2d5c5..a8fee95 100644
--- a/include/linux/cper.h
+++ b/include/linux/cper.h
@@ -275,6 +275,50 @@ enum {
#define CPER_ARM_INFO_FLAGS_PROPAGATED BIT(2)
#define CPER_ARM_INFO_FLAGS_OVERFLOW BIT(3)
+#define CPER_ARM_CACHE_ERROR 0
+#define CPER_ARM_TLB_ERROR 1
+#define CPER_ARM_BUS_ERROR 2
+#define CPER_ARM_VENDOR_ERROR 3
+#define CPER_ARM_MAX_TYPE CPER_ARM_VENDOR_ERROR
+
+#define CPER_ARM_ERR_VALID_TRANSACTION_TYPE BIT(0)
+#define CPER_ARM_ERR_VALID_OPERATION_TYPE BIT(1)
+#define CPER_ARM_ERR_VALID_LEVEL BIT(2)
+#define CPER_ARM_ERR_VALID_PROC_CONTEXT_CORRUPT BIT(3)
+#define CPER_ARM_ERR_VALID_CORRECTED BIT(4)
+#define CPER_ARM_ERR_VALID_PRECISE_PC BIT(5)
+#define CPER_ARM_ERR_VALID_RESTARTABLE_PC BIT(6)
+#define CPER_ARM_ERR_VALID_PARTICIPATION_TYPE BIT(7)
+#define CPER_ARM_ERR_VALID_TIME_OUT BIT(8)
+#define CPER_ARM_ERR_VALID_ADDRESS_SPACE BIT(9)
+#define CPER_ARM_ERR_VALID_MEM_ATTRIBUTES BIT(10)
+#define CPER_ARM_ERR_VALID_ACCESS_MODE BIT(11)
+
+#define CPER_ARM_ERR_TRANSACTION_SHIFT 16
+#define CPER_ARM_ERR_TRANSACTION_MASK GENMASK(1,0)
+#define CPER_ARM_ERR_OPERATION_SHIFT 18
+#define CPER_ARM_ERR_OPERATION_MASK GENMASK(3,0)
+#define CPER_ARM_ERR_LEVEL_SHIFT 22
+#define CPER_ARM_ERR_LEVEL_MASK GENMASK(2,0)
+#define CPER_ARM_ERR_PC_CORRUPT_SHIFT 25
+#define CPER_ARM_ERR_PC_CORRUPT_MASK GENMASK(0,0)
+#define CPER_ARM_ERR_CORRECTED_SHIFT 26
+#define CPER_ARM_ERR_CORRECTED_MASK GENMASK(0,0)
+#define CPER_ARM_ERR_PRECISE_PC_SHIFT 27
+#define CPER_ARM_ERR_PRECISE_PC_MASK GENMASK(0,0)
+#define CPER_ARM_ERR_RESTARTABLE_PC_SHIFT 28
+#define CPER_ARM_ERR_RESTARTABLE_PC_MASK GENMASK(0,0)
+#define CPER_ARM_ERR_PARTICIPATION_TYPE_SHIFT 29
+#define CPER_ARM_ERR_PARTICIPATION_TYPE_MASK GENMASK(1,0)
+#define CPER_ARM_ERR_TIME_OUT_SHIFT 31
+#define CPER_ARM_ERR_TIME_OUT_MASK GENMASK(0,0)
+#define CPER_ARM_ERR_ADDRESS_SPACE_SHIFT 32
+#define CPER_ARM_ERR_ADDRESS_SPACE_MASK GENMASK(1,0)
+#define CPER_ARM_ERR_MEM_ATTRIBUTES_SHIFT 34
+#define CPER_ARM_ERR_MEM_ATTRIBUTES_MASK GENMASK(8,0)
+#define CPER_ARM_ERR_ACCESS_MODE_SHIFT 43
+#define CPER_ARM_ERR_ACCESS_MODE_MASK GENMASK(0,0)
+
/*
* All tables and structs must be byte-packed to match CPER
* specification, since the tables are provided by the system BIOS
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH V2 1/2] efi: move ARM CPER code to new file
[not found] ` <1512674727-25770-2-git-send-email-tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
@ 2017-12-07 19:38 ` Ard Biesheuvel
[not found] ` <CAKv+Gu_kM1NLWcOtQSEwEVnncBbrgJ5MP4VrYQVHBoCwSf_FRQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Ard Biesheuvel @ 2017-12-07 19:38 UTC (permalink / raw)
To: Tyler Baicar
Cc: Matt Fleming, Will Deacon, James Morse, Andy Shevchenko,
linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Hi Tyler,
On 7 December 2017 at 19:25, Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org> wrote:
> The ARM CPER code is currently mixed in with the other CPER code. Move it
> to a new file to separate it from the rest of the CPER code.
>
> Signed-off-by: Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
> ---
> drivers/firmware/efi/Kconfig | 5 ++
> drivers/firmware/efi/Makefile | 1 +
> drivers/firmware/efi/cper-arm.c | 147 ++++++++++++++++++++++++++++++++++++++++
> drivers/firmware/efi/cper.c | 123 ---------------------------------
> include/linux/cper.h | 9 +++
> 5 files changed, 162 insertions(+), 123 deletions(-)
> create mode 100644 drivers/firmware/efi/cper-arm.c
>
> diff --git a/drivers/firmware/efi/Kconfig b/drivers/firmware/efi/Kconfig
> index 2b4c39f..aab108e 100644
> --- a/drivers/firmware/efi/Kconfig
> +++ b/drivers/firmware/efi/Kconfig
> @@ -166,6 +166,11 @@ endmenu
> config UEFI_CPER
> bool
>
> +config UEFI_CPER_ARM
> + bool
> + depends on UEFI_CPER && ( ARM || ARM64 )
> + default y
> +
> config EFI_DEV_PATH_PARSER
> bool
> depends on ACPI
> diff --git a/drivers/firmware/efi/Makefile b/drivers/firmware/efi/Makefile
> index 269501d..a3e73d6 100644
> --- a/drivers/firmware/efi/Makefile
> +++ b/drivers/firmware/efi/Makefile
> @@ -30,3 +30,4 @@ arm-obj-$(CONFIG_EFI) := arm-init.o arm-runtime.o
> obj-$(CONFIG_ARM) += $(arm-obj-y)
> obj-$(CONFIG_ARM64) += $(arm-obj-y)
> obj-$(CONFIG_EFI_CAPSULE_LOADER) += capsule-loader.o
> +obj-$(CONFIG_UEFI_CPER_ARM) += cper-arm.o
> diff --git a/drivers/firmware/efi/cper-arm.c b/drivers/firmware/efi/cper-arm.c
> new file mode 100644
> index 0000000..1b56014
> --- /dev/null
> +++ b/drivers/firmware/efi/cper-arm.c
> @@ -0,0 +1,147 @@
> +/*
> + * UEFI Common Platform Error Record (CPER) support
> + *
> + * Copyright (C) 2017, The Linux Foundation. All rights reserved.
> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License version
> + * 2 as published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/time.h>
> +#include <linux/cper.h>
> +#include <linux/dmi.h>
> +#include <linux/acpi.h>
> +#include <linux/pci.h>
> +#include <linux/aer.h>
> +#include <linux/printk.h>
> +#include <linux/bcd.h>
> +#include <acpi/ghes.h>
> +#include <ras/ras_event.h>
> +
> +#define INDENT_SP " "
> +
> +static const char * const arm_reg_ctx_strs[] = {
> + "AArch32 general purpose registers",
> + "AArch32 EL1 context registers",
> + "AArch32 EL2 context registers",
> + "AArch32 secure context registers",
> + "AArch64 general purpose registers",
> + "AArch64 EL1 context registers",
> + "AArch64 EL2 context registers",
> + "AArch64 EL3 context registers",
> + "Misc. system register structure",
> +};
> +
> +void cper_print_proc_arm(const char *pfx,
> + const struct cper_sec_proc_arm *proc)
> +{
> + int i, len, max_ctx_type;
> + struct cper_arm_err_info *err_info;
> + struct cper_arm_ctx_info *ctx_info;
> + char newpfx[64];
> +
> + printk("%sMIDR: 0x%016llx\n", pfx, proc->midr);
> +
> + len = proc->section_length - (sizeof(*proc) +
> + proc->err_info_num * (sizeof(*err_info)));
> + if (len < 0) {
> + printk("%ssection length: %d\n", pfx, proc->section_length);
> + printk("%ssection length is too small\n", pfx);
> + printk("%sfirmware-generated error record is incorrect\n", pfx);
> + printk("%sERR_INFO_NUM is %d\n", pfx, proc->err_info_num);
> + return;
> + }
> +
> + if (proc->validation_bits & CPER_ARM_VALID_MPIDR)
> + printk("%sMultiprocessor Affinity Register (MPIDR): 0x%016llx\n",
> + pfx, proc->mpidr);
> +
> + if (proc->validation_bits & CPER_ARM_VALID_AFFINITY_LEVEL)
> + printk("%serror affinity level: %d\n", pfx,
> + proc->affinity_level);
> +
> + if (proc->validation_bits & CPER_ARM_VALID_RUNNING_STATE) {
> + printk("%srunning state: 0x%x\n", pfx, proc->running_state);
> + printk("%sPower State Coordination Interface state: %d\n",
> + pfx, proc->psci_state);
> + }
> +
> + snprintf(newpfx, sizeof(newpfx), "%s%s", pfx, INDENT_SP);
> +
> + err_info = (struct cper_arm_err_info *)(proc + 1);
> + for (i = 0; i < proc->err_info_num; i++) {
> + printk("%sError info structure %d:\n", pfx, i);
> +
> + printk("%snum errors: %d\n", pfx, err_info->multiple_error + 1);
> +
> + if (err_info->validation_bits & CPER_ARM_INFO_VALID_FLAGS) {
> + if (err_info->flags & CPER_ARM_INFO_FLAGS_FIRST)
> + printk("%sfirst error captured\n", newpfx);
> + if (err_info->flags & CPER_ARM_INFO_FLAGS_LAST)
> + printk("%slast error captured\n", newpfx);
> + if (err_info->flags & CPER_ARM_INFO_FLAGS_PROPAGATED)
> + printk("%spropagated error captured\n",
> + newpfx);
> + if (err_info->flags & CPER_ARM_INFO_FLAGS_OVERFLOW)
> + printk("%soverflow occurred, error info is incomplete\n",
> + newpfx);
> + }
> +
> + printk("%serror_type: %d, %s\n", newpfx, err_info->type,
> + err_info->type < ARRAY_SIZE(proc_error_type_strs) ?
> + proc_error_type_strs[err_info->type] : "unknown");
> + if (err_info->validation_bits & CPER_ARM_INFO_VALID_ERR_INFO)
> + printk("%serror_info: 0x%016llx\n", newpfx,
> + err_info->error_info);
> + if (err_info->validation_bits & CPER_ARM_INFO_VALID_VIRT_ADDR)
> + printk("%svirtual fault address: 0x%016llx\n",
> + newpfx, err_info->virt_fault_addr);
> + if (err_info->validation_bits & CPER_ARM_INFO_VALID_PHYSICAL_ADDR)
> + printk("%sphysical fault address: 0x%016llx\n",
> + newpfx, err_info->physical_fault_addr);
> + err_info += 1;
> + }
> +
> + ctx_info = (struct cper_arm_ctx_info *)err_info;
> + max_ctx_type = ARRAY_SIZE(arm_reg_ctx_strs) - 1;
> + for (i = 0; i < proc->context_info_num; i++) {
> + int size = sizeof(*ctx_info) + ctx_info->size;
> +
> + printk("%sContext info structure %d:\n", pfx, i);
> + if (len < size) {
> + printk("%ssection length is too small\n", newpfx);
> + printk("%sfirmware-generated error record is incorrect\n", pfx);
> + return;
> + }
> + if (ctx_info->type > max_ctx_type) {
> + printk("%sInvalid context type: %d (max: %d)\n",
> + newpfx, ctx_info->type, max_ctx_type);
> + return;
> + }
> + printk("%sregister context type: %s\n", newpfx,
> + arm_reg_ctx_strs[ctx_info->type]);
> + print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4,
> + (ctx_info + 1), ctx_info->size, 0);
> + len -= size;
> + ctx_info = (struct cper_arm_ctx_info *)((long)ctx_info + size);
> + }
> +
> + if (len > 0) {
> + printk("%sVendor specific error info has %u bytes:\n", pfx,
> + len);
> + print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4, ctx_info,
> + len, true);
> + }
> +}
> diff --git a/drivers/firmware/efi/cper.c b/drivers/firmware/efi/cper.c
> index d2fcafc..86d51d6 100644
> --- a/drivers/firmware/efi/cper.c
> +++ b/drivers/firmware/efi/cper.c
> @@ -122,13 +122,6 @@ void cper_print_bits(const char *pfx, unsigned int bits,
> "ARM A64",
> };
>
> -static const char * const proc_error_type_strs[] = {
> - "cache error",
> - "TLB error",
> - "bus error",
> - "micro-architectural error",
> -};
> -
> static const char * const proc_op_strs[] = {
> "unknown or generic",
> "data read",
> @@ -188,122 +181,6 @@ static void cper_print_proc_generic(const char *pfx,
> printk("%s""IP: 0x%016llx\n", pfx, proc->ip);
> }
>
> -#if defined(CONFIG_ARM64) || defined(CONFIG_ARM)
> -static const char * const arm_reg_ctx_strs[] = {
> - "AArch32 general purpose registers",
> - "AArch32 EL1 context registers",
> - "AArch32 EL2 context registers",
> - "AArch32 secure context registers",
> - "AArch64 general purpose registers",
> - "AArch64 EL1 context registers",
> - "AArch64 EL2 context registers",
> - "AArch64 EL3 context registers",
> - "Misc. system register structure",
> -};
> -
> -static void cper_print_proc_arm(const char *pfx,
> - const struct cper_sec_proc_arm *proc)
> -{
> - int i, len, max_ctx_type;
> - struct cper_arm_err_info *err_info;
> - struct cper_arm_ctx_info *ctx_info;
> - char newpfx[64];
> -
> - printk("%sMIDR: 0x%016llx\n", pfx, proc->midr);
> -
> - len = proc->section_length - (sizeof(*proc) +
> - proc->err_info_num * (sizeof(*err_info)));
> - if (len < 0) {
> - printk("%ssection length: %d\n", pfx, proc->section_length);
> - printk("%ssection length is too small\n", pfx);
> - printk("%sfirmware-generated error record is incorrect\n", pfx);
> - printk("%sERR_INFO_NUM is %d\n", pfx, proc->err_info_num);
> - return;
> - }
> -
> - if (proc->validation_bits & CPER_ARM_VALID_MPIDR)
> - printk("%sMultiprocessor Affinity Register (MPIDR): 0x%016llx\n",
> - pfx, proc->mpidr);
> -
> - if (proc->validation_bits & CPER_ARM_VALID_AFFINITY_LEVEL)
> - printk("%serror affinity level: %d\n", pfx,
> - proc->affinity_level);
> -
> - if (proc->validation_bits & CPER_ARM_VALID_RUNNING_STATE) {
> - printk("%srunning state: 0x%x\n", pfx, proc->running_state);
> - printk("%sPower State Coordination Interface state: %d\n",
> - pfx, proc->psci_state);
> - }
> -
> - snprintf(newpfx, sizeof(newpfx), "%s%s", pfx, INDENT_SP);
> -
> - err_info = (struct cper_arm_err_info *)(proc + 1);
> - for (i = 0; i < proc->err_info_num; i++) {
> - printk("%sError info structure %d:\n", pfx, i);
> -
> - printk("%snum errors: %d\n", pfx, err_info->multiple_error + 1);
> -
> - if (err_info->validation_bits & CPER_ARM_INFO_VALID_FLAGS) {
> - if (err_info->flags & CPER_ARM_INFO_FLAGS_FIRST)
> - printk("%sfirst error captured\n", newpfx);
> - if (err_info->flags & CPER_ARM_INFO_FLAGS_LAST)
> - printk("%slast error captured\n", newpfx);
> - if (err_info->flags & CPER_ARM_INFO_FLAGS_PROPAGATED)
> - printk("%spropagated error captured\n",
> - newpfx);
> - if (err_info->flags & CPER_ARM_INFO_FLAGS_OVERFLOW)
> - printk("%soverflow occurred, error info is incomplete\n",
> - newpfx);
> - }
> -
> - printk("%serror_type: %d, %s\n", newpfx, err_info->type,
> - err_info->type < ARRAY_SIZE(proc_error_type_strs) ?
> - proc_error_type_strs[err_info->type] : "unknown");
> - if (err_info->validation_bits & CPER_ARM_INFO_VALID_ERR_INFO)
> - printk("%serror_info: 0x%016llx\n", newpfx,
> - err_info->error_info);
> - if (err_info->validation_bits & CPER_ARM_INFO_VALID_VIRT_ADDR)
> - printk("%svirtual fault address: 0x%016llx\n",
> - newpfx, err_info->virt_fault_addr);
> - if (err_info->validation_bits & CPER_ARM_INFO_VALID_PHYSICAL_ADDR)
> - printk("%sphysical fault address: 0x%016llx\n",
> - newpfx, err_info->physical_fault_addr);
> - err_info += 1;
> - }
> -
> - ctx_info = (struct cper_arm_ctx_info *)err_info;
> - max_ctx_type = ARRAY_SIZE(arm_reg_ctx_strs) - 1;
> - for (i = 0; i < proc->context_info_num; i++) {
> - int size = sizeof(*ctx_info) + ctx_info->size;
> -
> - printk("%sContext info structure %d:\n", pfx, i);
> - if (len < size) {
> - printk("%ssection length is too small\n", newpfx);
> - printk("%sfirmware-generated error record is incorrect\n", pfx);
> - return;
> - }
> - if (ctx_info->type > max_ctx_type) {
> - printk("%sInvalid context type: %d (max: %d)\n",
> - newpfx, ctx_info->type, max_ctx_type);
> - return;
> - }
> - printk("%sregister context type: %s\n", newpfx,
> - arm_reg_ctx_strs[ctx_info->type]);
> - print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4,
> - (ctx_info + 1), ctx_info->size, 0);
> - len -= size;
> - ctx_info = (struct cper_arm_ctx_info *)((long)ctx_info + size);
> - }
> -
> - if (len > 0) {
> - printk("%sVendor specific error info has %u bytes:\n", pfx,
> - len);
> - print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, 4, ctx_info,
> - len, true);
> - }
> -}
> -#endif
> -
> static const char * const mem_err_type_strs[] = {
> "unknown",
> "no error",
> diff --git a/include/linux/cper.h b/include/linux/cper.h
> index 723e952..0a2d5c5 100644
> --- a/include/linux/cper.h
> +++ b/include/linux/cper.h
> @@ -494,6 +494,13 @@ struct cper_sec_pcie {
> /* Reset to default packing */
> #pragma pack()
>
> +static const char * const proc_error_type_strs[] = {
> + "cache error",
> + "TLB error",
> + "bus error",
> + "micro-architectural error",
> +};
> +
Could we keep this in cper.c, and replace this with
extern const char * const cper_proc_error_type_strs[];
instead? I'm not too keen on putting definitions (other than static
inline functions) in header files.
> u64 cper_next_record_id(void);
> const char *cper_severity_str(unsigned int);
> const char *cper_mem_err_type_str(unsigned int);
> @@ -503,5 +510,7 @@ void cper_mem_err_pack(const struct cper_sec_mem_err *,
> struct cper_mem_err_compact *);
> const char *cper_mem_err_unpack(struct trace_seq *,
> struct cper_mem_err_compact *);
> +void cper_print_proc_arm(const char *pfx,
> + const struct cper_sec_proc_arm *proc);
>
> #endif
> --
> Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
> Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
> a Linux Foundation Collaborative Project.
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH V2 1/2] efi: move ARM CPER code to new file
[not found] ` <CAKv+Gu_kM1NLWcOtQSEwEVnncBbrgJ5MP4VrYQVHBoCwSf_FRQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2017-12-07 20:07 ` Tyler Baicar
[not found] ` <972fe421-696b-cd26-9145-20081fb733c9-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Tyler Baicar @ 2017-12-07 20:07 UTC (permalink / raw)
To: Ard Biesheuvel
Cc: Matt Fleming, Will Deacon, James Morse, Andy Shevchenko,
linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On 12/7/2017 2:38 PM, Ard Biesheuvel wrote:
>> diff --git a/include/linux/cper.h b/include/linux/cper.h
>> index 723e952..0a2d5c5 100644
>> --- a/include/linux/cper.h
>> +++ b/include/linux/cper.h
>> @@ -494,6 +494,13 @@ struct cper_sec_pcie {
>> /* Reset to default packing */
>> #pragma pack()
>>
>> +static const char * const proc_error_type_strs[] = {
>> + "cache error",
>> + "TLB error",
>> + "bus error",
>> + "micro-architectural error",
>> +};
>> +
> Could we keep this in cper.c, and replace this with
>
> extern const char * const cper_proc_error_type_strs[];
>
> instead? I'm not too keen on putting definitions (other than static
> inline functions) in header files.
>
Hello Ard,
Yes, I will make this change.
Thanks,
Tyler
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH V2 1/2] efi: move ARM CPER code to new file
[not found] ` <972fe421-696b-cd26-9145-20081fb733c9-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
@ 2017-12-11 21:06 ` Tyler Baicar
[not found] ` <1bcd0462-5df9-fd90-c487-4e8958a9e27d-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Tyler Baicar @ 2017-12-11 21:06 UTC (permalink / raw)
To: Ard Biesheuvel
Cc: Matt Fleming, Will Deacon, James Morse, Andy Shevchenko,
linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On 12/7/2017 3:07 PM, Tyler Baicar wrote:
> On 12/7/2017 2:38 PM, Ard Biesheuvel wrote:
>>> diff --git a/include/linux/cper.h b/include/linux/cper.h
>>> index 723e952..0a2d5c5 100644
>>> --- a/include/linux/cper.h
>>> +++ b/include/linux/cper.h
>>> @@ -494,6 +494,13 @@ struct cper_sec_pcie {
>>> /* Reset to default packing */
>>> #pragma pack()
>>>
>>> +static const char * const proc_error_type_strs[] = {
>>> + "cache error",
>>> + "TLB error",
>>> + "bus error",
>>> + "micro-architectural error",
>>> +};
>>> +
>> Could we keep this in cper.c, and replace this with
>>
>> extern const char * const cper_proc_error_type_strs[];
>>
>> instead? I'm not too keen on putting definitions (other than static
>> inline functions) in header files.
>>
> Yes, I will make this change.
Hello Ard,
This actually won't work because of the ARRAY_SIZE use. If this definition is in
cper.c, then cper-arm.c won't be able to use ARRAY_SIZE even with the extern
statement in cper.h.
drivers/firmware/efi/cper-arm.c: In function ‘cper_print_proc_arm’:
./include/linux/kernel.h:71:32: error: invalid application of ‘sizeof’ to
incomplete type ‘const char * const[]’
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
^
drivers/firmware/efi/cper-arm.c:103:21: note: in expansion of macro ‘ARRAY_SIZE’
err_info->type < ARRAY_SIZE(cper_proc_error_type_strs) ?
^~~~~~~~~~
Any other suggestions?
Thanks,
Tyler
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH V2 1/2] efi: move ARM CPER code to new file
[not found] ` <1bcd0462-5df9-fd90-c487-4e8958a9e27d-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
@ 2017-12-11 21:09 ` Ard Biesheuvel
[not found] ` <CAKv+Gu_VWjw6E0GHc1edLAc-NVjy6CtDU2fSR5o7-Q+W40Fbug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Ard Biesheuvel @ 2017-12-11 21:09 UTC (permalink / raw)
To: Tyler Baicar
Cc: Matt Fleming, Will Deacon, James Morse, Andy Shevchenko,
linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On 11 December 2017 at 21:06, Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org> wrote:
> On 12/7/2017 3:07 PM, Tyler Baicar wrote:
>>
>> On 12/7/2017 2:38 PM, Ard Biesheuvel wrote:
>>>>
>>>> diff --git a/include/linux/cper.h b/include/linux/cper.h
>>>> index 723e952..0a2d5c5 100644
>>>> --- a/include/linux/cper.h
>>>> +++ b/include/linux/cper.h
>>>> @@ -494,6 +494,13 @@ struct cper_sec_pcie {
>>>> /* Reset to default packing */
>>>> #pragma pack()
>>>>
>>>> +static const char * const proc_error_type_strs[] = {
>>>> + "cache error",
>>>> + "TLB error",
>>>> + "bus error",
>>>> + "micro-architectural error",
>>>> +};
>>>> +
>>>
>>> Could we keep this in cper.c, and replace this with
>>>
>>> extern const char * const cper_proc_error_type_strs[];
>>>
>>> instead? I'm not too keen on putting definitions (other than static
>>> inline functions) in header files.
>>>
>> Yes, I will make this change.
>
> Hello Ard,
>
> This actually won't work because of the ARRAY_SIZE use. If this definition
> is in cper.c, then cper-arm.c won't be able to use ARRAY_SIZE even with the
> extern statement in cper.h.
>
> drivers/firmware/efi/cper-arm.c: In function ‘cper_print_proc_arm’:
> ./include/linux/kernel.h:71:32: error: invalid application of ‘sizeof’ to
> incomplete type ‘const char * const[]’
> #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) +
> __must_be_array(arr))
> ^
> drivers/firmware/efi/cper-arm.c:103:21: note: in expansion of macro
> ‘ARRAY_SIZE’
> err_info->type < ARRAY_SIZE(cper_proc_error_type_strs) ?
> ^~~~~~~~~~
>
> Any other suggestions?
>
Add '4' between the square brackets?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH V2 1/2] efi: move ARM CPER code to new file
[not found] ` <CAKv+Gu_VWjw6E0GHc1edLAc-NVjy6CtDU2fSR5o7-Q+W40Fbug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2017-12-11 21:29 ` Tyler Baicar
[not found] ` <6c9da127-f210-3f14-32b7-c38ad5e0e1d6-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Tyler Baicar @ 2017-12-11 21:29 UTC (permalink / raw)
To: Ard Biesheuvel
Cc: Matt Fleming, Will Deacon, James Morse, Andy Shevchenko,
linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On 12/11/2017 4:09 PM, Ard Biesheuvel wrote:
> On 11 December 2017 at 21:06, Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org> wrote:
>> On 12/7/2017 3:07 PM, Tyler Baicar wrote:
>>> On 12/7/2017 2:38 PM, Ard Biesheuvel wrote:
>>>>> diff --git a/include/linux/cper.h b/include/linux/cper.h
>>>>> index 723e952..0a2d5c5 100644
>>>>> --- a/include/linux/cper.h
>>>>> +++ b/include/linux/cper.h
>>>>> @@ -494,6 +494,13 @@ struct cper_sec_pcie {
>>>>> /* Reset to default packing */
>>>>> #pragma pack()
>>>>>
>>>>> +static const char * const proc_error_type_strs[] = {
>>>>> + "cache error",
>>>>> + "TLB error",
>>>>> + "bus error",
>>>>> + "micro-architectural error",
>>>>> +};
>>>>> +
>>>> Could we keep this in cper.c, and replace this with
>>>>
>>>> extern const char * const cper_proc_error_type_strs[];
>>>>
>>>> instead? I'm not too keen on putting definitions (other than static
>>>> inline functions) in header files.
>>>>
>>> Yes, I will make this change.
>> Hello Ard,
>>
>> This actually won't work because of the ARRAY_SIZE use. If this definition
>> is in cper.c, then cper-arm.c won't be able to use ARRAY_SIZE even with the
>> extern statement in cper.h.
>>
>> drivers/firmware/efi/cper-arm.c: In function ‘cper_print_proc_arm’:
>> ./include/linux/kernel.h:71:32: error: invalid application of ‘sizeof’ to
>> incomplete type ‘const char * const[]’
>> #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) +
>> __must_be_array(arr))
>> ^
>> drivers/firmware/efi/cper-arm.c:103:21: note: in expansion of macro
>> ‘ARRAY_SIZE’
>> err_info->type < ARRAY_SIZE(cper_proc_error_type_strs) ?
>> ^~~~~~~~~~
>>
>> Any other suggestions?
>>
> Add '4' between the square brackets?
That works if you'd prefer it that way.
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH V2 1/2] efi: move ARM CPER code to new file
[not found] ` <6c9da127-f210-3f14-32b7-c38ad5e0e1d6-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
@ 2017-12-11 23:17 ` Ard Biesheuvel
0 siblings, 0 replies; 9+ messages in thread
From: Ard Biesheuvel @ 2017-12-11 23:17 UTC (permalink / raw)
To: Tyler Baicar
Cc: Matt Fleming, Will Deacon, James Morse, Andy Shevchenko,
linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On 11 December 2017 at 21:29, Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org> wrote:
> On 12/11/2017 4:09 PM, Ard Biesheuvel wrote:
>>
>> On 11 December 2017 at 21:06, Tyler Baicar <tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org> wrote:
>>>
>>> On 12/7/2017 3:07 PM, Tyler Baicar wrote:
>>>>
>>>> On 12/7/2017 2:38 PM, Ard Biesheuvel wrote:
>>>>>>
>>>>>> diff --git a/include/linux/cper.h b/include/linux/cper.h
>>>>>> index 723e952..0a2d5c5 100644
>>>>>> --- a/include/linux/cper.h
>>>>>> +++ b/include/linux/cper.h
>>>>>> @@ -494,6 +494,13 @@ struct cper_sec_pcie {
>>>>>> /* Reset to default packing */
>>>>>> #pragma pack()
>>>>>>
>>>>>> +static const char * const proc_error_type_strs[] = {
>>>>>> + "cache error",
>>>>>> + "TLB error",
>>>>>> + "bus error",
>>>>>> + "micro-architectural error",
>>>>>> +};
>>>>>> +
>>>>>
>>>>> Could we keep this in cper.c, and replace this with
>>>>>
>>>>> extern const char * const cper_proc_error_type_strs[];
>>>>>
>>>>> instead? I'm not too keen on putting definitions (other than static
>>>>> inline functions) in header files.
>>>>>
>>>> Yes, I will make this change.
>>>
>>> Hello Ard,
>>>
>>> This actually won't work because of the ARRAY_SIZE use. If this
>>> definition
>>> is in cper.c, then cper-arm.c won't be able to use ARRAY_SIZE even with
>>> the
>>> extern statement in cper.h.
>>>
>>> drivers/firmware/efi/cper-arm.c: In function ‘cper_print_proc_arm’:
>>> ./include/linux/kernel.h:71:32: error: invalid application of ‘sizeof’ to
>>> incomplete type ‘const char * const[]’
>>> #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) +
>>> __must_be_array(arr))
>>> ^
>>> drivers/firmware/efi/cper-arm.c:103:21: note: in expansion of macro
>>> ‘ARRAY_SIZE’
>>> err_info->type < ARRAY_SIZE(cper_proc_error_type_strs) ?
>>> ^~~~~~~~~~
>>>
>>> Any other suggestions?
>>>
>> Add '4' between the square brackets?
>
> That works if you'd prefer it that way.
>
Yes please
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-12-11 23:17 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-07 19:25 [PATCH V2 0/2] CPER ARM error information parsing Tyler Baicar
[not found] ` <1512674727-25770-1-git-send-email-tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-12-07 19:25 ` [PATCH V2 1/2] efi: move ARM CPER code to new file Tyler Baicar
[not found] ` <1512674727-25770-2-git-send-email-tbaicar-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-12-07 19:38 ` Ard Biesheuvel
[not found] ` <CAKv+Gu_kM1NLWcOtQSEwEVnncBbrgJ5MP4VrYQVHBoCwSf_FRQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-12-07 20:07 ` Tyler Baicar
[not found] ` <972fe421-696b-cd26-9145-20081fb733c9-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-12-11 21:06 ` Tyler Baicar
[not found] ` <1bcd0462-5df9-fd90-c487-4e8958a9e27d-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-12-11 21:09 ` Ard Biesheuvel
[not found] ` <CAKv+Gu_VWjw6E0GHc1edLAc-NVjy6CtDU2fSR5o7-Q+W40Fbug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-12-11 21:29 ` Tyler Baicar
[not found] ` <6c9da127-f210-3f14-32b7-c38ad5e0e1d6-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-12-11 23:17 ` Ard Biesheuvel
2017-12-07 19:25 ` [PATCH V2 2/2] efi: parse ARM error information value Tyler Baicar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox