ti,am654-serdes-ctrl.yaml 884 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/soc/ti/ti,am654-serdes-ctrl.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Texas Instruments AM654 Serdes Control Syscon
  7. maintainers:
  8. - Nishanth Menon <nm@ti.com>
  9. properties:
  10. compatible:
  11. items:
  12. - const: ti,am654-serdes-ctrl
  13. - const: syscon
  14. - const: simple-mfd
  15. reg:
  16. maxItems: 1
  17. mux-controller:
  18. $ref: /schemas/mux/reg-mux.yaml#
  19. required:
  20. - compatible
  21. - reg
  22. - mux-controller
  23. additionalProperties: false
  24. examples:
  25. - |
  26. clock@4080 {
  27. compatible = "ti,am654-serdes-ctrl", "syscon", "simple-mfd";
  28. reg = <0x4080 0x4>;
  29. mux-controller {
  30. compatible = "mmio-mux";
  31. #mux-control-cells = <1>;
  32. mux-reg-masks = <0x0 0x3>; /* lane select */
  33. };
  34. };