1Allwinner sun4i USB PHY
2-----------------------
3
4Required properties:
5- compatible : should be one of
6  * allwinner,sun4i-a10-usb-phy
7  * allwinner,sun5i-a13-usb-phy
8  * allwinner,sun6i-a31-usb-phy
9  * allwinner,sun7i-a20-usb-phy
10- reg : a list of offset + length pairs
11- reg-names :
12  * "phy_ctrl"
13  * "pmu1"
14  * "pmu2" for sun4i, sun6i or sun7i
15- #phy-cells : from the generic phy bindings, must be 1
16- clocks : phandle + clock specifier for the phy clocks
17- clock-names :
18  * "usb_phy" for sun4i, sun5i or sun7i
19  * "usb0_phy", "usb1_phy" and "usb2_phy" for sun6i
20- resets : a list of phandle + reset specifier pairs
21- reset-names :
22  * "usb0_reset"
23  * "usb1_reset"
24  * "usb2_reset" for sun4i, sun6i or sun7i
25
26Example:
27	usbphy: phy@0x01c13400 {
28		#phy-cells = <1>;
29		compatible = "allwinner,sun4i-a10-usb-phy";
30		/* phy base regs, phy1 pmu reg, phy2 pmu reg */
31		reg = <0x01c13400 0x10 0x01c14800 0x4 0x01c1c800 0x4>;
32		reg-names = "phy_ctrl", "pmu1", "pmu2";
33		clocks = <&usb_clk 8>;
34		clock-names = "usb_phy";
35		resets = <&usb_clk 1>, <&usb_clk 2>;
36		reset-names = "usb1_reset", "usb2_reset";
37	};
38