nuvoton,ma35d1-reset.yaml 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/reset/nuvoton,ma35d1-reset.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Nuvoton MA35D1 Reset Controller
  7. maintainers:
  8. - Chi-Fang Li <cfli0@nuvoton.com>
  9. - Jacky Huang <ychuang3@nuvoton.com>
  10. description:
  11. The system reset controller can be used to reset various peripheral
  12. controllers in MA35D1 SoC.
  13. properties:
  14. compatible:
  15. items:
  16. - const: nuvoton,ma35d1-reset
  17. - const: syscon
  18. reg:
  19. maxItems: 1
  20. '#reset-cells':
  21. const: 1
  22. required:
  23. - compatible
  24. - reg
  25. - '#reset-cells'
  26. additionalProperties: false
  27. examples:
  28. # system reset controller node:
  29. - |
  30. system-management@40460000 {
  31. compatible = "nuvoton,ma35d1-reset", "syscon";
  32. reg = <0x40460000 0x200>;
  33. #reset-cells = <1>;
  34. };
  35. ...