* [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents
@ 2025-07-28 9:05 Kiran K
2025-07-28 9:05 ` [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device Kiran K
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Kiran K @ 2025-07-28 9:05 UTC (permalink / raw)
To: linux-bluetooth
Cc: ravishankar.srivatsa, chandrashekar.devegowda, Kiran K,
Paul Menzel
Add Bluetooth CNVi core and platform names to the PCI device table for
each device ID as a comment.
Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de>
Signed-off-by: Kiran K <kiran.k@intel.com>
---
changes in v2:
- Update commit message
- Include reviewer name in commit message
- Include the complete platform name in the comment
drivers/bluetooth/btintel_pcie.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c
index 8e65def192a9..8f02c27bc544 100644
--- a/drivers/bluetooth/btintel_pcie.c
+++ b/drivers/bluetooth/btintel_pcie.c
@@ -35,9 +35,9 @@
/* Intel Bluetooth PCIe device id table */
static const struct pci_device_id btintel_pcie_table[] = {
- { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) },
- { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) },
- { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) },
+ { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) }, /* BlazarI, Wildcat Lake */
+ { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, /* BlazarI, Lunar Lake */
+ { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H404 */
{ 0 }
};
MODULE_DEVICE_TABLE(pci, btintel_pcie_table);
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device 2025-07-28 9:05 [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents Kiran K @ 2025-07-28 9:05 ` Kiran K 2025-07-28 13:37 ` Paul Menzel 2025-07-28 9:13 ` [v2,1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents bluez.test.bot ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Kiran K @ 2025-07-28 9:05 UTC (permalink / raw) To: linux-bluetooth; +Cc: ravishankar.srivatsa, chandrashekar.devegowda, Kiran K sudo lspci -v -k -d 8086:e376 00:14.7 Bluetooth: Intel Corporation Device e376 Subsystem: Intel Corporation Device 0011 Flags: bus master, fast devsel, latency 0, IRQ 16, IOMMU group 14 Memory at 14815368000 (64-bit, non-prefetchable) [size=16K] Capabilities: [c8] Power Management version 3 Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [80] MSI-X: Enable+ Count=32 Masked- Capabilities: [100] Latency Tolerance Reporting Kernel driver in use: btintel_pcie Kernel modules: btintel_pcie Signed-off-by: Kiran K <kiran.k@intel.com> --- changes in v2: - No change drivers/bluetooth/btintel_pcie.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c index 8f02c27bc544..c0c3e17a4fa4 100644 --- a/drivers/bluetooth/btintel_pcie.c +++ b/drivers/bluetooth/btintel_pcie.c @@ -37,6 +37,7 @@ static const struct pci_device_id btintel_pcie_table[] = { { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) }, /* BlazarI, Wildcat Lake */ { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, /* BlazarI, Lunar Lake */ + { BTINTEL_PCI_DEVICE(0xE376, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H484 */ { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H404 */ { 0 } }; -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device 2025-07-28 9:05 ` [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device Kiran K @ 2025-07-28 13:37 ` Paul Menzel 2025-07-28 15:21 ` K, Kiran 0 siblings, 1 reply; 7+ messages in thread From: Paul Menzel @ 2025-07-28 13:37 UTC (permalink / raw) To: Kiran K; +Cc: linux-bluetooth, ravishankar.srivatsa, chandrashekar.devegowda Dear Kiran, Thank you for your patch. Am 28.07.25 um 11:05 schrieb Kiran K: > sudo lspci -v -k -d 8086:e376 > 00:14.7 Bluetooth: Intel Corporation Device e376 > Subsystem: Intel Corporation Device 0011 > Flags: bus master, fast devsel, latency 0, IRQ 16, IOMMU group 14 > Memory at 14815368000 (64-bit, non-prefetchable) [size=16K] > Capabilities: [c8] Power Management version 3 > Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+ > Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 > Capabilities: [80] MSI-X: Enable+ Count=32 Masked- > Capabilities: [100] Latency Tolerance Reporting > Kernel driver in use: btintel_pcie > Kernel modules: btintel_pcie I’d be great if you added the name to the summary: Bluetooth: btintel_pcie: Add id of Scorpious, Panther Lake-H484 > Signed-off-by: Kiran K <kiran.k@intel.com> > --- > changes in v2: > - No change > > drivers/bluetooth/btintel_pcie.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c > index 8f02c27bc544..c0c3e17a4fa4 100644 > --- a/drivers/bluetooth/btintel_pcie.c > +++ b/drivers/bluetooth/btintel_pcie.c > @@ -37,6 +37,7 @@ > static const struct pci_device_id btintel_pcie_table[] = { > { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) }, /* BlazarI, Wildcat Lake */ > { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, /* BlazarI, Lunar Lake */ > + { BTINTEL_PCI_DEVICE(0xE376, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H484 */ > { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H404 */ > { 0 } > }; The diff looks good. Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de> Kind regards, Paul ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device 2025-07-28 13:37 ` Paul Menzel @ 2025-07-28 15:21 ` K, Kiran 0 siblings, 0 replies; 7+ messages in thread From: K, Kiran @ 2025-07-28 15:21 UTC (permalink / raw) To: Paul Menzel Cc: linux-bluetooth@vger.kernel.org, Srivatsa, Ravishankar, Devegowda, Chandrashekar Hi Paul, >-----Original Message----- >From: Paul Menzel <pmenzel@molgen.mpg.de> >Sent: Monday, July 28, 2025 7:07 PM >To: K, Kiran <kiran.k@intel.com> >Cc: linux-bluetooth@vger.kernel.org; Srivatsa, Ravishankar ><ravishankar.srivatsa@intel.com>; Devegowda, Chandrashekar ><chandrashekar.devegowda@intel.com> >Subject: Re: [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device > >Dear Kiran, > > >Thank you for your patch. > >Am 28.07.25 um 11:05 schrieb Kiran K: >> sudo lspci -v -k -d 8086:e376 >> 00:14.7 Bluetooth: Intel Corporation Device e376 >> Subsystem: Intel Corporation Device 0011 >> Flags: bus master, fast devsel, latency 0, IRQ 16, IOMMU group 14 >> Memory at 14815368000 (64-bit, non-prefetchable) [size=16K] >> Capabilities: [c8] Power Management version 3 >> Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+ >> Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 >> Capabilities: [80] MSI-X: Enable+ Count=32 Masked- >> Capabilities: [100] Latency Tolerance Reporting >> Kernel driver in use: btintel_pcie >> Kernel modules: btintel_pcie > >I’d be great if you added the name to the summary: Ack. > >Bluetooth: btintel_pcie: Add id of Scorpious, Panther Lake-H484 > >> Signed-off-by: Kiran K <kiran.k@intel.com> >> --- >> changes in v2: >> - No change >> >> drivers/bluetooth/btintel_pcie.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c >> index 8f02c27bc544..c0c3e17a4fa4 100644 >> --- a/drivers/bluetooth/btintel_pcie.c >> +++ b/drivers/bluetooth/btintel_pcie.c >> @@ -37,6 +37,7 @@ >> static const struct pci_device_id btintel_pcie_table[] = { >> { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) }, /* BlazarI, Wildcat Lake >*/ >> { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, /* BlazarI, Lunar Lake */ >> + { BTINTEL_PCI_DEVICE(0xE376, PCI_ANY_ID) }, /* Scorpious, Panther >Lake-H484 */ >> { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, /* Scorpious, Panther >Lake-H404 */ >> { 0 } >> }; > >The diff looks good. > >Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de> > > >Kind regards, > >Paul Thanks, Kiran ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [v2,1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents 2025-07-28 9:05 [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents Kiran K 2025-07-28 9:05 ` [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device Kiran K @ 2025-07-28 9:13 ` bluez.test.bot 2025-07-28 18:30 ` [PATCH v2 1/2] " patchwork-bot+bluetooth 2025-07-28 18:40 ` patchwork-bot+bluetooth 3 siblings, 0 replies; 7+ messages in thread From: bluez.test.bot @ 2025-07-28 9:13 UTC (permalink / raw) To: linux-bluetooth, kiran.k [-- Attachment #1: Type: text/plain, Size: 2297 bytes --] This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=986350 ---Test result--- Test Summary: CheckPatch PENDING 0.40 seconds GitLint PENDING 0.37 seconds SubjectPrefix PASS 0.13 seconds BuildKernel PASS 24.12 seconds CheckAllWarning PASS 26.66 seconds CheckSparse PASS 30.42 seconds BuildKernel32 PASS 24.81 seconds TestRunnerSetup PASS 477.17 seconds TestRunner_l2cap-tester PASS 24.94 seconds TestRunner_iso-tester PASS 35.59 seconds TestRunner_bnep-tester PASS 5.99 seconds TestRunner_mgmt-tester FAIL 128.24 seconds TestRunner_rfcomm-tester PASS 11.75 seconds TestRunner_sco-tester PASS 15.09 seconds TestRunner_ioctl-tester PASS 10.21 seconds TestRunner_mesh-tester FAIL 11.49 seconds TestRunner_smp-tester PASS 8.69 seconds TestRunner_userchan-tester PASS 6.44 seconds IncrementalBuild PENDING 1.02 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: TestRunner_mgmt-tester - FAIL Desc: Run mgmt-tester with test-runner Output: Total: 490, Passed: 485 (99.0%), Failed: 1, Not Run: 4 Failed Test Cases LL Privacy - Set Flags 1 (Add to RL) Failed 0.161 seconds ############################## Test: TestRunner_mesh-tester - FAIL Desc: Run mesh-tester with test-runner Output: Total: 10, Passed: 8 (80.0%), Failed: 2, Not Run: 0 Failed Test Cases Mesh - Send cancel - 1 Timed out 1.900 seconds Mesh - Send cancel - 2 Timed out 1.995 seconds ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents 2025-07-28 9:05 [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents Kiran K 2025-07-28 9:05 ` [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device Kiran K 2025-07-28 9:13 ` [v2,1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents bluez.test.bot @ 2025-07-28 18:30 ` patchwork-bot+bluetooth 2025-07-28 18:40 ` patchwork-bot+bluetooth 3 siblings, 0 replies; 7+ messages in thread From: patchwork-bot+bluetooth @ 2025-07-28 18:30 UTC (permalink / raw) To: Kiran K Cc: linux-bluetooth, ravishankar.srivatsa, chandrashekar.devegowda, pmenzel Hello: This series was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 28 Jul 2025 14:35:53 +0530 you wrote: > Add Bluetooth CNVi core and platform names to the PCI device table for > each device ID as a comment. > > Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de> > Signed-off-by: Kiran K <kiran.k@intel.com> > --- > changes in v2: > - Update commit message > - Include reviewer name in commit message > - Include the complete platform name in the comment > > [...] Here is the summary with links: - [v2,1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents (no matching commit) - [v2,2/2] Bluetooth: btintel_pcie: Add support for device https://git.kernel.org/bluetooth/bluetooth-next/c/ce0fc419c2cc You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents 2025-07-28 9:05 [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents Kiran K ` (2 preceding siblings ...) 2025-07-28 18:30 ` [PATCH v2 1/2] " patchwork-bot+bluetooth @ 2025-07-28 18:40 ` patchwork-bot+bluetooth 3 siblings, 0 replies; 7+ messages in thread From: patchwork-bot+bluetooth @ 2025-07-28 18:40 UTC (permalink / raw) To: Kiran K Cc: linux-bluetooth, ravishankar.srivatsa, chandrashekar.devegowda, pmenzel Hello: This series was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 28 Jul 2025 14:35:53 +0530 you wrote: > Add Bluetooth CNVi core and platform names to the PCI device table for > each device ID as a comment. > > Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de> > Signed-off-by: Kiran K <kiran.k@intel.com> > --- > changes in v2: > - Update commit message > - Include reviewer name in commit message > - Include the complete platform name in the comment > > [...] Here is the summary with links: - [v2,1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents https://git.kernel.org/bluetooth/bluetooth-next/c/ca4d74a68c46 - [v2,2/2] Bluetooth: btintel_pcie: Add support for device (no matching commit) You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-07-28 18:39 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-28 9:05 [PATCH v2 1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents Kiran K 2025-07-28 9:05 ` [PATCH v2 2/2] Bluetooth: btintel_pcie: Add support for device Kiran K 2025-07-28 13:37 ` Paul Menzel 2025-07-28 15:21 ` K, Kiran 2025-07-28 9:13 ` [v2,1/2] Bluetooth: btintel_pcie: Add Bluetooth core/platform as commnents bluez.test.bot 2025-07-28 18:30 ` [PATCH v2 1/2] " patchwork-bot+bluetooth 2025-07-28 18:40 ` patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox