All of lore.kernel.org
 help / color / mirror / Atom feed
From: Francesco Dolcini <francesco@dolcini.it>
To: netdev@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-bluetooth@vger.kernel.org,
	Marcel Holtmann <marcel@holtmann.org>,
	Luiz Augusto von Dentz <luiz.dentz@gmail.com>
Cc: Stefan Eichenberger <stefan.eichenberger@toradex.com>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Johan Hedberg <johan.hedberg@gmail.com>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Francesco Dolcini <francesco.dolcini@toradex.com>
Subject: [PATCH v2 2/5] dt-bindings: bluetooth: marvell: add max-speed property
Date: Thu, 26 Jan 2023 08:43:53 +0100	[thread overview]
Message-ID: <20230126074356.431306-3-francesco@dolcini.it> (raw)
In-Reply-To: <20230126074356.431306-1-francesco@dolcini.it>

From: Stefan Eichenberger <stefan.eichenberger@toradex.com>

The 88W8997 bluetooth module supports setting the max-speed property.

Signed-off-by: Stefan Eichenberger <stefan.eichenberger@toradex.com>
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
---
v2: fixed indentation
---
 .../bindings/net/marvell-bluetooth.yaml          | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/Documentation/devicetree/bindings/net/marvell-bluetooth.yaml b/Documentation/devicetree/bindings/net/marvell-bluetooth.yaml
index 83b64ed730f5..516c63ad165a 100644
--- a/Documentation/devicetree/bindings/net/marvell-bluetooth.yaml
+++ b/Documentation/devicetree/bindings/net/marvell-bluetooth.yaml
@@ -19,9 +19,25 @@ properties:
       - mrvl,88w8897
       - mrvl,88w8997
 
+  max-speed:
+    description: see Documentation/devicetree/bindings/serial/serial.yaml
+
 required:
   - compatible
 
+allOf:
+  - if:
+      properties:
+        compatible:
+          contains:
+            const: mrvl,88w8997
+    then:
+      properties:
+        max-speed: true
+    else:
+      properties:
+        max-speed: false
+
 additionalProperties: false
 
 examples:
-- 
2.25.1


  parent reply	other threads:[~2023-01-26  7:45 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-26  7:43 [PATCH v2 0/5] Bluetooth: hci_mrvl: Add serdev support for 88W8997 Francesco Dolcini
2023-01-26  7:43 ` Francesco Dolcini
2023-01-26  7:43 ` [PATCH v2 1/5] dt-bindings: bluetooth: marvell: add 88W8997 Francesco Dolcini
2023-01-26  8:39   ` Bluetooth: hci_mrvl: Add serdev support for 88W8997 bluez.test.bot
2023-01-26 15:13     ` Francesco Dolcini
2023-01-26 20:59       ` Luiz Augusto von Dentz
2023-01-27  9:30         ` Francesco Dolcini
2023-01-26  7:43 ` Francesco Dolcini [this message]
2023-01-26 10:03   ` [PATCH v2 2/5] dt-bindings: bluetooth: marvell: add max-speed property Krzysztof Kozlowski
2023-01-26  7:43 ` [PATCH v2 3/5] Bluetooth: hci_mrvl: use maybe_unused macro for device tree ids Francesco Dolcini
2023-01-26  7:43 ` [PATCH v2 4/5] Bluetooth: hci_mrvl: Add serdev support for 88W8997 Francesco Dolcini
2023-01-26  7:43 ` [PATCH v2 5/5] arm64: dts: imx8mp-verdin: add 88W8997 serdev to uart4 Francesco Dolcini
2023-01-26  7:43   ` Francesco Dolcini
2023-02-10  8:39 ` [PATCH v2 0/5] Bluetooth: hci_mrvl: Add serdev support for 88W8997 Francesco Dolcini
2023-02-10  8:39   ` Francesco Dolcini
2023-02-10 18:52   ` Luiz Augusto von Dentz
2023-02-10 18:52     ` Luiz Augusto von Dentz
2023-02-10 19:04     ` Francesco Dolcini
2023-02-10 19:04       ` Francesco Dolcini
2023-02-10 19:30       ` Luiz Augusto von Dentz
2023-02-10 19:30         ` Luiz Augusto von Dentz
2023-02-15 21:20 ` patchwork-bot+bluetooth
2023-02-15 21:20   ` patchwork-bot+bluetooth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230126074356.431306-3-francesco@dolcini.it \
    --to=francesco@dolcini.it \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=edumazet@google.com \
    --cc=francesco.dolcini@toradex.com \
    --cc=johan.hedberg@gmail.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=kuba@kernel.org \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    --cc=marcel@holtmann.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=robh+dt@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=stefan.eichenberger@toradex.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.