qcom-wdt.txt 665 B

123456789101112131415161718192021222324
  1. Qualcomm Krait Processor Sub-system (KPSS) Watchdog
  2. ---------------------------------------------------
  3. Required properties :
  4. - compatible : shall contain only one of the following:
  5. "qcom,kpss-wdt-msm8960"
  6. "qcom,kpss-wdt-apq8064"
  7. "qcom,kpss-wdt-ipq8064"
  8. - reg : shall contain base register location and length
  9. - clocks : shall contain the input clock
  10. Optional properties :
  11. - timeout-sec : shall contain the default watchdog timeout in seconds,
  12. if unset, the default timeout is 30 seconds
  13. Example:
  14. watchdog@208a038 {
  15. compatible = "qcom,kpss-wdt-ipq8064";
  16. reg = <0x0208a038 0x40>;
  17. clocks = <&sleep_clk>;
  18. timeout-sec = <10>;
  19. };