omap-usb-tll.txt 743 B

123456789101112131415161718192021222324252627
  1. OMAP HS USB Host TLL (Transceiver-Less Interface)
  2. Required properties:
  3. - compatible : should be "ti,usbhs-tll"
  4. - reg : should contain one register range i.e. start and length
  5. - interrupts : should contain the TLL module's interrupt
  6. - ti,hwmod : must contain "usb_tll_hs"
  7. Optional properties:
  8. - clocks: a list of phandles and clock-specifier pairs, one for each entry in
  9. clock-names.
  10. - clock-names: should include:
  11. * "usb_tll_hs_usb_ch0_clk" - USB TLL channel 0 clock
  12. * "usb_tll_hs_usb_ch1_clk" - USB TLL channel 1 clock
  13. * "usb_tll_hs_usb_ch2_clk" - USB TLL channel 2 clock
  14. Example:
  15. usbhstll: usbhstll@4a062000 {
  16. compatible = "ti,usbhs-tll";
  17. reg = <0x4a062000 0x1000>;
  18. interrupts = <78>;
  19. ti,hwmods = "usb_tll_hs";
  20. };