xref: /linux/Documentation/devicetree/bindings/net/bluetooth/qcom,wcn6750-bt.yaml (revision 37a93dd5c49b5fda807fd204edf2547c3493319c)
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,wcn6750-bt.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm WCN6750 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,wcn6750-bt
17
18  enable-gpios:
19    maxItems: 1
20    deprecated: true
21
22  swctrl-gpios:
23    maxItems: 1
24    description: gpio specifier is used to find status
25                 of clock supply to SoC
26    deprecated: true
27
28  vddaon-supply:
29    description: VDD_AON supply regulator handle
30
31  vddasd-supply:
32    description: VDD_ASD supply regulator handle
33    deprecated: true
34
35  vddbtcmx-supply:
36    description: VDD_BT_CMX supply regulator handle
37
38  vddbtcxmx-supply:
39    description: VDD_BT_CXMX supply regulator handle
40    deprecated: true
41
42  vddio-supply:
43    description: VDD_IO supply regulator handle
44    deprecated: true
45
46  vddrfa0p8-supply:
47    description: VDD_RFA_0P8 supply regulator handle
48
49  vddrfa1p2-supply:
50    description: VDD_RFA_1P2 supply regulator handle
51
52  vddrfa1p7-supply:
53    description: VDD_RFA_1P7 supply regulator handle
54
55  vddrfa2p2-supply:
56    description: VDD_RFA_2P2 supply regulator handle
57
58  vddrfacmn-supply:
59    description: VDD_RFA_CMN supply regulator handle
60
61required:
62  - compatible
63  - vddaon-supply
64  - vddrfa0p8-supply
65  - vddrfa1p2-supply
66  - vddrfa1p7-supply
67  - vddrfacmn-supply
68
69allOf:
70  - $ref: bluetooth-controller.yaml#
71  - $ref: qcom,bluetooth-common.yaml
72  - $ref: /schemas/serial/serial-peripheral-props.yaml#
73
74unevaluatedProperties: false
75
76examples:
77  - |
78    serial {
79        bluetooth {
80            compatible = "qcom,wcn6750-bt";
81
82            firmware-name = "msnv11.bin";
83            max-speed = <3200000>;
84            vddaon-supply = <&vreg_pmu_aon_0p59>;
85            vddbtcmx-supply = <&vreg_pmu_btcmx_0p85>;
86            vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
87            vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
88            vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
89            vddrfacmn-supply = <&vreg_pmu_rfa_cmn>;
90        };
91    };
92