linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1
@ 2022-02-25 20:41 Luca Weiss
  2022-02-25 20:41 ` [PATCH v2 2/2] Bluetooth: hci_bcm: " Luca Weiss
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Luca Weiss @ 2022-02-25 20:41 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, marcel, Luca Weiss,
	David S. Miller, Jakub Kicinski, Rob Herring, Linus Walleij,
	netdev, devicetree, linux-kernel

Document the compatible string for BCM43430A0 bluetooth used in lg-lenok
and BCM43430A1 used in asus-sparrow.

Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
---
Changes in v2:
- add bcm43430a1 too, adjust commit message to reflect that

 Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
index 5aac094fd217..dd035ca639d4 100644
--- a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
+++ b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
@@ -19,6 +19,8 @@ properties:
       - brcm,bcm4329-bt
       - brcm,bcm4330-bt
       - brcm,bcm4334-bt
+      - brcm,bcm43430a0-bt
+      - brcm,bcm43430a1-bt
       - brcm,bcm43438-bt
       - brcm,bcm4345c5
       - brcm,bcm43540-bt
-- 
2.35.1


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

* [PATCH v2 2/2] Bluetooth: hci_bcm: add BCM43430A0 & BCM43430A1
  2022-02-25 20:41 [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1 Luca Weiss
@ 2022-02-25 20:41 ` Luca Weiss
  2022-03-04 17:21   ` Marcel Holtmann
  2022-02-25 20:47 ` [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: " Luca Weiss
  2022-09-15 19:25 ` Luca Weiss
  2 siblings, 1 reply; 6+ messages in thread
From: Luca Weiss @ 2022-02-25 20:41 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, marcel, Luca Weiss,
	Johan Hedberg, Luiz Augusto von Dentz, linux-bluetooth,
	linux-kernel

Add the compatible for BCM43430A0 bluetooth used in lg-lenok and
BCM43430A1 used in asus-sparrow.

Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
---
Changes in v2:
- add bcm43430a1 too, adjust commit message to reflect that

 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 d634a27bc850..bd090d92a548 100644
--- a/drivers/bluetooth/hci_bcm.c
+++ b/drivers/bluetooth/hci_bcm.c
@@ -1513,6 +1513,8 @@ static const struct of_device_id bcm_bluetooth_of_match[] = {
 	{ .compatible = "brcm,bcm4330-bt" },
 	{ .compatible = "brcm,bcm4334-bt" },
 	{ .compatible = "brcm,bcm4345c5" },
+	{ .compatible = "brcm,bcm43430a0-bt" },
+	{ .compatible = "brcm,bcm43430a1-bt" },
 	{ .compatible = "brcm,bcm43438-bt", .data = &bcm43438_device_data },
 	{ .compatible = "brcm,bcm43540-bt", .data = &bcm4354_device_data },
 	{ .compatible = "brcm,bcm4335a0" },
-- 
2.35.1


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

* Re: [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1
  2022-02-25 20:41 [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1 Luca Weiss
  2022-02-25 20:41 ` [PATCH v2 2/2] Bluetooth: hci_bcm: " Luca Weiss
@ 2022-02-25 20:47 ` Luca Weiss
  2022-02-28 14:44   ` Linus Walleij
  2022-09-15 19:25 ` Luca Weiss
  2 siblings, 1 reply; 6+ messages in thread
From: Luca Weiss @ 2022-02-25 20:47 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, marcel, David S. Miller,
	Jakub Kicinski, Rob Herring, Linus Walleij, netdev, devicetree,
	linux-kernel

On Freitag, 25. Februar 2022 21:41:37 CET Luca Weiss wrote:
> Document the compatible string for BCM43430A0 bluetooth used in lg-lenok
> and BCM43430A1 used in asus-sparrow.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>

The previous version with just BCM43430A0 the patch collected the following 
tags:

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Rob Herring <robh@kernel.org>

Not sure if with the changes I can keep them.

> ---
> Changes in v2:
> - add bcm43430a1 too, adjust commit message to reflect that
> 
>  Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
> b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml index
> 5aac094fd217..dd035ca639d4 100644
> --- a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
> +++ b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
> @@ -19,6 +19,8 @@ properties:
>        - brcm,bcm4329-bt
>        - brcm,bcm4330-bt
>        - brcm,bcm4334-bt
> +      - brcm,bcm43430a0-bt
> +      - brcm,bcm43430a1-bt
>        - brcm,bcm43438-bt
>        - brcm,bcm4345c5
>        - brcm,bcm43540-bt





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

* Re: [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1
  2022-02-25 20:47 ` [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: " Luca Weiss
@ 2022-02-28 14:44   ` Linus Walleij
  0 siblings, 0 replies; 6+ messages in thread
From: Linus Walleij @ 2022-02-28 14:44 UTC (permalink / raw)
  To: Luca Weiss
  Cc: linux-arm-msm, ~postmarketos/upstreaming, phone-devel, marcel,
	David S. Miller, Jakub Kicinski, Rob Herring, netdev, devicetree,
	linux-kernel

On Fri, Feb 25, 2022 at 9:47 PM Luca Weiss <luca@z3ntu.xyz> wrote:
>
> On Freitag, 25. Februar 2022 21:41:37 CET Luca Weiss wrote:
> > Document the compatible string for BCM43430A0 bluetooth used in lg-lenok
> > and BCM43430A1 used in asus-sparrow.
> >
> > Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
>
> The previous version with just BCM43430A0 the patch collected the following
> tags:
>
> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
> Acked-by: Rob Herring <robh@kernel.org>
>
> Not sure if with the changes I can keep them.

You can keep mine.

Yours,
Linus Walleij

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

* Re: [PATCH v2 2/2] Bluetooth: hci_bcm: add BCM43430A0 & BCM43430A1
  2022-02-25 20:41 ` [PATCH v2 2/2] Bluetooth: hci_bcm: " Luca Weiss
@ 2022-03-04 17:21   ` Marcel Holtmann
  0 siblings, 0 replies; 6+ messages in thread
From: Marcel Holtmann @ 2022-03-04 17:21 UTC (permalink / raw)
  To: Luca Weiss
  Cc: MSM, ~postmarketos/upstreaming, phone-devel, Johan Hedberg,
	Luiz Augusto von Dentz, linux-bluetooth, linux-kernel

Hi Luca,

> Add the compatible for BCM43430A0 bluetooth used in lg-lenok and
> BCM43430A1 used in asus-sparrow.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> ---
> Changes in v2:
> - add bcm43430a1 too, adjust commit message to reflect that
> 
> 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] 6+ messages in thread

* Re: [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1
  2022-02-25 20:41 [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1 Luca Weiss
  2022-02-25 20:41 ` [PATCH v2 2/2] Bluetooth: hci_bcm: " Luca Weiss
  2022-02-25 20:47 ` [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: " Luca Weiss
@ 2022-09-15 19:25 ` Luca Weiss
  2 siblings, 0 replies; 6+ messages in thread
From: Luca Weiss @ 2022-09-15 19:25 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, marcel, David S. Miller,
	Jakub Kicinski, Rob Herring, Linus Walleij, netdev, devicetree,
	linux-kernel

Hi all,

On Freitag, 25. Februar 2022 21:41:37 CEST Luca Weiss wrote:
> Document the compatible string for BCM43430A0 bluetooth used in lg-lenok
> and BCM43430A1 used in asus-sparrow.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>

Can someone please apply this patch? It still seems to apply without fuzz.

Regards
Luca

> ---
> Changes in v2:
> - add bcm43430a1 too, adjust commit message to reflect that
> 
>  Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
> b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml index
> 5aac094fd217..dd035ca639d4 100644
> --- a/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
> +++ b/Documentation/devicetree/bindings/net/broadcom-bluetooth.yaml
> @@ -19,6 +19,8 @@ properties:
>        - brcm,bcm4329-bt
>        - brcm,bcm4330-bt
>        - brcm,bcm4334-bt
> +      - brcm,bcm43430a0-bt
> +      - brcm,bcm43430a1-bt
>        - brcm,bcm43438-bt
>        - brcm,bcm4345c5
>        - brcm,bcm43540-bt





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

end of thread, other threads:[~2022-09-15 19:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-25 20:41 [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1 Luca Weiss
2022-02-25 20:41 ` [PATCH v2 2/2] Bluetooth: hci_bcm: " Luca Weiss
2022-03-04 17:21   ` Marcel Holtmann
2022-02-25 20:47 ` [PATCH v2 1/2] dt-bindings: bluetooth: broadcom: " Luca Weiss
2022-02-28 14:44   ` Linus Walleij
2022-09-15 19:25 ` Luca Weiss

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).