[PATCH v4 1/2] dt-bindings: bluetooth: qcom,qcc2072-bt: Split to separate schema
From: Vivek Sahu
Date: Tue Feb 17 2026 - 00:48:18 EST
One big Qualcomm Bluetooth schema is hardly manageable: it lists all
possible properties (19 supplies). Split qcom,qcc2072-bt to separate
bindings, so device schema will be easier to read/maintain and list only
relevant properties.
Signed-off-by: Vivek Sahu <vivek.sahu@xxxxxxxxxxxxxxxx>
---
.../net/bluetooth/qcom,qcc2072-bt.yaml | 48 +++++++++++++++++++
1 file changed, 48 insertions(+)
create mode 100644 Documentation/devicetree/bindings/net/bluetooth/qcom,qcc2072-bt.yaml
diff --git a/Documentation/devicetree/bindings/net/bluetooth/qcom,qcc2072-bt.yaml b/Documentation/devicetree/bindings/net/bluetooth/qcom,qcc2072-bt.yaml
new file mode 100644
index 000000000000..48936bb8e91c
--- /dev/null
+++ b/Documentation/devicetree/bindings/net/bluetooth/qcom,qcc2072-bt.yaml
@@ -0,0 +1,48 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/net/bluetooth/qcom,qcc2072-bt.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Qualcomm QCC2072 Bluetooth
+
+maintainers:
+ - Balakrishna Godavarthi <quic_bgodavar@xxxxxxxxxxx>
+ - Rocky Liao <quic_rjliao@xxxxxxxxxxx>
+ - Vivek Sahu <vivek.sahu@xxxxxxxxxxxxxxxx>
+
+description:
+ Qualcomm QCC2072 is a UART-based Bluetooth controller.
+
+properties:
+ compatible:
+ enum:
+ - qcom,qcc2072-bt
+
+ enable-gpios:
+ maxItems: 1
+ description: GPIO specifier for the chip interrupt.
+
+required:
+ - compatible
+ - enable-gpios
+
+allOf:
+ - $ref: bluetooth-controller.yaml#
+ - $ref: qcom,bluetooth-common.yaml
+ - $ref: /schemas/serial/serial-peripheral-props.yaml#
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+ #include <dt-bindings/interrupt-controller/irq.h>
+
+ serial {
+ bluetooth {
+ compatible = "qcom,qcc2072-bt";
+ enable-gpios = <&tlmm 19 IRQ_TYPE_EDGE_FALLING>;
+ max-speed = <3200000>;
+ };
+ };
--
2.34.1