2007-09-20 04:46:41 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-09-22 15:43:38 +00:00
|
|
|
* $Id$
|
2007-09-20 04:46:41 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2007-09-20 04:46:41 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "timer.h"
|
|
|
|
#include "thread.h"
|
|
|
|
|
|
|
|
extern void (*tick_funcs[MAX_NUM_TICK_TASKS])(void);
|
|
|
|
|
|
|
|
void tick_start(unsigned int interval_in_ms)
|
|
|
|
{
|
2008-04-24 20:08:28 +00:00
|
|
|
/* TODO: set up TIMER1 clock settings
|
|
|
|
IO_CLK_MOD2 &= ~CLK_MOD2_TMR1; //disable TIMER1 clock
|
|
|
|
IO_CLK_SEL0 |= (1 << 2); //set TIMER1 clock to PLLIN*/
|
|
|
|
IO_CLK_MOD2 |= CLK_MOD2_TMR1; //enable TIMER1 clock!!!!!!!!!
|
2007-09-22 23:17:52 +00:00
|
|
|
IO_TIMER1_TMMD = CONFIG_TIMER1_TMMD_STOP;
|
|
|
|
|
2007-09-23 23:08:39 +00:00
|
|
|
/* Setup the Prescalar (Divide by 10)
|
|
|
|
* Based on linux/include/asm-arm/arch-integrator/timex.h
|
|
|
|
*/
|
2007-11-07 05:30:31 +00:00
|
|
|
IO_TIMER1_TMPRSCL = 0x0009;
|
2007-09-22 23:17:52 +00:00
|
|
|
|
|
|
|
/* Setup the Divisor */
|
2008-04-24 20:08:28 +00:00
|
|
|
IO_TIMER1_TMDIV = (TIMER_FREQ / (10*1000))*interval_in_ms - 1;
|
|
|
|
|
2007-09-22 23:17:52 +00:00
|
|
|
/* Turn Timer1 to Free Run mode */
|
|
|
|
IO_TIMER1_TMMD = CONFIG_TIMER1_TMMD_FREE_RUN;
|
2008-04-24 20:08:28 +00:00
|
|
|
|
2007-09-22 23:17:52 +00:00
|
|
|
/* Enable the interrupt */
|
2008-04-24 20:08:28 +00:00
|
|
|
IO_INTC_EINT0 |= INTR_EINT0_TMR1;
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
2007-09-23 23:08:39 +00:00
|
|
|
void TIMER1(void)
|
2007-09-20 04:46:41 +00:00
|
|
|
{
|
2008-05-07 13:33:29 +00:00
|
|
|
IO_INTC_IRQ0 = INTR_IRQ0_TMR1;
|
|
|
|
|
2007-09-20 04:46:41 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Run through the list of tick tasks */
|
|
|
|
for(i = 0; i < MAX_NUM_TICK_TASKS; i++)
|
|
|
|
{
|
|
|
|
if(tick_funcs[i])
|
|
|
|
{
|
|
|
|
tick_funcs[i]();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
current_tick++;
|
|
|
|
}
|