Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1661690 > unrolled thread

[PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL chips

Started bySebastian Reichel <sebastian.reichel@collabora.co.uk>
First post2017-06-08 23:00 +0200
Last post2017-06-09 07:50 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL chips Sebastian Reichel <sebastian.reichel@collabora.co.uk> - 2017-06-08 23:00 +0200
    Re: [PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL chips Rob Herring <robh+dt@kernel.org> - 2017-06-08 23:10 +0200
    Re: [PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL  chips Marcel Holtmann <marcel@holtmann.org> - 2017-06-09 07:50 +0200

#1661690 — [PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL chips

FromSebastian Reichel <sebastian.reichel@collabora.co.uk>
Date2017-06-08 23:00 +0200
Subject[PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL chips
Message-ID<tQcH8-FJ-31@gated-at.bofh.it>
Add compatible values for WiLink chips from 128x and 180x series.
Also the DT binding already contained compatible values for the 127x
series, but the driver did not. This brings the list on par with
the list from wlcore (the wifi driver).

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
---
Hi,

This patch originally was part of the "Motorola Droid 4: Add WL1285C support"
series. It can be queued standalone via the bluetooth tree, though.

Changes since PATCHv2:
 * none
Changes since PATCHv1:
 * patch did not exist

-- Sebastian
---
 Documentation/devicetree/bindings/net/ti,wilink-st.txt | 6 ++++++
 drivers/bluetooth/hci_ll.c                             | 8 ++++++++
 2 files changed, 14 insertions(+)

diff --git a/Documentation/devicetree/bindings/net/ti,wilink-st.txt b/Documentation/devicetree/bindings/net/ti,wilink-st.txt
index cbad73a84ac4..b1a421e2fde3 100644
--- a/Documentation/devicetree/bindings/net/ti,wilink-st.txt
+++ b/Documentation/devicetree/bindings/net/ti,wilink-st.txt
@@ -14,6 +14,12 @@ Required properties:
  - compatible: should be one of the following:
     "ti,wl1271-st"
     "ti,wl1273-st"
+    "ti,wl1281-st"
+    "ti,wl1283-st"
+    "ti,wl1285-st"
+    "ti,wl1801-st"
+    "ti,wl1805-st"
+    "ti,wl1807-st"
     "ti,wl1831-st"
     "ti,wl1835-st"
     "ti,wl1837-st"
diff --git a/drivers/bluetooth/hci_ll.c b/drivers/bluetooth/hci_ll.c
index adc444f309a3..d2f32a994daa 100644
--- a/drivers/bluetooth/hci_ll.c
+++ b/drivers/bluetooth/hci_ll.c
@@ -740,6 +740,14 @@ static void hci_ti_remove(struct serdev_device *serdev)
 }
 
 static const struct of_device_id hci_ti_of_match[] = {
+	{ .compatible = "ti,wl1271-st" },
+	{ .compatible = "ti,wl1273-st" },
+	{ .compatible = "ti,wl1281-st" },
+	{ .compatible = "ti,wl1283-st" },
+	{ .compatible = "ti,wl1285-st" },
+	{ .compatible = "ti,wl1801-st" },
+	{ .compatible = "ti,wl1805-st" },
+	{ .compatible = "ti,wl1807-st" },
 	{ .compatible = "ti,wl1831-st" },
 	{ .compatible = "ti,wl1835-st" },
 	{ .compatible = "ti,wl1837-st" },
-- 
2.11.0

[toc] | [next] | [standalone]


#1661693

FromRob Herring <robh+dt@kernel.org>
Date2017-06-08 23:10 +0200
Message-ID<tQcQN-XZ-7@gated-at.bofh.it>
In reply to#1661690
On Thu, Jun 8, 2017 at 3:58 PM, Sebastian Reichel
<sebastian.reichel@collabora.co.uk> wrote:
> Add compatible values for WiLink chips from 128x and 180x series.
> Also the DT binding already contained compatible values for the 127x
> series, but the driver did not. This brings the list on par with
> the list from wlcore (the wifi driver).
>
> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
> ---
> Hi,
>
> This patch originally was part of the "Motorola Droid 4: Add WL1285C support"
> series. It can be queued standalone via the bluetooth tree, though.
>
> Changes since PATCHv2:
>  * none
> Changes since PATCHv1:
>  * patch did not exist
>
> -- Sebastian
> ---
>  Documentation/devicetree/bindings/net/ti,wilink-st.txt | 6 ++++++
>  drivers/bluetooth/hci_ll.c                             | 8 ++++++++
>  2 files changed, 14 insertions(+)

Reviewed-by: Rob Herring <robh@kernel.org>

[toc] | [prev] | [next] | [standalone]


#1661941 — Re: [PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL chips

FromMarcel Holtmann <marcel@holtmann.org>
Date2017-06-09 07:50 +0200
SubjectRe: [PATCHv3] Bluetooth: hci_ll: Add compatible values for more WL chips
Message-ID<tQkY1-5Xn-9@gated-at.bofh.it>
In reply to#1661690
Hi Sebastian,

> Add compatible values for WiLink chips from 128x and 180x series.
> Also the DT binding already contained compatible values for the 127x
> series, but the driver did not. This brings the list on par with
> the list from wlcore (the wifi driver).
> 
> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
> ---
> Hi,
> 
> This patch originally was part of the "Motorola Droid 4: Add WL1285C support"
> series. It can be queued standalone via the bluetooth tree, though.
> 
> Changes since PATCHv2:
> * none
> Changes since PATCHv1:
> * patch did not exist
> 
> -- Sebastian
> ---
> Documentation/devicetree/bindings/net/ti,wilink-st.txt | 6 ++++++
> drivers/bluetooth/hci_ll.c                             | 8 ++++++++
> 2 files changed, 14 insertions(+)

patch has been applied to bluetooth-next tree.

Regards

Marcel

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web