xref: /freebsd/sys/contrib/device-tree/Bindings/phy/fsl,imx8mq-usb-phy.yaml (revision 8bab661a3316d8bd9b9fbd11a3b4371b91507bd2)
1354d7675SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2354d7675SEmmanuel Vadot%YAML 1.2
3354d7675SEmmanuel Vadot---
4354d7675SEmmanuel Vadot$id: http://devicetree.org/schemas/phy/fsl,imx8mq-usb-phy.yaml#
5354d7675SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6354d7675SEmmanuel Vadot
7*8bab661aSEmmanuel Vadottitle: Freescale i.MX8MQ USB3 PHY
8354d7675SEmmanuel Vadot
9354d7675SEmmanuel Vadotmaintainers:
10354d7675SEmmanuel Vadot  - Li Jun <jun.li@nxp.com>
11354d7675SEmmanuel Vadot
12354d7675SEmmanuel Vadotproperties:
13354d7675SEmmanuel Vadot  compatible:
14354d7675SEmmanuel Vadot    enum:
15354d7675SEmmanuel Vadot      - fsl,imx8mq-usb-phy
16354d7675SEmmanuel Vadot      - fsl,imx8mp-usb-phy
17354d7675SEmmanuel Vadot
18354d7675SEmmanuel Vadot  reg:
19354d7675SEmmanuel Vadot    maxItems: 1
20354d7675SEmmanuel Vadot
21354d7675SEmmanuel Vadot  "#phy-cells":
22354d7675SEmmanuel Vadot    const: 0
23354d7675SEmmanuel Vadot
24354d7675SEmmanuel Vadot  clocks:
25354d7675SEmmanuel Vadot    maxItems: 1
26354d7675SEmmanuel Vadot
27354d7675SEmmanuel Vadot  clock-names:
28354d7675SEmmanuel Vadot    items:
29354d7675SEmmanuel Vadot      - const: phy
30354d7675SEmmanuel Vadot
31*8bab661aSEmmanuel Vadot  power-domains:
32*8bab661aSEmmanuel Vadot    maxItems: 1
33*8bab661aSEmmanuel Vadot
34354d7675SEmmanuel Vadot  vbus-supply:
35354d7675SEmmanuel Vadot    description:
36354d7675SEmmanuel Vadot      A phandle to the regulator for USB VBUS.
37354d7675SEmmanuel Vadot
38354d7675SEmmanuel Vadotrequired:
39354d7675SEmmanuel Vadot  - compatible
40354d7675SEmmanuel Vadot  - reg
41354d7675SEmmanuel Vadot  - "#phy-cells"
42354d7675SEmmanuel Vadot  - clocks
43354d7675SEmmanuel Vadot  - clock-names
44354d7675SEmmanuel Vadot
45354d7675SEmmanuel VadotadditionalProperties: false
46354d7675SEmmanuel Vadot
47354d7675SEmmanuel Vadotexamples:
48354d7675SEmmanuel Vadot  - |
49354d7675SEmmanuel Vadot    #include <dt-bindings/clock/imx8mq-clock.h>
50354d7675SEmmanuel Vadot    usb3_phy0: phy@381f0040 {
51354d7675SEmmanuel Vadot        compatible = "fsl,imx8mq-usb-phy";
52354d7675SEmmanuel Vadot        reg = <0x381f0040 0x40>;
53354d7675SEmmanuel Vadot        clocks = <&clk IMX8MQ_CLK_USB1_PHY_ROOT>;
54354d7675SEmmanuel Vadot        clock-names = "phy";
55354d7675SEmmanuel Vadot        #phy-cells = <0>;
56354d7675SEmmanuel Vadot    };
57