2007-11-29 03:44:05 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007, 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.
|
|
|
|
*
|
2010-02-26 21:51:48 +01:00
|
|
|
* $Id: rtimer-arch.c,v 1.9 2010/02/26 20:51:48 dak664 Exp $
|
2007-11-29 03:44:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* AVR-specific rtimer code
|
2007-12-11 18:21:14 +01:00
|
|
|
* Currently only works on ATMEGAs that have Timer 3.
|
2007-11-29 03:44:05 +01:00
|
|
|
* \author
|
|
|
|
* Fredrik Osterlind <fros@sics.se>
|
2007-12-11 18:21:14 +01:00
|
|
|
* Joakim Eriksson <joakime@sics.se>
|
2007-11-29 03:44:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* OBS: 8 seconds maximum time! */
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <avr/interrupt.h>
|
2010-02-18 18:21:44 +01:00
|
|
|
#include <stdio.h>
|
2007-11-29 03:44:05 +01:00
|
|
|
|
2009-09-07 14:02:58 +02:00
|
|
|
#include "sys/energest.h"
|
2007-11-29 03:44:05 +01:00
|
|
|
#include "sys/rtimer.h"
|
|
|
|
#include "rtimer-arch.h"
|
2008-11-29 16:55:02 +01:00
|
|
|
|
|
|
|
#if defined(__AVR_ATmega1281__) || defined(__AVR_ATmega1284P__)
|
2010-02-16 22:48:38 +01:00
|
|
|
//#error FTH081029 test timer 3
|
|
|
|
#define ETIMSK TIMSK3
|
|
|
|
#define ETIFR TIFR3
|
|
|
|
#define TICIE3 ICIE3
|
2008-11-29 16:55:02 +01:00
|
|
|
|
2010-02-16 22:48:38 +01:00
|
|
|
//Has no 'C', so we just set it to B. The code doesn't really use C so this
|
2010-02-26 21:51:48 +01:00
|
|
|
//is safe to do but lets it compile. Probably should enable the warning if
|
|
|
|
//it is ever used on other platforms.
|
|
|
|
//#warning no OCIE3C in timer3 architecture, hopefully it won't be needed!
|
|
|
|
|
2010-02-16 22:48:38 +01:00
|
|
|
#define OCIE3C OCIE3B
|
|
|
|
#define OCF3C OCF3B
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__AVR_AT90USB1287__)
|
|
|
|
#warning AT90USB1287 rtimers not tested
|
|
|
|
#define ETIMSK TIMSK3
|
|
|
|
#define ETIFR TIFR3
|
|
|
|
#define TICIE3 ICIE3
|
2008-11-29 16:55:02 +01:00
|
|
|
#endif
|
2007-11-29 03:44:05 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2007-12-11 18:21:14 +01:00
|
|
|
#ifdef TCNT3
|
2008-10-14 11:44:12 +02:00
|
|
|
ISR (TIMER3_COMPA_vect) {
|
2007-11-29 03:44:05 +01:00
|
|
|
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
|
|
|
|
|
|
|
ETIMSK &= ~((1 << OCIE3A) | (1 << OCIE3B) | (1 << TOIE3) |
|
|
|
|
(1 << TICIE3) | (1 << OCIE3C));
|
2010-02-26 21:51:48 +01:00
|
|
|
|
2007-11-29 03:44:05 +01:00
|
|
|
/* Call rtimer callback */
|
|
|
|
rtimer_run_next();
|
|
|
|
|
|
|
|
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
2008-11-29 16:55:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#error "No Timer3 in rtimer-arch.c"
|
2008-10-14 11:44:12 +02:00
|
|
|
|
2007-12-11 18:21:14 +01:00
|
|
|
#endif
|
2007-11-29 03:44:05 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
rtimer_arch_init(void)
|
|
|
|
{
|
|
|
|
/* Disable interrupts (store old state) */
|
|
|
|
uint8_t sreg;
|
|
|
|
sreg = SREG;
|
|
|
|
cli ();
|
|
|
|
|
2007-12-11 18:21:14 +01:00
|
|
|
#ifdef TCNT3
|
2010-02-26 21:51:48 +01:00
|
|
|
/* Disable all timer functions */
|
2007-11-29 03:44:05 +01:00
|
|
|
ETIMSK &= ~((1 << OCIE3A) | (1 << OCIE3B) | (1 << TOIE3) |
|
|
|
|
(1 << TICIE3) | (1 << OCIE3C));
|
2010-02-26 21:51:48 +01:00
|
|
|
/* Write 1s to clear existing timer function flags */
|
2007-11-29 03:44:05 +01:00
|
|
|
ETIFR |= (1 << ICF3) | (1 << OCF3A) | (1 << OCF3B) | (1 << TOV3) |
|
|
|
|
(1 << OCF3C);
|
|
|
|
|
|
|
|
/* Default timer behaviour */
|
|
|
|
TCCR3A = 0;
|
|
|
|
TCCR3B = 0;
|
|
|
|
TCCR3C = 0;
|
|
|
|
|
|
|
|
/* Reset counter */
|
|
|
|
TCNT3 = 0;
|
|
|
|
|
2010-02-26 21:51:48 +01:00
|
|
|
/* Start clock, maximum prescaler */
|
2008-11-29 16:55:02 +01:00
|
|
|
TCCR3B |= 5;
|
|
|
|
|
|
|
|
#else
|
2008-10-14 11:44:12 +02:00
|
|
|
#error "No Timer3 in rtimer-arch.c"
|
2007-11-29 03:44:05 +01:00
|
|
|
|
2007-12-11 18:21:14 +01:00
|
|
|
#endif
|
|
|
|
|
2007-11-29 03:44:05 +01:00
|
|
|
/* Restore interrupt state */
|
|
|
|
SREG = sreg;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
rtimer_arch_schedule(rtimer_clock_t t)
|
|
|
|
{
|
|
|
|
/* Disable interrupts (store old state) */
|
|
|
|
uint8_t sreg;
|
|
|
|
sreg = SREG;
|
|
|
|
cli ();
|
|
|
|
|
2007-12-11 18:21:14 +01:00
|
|
|
#ifdef TCNT3
|
2007-11-29 03:44:05 +01:00
|
|
|
/* Set compare register */
|
|
|
|
OCR3A = t;
|
2010-02-26 21:51:48 +01:00
|
|
|
/* Write 1s to clear all timer function flags */
|
2007-11-29 03:44:05 +01:00
|
|
|
ETIFR |= (1 << ICF3) | (1 << OCF3A) | (1 << OCF3B) | (1 << TOV3) |
|
|
|
|
(1 << OCF3C);
|
2010-02-26 21:51:48 +01:00
|
|
|
/* Enable interrupt on OCR3A match */
|
2008-11-29 16:55:02 +01:00
|
|
|
ETIMSK |= (1 << OCIE3A);
|
|
|
|
|
|
|
|
#else
|
2008-10-14 11:44:12 +02:00
|
|
|
#error "No Timer3 in rtimer-arch.c"
|
2007-11-29 03:44:05 +01:00
|
|
|
|
2007-12-11 18:21:14 +01:00
|
|
|
#endif
|
|
|
|
|
2007-11-29 03:44:05 +01:00
|
|
|
/* Restore interrupt state */
|
|
|
|
SREG = sreg;
|
|
|
|
}
|