1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/net/bluetooth/qcom,qca2066-bt.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm QCA2006 Bluetooth 8 9maintainers: 10 - Balakrishna Godavarthi <quic_bgodavar@quicinc.com> 11 - Rocky Liao <quic_rjliao@quicinc.com> 12 13properties: 14 compatible: 15 enum: 16 - qcom,qca2066-bt 17 - qcom,qca6174-bt 18 19 clocks: 20 items: 21 - description: External low-power 32.768 kHz clock input 22 23 enable-gpios: 24 maxItems: 1 25 26required: 27 - compatible 28 - clocks 29 - enable-gpios 30 31allOf: 32 - $ref: bluetooth-controller.yaml# 33 - $ref: qcom,bluetooth-common.yaml 34 - $ref: /schemas/serial/serial-peripheral-props.yaml# 35 36unevaluatedProperties: false 37 38examples: 39 - | 40 #include <dt-bindings/gpio/gpio.h> 41 42 serial { 43 bluetooth { 44 compatible = "qcom,qca6174-bt"; 45 clocks = <&divclk4>; 46 enable-gpios = <&pm8994_gpios 19 GPIO_ACTIVE_HIGH>; 47 firmware-name = "nvm_00440302.bin"; 48 }; 49 }; 50