arm,ccn.yaml 698 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/perf/arm,ccn.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: ARM CCN (Cache Coherent Network) Performance Monitors
  7. maintainers:
  8. - Robin Murphy <robin.murphy@arm.com>
  9. properties:
  10. compatible:
  11. enum:
  12. - arm,ccn-502
  13. - arm,ccn-504
  14. - arm,ccn-508
  15. - arm,ccn-512
  16. reg:
  17. maxItems: 1
  18. interrupts:
  19. maxItems: 1
  20. required:
  21. - compatible
  22. - reg
  23. - interrupts
  24. additionalProperties: false
  25. examples:
  26. - |
  27. ccn@20000000 {
  28. compatible = "arm,ccn-504";
  29. reg = <0x20000000 0x1000000>;
  30. interrupts = <0 181 4>;
  31. };
  32. ...