summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiran K <kiran.k@intel.com>2026-02-28 12:12:37 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2026-04-10 17:29:03 +0300
commit68a1729ae5043d900e040565f3db87f06ce64a76 (patch)
tree9d79266ff9312b3250bc8bfbaf5982b13caed298
parent9c52085e10af716812cfc8de79bc4f22747b3c19 (diff)
downloadlinux-68a1729ae5043d900e040565f3db87f06ce64a76.tar.xz
Bluetooth: btintel_pcie: Add support for exception dump for ScP2F
Add device coredump support for Scorpious Peak2F product. Signed-off-by: Kiran K <kiran.k@intel.com> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
-rw-r--r--drivers/bluetooth/btintel.h1
-rw-r--r--drivers/bluetooth/btintel_pcie.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bluetooth/btintel.h b/drivers/bluetooth/btintel.h
index b5c00be8277a..0e9ca99aaaae 100644
--- a/drivers/bluetooth/btintel.h
+++ b/drivers/bluetooth/btintel.h
@@ -60,6 +60,7 @@ struct intel_tlv {
#define BTINTEL_CNVI_BLAZARU 0x930 /* BlazarU - Meteor Lake */
#define BTINTEL_CNVI_SCP 0xA00 /* Scorpius Peak - Panther Lake */
#define BTINTEL_CNVI_SCP2 0xA10 /* Scorpius Peak2 - Nova Lake */
+#define BTINTEL_CNVI_SCP2F 0xA20 /* Scorpius Peak2F - Nova Lake */
/* CNVR */
#define BTINTEL_CNVR_FMP2 0x910
diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c
index 78209e8768bb..a907b493d153 100644
--- a/drivers/bluetooth/btintel_pcie.c
+++ b/drivers/bluetooth/btintel_pcie.c
@@ -1235,6 +1235,7 @@ static void btintel_pcie_read_hwexp(struct btintel_pcie_data *data)
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;