usb.txt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Freescale QUICC Engine USB Controller
  2. Required properties:
  3. - compatible : should be "fsl,<chip>-qe-usb", "fsl,mpc8323-qe-usb".
  4. - reg : the first two cells should contain usb registers location and
  5. length, the next two two cells should contain PRAM location and
  6. length.
  7. - interrupts : should contain USB interrupt.
  8. - interrupt-parent : interrupt source phandle.
  9. - fsl,fullspeed-clock : specifies the full speed USB clock source:
  10. "none": clock source is disabled
  11. "brg1" through "brg16": clock source is BRG1-BRG16, respectively
  12. "clk1" through "clk24": clock source is CLK1-CLK24, respectively
  13. - fsl,lowspeed-clock : specifies the low speed USB clock source:
  14. "none": clock source is disabled
  15. "brg1" through "brg16": clock source is BRG1-BRG16, respectively
  16. "clk1" through "clk24": clock source is CLK1-CLK24, respectively
  17. - hub-power-budget : USB power budget for the root hub, in mA.
  18. - gpios : should specify GPIOs in this order: USBOE, USBTP, USBTN, USBRP,
  19. USBRN, SPEED (optional), and POWER (optional).
  20. Example:
  21. usb@6c0 {
  22. compatible = "fsl,mpc8360-qe-usb", "fsl,mpc8323-qe-usb";
  23. reg = <0x6c0 0x40 0x8b00 0x100>;
  24. interrupts = <11>;
  25. interrupt-parent = <&qeic>;
  26. fsl,fullspeed-clock = "clk21";
  27. gpios = <&qe_pio_b 2 0 /* USBOE */
  28. &qe_pio_b 3 0 /* USBTP */
  29. &qe_pio_b 8 0 /* USBTN */
  30. &qe_pio_b 9 0 /* USBRP */
  31. &qe_pio_b 11 0 /* USBRN */
  32. &qe_pio_e 20 0 /* SPEED */
  33. &qe_pio_e 21 0 /* POWER */>;
  34. };