OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [CORTEX_LM3Sxxxx_IAR_Keil/] [timertest.c] - Blame information for rev 581

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 581 jeremybenn
/*
2
    FreeRTOS V6.1.1 - Copyright (C) 2011 Real Time Engineers Ltd.
3
 
4
    ***************************************************************************
5
    *                                                                         *
6
    * If you are:                                                             *
7
    *                                                                         *
8
    *    + New to FreeRTOS,                                                   *
9
    *    + Wanting to learn FreeRTOS or multitasking in general quickly       *
10
    *    + Looking for basic training,                                        *
11
    *    + Wanting to improve your FreeRTOS skills and productivity           *
12
    *                                                                         *
13
    * then take a look at the FreeRTOS books - available as PDF or paperback  *
14
    *                                                                         *
15
    *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *
16
    *                  http://www.FreeRTOS.org/Documentation                  *
17
    *                                                                         *
18
    * A pdf reference manual is also available.  Both are usually delivered   *
19
    * to your inbox within 20 minutes to two hours when purchased between 8am *
20
    * and 8pm GMT (although please allow up to 24 hours in case of            *
21
    * exceptional circumstances).  Thank you for your support!                *
22
    *                                                                         *
23
    ***************************************************************************
24
 
25
    This file is part of the FreeRTOS distribution.
26
 
27
    FreeRTOS is free software; you can redistribute it and/or modify it under
28
    the terms of the GNU General Public License (version 2) as published by the
29
    Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
30
    ***NOTE*** The exception to the GPL is included to allow you to distribute
31
    a combined work that includes FreeRTOS without being obliged to provide the
32
    source code for proprietary components outside of the FreeRTOS kernel.
33
    FreeRTOS is distributed in the hope that it will be useful, but WITHOUT
34
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
35
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
36
    more details. You should have received a copy of the GNU General Public
37
    License and the FreeRTOS license exception along with FreeRTOS; if not it
38
    can be viewed here: http://www.freertos.org/a00114.html and also obtained
39
    by writing to Richard Barry, contact details for whom are available on the
40
    FreeRTOS WEB site.
41
 
42
    1 tab == 4 spaces!
43
 
44
    http://www.FreeRTOS.org - Documentation, latest information, license and
45
    contact details.
46
 
47
    http://www.SafeRTOS.com - A version that is certified for use in safety
48
    critical systems.
49
 
50
    http://www.OpenRTOS.com - Commercial support, development, porting,
51
    licensing and training services.
52
*/
53
 
54
/* High speed timer test as described in main.c. */
55
 
56
/* Scheduler includes. */
57
#include "FreeRTOS.h"
58
 
59
/* Library includes. */
60
#include "hw_ints.h"
61
#include "hw_memmap.h"
62
#include "hw_types.h"
63
#include "interrupt.h"
64
#include "sysctl.h"
65
#include "lmi_timer.h"
66
#include "hw_timer.h"
67
 
68
/* The set frequency of the interrupt.  Deviations from this are measured as
69
the jitter. */
70
#define timerINTERRUPT_FREQUENCY                ( 20000UL )
71
 
72
/* The expected time between each of the timer interrupts - if the jitter was
73
zero. */
74
#define timerEXPECTED_DIFFERENCE_VALUE  ( configCPU_CLOCK_HZ / timerINTERRUPT_FREQUENCY )
75
 
76
/* The highest available interrupt priority. */
77
#define timerHIGHEST_PRIORITY                   ( 0 )
78
 
79
/* Misc defines. */
80
#define timerMAX_32BIT_VALUE                    ( 0xffffffffUL )
81
#define timerTIMER_1_COUNT_VALUE                ( * ( ( volatile unsigned long * ) ( ( unsigned portLONG ) TIMER1_BASE + 0x48UL ) ) )
82
 
83
/*-----------------------------------------------------------*/
84
 
85
/* Interrupt handler in which the jitter is measured. */
86
void Timer0IntHandler( void );
87
 
88
/* Stores the value of the maximum recorded jitter between interrupts. */
89
volatile unsigned portLONG ulMaxJitter = 0;
90
 
91
/*-----------------------------------------------------------*/
92
 
93
void vSetupHighFrequencyTimer( void )
94
{
95
unsigned long ulFrequency;
96
 
97
        /* Timer zero is used to generate the interrupts, and timer 1 is used
98
        to measure the jitter. */
99
        SysCtlPeripheralEnable( SYSCTL_PERIPH_TIMER0 );
100
    SysCtlPeripheralEnable( SYSCTL_PERIPH_TIMER1 );
101
    TimerConfigure( TIMER0_BASE, TIMER_CFG_32_BIT_PER );
102
    TimerConfigure( TIMER1_BASE, TIMER_CFG_32_BIT_PER );
103
 
104
        /* Set the timer interrupt to be above the kernel - highest. */
105
        IntPrioritySet( INT_TIMER0A, timerHIGHEST_PRIORITY );
106
 
107
        /* Just used to measure time. */
108
    TimerLoadSet(TIMER1_BASE, TIMER_A, timerMAX_32BIT_VALUE );
109
 
110
        /* Ensure interrupts do not start until the scheduler is running. */
111
        portDISABLE_INTERRUPTS();
112
 
113
        /* The rate at which the timer will interrupt. */
114
        ulFrequency = configCPU_CLOCK_HZ / timerINTERRUPT_FREQUENCY;
115
    TimerLoadSet( TIMER0_BASE, TIMER_A, ulFrequency );
116
    IntEnable( INT_TIMER0A );
117
    TimerIntEnable( TIMER0_BASE, TIMER_TIMA_TIMEOUT );
118
 
119
        /* Enable both timers. */
120
    TimerEnable( TIMER0_BASE, TIMER_A );
121
    TimerEnable( TIMER1_BASE, TIMER_A );
122
}
123
/*-----------------------------------------------------------*/
124
 
125
void Timer0IntHandler( void )
126
{
127
unsigned portLONG ulDifference;
128
volatile unsigned portLONG ulCurrentCount;
129
static unsigned portLONG ulMaxDifference = 0, ulLastCount = 0;
130
 
131
        /* We use the timer 1 counter value to measure the clock cycles between
132
        the timer 0 interrupts. */
133
        ulCurrentCount = timerTIMER_1_COUNT_VALUE;
134
 
135
        TimerIntClear( TIMER0_BASE, TIMER_TIMA_TIMEOUT );
136
 
137
        if( ulCurrentCount < ulLastCount )
138
        {
139
                /* How many times has timer 1 counted since the last interrupt? */
140
                ulDifference =  ulLastCount - ulCurrentCount;
141
 
142
                /* Is this the largest difference we have measured yet? */
143
                if( ulDifference > ulMaxDifference )
144
                {
145
                        ulMaxDifference = ulDifference;
146
                        ulMaxJitter = ulMaxDifference - timerEXPECTED_DIFFERENCE_VALUE;
147
                }
148
        }
149
 
150
        ulLastCount = ulCurrentCount;
151
}
152
 
153
 
154
 
155
 
156
 
157
 
158
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.