phy-mvebu.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. * Marvell MVEBU SATA PHY
  2. Power control for the SATA phy found on Marvell MVEBU SoCs.
  3. This document extends the binding described in phy-bindings.txt
  4. Required properties :
  5. - reg : Offset and length of the register set for the SATA device
  6. - compatible : Should be "marvell,mvebu-sata-phy"
  7. - clocks : phandle of clock and specifier that supplies the device
  8. - clock-names : Should be "sata"
  9. Example:
  10. sata-phy@84000 {
  11. compatible = "marvell,mvebu-sata-phy";
  12. reg = <0x84000 0x0334>;
  13. clocks = <&gate_clk 15>;
  14. clock-names = "sata";
  15. #phy-cells = <0>;
  16. status = "ok";
  17. };
  18. Armada 375 USB cluster
  19. ----------------------
  20. Armada 375 comes with an USB2 host and device controller and an USB3
  21. controller. The USB cluster control register allows to manage common
  22. features of both USB controllers.
  23. Required properties:
  24. - compatible: "marvell,armada-375-usb-cluster"
  25. - reg: Should contain usb cluster register location and length.
  26. - #phy-cells : from the generic phy bindings, must be 1. Possible
  27. values are 1 (USB2), 2 (USB3).
  28. Example:
  29. usbcluster: usb-cluster@18400 {
  30. compatible = "marvell,armada-375-usb-cluster";
  31. reg = <0x18400 0x4>;
  32. #phy-cells = <1>
  33. };