RE: [PATCH v1 7/7] btintel_pcie: Add support for exception dump for ScP2F
From: K, Kiran <hidden>
Date: 2026-02-24 14:26:15
Hi Luiz, Thanks for the comments.
Subject: Re: [PATCH v1 7/7] btintel_pcie: Add support for exception dump for ScP2F Hi Kiran, On Mon, Feb 23, 2026 at 12:02 PM Kiran K [off-list ref] wrote:quoted
Add device coredump support for Scorpious Peak2F product. Signed-off-by: Kiran K <redacted> --- drivers/bluetooth/btintel.h | 1 + drivers/bluetooth/btintel_pcie.c | 1 + 2 files changed, 2 insertions(+)diff --git a/drivers/bluetooth/btintel.h b/drivers/bluetooth/btintel.h index bef7ea84b1e4..b5e7f0aafb4c 100644 --- a/drivers/bluetooth/btintel.h +++ b/drivers/bluetooth/btintel.h@@ -60,6 +60,7 @@ struct intel_tlv { #define BTINTEL_CNVI_BLAZARU 0x930 #define BTINTEL_CNVI_SCP 0xA00 #define BTINTEL_CNVI_SCP2 0xA10 +#define BTINTEL_CNVI_SCP2F 0xA20Let's document these definitions with Marketing Product Name/Platform Name e.g. /* BE2XX/Panther Lake */ to make correlation easier.
Ack.
quoted
/* CNVR */ #define BTINTEL_CNVR_FMP2 0x910diff --git a/drivers/bluetooth/btintel_pcie.cb/drivers/bluetooth/btintel_pcie.c index d0cabf4df7c0..d903460bea76 100644--- a/drivers/bluetooth/btintel_pcie.c +++ b/drivers/bluetooth/btintel_pcie.c@@ -1234,6 +1234,7 @@ static void btintel_pcie_read_hwexp(structbtintel_pcie_data *data)quoted
addr = BTINTEL_PCIE_SCP_HWEXP_DMP_ADDR; break; case BTINTEL_CNVI_SCP2: + case BTINTEL_CNVI_SCP2F: len = BTINTEL_PCIE_SCP2_HWEXP_SIZE; addr = BTINTEL_PCIE_SCP2_HWEXP_DMP_ADDR; break; -- 2.43.0-- Luiz Augusto von Dentz
Regards, Kiran