ehci-st.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ST USB EHCI controller
  2. Required properties:
  3. - compatible : must be "st,st-ehci-300x"
  4. - reg : physical base addresses of the controller and length of memory mapped
  5. region
  6. - interrupts : one EHCI interrupt should be described here
  7. - pinctrl-names : a pinctrl state named "default" must be defined
  8. - pinctrl-0 : phandle referencing pin configuration of the USB controller
  9. See: Documentation/devicetree/bindings/pinctrl/pinctrl-binding.txt
  10. - clocks : phandle list of usb clocks
  11. - clock-names : should be "ic" for interconnect clock and "clk48"
  12. See: Documentation/devicetree/bindings/clock/clock-bindings.txt
  13. - phys : phandle for the PHY device
  14. - phy-names : should be "usb"
  15. - resets : phandle + reset specifier pairs to the powerdown and softreset lines
  16. of the USB IP
  17. - reset-names : should be "power" and "softreset"
  18. See: Documentation/devicetree/bindings/reset/st,sti-powerdown.txt
  19. See: Documentation/devicetree/bindings/reset/reset.txt
  20. Example:
  21. ehci1: usb@0xfe203e00 {
  22. compatible = "st,st-ehci-300x";
  23. reg = <0xfe203e00 0x100>;
  24. interrupts = <GIC_SPI 148 IRQ_TYPE_NONE>;
  25. pinctrl-names = "default";
  26. pinctrl-0 = <&pinctrl_usb1>;
  27. clocks = <&clk_s_a1_ls 0>;
  28. phys = <&usb2_phy>;
  29. phy-names = "usb";
  30. status = "okay";
  31. resets = <&powerdown STIH416_USB1_POWERDOWN>,
  32. <&softreset STIH416_USB1_SOFTRESET>;
  33. reset-names = "power", "softreset";
  34. };