exynos-usb.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Samsung Exynos SoC USB controller
  2. The USB devices interface with USB controllers on Exynos SOCs.
  3. The device node has following properties.
  4. EHCI
  5. Required properties:
  6. - compatible: should be "samsung,exynos4210-ehci" for USB 2.0
  7. EHCI controller in host mode.
  8. - reg: physical base address of the controller and length of memory mapped
  9. region.
  10. - interrupts: interrupt number to the cpu.
  11. Optional properties:
  12. - samsung,vbus-gpio: if present, specifies the GPIO that
  13. needs to be pulled up for the bus to be powered.
  14. Example:
  15. usb@12110000 {
  16. compatible = "samsung,exynos4210-ehci";
  17. reg = <0x12110000 0x100>;
  18. interrupts = <0 71 0>;
  19. samsung,vbus-gpio = <&gpx2 6 1 3 3>;
  20. };
  21. OHCI
  22. Required properties:
  23. - compatible: should be "samsung,exynos4210-ohci" for USB 2.0
  24. OHCI companion controller in host mode.
  25. - reg: physical base address of the controller and length of memory mapped
  26. region.
  27. - interrupts: interrupt number to the cpu.
  28. Example:
  29. usb@12120000 {
  30. compatible = "samsung,exynos4210-ohci";
  31. reg = <0x12120000 0x100>;
  32. interrupts = <0 71 0>;
  33. };