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,qca6390-bt.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm QCA6390 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,qca6390-bt 17 18 vddaon-supply: 19 description: VDD_AON supply regulator handle 20 21 vddbtcmx-supply: 22 description: VDD_BT_CMX supply regulator handle 23 24 vddrfa0p8-supply: 25 description: VDD_RFA_0P8 supply regulator handle 26 27 vddrfa1p2-supply: 28 description: VDD_RFA_1P2 supply regulator handle 29 30 vddrfa1p7-supply: 31 description: VDD_RFA_1P7 supply regulator handle 32 33 vddrfacmn-supply: 34 description: VDD_RFA_CMN supply regulator handle 35 36required: 37 - compatible 38 - vddaon-supply 39 - vddbtcmx-supply 40 - vddrfa0p8-supply 41 - vddrfa1p2-supply 42 - vddrfa1p7-supply 43 - vddrfacmn-supply 44 45allOf: 46 - $ref: bluetooth-controller.yaml# 47 - $ref: qcom,bluetooth-common.yaml 48 - $ref: /schemas/serial/serial-peripheral-props.yaml# 49 50unevaluatedProperties: false 51 52examples: 53 - | 54 serial { 55 bluetooth { 56 compatible = "qcom,qca6390-bt"; 57 vddaon-supply = <&vreg_pmu_aon_0p59>; 58 vddbtcmx-supply = <&vreg_pmu_btcmx_0p85>; 59 vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>; 60 vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>; 61 vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>; 62 vddrfacmn-supply = <&vreg_pmu_rfa_cmn>; 63 }; 64 }; 65