cdns,dphy-rx.yaml 754 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/phy/cdns,dphy-rx.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Cadence DPHY Rx
  7. maintainers:
  8. - Pratyush Yadav <pratyush@kernel.org>
  9. properties:
  10. compatible:
  11. items:
  12. - const: cdns,dphy-rx
  13. reg:
  14. maxItems: 1
  15. "#phy-cells":
  16. const: 0
  17. power-domains:
  18. maxItems: 1
  19. required:
  20. - compatible
  21. - reg
  22. - "#phy-cells"
  23. additionalProperties: false
  24. examples:
  25. - |
  26. #include <dt-bindings/soc/ti,sci_pm_domain.h>
  27. dphy0: phy@4580000 {
  28. compatible = "cdns,dphy-rx";
  29. reg = <0x4580000 0x1100>;
  30. #phy-cells = <0>;
  31. power-domains = <&k3_pds 147 TI_SCI_PD_EXCLUSIVE>;
  32. };