maxim,ds26522.yaml 754 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/net/maxim,ds26522.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Maxim (Dallas) DS26522 Dual T1/E1/J1 Transceiver
  7. maintainers:
  8. - Frank Li <Frank.Li@nxp.com>
  9. properties:
  10. compatible:
  11. items:
  12. - const: maxim,ds26522
  13. reg:
  14. maxItems: 1
  15. required:
  16. - compatible
  17. - reg
  18. allOf:
  19. - $ref: /schemas/spi/spi-peripheral-props.yaml
  20. unevaluatedProperties: false
  21. examples:
  22. - |
  23. spi {
  24. #address-cells = <1>;
  25. #size-cells = <0>;
  26. transceiver@1 {
  27. compatible = "maxim,ds26522";
  28. reg = <1>;
  29. spi-max-frequency = <2000000>; /* input clock */
  30. };
  31. };