aboutsummaryrefslogtreecommitdiff
path: root/drivers/reset/Makefile
diff options
context:
space:
mode:
authorSergiu Moga <sergiu.moga@microchip.com>2023-01-04 16:03:18 +0200
committerEugen Hristev <eugen.hristev@microchip.com>2023-01-05 10:06:35 +0200
commit61040097a9d1c8022bae7936c52b729ff1adb163 (patch)
tree79ba79f0da31d918405bda66d05050646b5f2b47 /drivers/reset/Makefile
parent11c037ab920c0cdd1d9c8316a08c939b4253aefe (diff)
downloadu-boot-61040097a9d1c8022bae7936c52b729ff1adb163.zip
u-boot-61040097a9d1c8022bae7936c52b729ff1adb163.tar.gz
u-boot-61040097a9d1c8022bae7936c52b729ff1adb163.tar.bz2
reset: at91: Add reset driver for basic assert/deassert operations
Add support for at91 reset controller's basic assert/deassert operations. Since this driver conflicts with the SYSRESET driver because they both bind to the same RSTC node, implement a custom bind hook that would manually bind the sysreset driver, if enabled, to the same RSTC DT node. Furthermore, delete the no longer needed compatibles from the SYSRESET driver and rename it to make sure than any possible conflicts are avoided. Signed-off-by: Sergiu Moga <sergiu.moga@microchip.com> Tested-by: Mihai Sain <mihai.sain@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Diffstat (limited to 'drivers/reset/Makefile')
-rw-r--r--drivers/reset/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/reset/Makefile b/drivers/reset/Makefile
index 0620b62..6c8b45e 100644
--- a/drivers/reset/Makefile
+++ b/drivers/reset/Makefile
@@ -31,3 +31,4 @@ obj-$(CONFIG_RESET_RASPBERRYPI) += reset-raspberrypi.o
obj-$(CONFIG_RESET_SCMI) += reset-scmi.o
obj-$(CONFIG_RESET_ZYNQMP) += reset-zynqmp.o
obj-$(CONFIG_RESET_DRA7) += reset-dra7.o
+obj-$(CONFIG_RESET_AT91) += reset-at91.o