usb3503.txt 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. SMSC USB3503 High-Speed Hub Controller
  2. Required properties:
  3. - compatible: Should be "smsc,usb3503" or "smsc,usb3503a".
  4. Optional properties:
  5. - reg: Specifies the i2c slave address, it is required and should be 0x08
  6. if I2C is used.
  7. - connect-gpios: Should specify GPIO for connect.
  8. - disabled-ports: Should specify the ports unused.
  9. '1' or '2' or '3' are available for this property to describe the port
  10. number. 1~3 property values are possible to be described.
  11. Do not describe this property if all ports have to be enabled.
  12. - intn-gpios: Should specify GPIO for interrupt.
  13. - reset-gpios: Should specify GPIO for reset.
  14. - initial-mode: Should specify initial mode.
  15. (1 for HUB mode, 2 for STANDBY mode)
  16. - refclk: Clock used for driving REFCLK signal (optional, if not provided
  17. the driver assumes that clock signal is always available, its
  18. rate is specified by REF_SEL pins and a value from the primary
  19. reference clock frequencies table is used). Use clocks and
  20. clock-names in order to assign it
  21. - refclk-frequency: Frequency of the REFCLK signal as defined by REF_SEL
  22. pins (optional, if not provided, driver will not set rate of the
  23. REFCLK signal and assume that a value from the primary reference
  24. clock frequencies table is used)
  25. Examples:
  26. usb3503@08 {
  27. compatible = "smsc,usb3503";
  28. reg = <0x08>;
  29. connect-gpios = <&gpx3 0 1>;
  30. disabled-ports = <2 3>;
  31. intn-gpios = <&gpx3 4 1>;
  32. reset-gpios = <&gpx3 5 1>;
  33. initial-mode = <1>;
  34. clocks = <&clks 80>;
  35. clock-names = "refclk";
  36. };