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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Source/] [portable/] [GCC/] [ARM7_AT91SAM7S/] [portISR.c] - Blame information for rev 820

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 572 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
 
55
/*-----------------------------------------------------------
56
 * Components that can be compiled to either ARM or THUMB mode are
57
 * contained in port.c  The ISR routines, which can only be compiled
58
 * to ARM mode, are contained in this file.
59
 *----------------------------------------------------------*/
60
 
61
/*
62
        Changes from V3.2.4
63
 
64
        + The assembler statements are now included in a single asm block rather
65
          than each line having its own asm block.
66
*/
67
 
68
/* Scheduler includes. */
69
#include "FreeRTOS.h"
70
#include "task.h"
71
 
72
#include "AT91SAM7X256.h"
73
 
74
/* Constants required to handle interrupts. */
75
#define portTIMER_MATCH_ISR_BIT         ( ( unsigned char ) 0x01 )
76
#define portCLEAR_VIC_INTERRUPT         ( ( unsigned long ) 0 )
77
 
78
/* Constants required to handle critical sections. */
79
#define portNO_CRITICAL_NESTING         ( ( unsigned long ) 0 )
80
volatile unsigned long ulCriticalNesting = 9999UL;
81
 
82
/*-----------------------------------------------------------*/
83
 
84
/* ISR to handle manual context switches (from a call to taskYIELD()). */
85
void vPortYieldProcessor( void ) __attribute__((interrupt("SWI"), naked));
86
 
87
/*
88
 * The scheduler can only be started from ARM mode, hence the inclusion of this
89
 * function here.
90
 */
91
void vPortISRStartFirstTask( void );
92
/*-----------------------------------------------------------*/
93
 
94
void vPortISRStartFirstTask( void )
95
{
96
        /* Simply start the scheduler.  This is included here as it can only be
97
        called from ARM mode. */
98
        portRESTORE_CONTEXT();
99
}
100
/*-----------------------------------------------------------*/
101
 
102
/*
103
 * Called by portYIELD() or taskYIELD() to manually force a context switch.
104
 *
105
 * When a context switch is performed from the task level the saved task
106
 * context is made to look as if it occurred from within the tick ISR.  This
107
 * way the same restore context function can be used when restoring the context
108
 * saved from the ISR or that saved from a call to vPortYieldProcessor.
109
 */
110
void vPortYieldProcessor( void )
111
{
112
        /* Within an IRQ ISR the link register has an offset from the true return
113
        address, but an SWI ISR does not.  Add the offset manually so the same
114
        ISR return code can be used in both cases. */
115
        asm volatile ( "ADD             LR, LR, #4" );
116
 
117
        /* Perform the context switch.  First save the context of the current task. */
118
        portSAVE_CONTEXT();
119
 
120
        /* Find the highest priority task that is ready to run. */
121
        vTaskSwitchContext();
122
 
123
        /* Restore the context of the new task. */
124
        portRESTORE_CONTEXT();
125
}
126
/*-----------------------------------------------------------*/
127
 
128
/*
129
 * The ISR used for the scheduler tick depends on whether the cooperative or
130
 * the preemptive scheduler is being used.
131
 */
132
 
133
#if configUSE_PREEMPTION == 0
134
 
135
        /* The cooperative scheduler requires a normal IRQ service routine to
136
        simply increment the system tick. */
137
        void vNonPreemptiveTick( void ) __attribute__ ((interrupt ("IRQ")));
138
        void vNonPreemptiveTick( void )
139
        {
140
                unsigned long ulDummy;
141
 
142
                /* Increment the tick count - which may wake some tasks but as the
143
                preemptive scheduler is not being used any woken task is not given
144
                processor time no matter what its priority. */
145
                vTaskIncrementTick();
146
 
147
                /* Clear the PIT interrupt. */
148
                ulDummy = AT91C_BASE_PITC->PITC_PIVR;
149
 
150
                /* End the interrupt in the AIC. */
151
                AT91C_BASE_AIC->AIC_EOICR = ulDummy;
152
        }
153
 
154
#else
155
 
