renesas_usbhs.txt 1.0 KB

1234567891011121314151617181920212223242526272829
  1. Renesas Electronics USBHS driver
  2. Required properties:
  3. - compatible: Must contain one of the following:
  4. - "renesas,usbhs-r8a7790"
  5. - "renesas,usbhs-r8a7791"
  6. - "renesas,usbhs-r8a7794"
  7. - "renesas,usbhs-r8a7795"
  8. - reg: Base address and length of the register for the USBHS
  9. - interrupts: Interrupt specifier for the USBHS
  10. - clocks: A list of phandle + clock specifier pairs
  11. Optional properties:
  12. - renesas,buswait: Integer to use BUSWAIT register
  13. - renesas,enable-gpio: A gpio specifier to check GPIO determining if USB
  14. function should be enabled
  15. - phys: phandle + phy specifier pair
  16. - phy-names: must be "usb"
  17. - dmas: Must contain a list of references to DMA specifiers.
  18. - dma-names : named "ch%d", where %d is the channel number ranging from zero
  19. to the number of channels (DnFIFOs) minus one.
  20. Example:
  21. usbhs: usb@e6590000 {
  22. compatible = "renesas,usbhs-r8a7790";
  23. reg = <0 0xe6590000 0 0x100>;
  24. interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>;
  25. clocks = <&mstp7_clks R8A7790_CLK_HSUSB>;
  26. };