From c90315276e079141e1fe55759763533c1ae85ac8 Mon Sep 17 00:00:00 2001 From: Sowmya Aralguppe Date: Mon, 9 Dec 2024 07:20:30 +0530 Subject: [PATCH] soc/intel/pantherlake: Decrease CRASHLOG_NODES_COUNT to 1 This patch changes child record count to 1 (i.e., compute die). The number of crashlog agent/SRAM storage count is reduced in Crashlog Discovery table (CRASHLOG_HEADER) for Panther Lake to 1 aka compute die compared to MTL where crashlog units were compute die and GT die source= 733648-LNLFAS-15.3.4,812562 PTL FAS 16.5.2 PTL Dis-Aggreagation CrashLog BUG=None TEST=Build fatcat and verify the child record count Change-Id: I209366d324c95b7a32afdcfb792c34d927a0508e Signed-off-by: Sowmya Aralguppe Reviewed-on: https://review.coreboot.org/c/coreboot/+/85531 Tested-by: build bot (Jenkins) Reviewed-by: Subrata Banik --- src/soc/intel/pantherlake/crashlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/intel/pantherlake/crashlog.c b/src/soc/intel/pantherlake/crashlog.c index d94f4c5476..0f288efe14 100644 --- a/src/soc/intel/pantherlake/crashlog.c +++ b/src/soc/intel/pantherlake/crashlog.c @@ -14,7 +14,7 @@ #include #define CONTROL_INTERFACE_OFFSET 0x5 -#define CRASHLOG_NODES_COUNT 0x2 +#define CRASHLOG_NODES_COUNT 0x1 #define CRASHLOG_PUNIT_STORAGE_OFF_MASK BIT(24) #define CRASHLOG_RE_ARM_STATUS_MASK BIT(25) #define CRASHLOG_CONSUMED_MASK BIT(31)