diff options
author | Emil Renner Berthing <kernel@esmil.dk> | 2021-07-27 12:25:53 +0300 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2021-08-16 15:48:51 +0300 |
commit | 80698507e0b20817ab850538080b01c3e0a5314f (patch) | |
tree | 4a700a7a2b2831d9ce2befdea7de0ea619e76858 /drivers/power/reset/Makefile | |
parent | 9c425fa3f273d63539533b14940d08582edd427c (diff) | |
download | linux-80698507e0b20817ab850538080b01c3e0a5314f.tar.xz |
power: reset: Add TPS65086 restart driver
The only way to reset the BeagleV Starlight v0.9 board[1] properly is to
tell the PMIC to reset itself which will then assert the external reset
lines of the SoC, USB hub and ethernet phy.
This adds a driver to register a reset handler to do just that.
[1] https://github.com/beagleboard/beaglev-starlight
Signed-off-by: Emil Renner Berthing <kernel@esmil.dk>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/reset/Makefile')
-rw-r--r-- | drivers/power/reset/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/reset/Makefile b/drivers/power/reset/Makefile index cf3f4d02d8a5..f606a2f60539 100644 --- a/drivers/power/reset/Makefile +++ b/drivers/power/reset/Makefile @@ -23,6 +23,7 @@ obj-$(CONFIG_POWER_RESET_QNAP) += qnap-poweroff.o obj-$(CONFIG_POWER_RESET_REGULATOR) += regulator-poweroff.o obj-$(CONFIG_POWER_RESET_RESTART) += restart-poweroff.o obj-$(CONFIG_POWER_RESET_ST) += st-poweroff.o +obj-$(CONFIG_POWER_RESET_TPS65086) += tps65086-restart.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 |