Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. menu "Watchdog Timer Support"
  2. config WATCHDOG
  3. bool "Enable U-Boot watchdog reset"
  4. help
  5. This option enables U-Boot watchdog support where U-Boot is using
  6. watchdog_reset function to service watchdog device in U-Boot. Enable
  7. this option if you want to service enabled watchdog by U-Boot. Disable
  8. this option if you want U-Boot to start watchdog but never service it.
  9. config HW_WATCHDOG
  10. bool
  11. config BCM2835_WDT
  12. bool "Enable BCM2835/2836 watchdog driver"
  13. select HW_WATCHDOG
  14. help
  15. Say Y here to enable the BCM2835/2836 watchdog
  16. This provides basic infrastructure to support BCM2835/2836 watchdog
  17. hardware, with a max timeout of ~15secs.
  18. config OMAP_WATCHDOG
  19. bool "TI OMAP watchdog driver"
  20. depends on ARCH_OMAP2PLUS
  21. select HW_WATCHDOG
  22. default y if AM33XX
  23. help
  24. Say Y here to enable the OMAP3+ watchdog driver.
  25. config TANGIER_WATCHDOG
  26. bool "Intel Tangier watchdog"
  27. depends on INTEL_MID
  28. select HW_WATCHDOG
  29. help
  30. This enables support for watchdog controller available on
  31. Intel Tangier SoC. If you're using a board with Intel Tangier
  32. SoC, say Y here.
  33. config ULP_WATCHDOG
  34. bool "i.MX7ULP watchdog"
  35. help
  36. Say Y here to enable i.MX7ULP watchdog driver.
  37. config WDT
  38. bool "Enable driver model for watchdog timer drivers"
  39. depends on DM
  40. help
  41. Enable driver model for watchdog timer. At the moment the API
  42. is very simple and only supports four operations:
  43. start, restart, stop and reset (expire immediately).
  44. What exactly happens when the timer expires is up to a particular
  45. device/driver.
  46. config WDT_SANDBOX
  47. bool "Enable Watchdog Timer support for Sandbox"
  48. depends on SANDBOX && WDT
  49. help
  50. Enable Watchdog Timer support in Sandbox. This is a dummy device that
  51. can be probed and supports all of the methods of WDT, but does not
  52. really do anything.
  53. config WDT_ARMADA_37XX
  54. bool "Marvell Armada 37xx watchdog timer support"
  55. depends on WDT && ARMADA_3700
  56. help
  57. Enable this to support Watchdog Timer on Marvell Armada 37xx SoC.
  58. There are 4 possible clocks which can be used on these SoCs. This
  59. driver uses the second clock (ID 1), assuming that so will also
  60. Linux's driver.
  61. config WDT_ASPEED
  62. bool "Aspeed ast2400/ast2500 watchdog timer support"
  63. depends on WDT
  64. default y if ARCH_ASPEED
  65. help
  66. Select this to enable watchdog timer for Aspeed ast2500/ast2400 devices.
  67. The watchdog timer is stopped when initialized. It performs reset, either
  68. full SoC reset or CPU or just some peripherals, based on the flags.
  69. It currently does not support Boot Flash Addressing Mode Detection or
  70. Second Boot.
  71. config WDT_BCM6345
  72. bool "BCM6345 watchdog timer support"
  73. depends on WDT && ARCH_BMIPS
  74. help
  75. Select this to enable watchdog timer for BCM6345 SoCs.
  76. The watchdog timer is stopped when initialized.
  77. It performs full SoC reset.
  78. config WDT_ORION
  79. bool "Orion watchdog timer support"
  80. depends on WDT
  81. help
  82. Select this to enable Orion watchdog timer, which can be found on some
  83. Marvell Armada chips.
  84. config WDT_CDNS
  85. bool "Cadence watchdog timer support"
  86. depends on WDT
  87. imply WATCHDOG
  88. help
  89. Select this to enable Cadence watchdog timer, which can be found on some
  90. Xilinx Microzed Platform.
  91. config XILINX_TB_WATCHDOG
  92. bool "Xilinx Axi watchdog timer support"
  93. depends on WDT
  94. imply WATCHDOG
  95. help
  96. Select this to enable Xilinx Axi watchdog timer, which can be found on some
  97. Xilinx Microblaze Platforms.
  98. config IMX_WATCHDOG
  99. bool "Enable Watchdog Timer support for IMX and LSCH2 of NXP"
  100. select HW_WATCHDOG
  101. help
  102. Select this to enable the IMX and LSCH2 of Layerscape watchdog
  103. driver.
  104. config WDT_AT91
  105. bool "AT91 watchdog timer support"
  106. depends on WDT
  107. help
  108. Select this to enable Microchip watchdog timer, which can be found on
  109. some AT91 devices.
  110. config AT91_HW_WDT_TIMEOUT
  111. bool "AT91 watchdog timeout specified"
  112. depends on WDT_AT91
  113. endmenu