Merge branch 'asoc-5.2' into asoc-5.3
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / phy / meson-g12a-usb3-pcie-phy.txt
1 * Amlogic G12A USB3 + PCIE Combo PHY binding
2
3 Required properties:
4 - compatible:   Should be "amlogic,meson-g12a-usb3-pcie-phy"
5 - #phys-cells:  must be 1. The cell number is used to select the phy mode
6   as defined in <dt-bindings/phy/phy.h> between PHY_TYPE_USB3 and PHY_TYPE_PCIE
7 - reg:          The base address and length of the registers
8 - clocks:       a phandle to the 100MHz reference clock of this PHY
9 - clock-names:  must be "ref_clk"
10 - resets:       phandle to the reset lines for the PHY control
11 - reset-names:  must be "phy"
12
13 Example:
14         usb3_pcie_phy: phy@46000 {
15                 compatible = "amlogic,g12a-usb3-pcie-phy";
16                 reg = <0x0 0x46000 0x0 0x2000>;
17                 clocks = <&clkc CLKID_PCIE_PLL>;
18                 clock-names = "ref_clk";
19                 resets = <&reset RESET_PCIE_PHY>;
20                 reset-names = "phy";
21                 #phy-cells = <1>;
22         };