usb-nop-xceiv.txt 1004 B

12345678910111213141516171819202122232425262728293031323334
  1. USB NOP PHY
  2. Required properties:
  3. - compatible: should be usb-nop-xceiv
  4. Optional properties:
  5. - clocks: phandle to the PHY clock. Use as per Documentation/devicetree
  6. /bindings/clock/clock-bindings.txt
  7. This property is required if clock-frequency is specified.
  8. - clock-names: Should be "main_clk"
  9. - clock-frequency: the clock frequency (in Hz) that the PHY clock must
  10. be configured to.
  11. - vcc-supply: phandle to the regulator that provides RESET to the PHY.
  12. - reset-supply: phandle to the regulator that provides power to the PHY.
  13. Example:
  14. hsusb1_phy {
  15. compatible = "usb-nop-xceiv";
  16. clock-frequency = <19200000>;
  17. clocks = <&osc 0>;
  18. clock-names = "main_clk";
  19. vcc-supply = <&hsusb1_vcc_regulator>;
  20. reset-supply = <&hsusb1_reset_regulator>;
  21. };
  22. hsusb1_phy is a NOP USB PHY device that gets its clock from an oscillator
  23. and expects that clock to be configured to 19.2MHz by the NOP PHY driver.
  24. hsusb1_vcc_regulator provides power to the PHY and hsusb1_reset_regulator
  25. controls RESET.