2010-02-02 18:04:18 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2005, Swedish Institute of Computer Science
|
|
|
|
* 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 Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE 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 INSTITUTE 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.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-03-13 18:45:12 +01:00
|
|
|
/* Watchdog routines for the AVR */
|
|
|
|
|
2011-03-14 21:14:47 +01:00
|
|
|
/* The default timeout of 2 seconds works on most MCUs.
|
|
|
|
* It should be disabled during sleep (unless used for wakeup) since
|
|
|
|
* it draws significant current (~5 uamp on 1284p, 20x the MCU consumption).
|
|
|
|
*
|
|
|
|
* Note the wdt is not properly simulated in AVR Studio 4 Simulator 1:
|
|
|
|
* On many devices calls to wdt_reset will have no effect, and a wdt reboot will occur.
|
|
|
|
* The MCUSR will not show the cause of a wdt reboot.
|
|
|
|
* A 1MHz clock is assumed; at 8MHz timeout occurs 8x faster than it should.
|
|
|
|
* Simulator 2 is supposed to work on supported devices (not atmega128rfa1),
|
|
|
|
* but neither it nor Studio 5 beta do any resets on the 1284p.
|
|
|
|
*
|
|
|
|
* Setting WATCHDOG_CONF_TIMEOUT -1 will disable the WDT.
|
|
|
|
*/
|
|
|
|
//#define WATCHDOG_CONF_TIMEOUT -1
|
|
|
|
|
2011-03-13 18:45:12 +01:00
|
|
|
#ifndef WATCHDOG_CONF_TIMEOUT
|
|
|
|
#define WATCHDOG_CONF_TIMEOUT WDTO_2S
|
|
|
|
#endif
|
2011-03-14 21:14:47 +01:00
|
|
|
|
2011-03-13 18:45:12 +01:00
|
|
|
/* While balancing start and stop calls is a good idea, an imbalance will cause
|
|
|
|
* resets that can take a lot of time to track down.
|
2011-03-14 21:14:47 +01:00
|
|
|
* Some low power protocols may cause this.
|
2011-03-13 18:45:12 +01:00
|
|
|
* The default is no balance; define WATCHDOG_CONF_BALANCE 1 to override.
|
|
|
|
*/
|
|
|
|
#ifndef WATCHDOG_CONF_BALANCE
|
|
|
|
#define WATCHDOG_CONF_BALANCE 0
|
|
|
|
#endif
|
|
|
|
|
2010-02-02 18:04:18 +01:00
|
|
|
#include "dev/watchdog.h"
|
2010-09-17 23:59:09 +02:00
|
|
|
#include <avr/wdt.h>
|
|
|
|
#include <avr/interrupt.h>
|
|
|
|
|
2011-08-03 17:18:55 +02:00
|
|
|
//Not all AVR toolchains alias MCUSR to the older MSUSCR name
|
|
|
|
//#if defined (__AVR_ATmega8__) || defined (__AVR_ATmega8515__) || defined (__AVR_ATmega16__)
|
|
|
|
#if !defined (MCUSR) && defined (MCUCSR)
|
|
|
|
#warning *** MCUSR not defined, using MCUCSR instead ***
|
|
|
|
#define MCUSR MCUCSR
|
|
|
|
#endif
|
|
|
|
|
2011-03-14 21:14:47 +01:00
|
|
|
#if WATCHDOG_CONF_BALANCE && WATCHDOG_CONF_TIMEOUT >= 0
|
2010-09-17 23:59:09 +02:00
|
|
|
static int stopped = 0;
|
2011-03-13 18:45:12 +01:00
|
|
|
#endif
|
2010-02-02 18:04:18 +01:00
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
watchdog_init(void)
|
|
|
|
{
|
2011-03-14 21:14:47 +01:00
|
|
|
/* Clear startup bit and disable the wdt, whether or not it will be used.
|
|
|
|
Random code may have caused the last reset.
|
|
|
|
*/
|
2010-09-17 23:59:09 +02:00
|
|
|
MCUSR&=~(1<<WDRF);
|
2011-03-14 21:14:47 +01:00
|
|
|
wdt_disable();
|
|
|
|
#if WATCHDOG_CONF_BALANCE && WATCHDOG_CONF_TIMEOUT >= 0
|
|
|
|
stopped = 1;
|
2011-03-13 18:45:12 +01:00
|
|
|
#endif
|
2010-02-02 18:04:18 +01:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
watchdog_start(void)
|
|
|
|
{
|
2011-03-14 21:14:47 +01:00
|
|
|
#if WATCHDOG_CONF_TIMEOUT >= 0
|
2011-03-13 18:45:12 +01:00
|
|
|
#if WATCHDOG_CONF_BALANCE
|
2010-09-17 23:59:09 +02:00
|
|
|
stopped--;
|
2011-03-13 18:45:12 +01:00
|
|
|
if(!stopped)
|
|
|
|
#endif
|
|
|
|
wdt_enable(WATCHDOG_CONF_TIMEOUT);
|
2011-03-14 21:14:47 +01:00
|
|
|
#endif
|
2010-02-02 18:04:18 +01:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
watchdog_periodic(void)
|
|
|
|
{
|
2011-03-14 21:14:47 +01:00
|
|
|
#if WATCHDOG_CONF_TIMEOUT >= 0
|
2011-03-13 18:45:12 +01:00
|
|
|
#if WATCHDOG_CONF_BALANCE
|
|
|
|
if(!stopped)
|
|
|
|
#endif
|
2010-09-17 23:59:09 +02:00
|
|
|
wdt_reset();
|
2011-03-14 21:14:47 +01:00
|
|
|
#endif
|
2010-02-02 18:04:18 +01:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
watchdog_stop(void)
|
|
|
|
{
|
2011-03-14 21:14:47 +01:00
|
|
|
#if WATCHDOG_CONF_TIMEOUT >= 0
|
2011-03-13 18:45:12 +01:00
|
|
|
#if WATCHDOG_CONF_BALANCE
|
|
|
|
stopped++;
|
|
|
|
#endif
|
2010-09-17 23:59:09 +02:00
|
|
|
wdt_disable();
|
2011-03-14 21:14:47 +01:00
|
|
|
#endif
|
2010-02-02 18:04:18 +01:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
watchdog_reboot(void)
|
|
|
|
{
|
2010-09-17 23:59:09 +02:00
|
|
|
cli();
|
|
|
|
wdt_enable(WDTO_15MS); //wd on,250ms
|
|
|
|
while(1); //loop
|
2010-02-02 18:04:18 +01:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2011-03-14 21:14:47 +01:00
|
|
|
#if 0
|
|
|
|
/* Not all AVRs implement the wdt interrupt */
|
|
|
|
ISR(WDT_vect)
|
|
|
|
{
|
|
|
|
}
|
2011-08-03 17:18:55 +02:00
|
|
|
#endif
|