Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 38dbfb59d1175ef458d006556061adeaa8751b72 authored by Linus Torvalds on 03 February 2014, 00:42:13 UTC
Linus 3.14-rc1
Tip revision: 38dbfb5
msm-hsusb.txt
MSM SoC HSUSB controllers

EHCI

Required properties:
- compatible:	Should contain "qcom,ehci-host"
- regs:			offset and length of the register set in the memory map
- usb-phy:		phandle for the PHY device

Example EHCI controller device node:

	ehci: ehci@f9a55000 {
		compatible = "qcom,ehci-host";
		reg = <0xf9a55000 0x400>;
		usb-phy = <&usb_otg>;
	};

back to top