~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/board/w7o/watchdog.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (C) Copyright 2001
 
3
 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com.
 
4
 *
 
5
 * SPDX-License-Identifier:     GPL-2.0+
 
6
 */
 
7
 
 
8
/*
 
9
 * W7O board level hardware watchdog.
 
10
 */
 
11
#include <common.h>
 
12
#include <config.h>
 
13
 
 
14
#ifdef CONFIG_HW_WATCHDOG
 
15
#include <watchdog.h>
 
16
 
 
17
void hw_watchdog_reset(void)
 
18
{
 
19
    volatile ushort *hwd = (ushort *)(CONFIG_SYS_W7O_EBC_PB7CR & 0xfff00000);
 
20
 
 
21
    /*
 
22
     * Read the LMG's hwd register and toggle the
 
23
     * watchdog bit to reset it.   On the LMC, just
 
24
     * reading it is enough, but toggling the bit
 
25
     * doen't hurt either.
 
26
     */
 
27
    *hwd = *hwd ^ 0x8000;
 
28
 
 
29
} /* hw_watchdog_reset() */
 
30
 
 
31
#endif /* CONFIG_HW_WATCHDOG */