config POWER_RESET_BRCMSTB
bool "Broadcom STB reset driver" if COMPILE_TEST
-- depends on POWER_RESET && ARM
++ depends on ARM
default ARCH_BRCMSTB
help
This driver provides restart support for ARM-based Broadcom STB
If your board needs a GPIO high/low to power down, say Y and
create a binding in your devicetree.
- depends on OF_GPIO && POWER_RESET
+ config POWER_RESET_GPIO_RESTART
+ bool "GPIO restart driver"
++ depends on OF_GPIO
+ help
+ This driver supports restarting your board via a GPIO line.
+ If your board needs a GPIO high/low to restart, say Y and
+ create a binding in your devicetree.
+
config POWER_RESET_HISI
bool "Hisilicon power-off driver"
-- depends on POWER_RESET && ARCH_HISI
++ depends on ARCH_HISI
help
Reboot support for Hisilicon boards.
help
Power off and restart support for Qualcomm boards.
- depends on OF_GPIO && POWER_RESET
+ config POWER_RESET_LTC2952
+ bool "LTC2952 PowerPath power-off driver"
++ depends on OF_GPIO
+ help
+ This driver supports an external powerdown trigger and board power
+ down via the LTC2952. Bindings are made in the device tree.
+
config POWER_RESET_QNAP
bool "QNAP power-off driver"
- depends on OF_GPIO && POWER_RESET && PLAT_ORION
+ depends on OF_GPIO && PLAT_ORION
help
This driver supports turning off QNAP NAS devices by sending
commands to the microcontroller which controls the main power.
help
Reboot support for the Allwinner A31 SoCs.
- depends on POWER_RESET && ARCH_STI
+ config POWER_RESET_ST
+ bool "ST restart power-off driver"
++ depends on ARCH_STI
+ help
+ Power off and reset support for STMicroelectronics boards.
+
+config POWER_RESET_VERSATILE
+ bool "ARM Versatile family reboot driver"
+ depends on ARM
+ depends on MFD_SYSCON
+ depends on OF
+ help
+ Power off and restart support for ARM Versatile family of
+ reference boards.
+
config POWER_RESET_VEXPRESS
bool "ARM Versatile Express power-off and reset driver"
depends on ARM || ARM64
help
Reboot support for the KEYSTONE SoCs.
- depends on POWER_RESET && OF
+ config POWER_RESET_SYSCON
+ bool "Generic SYSCON regmap reset driver"
++ depends on OF
+ select MFD_SYSCON
+ help
+ Reboot support for generic SYSCON mapped register reset.
++
+endif
++
obj-$(CONFIG_POWER_RESET_QNAP) += qnap-poweroff.o
obj-$(CONFIG_POWER_RESET_RESTART) += restart-poweroff.o
obj-$(CONFIG_POWER_RESET_SUN6I) += sun6i-reboot.o
+ obj-$(CONFIG_POWER_RESET_ST) += st-poweroff.o
+obj-$(CONFIG_POWER_RESET_VERSATILE) += arm-versatile-reboot.o
obj-$(CONFIG_POWER_RESET_VEXPRESS) += vexpress-poweroff.o
obj-$(CONFIG_POWER_RESET_XGENE) += xgene-reboot.o
obj-$(CONFIG_POWER_RESET_KEYSTONE) += keystone-reset.o