ftwdt010_wdt.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Watchdog driver for the FTWDT010 Watch Dog Driver
  3. *
  4. * (c) Copyright 2004 Faraday Technology Corp. (www.faraday-tech.com)
  5. * Based on sa1100_wdt.c by Oleg Drokin <green@crimea.edu>
  6. * Based on SoftDog driver by Alan Cox <alan@redhat.com>
  7. *
  8. * Copyright (C) 2011 Andes Technology Corporation
  9. * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
  10. *
  11. * SPDX-License-Identifier: GPL-2.0+
  12. *
  13. * 27/11/2004 Initial release, Faraday.
  14. * 12/01/2011 Port to u-boot, Macpaul Lin.
  15. */
  16. #ifndef __FTWDT010_H
  17. #define __FTWDT010_H
  18. struct ftwdt010_wdt {
  19. unsigned int wdcounter; /* Counter Reg - 0x00 */
  20. unsigned int wdload; /* Counter Auto Reload Reg - 0x04 */
  21. unsigned int wdrestart; /* Counter Restart Reg - 0x08 */
  22. unsigned int wdcr; /* Control Reg - 0x0c */
  23. unsigned int wdstatus; /* Status Reg - 0x10 */
  24. unsigned int wdclear; /* Timer Clear - 0x14 */
  25. unsigned int wdintrlen; /* Interrupt Length - 0x18 */
  26. };
  27. /*
  28. * WDLOAD - Counter Auto Reload Register
  29. * The Auto Reload Register is set to 0x03EF1480 (66Mhz) by default.
  30. * Which means in a 66MHz system, the period of Watch Dog timer reset is
  31. * one second.
  32. */
  33. #define FTWDT010_WDLOAD(x) ((x) & 0xffffffff)
  34. /*
  35. * WDRESTART - Watch Dog Timer Counter Restart Register
  36. * If writing 0x5AB9 to WDRESTART register, Watch Dog timer will
  37. * automatically reload WDLOAD to WDCOUNTER and restart counting.
  38. */
  39. #define FTWDT010_WDRESTART_MAGIC 0x5AB9
  40. /* WDCR - Watch Dog Timer Control Register */
  41. #define FTWDT010_WDCR_ENABLE (1 << 0)
  42. #define FTWDT010_WDCR_RST (1 << 1)
  43. #define FTWDT010_WDCR_INTR (1 << 2)
  44. /* FTWDT010_WDCR_EXT bit: Watch Dog Timer External Signal Enable */
  45. #define FTWDT010_WDCR_EXT (1 << 3)
  46. /* FTWDT010_WDCR_CLOCK bit: Clock Source: 0: PCLK, 1: EXTCLK.
  47. * The clock source PCLK cannot be gated when system sleeps, even if
  48. * WDCLOCK bit is turned on.
  49. *
  50. * Faraday's Watch Dog timer can be driven by an external clock. The
  51. * programmer just needs to write one to WdCR[WdClock] bit.
  52. *
  53. * Note: There is a limitation between EXTCLK and PCLK:
  54. * EXTCLK cycle time / PCLK cycle time > 2.
  55. * If the system does not need an external clock,
  56. * just keep WdCR[WdClock] bit in its default value.
  57. */
  58. #define FTWDT010_WDCR_CLOCK (1 << 4)
  59. /*
  60. * WDSTATUS - Watch Dog Timer Status Register
  61. * This bit is set when the counter reaches Zero
  62. */
  63. #define FTWDT010_WDSTATUS(x) ((x) & 0x1)
  64. /*
  65. * WDCLEAR - Watch Dog Timer Clear Register
  66. * Writing one to this register will clear WDSTATUS.
  67. */
  68. #define FTWDT010_WDCLEAR (1 << 0)
  69. /*
  70. * WDINTRLEN - Watch Dog Timer Interrupt Length
  71. * This register controls the duration length of wd_rst, wd_intr and wd_ext.
  72. * The default value is 0xFF.
  73. */
  74. #define FTWDT010_WDINTRLEN(x) ((x) & 0xff)
  75. /*
  76. * Variable timeout should be set in ms.
  77. * (CONFIG_SYS_CLK_FREQ/1000) equals 1 ms.
  78. * WDLOAD = timeout * TIMEOUT_FACTOR.
  79. */
  80. #define FTWDT010_TIMEOUT_FACTOR (CONFIG_SYS_CLK_FREQ / 1000) /* 1 ms */
  81. void ftwdt010_wdt_reset(void);
  82. void ftwdt010_wdt_disable(void);
  83. #endif /* __FTWDT010_H */