diff options
author | Stefan Roese <sr@denx.de> | 2020-09-23 11:01:32 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2020-10-16 13:55:04 +0200 |
commit | b666714c30c6d6501fbb91d1774065a204a88b8e (patch) | |
tree | ce10716d206a313f7d2cd0565be635288b0a3ffd | |
parent | 3981cdd8db26b65cc89d7ff5bdc668c436a4c616 (diff) | |
download | u-boot-b666714c30c6d6501fbb91d1774065a204a88b8e.zip u-boot-b666714c30c6d6501fbb91d1774065a204a88b8e.tar.gz u-boot-b666714c30c6d6501fbb91d1774065a204a88b8e.tar.bz2 |
arm: octeontx: Add CMD_WDT
Enable WDT command for Octeon TX/TX2 boards.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Aaron Williams <awilliams@marvell.com>
Cc: Suneel Garapati <sgarapati@marvell.com>
Cc: Chandrakala Chavva <cchavva@marvell.com>
-rw-r--r-- | configs/octeontx2_95xx_defconfig | 1 | ||||
-rw-r--r-- | configs/octeontx2_96xx_defconfig | 1 | ||||
-rw-r--r-- | configs/octeontx_81xx_defconfig | 1 | ||||
-rw-r--r-- | configs/octeontx_83xx_defconfig | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/configs/octeontx2_95xx_defconfig b/configs/octeontx2_95xx_defconfig index b47f196..e37c837 100644 --- a/configs/octeontx2_95xx_defconfig +++ b/configs/octeontx2_95xx_defconfig @@ -40,6 +40,7 @@ CONFIG_CMD_BKOPS_ENABLE=y CONFIG_CMD_PART=y CONFIG_CMD_PCI=y CONFIG_CMD_SF_TEST=y +CONFIG_CMD_WDT=y CONFIG_CMD_DHCP=y CONFIG_CMD_TFTPPUT=y CONFIG_CMD_TFTPSRV=y diff --git a/configs/octeontx2_96xx_defconfig b/configs/octeontx2_96xx_defconfig index e178c08..403ea51 100644 --- a/configs/octeontx2_96xx_defconfig +++ b/configs/octeontx2_96xx_defconfig @@ -41,6 +41,7 @@ CONFIG_CMD_PART=y CONFIG_CMD_PCI=y CONFIG_CMD_SF_TEST=y CONFIG_CMD_USB=y +CONFIG_CMD_WDT=y CONFIG_CMD_DHCP=y CONFIG_CMD_TFTPPUT=y CONFIG_CMD_TFTPSRV=y diff --git a/configs/octeontx_81xx_defconfig b/configs/octeontx_81xx_defconfig index 850cab3..78efcf5 100644 --- a/configs/octeontx_81xx_defconfig +++ b/configs/octeontx_81xx_defconfig @@ -42,6 +42,7 @@ CONFIG_CMD_PART=y CONFIG_CMD_PCI=y CONFIG_CMD_SF_TEST=y CONFIG_CMD_USB=y +CONFIG_CMD_WDT=y CONFIG_CMD_DHCP=y CONFIG_CMD_TFTPPUT=y CONFIG_CMD_TFTPSRV=y diff --git a/configs/octeontx_83xx_defconfig b/configs/octeontx_83xx_defconfig index 60fcf6a..f5b0528 100644 --- a/configs/octeontx_83xx_defconfig +++ b/configs/octeontx_83xx_defconfig @@ -40,6 +40,7 @@ CONFIG_CMD_PART=y CONFIG_CMD_PCI=y CONFIG_CMD_SF_TEST=y CONFIG_CMD_USB=y +CONFIG_CMD_WDT=y CONFIG_CMD_DHCP=y CONFIG_CMD_TFTPPUT=y CONFIG_CMD_TFTPSRV=y |