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

dt-bindings: usb: Add usb-phy property to the jz4740-musb node

Add a required 'usb-phy' property, to obtain a phandle to the USB PHY
from devicetree.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Bin Liu <b-liu@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Paul Cercueil and committed by
Greg Kroah-Hartman
70833b84 a84014e1

+8
+8
Documentation/devicetree/bindings/usb/ingenic,jz4740-musb.txt
··· 8 8 - interrupt-names: must be "mc" 9 9 - clocks: phandle to the "udc" clock 10 10 - clock-names: must be "udc" 11 + - phys: phandle to the USB PHY 11 12 12 13 Example: 14 + 15 + usb_phy: usb-phy@0 { 16 + compatible = "usb-nop-xceiv"; 17 + #phy-cells = <0>; 18 + }; 13 19 14 20 udc: usb@13040000 { 15 21 compatible = "ingenic,jz4740-musb"; ··· 27 21 28 22 clocks = <&cgu JZ4740_CLK_UDC>; 29 23 clock-names = "udc"; 24 + 25 + phys = <&usb_phy>; 30 26 };