marvell,pxa1928-usb-phy.yaml 838 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/phy/marvell,pxa1928-usb-phy.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Marvell PXA1928 USB/HSIC PHY
  7. maintainers:
  8. - Duje Mihanović <duje.mihanovic@skole.hr>
  9. properties:
  10. compatible:
  11. enum:
  12. - marvell,pxa1928-usb-phy
  13. - marvell,pxa1928-hsic-phy
  14. reg:
  15. maxItems: 1
  16. clocks:
  17. maxItems: 1
  18. '#phy-cells':
  19. const: 0
  20. resets:
  21. maxItems: 1
  22. required:
  23. - compatible
  24. - reg
  25. - clocks
  26. - '#phy-cells'
  27. additionalProperties: false
  28. examples:
  29. - |
  30. #include <dt-bindings/clock/marvell,pxa1928.h>
  31. usbphy: phy@7000 {
  32. compatible = "marvell,pxa1928-usb-phy";
  33. reg = <0x7000 0xe0>;
  34. clocks = <&apmu PXA1928_CLK_USB>;
  35. #phy-cells = <0>;
  36. };