diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-02-19 07:15:01 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-02-19 07:15:01 +0100 |
commit | a87a0ce7028d5371c81d77ba72c1ba43a1ca77bc (patch) | |
tree | 98bff4a88314611dc6f7afea5f88953309940a51 /board/dvlhost/watchdog.c | |
parent | c4d376fd1c2bce8d64cec0431dd3f24957b6dec4 (diff) | |
parent | f8d1086851409ee16344932ef367b8a05c365b09 (diff) | |
download | u-boot-imx-a87a0ce7028d5371c81d77ba72c1ba43a1ca77bc.zip u-boot-imx-a87a0ce7028d5371c81d77ba72c1ba43a1ca77bc.tar.gz u-boot-imx-a87a0ce7028d5371c81d77ba72c1ba43a1ca77bc.tar.bz2 |
Merge branch 'u-boot-pxa/master' into 'u-boot-arm/master'
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 */ |