156
        /* The preemptive scheduler is defined as "naked" as the full context is
157
        saved on entry as part of the context switch. */
158
        void vPreemptiveTick( void ) __attribute__((naked));
159
        void vPreemptiveTick( void )
160
        {
161
                /* Save the context of the current task. */
162
                portSAVE_CONTEXT();
163
 
164
                /* Increment the tick count - this may wake a task. */
165
                vTaskIncrementTick();
166
 
167
                /* Find the highest priority task that is ready to run. */
168
                vTaskSwitchContext();
169
 
170
                /* End the interrupt in the AIC. */
171
                AT91C_BASE_AIC->AIC_EOICR = AT91C_BASE_PITC->PITC_PIVR;;
172
 
173
                portRESTORE_CONTEXT();
174
        }
175
 
176
#endif
177
/*-----------------------------------------------------------*/
178
 
179
/*
180
 * The interrupt management utilities can only be called from ARM mode.  When
181
 * THUMB_INTERWORK is defined the utilities are defined as functions here to
182
 * ensure a switch to ARM mode.  When THUMB_INTERWORK is not defined then
183
 * the utilities are defined as macros in portmacro.h - as per other ports.
184
 */
185
void vPortDisableInterruptsFromThumb( void ) __attribute__ ((naked));
186
void vPortEnableInterruptsFromThumb( void ) __attribute__ ((naked));
187
 
188
void vPortDisableInterruptsFromThumb( void )
189
{
190
        asm volatile (
191
                "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */
192
                "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */
193
                "ORR    R0, R0, #0xC0   \n\t"   /* Disable IRQ, FIQ.                                            */
194
                "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */
195
                "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */
196
                "BX             R14" );                                 /* Return back to thumb.                                        */
197
}
198
 
199
void vPortEnableInterruptsFromThumb( void )
200
{
201
        asm volatile (
202
                "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */
203
                "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */
204
                "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                                                     */
205
                "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */
206
                "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */
207
                "BX             R14" );                                 /* Return back to thumb.                                        */
208
}
209
 
210
 
211
/* The code generated by the GCC compiler uses the stack in different ways at
212
different optimisation levels.  The interrupt flags can therefore not always
213
be saved to the stack.  Instead the critical section nesting level is stored
214
in a variable, which is then saved as part of the stack context. */
215
void vPortEnterCritical( void )
216
{
217
        /* Disable interrupts as per portDISABLE_INTERRUPTS();                                                  */
218
        asm volatile (
219
                "STMDB  SP!, {R0}                       \n\t"   /* Push R0.                                                             */
220
                "MRS    R0, CPSR                        \n\t"   /* Get CPSR.                                                    */
221
                "ORR    R0, R0, #0xC0           \n\t"   /* Disable IRQ, FIQ.                                    */
222
                "MSR    CPSR, R0                        \n\t"   /* Write back modified value.                   */
223
                "LDMIA  SP!, {R0}" );                           /* Pop R0.                                                              */
224
 
225
        /* Now interrupts are disabled ulCriticalNesting can be accessed
226
        directly.  Increment ulCriticalNesting to keep a count of how many times
227
        portENTER_CRITICAL() has been called. */
228
        ulCriticalNesting++;
229
}
230
 
231
void vPortExitCritical( void )
232
{
233
        if( ulCriticalNesting > portNO_CRITICAL_NESTING )
234
        {
235
                /* Decrement the nesting count as we are leaving a critical section. */
236
                ulCriticalNesting--;
237
 
238
                /* If the nesting level has reached zero then interrupts should be
239
                re-enabled. */
240
                if( ulCriticalNesting == portNO_CRITICAL_NESTING )
241
                {
242
                        /* Enable interrupts as per portEXIT_CRITICAL().                                        */
243
                        asm volatile (
244
                                "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                             */
245
                                "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                    */
246
                                "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                             */
247
                                "MSR    CPSR, R0                \n\t"   /* Write back modified value.   */
248
                                "LDMIA  SP!, {R0}" );                   /* Pop R0.                                              */
249
                }
250
        }
251
}
252
 

powered by: WebSVN 2.1.0

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