Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1* Marvell PXA1928 USB and HSIC PHYs
2
3Required properties:
4- compatible: "marvell,pxa1928-usb-phy" or "marvell,pxa1928-hsic-phy"
5- reg: base address and length of the registers
6- clocks - A single clock. From common clock binding.
7- #phys-cells: should be 0. From commmon phy binding.
8- resets: reference to the reset controller
9
10Example:
11
12 usbphy: phy@7000 {
13 compatible = "marvell,pxa1928-usb-phy";
14 reg = <0x7000 0xe0>;
15 clocks = <&apmu_clocks PXA1928_CLK_USB>;
16 #phy-cells = <0>;
17 };
18