zii,rave-sp-wdt.txt 981 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. Zodiac Inflight Innovations RAVE Supervisory Processor Watchdog Bindings
  2. RAVE SP watchdog device is a "MFD cell" device corresponding to
  3. watchdog functionality of RAVE Supervisory Processor. It is expected
  4. that its Device Tree node is specified as a child of the node
  5. corresponding to the parent RAVE SP device (as documented in
  6. Documentation/devicetree/bindings/mfd/zii,rave-sp.txt)
  7. Required properties:
  8. - compatible: Depending on wire protocol implemented by RAVE SP
  9. firmware, should be one of:
  10. - "zii,rave-sp-watchdog"
  11. - "zii,rave-sp-watchdog-legacy"
  12. Optional properties:
  13. - wdt-timeout: Two byte nvmem cell specified as per
  14. Documentation/devicetree/bindings/nvmem/nvmem.txt
  15. Example:
  16. rave-sp {
  17. compatible = "zii,rave-sp-rdu1";
  18. current-speed = <38400>;
  19. eeprom {
  20. wdt_timeout: wdt-timeout@8E {
  21. reg = <0x8E 2>;
  22. };
  23. };
  24. watchdog {
  25. compatible = "zii,rave-sp-watchdog";
  26. nvmem-cells = <&wdt_timeout>;
  27. nvmem-cell-names = "wdt-timeout";
  28. };
  29. }