/* * Copyright (C) 2006 by egnite Software GmbH. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * For additional information see http://www.ethernut.de/ * */ /* * $Log$ * Revision 1.4 2009/01/17 11:26:37 haraldkipp * Getting rid of two remaining BSD types in favor of stdint. * Replaced 'u_int' by 'unsinged int' and 'uptr_t' by 'uintptr_t'. * * Revision 1.3 2008/08/11 06:59:13 haraldkipp * BSD types replaced by stdint types (feature request #1282721). * * Revision 1.2 2006/05/25 09:13:22 haraldkipp * Platform independent watchdog API added. * * Revision 1.1 2006/02/23 15:36:35 haraldkipp * Added support for AT91 watchdog timer. * */ #include #include /*! * \addtogroup xgNutArchAt91DevWatchDog */ /*@{*/ #if defined(MCU_AT91R40008) static ureg_t nested; #endif /*! * \brief Start the AT91 hardware watch dog timer. * * For portability, applications should use the platform independent * \ref xgWatchDog "Watchdog Driver API". */ uint32_t At91WatchDogStart(uint32_t ms, uint32_t xmode) { unsigned int cmval; #if defined(MCU_AT91R40008) At91WatchDogDisable(); /* * The watchdog counts down a 16 bit value, of which the upper * 4 bits are configurable and the lower 12 bits are set to 1. * Calculate the number of cycles required to count down the * upper 4 bits. */ cmval = ((NutGetCpuClock() / 1000) * ms) >> 13; /* Check if MCK/8 is slow enough. */ if (cmval < WD_HPCV) { cmval = (cmval & WD_HPCV) | WD_WDCLKS_MCK8; } /* Check if MCK/32 is slow enough. */ else if ((cmval >>= 2) < WD_HPCV) { cmval = (cmval & WD_HPCV) | WD_WDCLKS_MCK32; } /* Check if MCK/128 is slow enough. */ else if ((cmval >>= 2) < WD_HPCV) { cmval = (cmval & WD_HPCV) | WD_WDCLKS_MCK128; } /* Check if MCK/1024 is slow enough. */ else if ((cmval >>= 3) < WD_HPCV) { cmval = (cmval & WD_HPCV) | WD_WDCLKS_MCK1024; } /* Use maximum. */ else { cmval = WD_HPCV | WD_WDCLKS_MCK1024; } outr(WD_CMR, WD_CKEY | cmval); if (xmode == 0) { xmode |= WD_RSTEN; } At91WatchDogRestart(); outr(WD_OMR, WD_OKEY | WD_WDEN | xmode); nested = 1; #elif defined(MCU_AT91SAM7X) || defined(MCU_AT91SAM7S) || defined(MCU_AT91SAM7SE) /* Compute 12-bit timer value for 32Khz(approx) slow clock divided by 128 */ cmval = (ms * (32000/128)) / 1000; if(cmval>4095) cmval=4095; /* if mode=0, Enable watchdog and disable it when debugging (default value) */ if (xmode == 0) { xmode |= WDT_WDRSTEN|WDT_WDDBGHLT|WDT_WDIDLEHLT; } /* Write watchdog, you can do it only one time. Delta fixed to timer value */ outr(WDT_MR, cmval | (cmval<<16) | xmode); At91WatchDogRestart(); #endif return ms; } /*! * \brief Re-start the AT91 hardware watch dog timer. * * For portability, applications should use the platform independent * \ref xgWatchDog "Watchdog Driver API". */ void At91WatchDogRestart(void) { #if defined(MCU_AT91R40008) outr(WD_CR, WD_RSTKEY); #elif defined(MCU_AT91SAM7X) || defined(MCU_AT91SAM7S) || defined(MCU_AT91SAM7SE) outr(WDT_CR, WDT_KEY|WDT_WDRSTT); #endif } /*! * \brief Disable the AT91 hardware watch dog timer. * * For portability, applications should use the platform independent * \ref xgWatchDog "Watchdog Driver API". */ void At91WatchDogDisable(void) { #if defined(MCU_AT91R40008) if (nested) { nested++; } outr(WD_OMR, WD_OKEY | (inr(WD_OMR) & ~WD_WDEN)); #elif defined(MCU_AT91SAM7X) || defined(MCU_AT91SAM7S) || defined(MCU_AT91SAM7SE) outr(WDT_MR, WDT_WDDIS); #endif } /*! * \brief Enable the AT91 hardware watch dog timer. * * For portability, applications should use the platform independent * \ref xgWatchDog "Watchdog Driver API". */ void At91WatchDogEnable(void) { #if defined(MCU_AT91R40008) if (nested > 1 && --nested == 1) { At91WatchDogRestart(); outr(WD_OMR, WD_OKEY | inr(WD_OMR) | WD_WDEN); } #endif } /*@}*/