Kconfig 802 B

123456789101112131415161718192021222324252627282930313233
  1. config ARCH_HAS_RESET_CONTROLLER
  2. bool
  3. menuconfig RESET_CONTROLLER
  4. bool "Reset Controller Support"
  5. default y if ARCH_HAS_RESET_CONTROLLER
  6. help
  7. Generic Reset Controller support.
  8. This framework is designed to abstract reset handling of devices
  9. via GPIOs or SoC-internal reset controller modules.
  10. If unsure, say no.
  11. if RESET_CONTROLLER
  12. config RESET_OXNAS
  13. bool
  14. config TI_SYSCON_RESET
  15. tristate "TI SYSCON Reset Driver"
  16. depends on HAS_IOMEM
  17. select MFD_SYSCON
  18. help
  19. This enables the reset driver support for TI devices with
  20. memory-mapped reset registers as part of a syscon device node. If
  21. you wish to use the reset framework for such memory-mapped devices,
  22. say Y here. Otherwise, say N.
  23. source "drivers/reset/sti/Kconfig"
  24. source "drivers/reset/hisilicon/Kconfig"
  25. endif