diff options
author | Sean Anderson <seanga2@gmail.com> | 2020-06-24 06:41:14 -0400 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2020-07-01 15:01:21 +0800 |
commit | 038b13ee8134ba755a323732f3b2b838b9dc17a4 (patch) | |
tree | feb3172998423931aa0bc4726a6d882d6721863b /configs | |
parent | 082faeb86526b41bb9c5ca8373168e12f2de3a10 (diff) | |
download | u-boot-038b13ee8134ba755a323732f3b2b838b9dc17a4.zip u-boot-038b13ee8134ba755a323732f3b2b838b9dc17a4.tar.gz u-boot-038b13ee8134ba755a323732f3b2b838b9dc17a4.tar.bz2 |
reset: Add generic reset driver
This patch adds a generic reset driver. It is designed to be useful when
one has a register in a regmap which contains bits that reset other
devices. I thought this seemed like a very generic use, so here is a
generic driver. The overall structure has been modeled on the syscon-reboot
driver.
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/sandbox_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig index 692432c..ee1e6f3 100644 --- a/configs/sandbox_defconfig +++ b/configs/sandbox_defconfig @@ -196,6 +196,8 @@ CONFIG_REMOTEPROC_SANDBOX=y CONFIG_DM_RESET=y CONFIG_SANDBOX_RESET=y CONFIG_DM_RNG=y +CONFIG_RNG_SANDBOX=y +CONFIG_RESET_SYSCON=y CONFIG_DM_RTC=y CONFIG_RTC_RV8803=y CONFIG_SANDBOX_SERIAL=y |