summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/tms320dm320/kernel-dm320.c
blob: db18d83c59ed908fdeee992243e11673843940a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2007 by Karl Kurbjun
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * 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)
{
/*    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!!!!!!!!!
    IO_TIMER1_TMMD = CONFIG_TIMER1_TMMD_STOP;
    
    /*  Setup the Prescalar (Divide by 10)
     *  Based on linux/include/asm-arm/arch-integrator/timex.h 
     */
    IO_TIMER1_TMPRSCL = 0x0009;

    /* Setup the Divisor */
    IO_TIMER1_TMDIV = (TIMER_FREQ / (10*1000))*interval_in_ms - 1;
    
    /* Turn Timer1 to Free Run mode */
    IO_TIMER1_TMMD = CONFIG_TIMER1_TMMD_FREE_RUN;
    
    /* Enable the interrupt */
    IO_INTC_EINT0 |= INTR_EINT0_TMR1;
}

void TIMER1(void)
{
    IO_INTC_IRQ0 = INTR_IRQ0_TMR1;
    
    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++;
}