mti,mips-cdmm.yaml 757 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/bus/mti,mips-cdmm.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: MIPS Common Device Memory Map
  7. description: |
  8. Defines a location of the MIPS Common Device Memory Map registers.
  9. maintainers:
  10. - James Hogan <jhogan@kernel.org>
  11. properties:
  12. compatible:
  13. const: mti,mips-cdmm
  14. reg:
  15. description: |
  16. Base address and size of an unoccupied memory region, which will be
  17. used to map the MIPS CDMM registers block.
  18. maxItems: 1
  19. required:
  20. - compatible
  21. - reg
  22. additionalProperties: false
  23. examples:
  24. - |
  25. cdmm@1bde8000 {
  26. compatible = "mti,mips-cdmm";
  27. reg = <0x1bde8000 0x8000>;
  28. };
  29. ...