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,wcn7850-bt.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm WCN7850 Bluetooth 8 9maintainers: 10 - Bartosz Golaszewski <brgl@bgdev.pl> 11 - Balakrishna Godavarthi <quic_bgodavar@quicinc.com> 12 - Rocky Liao <quic_rjliao@quicinc.com> 13 14properties: 15 compatible: 16 enum: 17 - qcom,wcn7850-bt 18 19 enable-gpios: 20 maxItems: 1 21 deprecated: true 22 23 swctrl-gpios: 24 maxItems: 1 25 description: gpio specifier is used to find status 26 of clock supply to SoC 27 deprecated: true 28 29 vddaon-supply: 30 description: VDD_AON supply regulator handle 31 32 vdddig-supply: 33 description: VDD_DIG supply regulator handle 34 deprecated: true 35 36 vddio-supply: 37 description: VDD_IO supply regulator handle 38 deprecated: true 39 40 vddrfa0p8-supply: 41 description: VDD_RFA_0P8 supply regulator handle 42 43 vddrfa1p2-supply: 44 description: VDD_RFA_1P2 supply regulator handle 45 46 vddrfa1p8-supply: 47 description: VDD_RFA_1P8 supply regulator handle 48 49 vddrfa1p9-supply: 50 description: VDD_RFA_1P9 supply regulator handle 51 deprecated: true 52 53 vddrfacmn-supply: 54 description: VDD_RFA_CMN supply regulator handle 55 56 vddwlcx-supply: 57 description: VDD_WLCX supply regulator handle 58 59 vddwlmx-supply: 60 description: VDD_WLMX supply regulator handle 61 62required: 63 - compatible 64 - vddrfacmn-supply 65 - vddaon-supply 66 - vddwlcx-supply 67 - vddwlmx-supply 68 - vddrfa0p8-supply 69 - vddrfa1p2-supply 70 - vddrfa1p8-supply 71 72allOf: 73 - $ref: bluetooth-controller.yaml# 74 - $ref: qcom,bluetooth-common.yaml 75 - $ref: /schemas/serial/serial-peripheral-props.yaml# 76 77unevaluatedProperties: false 78 79examples: 80 - | 81 serial { 82 bluetooth { 83 compatible = "qcom,wcn7850-bt"; 84 85 max-speed = <3200000>; 86 vddaon-supply = <&vreg_pmu_aon_0p59>; 87 vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>; 88 vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>; 89 vddrfa1p8-supply = <&vreg_pmu_rfa_1p8>; 90 vddrfacmn-supply = <&vreg_pmu_rfa_cmn>; 91 vddwlcx-supply = <&vreg_pmu_wlcx_0p8>; 92 vddwlmx-supply = <&vreg_pmu_wlmx_0p85>; 93 }; 94 }; 95