2011-06-09 18:48:44 +03:00
|
|
|
/*
|
|
|
|
* fw/board_app.c - Board-specific functions (for the application)
|
|
|
|
*
|
|
|
|
* Written 2011 by Werner Almesberger
|
|
|
|
* Copyright 2011 Werner Almesberger
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
2011-06-11 07:59:03 +03:00
|
|
|
#include <avr/interrupt.h>
|
2011-06-09 18:48:44 +03:00
|
|
|
|
|
|
|
#define F_CPU 8000000UL
|
|
|
|
#include <util/delay.h>
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "spi.h"
|
|
|
|
|
|
|
|
|
2011-06-11 07:59:03 +03:00
|
|
|
static volatile uint32_t timer_h = 0; /* 2^(16+32) / 8 MHz = ~1.1 years */
|
2011-06-09 18:48:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
void reset_cpu(void)
|
|
|
|
{
|
|
|
|
WDTCSR = 1 << WDE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t read_irq(void)
|
|
|
|
{
|
|
|
|
return PIN(IRQ_RF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void slp_tr(void)
|
|
|
|
{
|
|
|
|
SET(SLP_TR);
|
|
|
|
CLR(SLP_TR);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-11 07:59:03 +03:00
|
|
|
ISR(TIMER1_OVF_vect)
|
2011-06-09 18:48:44 +03:00
|
|
|
{
|
|
|
|
timer_h++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-11 07:59:03 +03:00
|
|
|
static uint64_t __timer_read(void)
|
2011-06-09 18:48:44 +03:00
|
|
|
{
|
|
|
|
uint32_t high;
|
|
|
|
uint8_t low, mid;
|
|
|
|
|
|
|
|
do {
|
2011-06-11 07:59:03 +03:00
|
|
|
if (TIFR1 & (1 << TOV1)) {
|
|
|
|
TIFR1 = 1 << TOV1;
|
|
|
|
timer_h++;
|
|
|
|
}
|
2011-06-09 18:48:44 +03:00
|
|
|
high = timer_h;
|
|
|
|
low = TCNT1L;
|
|
|
|
mid = TCNT1H;
|
|
|
|
}
|
|
|
|
while (TIFR1 & (1 << TOV1));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need all these casts because the intermediate results are handled
|
|
|
|
* as if they were signed and thus get sign-expanded. Sounds wrong-ish.
|
|
|
|
*/
|
|
|
|
return (uint64_t) high << 16 | (uint64_t) mid << 8 | (uint64_t) low;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-11 07:59:03 +03:00
|
|
|
uint64_t timer_read(void)
|
|
|
|
{
|
|
|
|
uint64_t res;
|
|
|
|
|
|
|
|
cli();
|
|
|
|
res = __timer_read();
|
|
|
|
sei();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-11 07:52:16 +03:00
|
|
|
void timer_init(void)
|
|
|
|
{
|
|
|
|
/* configure timer 1 as a free-running CLK counter */
|
|
|
|
|
|
|
|
TCCR1A = 0;
|
|
|
|
TCCR1B = 1 << CS10;
|
2011-06-11 07:59:03 +03:00
|
|
|
|
|
|
|
/* enable timer overflow interrupt */
|
|
|
|
|
|
|
|
TIMSK1 = 1 << TOIE1;
|
2011-06-11 07:52:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-09 18:48:44 +03:00
|
|
|
int gpio(uint8_t port, uint8_t data, uint8_t dir, uint8_t mask, uint8_t *res)
|
|
|
|
{
|
|
|
|
switch (port) {
|
|
|
|
case 1:
|
|
|
|
DDRB = (DDRB & ~mask) | dir;
|
|
|
|
PORTB = (PORTB & ~mask) | data;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
DDRC = (DDRC & ~mask) | dir;
|
|
|
|
PORTC = (PORTC & ~mask) | data;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
DDRD = (DDRD & ~mask) | dir;
|
|
|
|
PORTD = (PORTD & ~mask) | data;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* disable the UART so that we can meddle with these pins as well. */
|
2011-06-09 20:02:26 +03:00
|
|
|
spi_off();
|
2011-06-09 18:48:44 +03:00
|
|
|
_delay_ms(1);
|
|
|
|
|
|
|
|
switch (port) {
|
|
|
|
case 1:
|
|
|
|
res[0] = PINB;
|
|
|
|
res[1] = PORTB;
|
|
|
|
res[2] = DDRB;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
res[0] = PINC;
|
|
|
|
res[1] = PORTC;
|
|
|
|
res[2] = DDRC;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
res[0] = PIND;
|
|
|
|
res[1] = PORTD;
|
|
|
|
res[2] = DDRD;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|