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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Source/] [portable/] [GCC/] [HCS12/] [portmacro.h] - Blame information for rev 572

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
#ifndef PORTMACRO_H
56
#define PORTMACRO_H
57
 
58
#ifdef __cplusplus
59
extern "C" {
60
#endif
61
 
62
/*-----------------------------------------------------------
63
 * Port specific definitions.
64
 *
65
 * The settings in this file configure FreeRTOS correctly for the
66
 * given hardware and compiler.
67
 *
68
 * These settings should not be altered.
69
 *-----------------------------------------------------------
70
 */
71
 
72
/* Type definitions. */
73
#define portCHAR                char
74
#define portFLOAT               float
75
#define portDOUBLE              double
76
#define portLONG                long
77
#define portSHORT               short
78
#define portSTACK_TYPE  unsigned portCHAR
79
#define portBASE_TYPE   char
80
 
81
#if( configUSE_16_BIT_TICKS == 1 )
82
        typedef unsigned portSHORT portTickType;
83
        #define portMAX_DELAY ( portTickType ) 0xffff
84
#else
85
        typedef unsigned portLONG portTickType;
86
        #define portMAX_DELAY ( portTickType ) 0xffffffff
87
#endif
88
/*-----------------------------------------------------------*/
89
 
90
/* Hardware specifics. */
91
#define portBYTE_ALIGNMENT                      1
92
#define portSTACK_GROWTH                        ( -1 )
93
#define portTICK_RATE_MS                        ( ( portTickType ) 1000 / configTICK_RATE_HZ )
94
#define portYIELD()                                     __asm( "swi" );
95
/*-----------------------------------------------------------*/
96
 
97
/* Critical section handling. */
98
#define portENABLE_INTERRUPTS()                         __asm( "cli" )  
99
#define portDISABLE_INTERRUPTS()                        __asm( "sei" )
100
 
101
/*
102
 * Disable interrupts before incrementing the count of critical section nesting.
103
 * The nesting count is maintained so we know when interrupts should be
104
 * re-enabled.  Once interrupts are disabled the nesting count can be accessed
105
 * directly.  Each task maintains its own nesting count.
106
 */
107
#define portENTER_CRITICAL()                                                                    \
108
{                                                                                                                               \
109
        extern volatile unsigned portBASE_TYPE uxCriticalNesting;       \
110
                                                                                                                                \
111
        portDISABLE_INTERRUPTS();                                                                       \
112
        uxCriticalNesting++;                                                                            \
113
}
114
 
115
/*
116
 * Interrupts are disabled so we can access the nesting count directly.  If the
117
 * nesting is found to be 0 (no nesting) then we are leaving the critical
118
 * section and interrupts can be re-enabled.
119
 */
120
#define  portEXIT_CRITICAL()                                                                    \
121
{                                                                                                                               \
122
        extern volatile unsigned portBASE_TYPE uxCriticalNesting;       \
123
                                                                                                                                \
124
        uxCriticalNesting--;                                                                            \
125
        if( uxCriticalNesting == 0 )                                                             \
126
        {                                                                                                                       \
127
                portENABLE_INTERRUPTS();                                                                \
128
        }                                                                                                                       \
129
}
130
/*-----------------------------------------------------------*/
131
 
132
/* Task utilities. */
133
 
134
/*
135
 * These macros are very simple as the processor automatically saves and
136
 * restores its registers as interrupts are entered and exited.  In
137
 * addition to the (automatically stacked) registers we also stack the
138
 * critical nesting count.  Each task maintains its own critical nesting
139
 * count as it is legitimate for a task to yield from within a critical
140
 * section.  If the banked memory model is being used then the PPAGE
141
 * register is also stored as part of the tasks context.
142
 */
143
 
144
#ifdef BANKED_MODEL
145
        /*
146
         * Load the stack pointer for the task, then pull the critical nesting
147
         * count and PPAGE register from the stack.  The remains of the
148
         * context are restored by the RTI instruction.
149
         */
150
        #define portRESTORE_CONTEXT()                                                   \
151
        {                                                                               \
152
                __asm( "                                                                \n\
153
                .globl pxCurrentTCB                     ; void *                        \n\
154
                .globl uxCriticalNesting                ; char                          \n\
155
                                                                                        \n\
156
                ldx  pxCurrentTCB                                                       \n\
157
                lds  0,x                                ; Stack                         \n\
158
                                                                                        \n\
159
                movb 1,sp+,uxCriticalNesting                                            \n\
160
                movb 1,sp+,0x30                         ; PPAGE                         \n\
161
                " );                                                                    \
162
        }
163
 
164
        /*
165
         * By the time this macro is called the processor has already stacked the
166
         * registers.  Simply stack the nesting count and PPAGE value, then save
167
         * the task stack pointer.
168
         */
169
        #define portSAVE_CONTEXT()                                                      \
170
        {                                                                               \
171
                __asm( "                                                                \n\
172
                .globl pxCurrentTCB                     ; void *                        \n\
173
                .globl uxCriticalNesting                ; char                          \n\
174
                                                                                        \n\
175
                movb 0x30, 1,-sp                        ; PPAGE                         \n\
176
                movb uxCriticalNesting, 1,-sp                                           \n\
177
                                                                                        \n\
178
                ldx  pxCurrentTCB                                                       \n\
179
                sts  0,x                                ; Stack                         \n\
180
                " );                                                                    \
181
        }
182
#else
183
 
184
        /*
185
         * These macros are as per the BANKED versions above, but without saving
186
         * and restoring the PPAGE register.
187
         */
188
 
189
        #define portRESTORE_CONTEXT()                                                   \
190
        {                                                                               \
191
                __asm( "                                                                \n\
192
                .globl pxCurrentTCB                     ; void *                        \n\
193
                .globl uxCriticalNesting                ; char                          \n\
194
                                                                                        \n\
195
                ldx  pxCurrentTCB                                                       \n\
196
                lds  0,x                                ; Stack                         \n\
197
                                                                                        \n\
198
                movb 1,sp+,uxCriticalNesting                                            \n\
199
                " );                                                                    \
200
        }
201
 
202
        #define portSAVE_CONTEXT()                                                      \
203
        {                                                                               \
204
                __asm( "                                                                \n\
205
                .globl pxCurrentTCB                     ; void *                        \n\
206
                .globl uxCriticalNesting                ; char                          \n\
207
                                                                                        \n\
208
                movb uxCriticalNesting, 1,-sp                                           \n\
209
                                                                                        \n\
210
                ldx  pxCurrentTCB                                                       \n\
211
                sts  0,x                                ; Stack                         \n\
212
                " );                                                                    \
213
        }
214
#endif
215
 
216
/*
217
 * Utility macros to save/restore correct software registers for GCC. This is
218
 * useful when GCC does not generate appropriate ISR head/tail code.
219
 */
220
#define portISR_HEAD()                                                                  \
221
{                                                                                       \
222
                __asm("                                                                 \n\
223
                movw _.frame, 2,-sp                                                     \n\
224
                movw _.tmp, 2,-sp                                                       \n\
225
                movw _.z, 2,-sp                                                         \n\
226
                movw _.xy, 2,-sp                                                        \n\
227
                ;movw _.d2, 2,-sp                                                       \n\
228
                ;movw _.d1, 2,-sp                                                       \n\
229
                ");                                                                     \
230
}
231
 
232
#define portISR_TAIL()                                                                  \
233
{                                                                                       \
234
                __asm("                                                                 \n\
235
                movw 2,sp+, _.xy                                                        \n\
236
                movw 2,sp+, _.z                                                         \n\
237
                movw 2,sp+, _.tmp                                                       \n\
238
                movw 2,sp+, _.frame                                                     \n\
239
                ;movw 2,sp+, _.d1                                                       \n\
240
                ;movw 2,sp+, _.d2                                                       \n\
241
                rti                                                                     \n\
242
                ");                                                                     \
243
}
244
 
245
/*
246
 * Utility macro to call macros above in correct order in order to perform a
247
 * task switch from within a standard ISR.  This macro can only be used if
248
 * the ISR does not use any local (stack) variables.  If the ISR uses stack
249
 * variables portYIELD() should be used in it's place.
250
 */
251
 
252
#define portTASK_SWITCH_FROM_ISR()                                                              \
253
        portSAVE_CONTEXT();                                                                                     \
254
        vTaskSwitchContext();                                                                           \
255
        portRESTORE_CONTEXT();
256
 
257
 
258
/* Task function macros as described on the FreeRTOS.org WEB site. */
259
#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )
260
#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )
261
 
262
#ifdef __cplusplus
263
}
264
#endif
265
 
266
#endif /* PORTMACRO_H */
267
 

powered by: WebSVN 2.1.0

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