aboutsummaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/usb/qcom,snps-eusb2-repeater.yaml
blob: f2b5ace675eb8a43760570aaaef8c8ec2c2833cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/usb/qcom,snps-eusb2-repeater.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Qualcomm Synopsis eUSB2 to USB 2.0 repeater

maintainers:
  - Abel Vesa <abel.vesa@linaro.org>

properties:
  compatible:
    const: qcom,pm8550b-eusb2-repeater

  reg:
    maxItems: 1

  vdd18-supply: true

  vdd3-supply: true

required:
  - compatible
  - reg

additionalProperties: false

examples:
  - |
    #include <dt-bindings/spmi/spmi.h>
    pm8550b: pmic@7 {
        compatible = "qcom,pm8550", "qcom,spmi-pmic";
        reg = <0x7 SPMI_USID>;
        #address-cells = <1>;
        #size-cells = <0>;

        pm8550b_eusb2_repeater: usb-repeater@fd00 {
            compatible = "qcom,pm8550b-eusb2-repeater";
            reg = <0xfd00>;
        };
    };
...