xref: /freebsd/sys/contrib/device-tree/Bindings/phy/amlogic,meson-gxl-usb2-phy.yaml (revision cb7aa33ac6cd46a5434798e50363136e64f3ae98)
1*cb7aa33aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*cb7aa33aSEmmanuel Vadot%YAML 1.2
3*cb7aa33aSEmmanuel Vadot---
4*cb7aa33aSEmmanuel Vadot$id: http://devicetree.org/schemas/phy/amlogic,meson-gxl-usb2-phy.yaml#
5*cb7aa33aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*cb7aa33aSEmmanuel Vadot
7*cb7aa33aSEmmanuel Vadottitle: Amlogic Meson GXL USB2 PHY
8*cb7aa33aSEmmanuel Vadot
9*cb7aa33aSEmmanuel Vadotmaintainers:
10*cb7aa33aSEmmanuel Vadot  - Neil Armstrong <neil.armstrong@linaro.org>
11*cb7aa33aSEmmanuel Vadot
12*cb7aa33aSEmmanuel Vadotproperties:
13*cb7aa33aSEmmanuel Vadot  compatible:
14*cb7aa33aSEmmanuel Vadot    const: amlogic,meson-gxl-usb2-phy
15*cb7aa33aSEmmanuel Vadot
16*cb7aa33aSEmmanuel Vadot  reg:
17*cb7aa33aSEmmanuel Vadot    maxItems: 1
18*cb7aa33aSEmmanuel Vadot
19*cb7aa33aSEmmanuel Vadot  clocks:
20*cb7aa33aSEmmanuel Vadot    maxItems: 1
21*cb7aa33aSEmmanuel Vadot
22*cb7aa33aSEmmanuel Vadot  clock-names:
23*cb7aa33aSEmmanuel Vadot    items:
24*cb7aa33aSEmmanuel Vadot      - const: phy
25*cb7aa33aSEmmanuel Vadot
26*cb7aa33aSEmmanuel Vadot  resets:
27*cb7aa33aSEmmanuel Vadot    maxItems: 1
28*cb7aa33aSEmmanuel Vadot
29*cb7aa33aSEmmanuel Vadot  reset-names:
30*cb7aa33aSEmmanuel Vadot    items:
31*cb7aa33aSEmmanuel Vadot      - const: phy
32*cb7aa33aSEmmanuel Vadot
33*cb7aa33aSEmmanuel Vadot  "#phy-cells":
34*cb7aa33aSEmmanuel Vadot    const: 0
35*cb7aa33aSEmmanuel Vadot
36*cb7aa33aSEmmanuel Vadot  phy-supply: true
37*cb7aa33aSEmmanuel Vadot
38*cb7aa33aSEmmanuel Vadotrequired:
39*cb7aa33aSEmmanuel Vadot  - compatible
40*cb7aa33aSEmmanuel Vadot  - reg
41*cb7aa33aSEmmanuel Vadot  - "#phy-cells"
42*cb7aa33aSEmmanuel Vadot
43*cb7aa33aSEmmanuel VadotadditionalProperties: false
44*cb7aa33aSEmmanuel Vadot
45*cb7aa33aSEmmanuel Vadotexamples:
46*cb7aa33aSEmmanuel Vadot  - |
47*cb7aa33aSEmmanuel Vadot    phy@78000 {
48*cb7aa33aSEmmanuel Vadot        compatible = "amlogic,meson-gxl-usb2-phy";
49*cb7aa33aSEmmanuel Vadot        reg = <0x78000 0x20>;
50*cb7aa33aSEmmanuel Vadot        clocks = <&xtal>;
51*cb7aa33aSEmmanuel Vadot        clock-names = "phy";
52*cb7aa33aSEmmanuel Vadot        resets = <&phy_reset>;
53*cb7aa33aSEmmanuel Vadot        reset-names = "phy";
54*cb7aa33aSEmmanuel Vadot        #phy-cells = <0>;
55*cb7aa33aSEmmanuel Vadot        phy-supply = <&usb2_supply>;
56*cb7aa33aSEmmanuel Vadot    };
57