starfive,jh7100-reset.yaml 672 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/reset/starfive,jh7100-reset.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: StarFive JH7100 SoC Reset Controller
  7. maintainers:
  8. - Emil Renner Berthing <kernel@esmil.dk>
  9. properties:
  10. compatible:
  11. enum:
  12. - starfive,jh7100-reset
  13. reg:
  14. maxItems: 1
  15. "#reset-cells":
  16. const: 1
  17. required:
  18. - compatible
  19. - reg
  20. - "#reset-cells"
  21. additionalProperties: false
  22. examples:
  23. - |
  24. reset-controller@11840000 {
  25. compatible = "starfive,jh7100-reset";
  26. reg = <0x11840000 0x10000>;
  27. #reset-cells = <1>;
  28. };
  29. ...