Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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_A10SR
  13. tristate "Altera Arria10 System Resource Reset"
  14. depends on MFD_ALTERA_A10SR
  15. help
  16. This option enables support for the external reset functions for
  17. peripheral PHYs on the Altera Arria10 System Resource Chip.
  18. config RESET_ATH79
  19. bool "AR71xx Reset Driver" if COMPILE_TEST
  20. default ATH79
  21. help
  22. This enables the ATH79 reset controller driver that supports the
  23. AR71xx SoC reset controller.
  24. config RESET_BERLIN
  25. bool "Berlin Reset Driver" if COMPILE_TEST
  26. default ARCH_BERLIN
  27. help
  28. This enables the reset controller driver for Marvell Berlin SoCs.
  29. config RESET_IMX7
  30. bool "i.MX7 Reset Driver" if COMPILE_TEST
  31. default SOC_IMX7D
  32. select MFD_SYSCON
  33. help
  34. This enables the reset controller driver for i.MX7 SoCs.
  35. config RESET_LPC18XX
  36. bool "LPC18xx/43xx Reset Driver" if COMPILE_TEST
  37. default ARCH_LPC18XX
  38. help
  39. This enables the reset controller driver for NXP LPC18xx/43xx SoCs.
  40. config RESET_MESON
  41. bool "Meson Reset Driver" if COMPILE_TEST
  42. default ARCH_MESON
  43. help
  44. This enables the reset driver for Amlogic Meson SoCs.
  45. config RESET_OXNAS
  46. bool
  47. config RESET_PISTACHIO
  48. bool "Pistachio Reset Driver" if COMPILE_TEST
  49. default MACH_PISTACHIO
  50. help
  51. This enables the reset driver for ImgTec Pistachio SoCs.
  52. config RESET_SOCFPGA
  53. bool "SoCFPGA Reset Driver" if COMPILE_TEST
  54. default ARCH_SOCFPGA
  55. help
  56. This enables the reset controller driver for Altera SoCFPGAs.
  57. config RESET_STM32
  58. bool "STM32 Reset Driver" if COMPILE_TEST
  59. default ARCH_STM32
  60. help
  61. This enables the RCC reset controller driver for STM32 MCUs.
  62. config RESET_SUNXI
  63. bool "Allwinner SoCs Reset Driver" if COMPILE_TEST && !ARCH_SUNXI
  64. default ARCH_SUNXI
  65. help
  66. This enables the reset driver for Allwinner SoCs.
  67. config TI_SYSCON_RESET
  68. tristate "TI SYSCON Reset Driver"
  69. depends on HAS_IOMEM
  70. select MFD_SYSCON
  71. help
  72. This enables the reset driver support for TI devices with
  73. memory-mapped reset registers as part of a syscon device node. If
  74. you wish to use the reset framework for such memory-mapped devices,
  75. say Y here. Otherwise, say N.
  76. config RESET_UNIPHIER
  77. tristate "Reset controller driver for UniPhier SoCs"
  78. depends on ARCH_UNIPHIER || COMPILE_TEST
  79. depends on OF && MFD_SYSCON
  80. default ARCH_UNIPHIER
  81. help
  82. Support for reset controllers on UniPhier SoCs.
  83. Say Y if you want to control reset signals provided by System Control
  84. block, Media I/O block, Peripheral Block.
  85. config RESET_ZX2967
  86. bool "ZTE ZX2967 Reset Driver"
  87. depends on ARCH_ZX || COMPILE_TEST
  88. help
  89. This enables the reset controller driver for ZTE's zx2967 family.
  90. config RESET_ZYNQ
  91. bool "ZYNQ Reset Driver" if COMPILE_TEST
  92. default ARCH_ZYNQ
  93. help
  94. This enables the reset controller driver for Xilinx Zynq SoCs.
  95. source "drivers/reset/sti/Kconfig"
  96. source "drivers/reset/hisilicon/Kconfig"
  97. source "drivers/reset/tegra/Kconfig"
  98. endif