Kconfig 611 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # SPDX-License-Identifier: BSD-2-Clause
  2. menu "System Reset Support"
  3. config FDT_RESET
  4. bool "FDT based reset drivers"
  5. depends on FDT
  6. default n
  7. if FDT_RESET
  8. config FDT_RESET_GPIO
  9. bool "GPIO FDT reset driver"
  10. depends on FDT_GPIO
  11. default n
  12. config FDT_RESET_HTIF
  13. bool "Host transfer interface (HTIF) FDT reset driver"
  14. select SYS_HTIF
  15. default n
  16. config FDT_RESET_SIFIVE_TEST
  17. bool "SiFive Test FDT reset driver"
  18. select SYS_SIFIVE_TEST
  19. default n
  20. config FDT_RESET_SUNXI_WDT
  21. bool "Sunxi WDT FDT reset driver"
  22. default n
  23. config FDT_RESET_THEAD
  24. bool "T-HEAD FDT reset driver"
  25. default n
  26. endif
  27. endmenu