summaryrefslogtreecommitdiffstats
path: root/board/dvlhost/watchdog.c
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2014-01-28 00:10:46 +0100
committerMarek Vasut <marex@denx.de>2014-02-06 02:51:52 +0100
commite317de6b083adee81187fe1bba8b2fdf0ac983e7 (patch)
treec1ef72e0b8e58bae02a2fb595250675d551884e6 /board/dvlhost/watchdog.c
parent6ff7aafa4b1f3a3f3808c9a9d9257f13e880689b (diff)
downloadtalos-obmc-uboot-e317de6b083adee81187fe1bba8b2fdf0ac983e7.tar.gz
talos-obmc-uboot-e317de6b083adee81187fe1bba8b2fdf0ac983e7.zip
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.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/board/dvlhost/watchdog.c b/board/dvlhost/watchdog.c
deleted file mode 100644
index 02ec35eb1a..0000000000
--- 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 */
OpenPOWER on IntegriCloud