wdt.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * (C) Copyright 2016 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _ASM_ARCH_WDT_H
  7. #define _ASM_ARCH_WDT_H
  8. #define WDT_BASE 0x1e785000
  9. /*
  10. * Special value that needs to be written to counter_restart register to
  11. * (re)start the timer
  12. */
  13. #define WDT_COUNTER_RESTART_VAL 0x4755
  14. /* Control register */
  15. #define WDT_CTRL_RESET_MODE_SHIFT 5
  16. #define WDT_CTRL_RESET_MODE_MASK 3
  17. #define WDT_CTRL_EN (1 << 0)
  18. #define WDT_CTRL_RESET (1 << 1)
  19. #define WDT_CTRL_CLK1MHZ (1 << 4)
  20. #define WDT_CTRL_2ND_BOOT (1 << 7)
  21. /* Values for Reset Mode */
  22. #define WDT_CTRL_RESET_SOC 0
  23. #define WDT_CTRL_RESET_CHIP 1
  24. #define WDT_CTRL_RESET_CPU 2
  25. #define WDT_CTRL_RESET_MASK 3
  26. /* Reset Mask register */
  27. #define WDT_RESET_ARM (1 << 0)
  28. #define WDT_RESET_COPROC (1 << 1)
  29. #define WDT_RESET_SDRAM (1 << 2)
  30. #define WDT_RESET_AHB (1 << 3)
  31. #define WDT_RESET_I2C (1 << 4)
  32. #define WDT_RESET_MAC1 (1 << 5)
  33. #define WDT_RESET_MAC2 (1 << 6)
  34. #define WDT_RESET_GCRT (1 << 7)
  35. #define WDT_RESET_USB20 (1 << 8)
  36. #define WDT_RESET_USB11_HOST (1 << 9)
  37. #define WDT_RESET_USB11_EHCI2 (1 << 10)
  38. #define WDT_RESET_VIDEO (1 << 11)
  39. #define WDT_RESET_HAC (1 << 12)
  40. #define WDT_RESET_LPC (1 << 13)
  41. #define WDT_RESET_SDSDIO (1 << 14)
  42. #define WDT_RESET_MIC (1 << 15)
  43. #define WDT_RESET_CRT2C (1 << 16)
  44. #define WDT_RESET_PWM (1 << 17)
  45. #define WDT_RESET_PECI (1 << 18)
  46. #define WDT_RESET_JTAG (1 << 19)
  47. #define WDT_RESET_ADC (1 << 20)
  48. #define WDT_RESET_GPIO (1 << 21)
  49. #define WDT_RESET_MCTP (1 << 22)
  50. #define WDT_RESET_XDMA (1 << 23)
  51. #define WDT_RESET_SPI (1 << 24)
  52. #define WDT_RESET_MISC (1 << 25)
  53. #ifndef __ASSEMBLY__
  54. struct ast_wdt {
  55. u32 counter_status;
  56. u32 counter_reload_val;
  57. u32 counter_restart;
  58. u32 ctrl;
  59. u32 timeout_status;
  60. u32 clr_timeout_status;
  61. u32 reset_width;
  62. /* On pre-ast2500 SoCs this register is reserved. */
  63. u32 reset_mask;
  64. };
  65. /**
  66. * Given flags parameter passed to wdt_reset or wdt_start uclass functions,
  67. * gets Reset Mode value from it.
  68. *
  69. * @flags: flags parameter passed into wdt_reset or wdt_start
  70. * @return Reset Mode value
  71. */
  72. u32 ast_reset_mode_from_flags(ulong flags);
  73. /**
  74. * Given flags parameter passed to wdt_reset or wdt_start uclass functions,
  75. * gets Reset Mask value from it. Reset Mask is only supported on ast2500
  76. *
  77. * @flags: flags parameter passed into wdt_reset or wdt_start
  78. * @return Reset Mask value
  79. */
  80. u32 ast_reset_mask_from_flags(ulong flags);
  81. /**
  82. * Given Reset Mask and Reset Mode values, converts them to flags,
  83. * suitable for passing into wdt_start or wdt_reset uclass functions.
  84. *
  85. * On ast2500 Reset Mask is 25 bits wide and Reset Mode is 2 bits wide, so they
  86. * can both be packed into single 32 bits wide value.
  87. *
  88. * @reset_mode: Reset Mode
  89. * @reset_mask: Reset Mask
  90. */
  91. ulong ast_flags_from_reset_mode_mask(u32 reset_mode, u32 reset_mask);
  92. #endif /* __ASSEMBLY__ */
  93. #endif /* _ASM_ARCH_WDT_H */