Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. menu "Reset Controller Support"
  2. config DM_RESET
  3. bool "Enable reset controllers using Driver Model"
  4. depends on DM && OF_CONTROL
  5. help
  6. Enable support for the reset controller driver class. Many hardware
  7. modules are equipped with a reset signal, typically driven by some
  8. reset controller hardware module within the chip. In U-Boot, reset
  9. controller drivers allow control over these reset signals. In some
  10. cases this API is applicable to chips outside the CPU as well,
  11. although driving such reset isgnals using GPIOs may be more
  12. appropriate in this case.
  13. config SANDBOX_RESET
  14. bool "Enable the sandbox reset test driver"
  15. depends on DM_MAILBOX && SANDBOX
  16. help
  17. Enable support for a test reset controller implementation, which
  18. simply accepts requests to reset various HW modules without actually
  19. doing anything beyond a little error checking.
  20. config TEGRA_CAR_RESET
  21. bool "Enable Tegra CAR-based reset driver"
  22. depends on TEGRA_CAR
  23. help
  24. Enable support for manipulating Tegra's on-SoC reset signals via
  25. direct register access to the Tegra CAR (Clock And Reset controller).
  26. config TEGRA186_RESET
  27. bool "Enable Tegra186 BPMP-based reset driver"
  28. depends on TEGRA186_BPMP
  29. help
  30. Enable support for manipulating Tegra's on-SoC reset signals via IPC
  31. requests to the BPMP (Boot and Power Management Processor).
  32. config RESET_UNIPHIER
  33. bool "Reset controller driver for UniPhier SoCs"
  34. depends on ARCH_UNIPHIER
  35. default y
  36. help
  37. Support for reset controllers on UniPhier SoCs.
  38. Say Y if you want to control reset signals provided by System Control
  39. block, Media I/O block, Peripheral Block.
  40. endmenu