pxa-usb.txt 953 B

12345678910111213141516171819202122232425262728293031
  1. PXA USB controllers
  2. OHCI
  3. Required properties:
  4. - compatible: Should be "marvell,pxa-ohci" for USB controllers
  5. used in host mode.
  6. Optional properties:
  7. - "marvell,enable-port1", "marvell,enable-port2", "marvell,enable-port3"
  8. If present, enables the appropriate USB port of the controller.
  9. - "marvell,port-mode" selects the mode of the ports:
  10. 1 = PMM_NPS_MODE
  11. 2 = PMM_GLOBAL_MODE
  12. 3 = PMM_PERPORT_MODE
  13. - "marvell,power-sense-low" - power sense pin is low-active.
  14. - "marvell,power-control-low" - power control pin is low-active.
  15. - "marvell,no-oc-protection" - disable over-current protection.
  16. - "marvell,oc-mode-perport" - enable per-port over-current protection.
  17. - "marvell,power_on_delay" Power On to Power Good time - in ms.
  18. Example:
  19. usb0: ohci@4c000000 {
  20. compatible = "marvell,pxa-ohci", "usb-ohci";
  21. reg = <0x4c000000 0x100000>;
  22. interrupts = <18>;
  23. marvell,enable-port1;
  24. marvell,port-mode = <2>; /* PMM_GLOBAL_MODE */
  25. };