All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding
@ 2021-03-18  8:43 Linus Walleij
  2021-03-18  8:43 ` [PATCH 2/2] Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles Linus Walleij
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Linus Walleij @ 2021-03-18  8:43 UTC (permalink / raw)
  To: Marcel Holtmann, Johan Hedberg; +Cc: linux-bluetooth, Linus Walleij, devicetree

BCM4334 was missing from the binding.

Cc: devicetree@vger.kernel.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
index bdd6ca617e23..fbdc2083bec4 100644
--- a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
+++ b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
@@ -18,6 +18,7 @@ properties:
       - brcm,bcm20702a1
       - brcm,bcm4329-bt
       - brcm,bcm4330-bt
+      - brcm,bcm4334-bt
       - brcm,bcm43438-bt
       - brcm,bcm4345c5
       - brcm,bcm43540-bt
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles
  2021-03-18  8:43 [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding Linus Walleij
@ 2021-03-18  8:43 ` Linus Walleij
  2021-03-18  9:18   ` Marcel Holtmann
  2021-03-18  9:17 ` [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding Marcel Holtmann
  2021-03-18  9:32 ` [1/2] " bluez.test.bot
  2 siblings, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2021-03-18  8:43 UTC (permalink / raw)
  To: Marcel Holtmann, Johan Hedberg; +Cc: linux-bluetooth, Linus Walleij

Add the missing brcm,bcm4330-bt and brcm,bcm4334-bt to the
match table so device trees can use this compatible as well
and not need to use the fallback brcm,bcm4329-bt.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/bluetooth/hci_bcm.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/bluetooth/hci_bcm.c b/drivers/bluetooth/hci_bcm.c
index 3764ceb6fa0d..c6e9237e084e 100644
--- a/drivers/bluetooth/hci_bcm.c
+++ b/drivers/bluetooth/hci_bcm.c
@@ -1482,6 +1482,8 @@ static struct bcm_device_data bcm43438_device_data = {
 static const struct of_device_id bcm_bluetooth_of_match[] = {
 	{ .compatible = "brcm,bcm20702a1" },
 	{ .compatible = "brcm,bcm4329-bt" },
+	{ .compatible = "brcm,bcm4330-bt" },
+	{ .compatible = "brcm,bcm4334-bt" },
 	{ .compatible = "brcm,bcm4345c5" },
 	{ .compatible = "brcm,bcm4330-bt" },
 	{ .compatible = "brcm,bcm43438-bt", .data = &bcm43438_device_data },
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding
  2021-03-18  8:43 [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding Linus Walleij
  2021-03-18  8:43 ` [PATCH 2/2] Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles Linus Walleij
@ 2021-03-18  9:17 ` Marcel Holtmann
  2021-03-18  9:32 ` [1/2] " bluez.test.bot
  2 siblings, 0 replies; 5+ messages in thread
From: Marcel Holtmann @ 2021-03-18  9:17 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Johan Hedberg, Bluetooth Kernel Mailing List, devicetree

Hi Linus,

> BCM4334 was missing from the binding.
> 
> Cc: devicetree@vger.kernel.org
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml | 1 +
> 1 file changed, 1 insertion(+)

patch has been applied to bluetooth-next tree.

Regards

Marcel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles
  2021-03-18  8:43 ` [PATCH 2/2] Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles Linus Walleij
@ 2021-03-18  9:18   ` Marcel Holtmann
  0 siblings, 0 replies; 5+ messages in thread
From: Marcel Holtmann @ 2021-03-18  9:18 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Johan Hedberg, linux-bluetooth

Hi Linus,

> Add the missing brcm,bcm4330-bt and brcm,bcm4334-bt to the
> match table so device trees can use this compatible as well
> and not need to use the fallback brcm,bcm4329-bt.
> 
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> drivers/bluetooth/hci_bcm.c | 2 ++
> 1 file changed, 2 insertions(+)

patch has been applied to bluetooth-next tree.

Regards

Marcel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [1/2] Bluetooth: btbcm: Add BCM4334 DT binding
  2021-03-18  8:43 [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding Linus Walleij
  2021-03-18  8:43 ` [PATCH 2/2] Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles Linus Walleij
  2021-03-18  9:17 ` [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding Marcel Holtmann
@ 2021-03-18  9:32 ` bluez.test.bot
  2 siblings, 0 replies; 5+ messages in thread
From: bluez.test.bot @ 2021-03-18  9:32 UTC (permalink / raw)
  To: linux-bluetooth, linus.walleij

[-- Attachment #1: Type: text/plain, Size: 1727 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=450537

---Test result---

##############################
Test: CheckPatch - PASS


##############################
Test: CheckGitLint - PASS


##############################
Test: CheckBuildK - PASS


##############################
Test: CheckTestRunner: Setup - PASS


##############################
Test: CheckTestRunner: l2cap-tester - PASS
Total: 40, Passed: 34 (85.0%), Failed: 0, Not Run: 6

##############################
Test: CheckTestRunner: bnep-tester - PASS
Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0

##############################
Test: CheckTestRunner: mgmt-tester - FAIL
Total: 416, Passed: 399 (95.9%), Failed: 3, Not Run: 14

Failed Test Cases
Read Advertising Features - Success 1 (No instance)  Failed       0.028 seconds
Read Advertising Features - Success 2 (One instance) Failed       0.024 seconds
Read Ext Advertising Features - Success 3 (PHY flags) Failed       0.028 seconds

##############################
Test: CheckTestRunner: rfcomm-tester - PASS
Total: 9, Passed: 9 (100.0%), Failed: 0, Not Run: 0

##############################
Test: CheckTestRunner: sco-tester - PASS
Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0

##############################
Test: CheckTestRunner: smp-tester - PASS
Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0

##############################
Test: CheckTestRunner: userchan-tester - PASS
Total: 3, Passed: 3 (100.0%), Failed: 0, Not Run: 0



---
Regards,
Linux Bluetooth


[-- Attachment #2: l2cap-tester.log --]
[-- Type: application/octet-stream, Size: 43342 bytes --]

[-- Attachment #3: bnep-tester.log --]
[-- Type: application/octet-stream, Size: 3533 bytes --]

[-- Attachment #4: mgmt-tester.log --]
[-- Type: application/octet-stream, Size: 547124 bytes --]

[-- Attachment #5: rfcomm-tester.log --]
[-- Type: application/octet-stream, Size: 11653 bytes --]

[-- Attachment #6: sco-tester.log --]
[-- Type: application/octet-stream, Size: 9888 bytes --]

[-- Attachment #7: smp-tester.log --]
[-- Type: application/octet-stream, Size: 11799 bytes --]

[-- Attachment #8: userchan-tester.log --]
[-- Type: application/octet-stream, Size: 5429 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-03-18  9:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-18  8:43 [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding Linus Walleij
2021-03-18  8:43 ` [PATCH 2/2] Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles Linus Walleij
2021-03-18  9:18   ` Marcel Holtmann
2021-03-18  9:17 ` [PATCH 1/2] Bluetooth: btbcm: Add BCM4334 DT binding Marcel Holtmann
2021-03-18  9:32 ` [1/2] " bluez.test.bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.