diff options
author | Marek Vasut <marex@denx.de> | 2014-01-28 00:10:46 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2014-02-06 02:51:52 +0100 |
commit | e317de6b083adee81187fe1bba8b2fdf0ac983e7 (patch) | |
tree | c1ef72e0b8e58bae02a2fb595250675d551884e6 /board/dvlhost/watchdog.c | |
parent | 6ff7aafa4b1f3a3f3808c9a9d9257f13e880689b (diff) | |
download | u-boot-imx-e317de6b083adee81187fe1bba8b2fdf0ac983e7.zip u-boot-imx-e317de6b083adee81187fe1bba8b2fdf0ac983e7.tar.gz u-boot-imx-e317de6b083adee81187fe1bba8b2fdf0ac983e7.tar.bz2 |
ARM: IXP: Remove dvl_host board
The board is unmaintained, just like the rest of the IXP.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Michael Schwingen <michael@schwingen.org>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/dvlhost/watchdog.c')
-rw-r--r-- | board/dvlhost/watchdog.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/board/dvlhost/watchdog.c b/board/dvlhost/watchdog.c deleted file mode 100644 index 02ec35e..0000000 --- a/board/dvlhost/watchdog.c +++ /dev/null @@ -1,27 +0,0 @@ -/* - * (C) Copyright 2009 - * Michael Schwingen, michael@schwingen.org - * - * SPDX-License-Identifier: GPL-2.0+ - */ - -#include <common.h> -#include <config.h> -#include <asm/io.h> -#include "dvlhost_hw.h" - -DECLARE_GLOBAL_DATA_PTR; - -#ifdef CONFIG_HW_WATCHDOG -#include <watchdog.h> -#include <asm/arch/ixp425.h> - -void hw_watchdog_reset(void) -{ - unsigned int x; - x = readl(IXP425_GPIO_GPOUTR); - x ^= (1 << (CONFIG_SYS_GPIO_WDGTRIGGER)); - writel(x, IXP425_GPIO_GPOUTR); -} - -#endif /* CONFIG_HW_WATCHDOG */ |