diff options
author | Patrice Chotard <patrice.chotard@st.com> | 2017-03-22 10:54:03 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-03-26 13:22:58 -0600 |
commit | 584861ffebbb46260e9dd48bb0243fc6772ba12a (patch) | |
tree | 80baf45fb6e09a45a51cd2bf0aaaa21cdcfd1887 /drivers/reset/Makefile | |
parent | 0367bd4d605fa17b0e8ee8b45bc7afa6bd2307f9 (diff) | |
download | u-boot-584861ffebbb46260e9dd48bb0243fc6772ba12a.tar.gz |
reset: Add STi reset support
This patch adds a reset controller implementation for STMicroelectronics
STi family SoCs; it allows a group of related reset like controls found
in multiple system configuration registers to be represented by a single
controller device.
Driver code has been mainly extracted from kernel
drivers/reset/sti/reset-stih407.c
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'drivers/reset/Makefile')
-rw-r--r-- | drivers/reset/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/reset/Makefile b/drivers/reset/Makefile index 5c4305cc1d..2b963961d6 100644 --- a/drivers/reset/Makefile +++ b/drivers/reset/Makefile @@ -5,6 +5,7 @@ obj-$(CONFIG_DM_RESET) += reset-uclass.o obj-$(CONFIG_SANDBOX_MBOX) += sandbox-reset.o obj-$(CONFIG_SANDBOX_MBOX) += sandbox-reset-test.o +obj-$(CONFIG_STI_RESET) += sti-reset.o obj-$(CONFIG_TEGRA_CAR_RESET) += tegra-car-reset.o obj-$(CONFIG_TEGRA186_RESET) += tegra186-reset.o obj-$(CONFIG_RESET_UNIPHIER) += reset-uniphier.o |