1menuconfig POWER_RESET 2 bool "Board level reset or power off" 3 help 4 Provides a number of drivers which either reset a complete board 5 or shut it down, by manipulating the main power supply on the board. 6 7 Say Y here to enable board reset and power off 8 9config POWER_RESET_AS3722 10 bool "ams AS3722 power-off driver" 11 depends on MFD_AS3722 && POWER_RESET 12 help 13 This driver supports turning off board via a ams AS3722 power-off. 14 15config POWER_RESET_AXXIA 16 bool "LSI Axxia reset driver" 17 depends on POWER_RESET && ARCH_AXXIA 18 help 19 This driver supports restart for Axxia SoC. 20 21 Say Y if you have an Axxia family SoC. 22 23config POWER_RESET_BRCMSTB 24 bool "Broadcom STB reset driver" if COMPILE_TEST 25 depends on POWER_RESET && ARM 26 default ARCH_BRCMSTB 27 help 28 This driver provides restart support for ARM-based Broadcom STB 29 boards. 30 31 Say Y here if you have an ARM-based Broadcom STB board and you wish 32 to have restart support. 33 34config POWER_RESET_GPIO 35 bool "GPIO power-off driver" 36 depends on OF_GPIO && POWER_RESET 37 help 38 This driver supports turning off your board via a GPIO line. 39 If your board needs a GPIO high/low to power down, say Y and 40 create a binding in your devicetree. 41 42config POWER_RESET_MSM 43 bool "Qualcomm MSM power-off driver" 44 depends on POWER_RESET && ARCH_QCOM 45 help 46 Power off and restart support for Qualcomm boards. 47 48config POWER_RESET_QNAP 49 bool "QNAP power-off driver" 50 depends on OF_GPIO && POWER_RESET && PLAT_ORION 51 help 52 This driver supports turning off QNAP NAS devices by sending 53 commands to the microcontroller which controls the main power. 54 55 Say Y if you have a QNAP NAS. 56 57config POWER_RESET_RESTART 58 bool "Restart power-off driver" 59 depends on ARM 60 help 61 Some boards don't actually have the ability to power off. 62 Instead they restart, and u-boot holds the SoC until the 63 user presses a key. u-boot then boots into Linux. 64 65config POWER_RESET_SUN6I 66 bool "Allwinner A31 SoC reset driver" 67 depends on ARCH_SUNXI 68 depends on POWER_RESET 69 help 70 Reboot support for the Allwinner A31 SoCs. 71 72config POWER_RESET_VEXPRESS 73 bool "ARM Versatile Express power-off and reset driver" 74 depends on ARM || ARM64 75 depends on POWER_RESET && VEXPRESS_CONFIG 76 help 77 Power off and reset support for the ARM Ltd. Versatile 78 Express boards. 79 80config POWER_RESET_XGENE 81 bool "APM SoC X-Gene reset driver" 82 depends on ARM64 83 depends on POWER_RESET 84 help 85 Reboot support for the APM SoC X-Gene Eval boards. 86 87config POWER_RESET_KEYSTONE 88 bool "Keystone reset driver" 89 depends on ARCH_KEYSTONE 90 select MFD_SYSCON 91 help 92 Reboot support for the KEYSTONE SoCs. 93 94