blob: 19d546c5edfa461fc14879a41cec594909461198 [file] [log] [blame]
Jamie Lentin96ff0f52012-11-17 09:51:04 +01001menuconfig 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
Maxime Ripard6ca4f4602014-07-01 16:58:40 +02009if POWER_RESET
10
Laxman Dewangan56fb8de2013-12-20 18:54:00 +053011config POWER_RESET_AS3722
12 bool "ams AS3722 power-off driver"
Maxime Ripard6ca4f4602014-07-01 16:58:40 +020013 depends on MFD_AS3722
Laxman Dewangan56fb8de2013-12-20 18:54:00 +053014 help
15 This driver supports turning off board via a ams AS3722 power-off.
16
Anders Berg4a315e32014-05-23 11:08:38 +020017config POWER_RESET_AXXIA
18 bool "LSI Axxia reset driver"
Maxime Ripard6ca4f4602014-07-01 16:58:40 +020019 depends on ARCH_AXXIA
Anders Berg4a315e32014-05-23 11:08:38 +020020 help
21 This driver supports restart for Axxia SoC.
22
23 Say Y if you have an Axxia family SoC.
24
Jamie Lentin96ff0f52012-11-17 09:51:04 +010025config POWER_RESET_GPIO
26 bool "GPIO power-off driver"
Maxime Ripard6ca4f4602014-07-01 16:58:40 +020027 depends on OF_GPIO
Jamie Lentin96ff0f52012-11-17 09:51:04 +010028 help
29 This driver supports turning off your board via a GPIO line.
30 If your board needs a GPIO high/low to power down, say Y and
31 create a binding in your devicetree.
Andrew Lunne8fc7212012-12-28 13:25:09 +010032
Abhimanyu Kapur78be3172013-07-30 17:05:28 -070033config POWER_RESET_MSM
34 bool "Qualcomm MSM power-off driver"
Maxime Ripard6ca4f4602014-07-01 16:58:40 +020035 depends on ARCH_QCOM
Abhimanyu Kapur78be3172013-07-30 17:05:28 -070036 help
37 Power off and restart support for Qualcomm boards.
38
Andrew Lunne8fc7212012-12-28 13:25:09 +010039config POWER_RESET_QNAP
40 bool "QNAP power-off driver"
Maxime Ripard6ca4f4602014-07-01 16:58:40 +020041 depends on OF_GPIO && PLAT_ORION
Andrew Lunne8fc7212012-12-28 13:25:09 +010042 help
43 This driver supports turning off QNAP NAS devices by sending
44 commands to the microcontroller which controls the main power.
45
46 Say Y if you have a QNAP NAS.
Andrew Lunnffd8f9a2012-12-28 13:25:11 +010047
48config POWER_RESET_RESTART
49 bool "Restart power-off driver"
50 depends on ARM
51 help
52 Some boards don't actually have the ability to power off.
53 Instead they restart, and u-boot holds the SoC until the
54 user presses a key. u-boot then boots into Linux.
Catalin Marinas2655f512013-01-15 11:24:14 +000055
Maxime Ripard1be7f552014-05-06 21:44:20 -050056config POWER_RESET_SUN6I
57 bool "Allwinner A31 SoC reset driver"
58 depends on ARCH_SUNXI
Maxime Ripard1be7f552014-05-06 21:44:20 -050059 help
60 Reboot support for the Allwinner A31 SoCs.
61
Catalin Marinas2655f512013-01-15 11:24:14 +000062config POWER_RESET_VEXPRESS
Pawel Mollb52eafc2013-06-10 16:12:01 +010063 bool "ARM Versatile Express power-off and reset driver"
64 depends on ARM || ARM64
Maxime Ripard6ca4f4602014-07-01 16:58:40 +020065 depends on VEXPRESS_CONFIG
Catalin Marinas2655f512013-01-15 11:24:14 +000066 help
67 Power off and reset support for the ARM Ltd. Versatile
68 Express boards.
Loc Ho67778e0e2013-07-02 14:38:58 -060069
70config POWER_RESET_XGENE
71 bool "APM SoC X-Gene reset driver"
72 depends on ARM64
Loc Ho67778e0e2013-07-02 14:38:58 -060073 help
74 Reboot support for the APM SoC X-Gene Eval boards.
Ivan Khoronzhuka3e01e82014-05-23 16:32:39 -040075
76config POWER_RESET_KEYSTONE
77 bool "Keystone reset driver"
78 depends on ARCH_KEYSTONE
79 select MFD_SYSCON
80 help
81 Reboot support for the KEYSTONE SoCs.
82
Maxime Ripard6ca4f4602014-07-01 16:58:40 +020083endif