brcm,ns2-pcie-phy.yaml 719 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/phy/brcm,ns2-pcie-phy.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Broadcom NS2 PCIe PHY
  7. maintainers:
  8. - Ray Jui <ray.jui@broadcom.com>
  9. - Scott Branden <scott.branden@broadcom.com>
  10. properties:
  11. compatible:
  12. const: brcm,ns2-pcie-phy
  13. reg:
  14. maxItems: 1
  15. "#phy-cells":
  16. const: 0
  17. required:
  18. - compatible
  19. - reg
  20. - "#phy-cells"
  21. additionalProperties: false
  22. examples:
  23. - |
  24. mdio {
  25. #address-cells = <1>;
  26. #size-cells = <0>;
  27. pci-phy@0 {
  28. compatible = "brcm,ns2-pcie-phy";
  29. reg = <0x0>;
  30. #phy-cells = <0>;
  31. };
  32. };