xref: /freebsd/sys/contrib/device-tree/Bindings/phy/qcom,snps-eusb2-repeater.yaml (revision cb7aa33ac6cd46a5434798e50363136e64f3ae98)
1*cb7aa33aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*cb7aa33aSEmmanuel Vadot%YAML 1.2
3*cb7aa33aSEmmanuel Vadot---
4*cb7aa33aSEmmanuel Vadot$id: http://devicetree.org/schemas/phy/qcom,snps-eusb2-repeater.yaml#
5*cb7aa33aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*cb7aa33aSEmmanuel Vadot
7*cb7aa33aSEmmanuel Vadottitle: Qualcomm Synopsis eUSB2 to USB 2.0 repeater
8*cb7aa33aSEmmanuel Vadot
9*cb7aa33aSEmmanuel Vadotmaintainers:
10*cb7aa33aSEmmanuel Vadot  - Abel Vesa <abel.vesa@linaro.org>
11*cb7aa33aSEmmanuel Vadot
12*cb7aa33aSEmmanuel Vadotdescription:
13*cb7aa33aSEmmanuel Vadot  eUSB2 repeater converts between eUSB2 and USB 2.0 signaling levels and
14*cb7aa33aSEmmanuel Vadot  allows a eUSB2 PHY to connect to legacy USB 2.0 products
15*cb7aa33aSEmmanuel Vadot
16*cb7aa33aSEmmanuel Vadotproperties:
17*cb7aa33aSEmmanuel Vadot  compatible:
18*cb7aa33aSEmmanuel Vadot    const: qcom,pm8550b-eusb2-repeater
19*cb7aa33aSEmmanuel Vadot
20*cb7aa33aSEmmanuel Vadot  reg:
21*cb7aa33aSEmmanuel Vadot    maxItems: 1
22*cb7aa33aSEmmanuel Vadot
23*cb7aa33aSEmmanuel Vadot  "#phy-cells":
24*cb7aa33aSEmmanuel Vadot    const: 0
25*cb7aa33aSEmmanuel Vadot
26*cb7aa33aSEmmanuel Vadot  vdd18-supply: true
27*cb7aa33aSEmmanuel Vadot
28*cb7aa33aSEmmanuel Vadot  vdd3-supply: true
29*cb7aa33aSEmmanuel Vadot
30*cb7aa33aSEmmanuel Vadotrequired:
31*cb7aa33aSEmmanuel Vadot  - compatible
32*cb7aa33aSEmmanuel Vadot  - reg
33*cb7aa33aSEmmanuel Vadot  - "#phy-cells"
34*cb7aa33aSEmmanuel Vadot
35*cb7aa33aSEmmanuel VadotadditionalProperties: false
36*cb7aa33aSEmmanuel Vadot
37*cb7aa33aSEmmanuel Vadotexamples:
38*cb7aa33aSEmmanuel Vadot  - |
39*cb7aa33aSEmmanuel Vadot    #include <dt-bindings/spmi/spmi.h>
40*cb7aa33aSEmmanuel Vadot
41*cb7aa33aSEmmanuel Vadot    pmic@7 {
42*cb7aa33aSEmmanuel Vadot      reg = <0x7 SPMI_USID>;
43*cb7aa33aSEmmanuel Vadot      #address-cells = <1>;
44*cb7aa33aSEmmanuel Vadot      #size-cells = <0>;
45*cb7aa33aSEmmanuel Vadot
46*cb7aa33aSEmmanuel Vadot      pm8550b_eusb2_repeater: phy@fd00 {
47*cb7aa33aSEmmanuel Vadot        compatible = "qcom,pm8550b-eusb2-repeater";
48*cb7aa33aSEmmanuel Vadot        reg = <0xfd00>;
49*cb7aa33aSEmmanuel Vadot        #phy-cells = <0>;
50*cb7aa33aSEmmanuel Vadot      };
51*cb7aa33aSEmmanuel Vadot    };
52*cb7aa33aSEmmanuel Vadot...
53