toshiba,visconti-wdt.yaml 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
  2. # Copyright 2020 Toshiba Electronic Devices & Storage Corporation
  3. %YAML 1.2
  4. ---
  5. $id: http://devicetree.org/schemas/watchdog/toshiba,visconti-wdt.yaml#
  6. $schema: http://devicetree.org/meta-schemas/core.yaml#
  7. title: Toshiba Visconti SoCs PIUWDT Watchdog timer
  8. maintainers:
  9. - Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
  10. allOf:
  11. - $ref: watchdog.yaml#
  12. properties:
  13. compatible:
  14. enum:
  15. - toshiba,visconti-wdt
  16. reg:
  17. maxItems: 1
  18. clocks:
  19. maxItems: 1
  20. required:
  21. - compatible
  22. - reg
  23. - clocks
  24. unevaluatedProperties: false
  25. examples:
  26. - |
  27. #include <dt-bindings/clock/toshiba,tmpv770x.h>
  28. soc {
  29. #address-cells = <2>;
  30. #size-cells = <2>;
  31. wdt: watchdog@28330000 {
  32. compatible = "toshiba,visconti-wdt";
  33. reg = <0 0x28330000 0 0x1000>;
  34. timeout-sec = <20>;
  35. clocks = <&pismu TMPV770X_CLK_WDTCLK>;
  36. };
  37. };