renesas,prr.yaml 824 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/hwinfo/renesas,prr.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Renesas Product Register
  7. maintainers:
  8. - Geert Uytterhoeven <geert+renesas@glider.be>
  9. - Magnus Damm <magnus.damm@gmail.com>
  10. description: |
  11. Most Renesas ARM SoCs have a Product Register or Boundary Scan ID
  12. Register that allows to retrieve SoC product and revision information.
  13. If present, a device node for this register should be added.
  14. properties:
  15. compatible:
  16. enum:
  17. - renesas,prr
  18. - renesas,bsid
  19. reg:
  20. maxItems: 1
  21. required:
  22. - compatible
  23. - reg
  24. additionalProperties: false
  25. examples:
  26. - |
  27. prr: chipid@ff000044 {
  28. compatible = "renesas,prr";
  29. reg = <0xff000044 4>;
  30. };