diff options
author | Prasanthi Chellakumar <Prasanthi.Chellakumar@microchip.com> | 2018-10-09 11:46:40 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-16 13:34:34 -0500 |
commit | 1473f6ac882fde8078826ca828aa3494ff98bf08 (patch) | |
tree | 4eb5772d7cdf5113ba64e6c25a20594d6c1bc366 /configs | |
parent | eb13dddd2c0cf7e02f3cc52f783af332a64a63d2 (diff) | |
download | u-boot-1473f6ac882fde8078826ca828aa3494ff98bf08.tar.gz |
arm: at91: wdt: Convert watchdog driver to dm/dt
Convert the Watchdog driver for AT91SAM9x processors to support
the driver model and device tree. Changes "CONFIG_AT91SAM9_WATCHDOG"
to new "CONFIG_WDT_AT91" Kconfig option.
Signed-off-by: Prasanthi Chellakumar <prasanthi.chellakumar@microchip.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/picosam9g45_defconfig | 4 | ||||
-rw-r--r-- | configs/smartweb_defconfig | 3 | ||||
-rw-r--r-- | configs/taurus_defconfig | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/configs/picosam9g45_defconfig b/configs/picosam9g45_defconfig index df979f9326..699e2e230a 100644 --- a/configs/picosam9g45_defconfig +++ b/configs/picosam9g45_defconfig @@ -40,3 +40,7 @@ CONFIG_USB_EHCI_HCD=y CONFIG_USB_STORAGE=y CONFIG_LCD=y CONFIG_OF_LIBFDT=y +CONFIG_DM=y +CONFIG_SPL_DM=y +CONFIG_WDT=y +CONFIG_WDT_AT91=y diff --git a/configs/smartweb_defconfig b/configs/smartweb_defconfig index cf6f2757ca..e9c2b63509 100644 --- a/configs/smartweb_defconfig +++ b/configs/smartweb_defconfig @@ -59,3 +59,6 @@ CONFIG_USB_ETHER_ASIX=y CONFIG_USB_ETHER_MCS7830=y CONFIG_SPL_TINY_MEMSET=y # CONFIG_EFI_LOADER is not set +CONFIG_WDT=y +CONFIG_WDT_AT91=y +CONFIG_AT91_HW_WDT_TIMEOUT=y diff --git a/configs/taurus_defconfig b/configs/taurus_defconfig index ee5da43ccb..e53e075d48 100644 --- a/configs/taurus_defconfig +++ b/configs/taurus_defconfig @@ -61,3 +61,6 @@ CONFIG_USB_GADGET_VENDOR_NUM=0x0908 CONFIG_USB_GADGET_PRODUCT_NUM=0x02d2 CONFIG_USB_GADGET_DOWNLOAD=y CONFIG_USE_TINY_PRINTF=y +CONFIG_WDT=y +CONFIG_WDT_AT91=y +CONFIG_AT91_HW_WDT_TIMEOUT=y |