Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: phy: add binding for Freescale i.MX8MQ USB3 PHY

This adds the binding for the USB3 PHY found on the i.MX8M SoC.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

authored by

Lucas Stach and committed by
Kishon Vijay Abraham I
3c2ce40b 03e7d002

+17
+17
Documentation/devicetree/bindings/phy/fsl,imx8mq-usb-phy.txt
··· 1 + * Freescale i.MX8MQ USB3 PHY binding 2 + 3 + Required properties: 4 + - compatible: Should be "fsl,imx8mq-usb-phy" 5 + - #phys-cells: must be 0 (see phy-bindings.txt in this directory) 6 + - reg: The base address and length of the registers 7 + - clocks: phandles to the clocks for each clock listed in clock-names 8 + - clock-names: must contain "phy" 9 + 10 + Example: 11 + usb3_phy0: phy@381f0040 { 12 + compatible = "fsl,imx8mq-usb-phy"; 13 + reg = <0x381f0040 0x40>; 14 + clocks = <&clk IMX8MQ_CLK_USB1_PHY_ROOT>; 15 + clock-names = "phy"; 16 + #phy-cells = <0>; 17 + };