phy-stih407-usb.txt 1018 B

123456789101112131415161718192021222324
  1. ST STiH407 USB PHY controller
  2. This file documents the dt bindings for the usb picoPHY driver which is the PHY for both USB2 and USB3
  3. host controllers (when controlling usb2/1.1 devices) available on STiH407 SoC family from STMicroelectronics.
  4. Required properties:
  5. - compatible : should be "st,stih407-usb2-phy"
  6. - st,syscfg : phandle of sysconfig bank plus integer array containing phyparam and phyctrl register offsets
  7. - resets : list of phandle and reset specifier pairs. There should be two entries, one
  8. for the whole phy and one for the port
  9. - reset-names : list of reset signal names. Should be "global" and "port"
  10. See: Documentation/devicetree/bindings/reset/st,sti-powerdown.txt
  11. See: Documentation/devicetree/bindings/reset/reset.txt
  12. Example:
  13. usb2_picophy0: usbpicophy {
  14. compatible = "st,stih407-usb2-phy";
  15. #phy-cells = <0>;
  16. st,syscfg = <&syscfg_core 0x100 0xf4>;
  17. resets = <&softreset STIH407_PICOPHY_SOFTRESET>,
  18. <&picophyreset STIH407_PICOPHY0_RESET>;
  19. reset-names = "global", "port";
  20. };