]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/Renesas/RX200/port.c
Prepare for V7.4.0 release.
[freertos] / FreeRTOS / Source / portable / Renesas / RX200 / port.c
1 /*\r
2     FreeRTOS V7.4.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT\r
5     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
10      *    Complete, revised, and edited pdf reference manuals are also       *\r
11      *    available.                                                         *\r
12      *                                                                       *\r
13      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
14      *    ensuring you get running as quickly as possible and with an        *\r
15      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
16      *    the FreeRTOS project to continue with its mission of providing     *\r
17      *    professional grade, cross platform, de facto standard solutions    *\r
18      *    for microcontrollers - completely free of charge!                  *\r
19      *                                                                       *\r
20      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
21      *                                                                       *\r
22      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
23      *                                                                       *\r
24     ***************************************************************************\r
25 \r
26 \r
27     This file is part of the FreeRTOS distribution.\r
28 \r
29     FreeRTOS is free software; you can redistribute it and/or modify it under\r
30     the terms of the GNU General Public License (version 2) as published by the\r
31     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
32 \r
33     >>>>>>NOTE<<<<<< The modification to the GPL is included to allow you to\r
34     distribute a combined work that includes FreeRTOS without being obliged to\r
35     provide the source code for proprietary components outside of the FreeRTOS\r
36     kernel.\r
37 \r
38     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
39     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
40     FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more\r
41     details. You should have received a copy of the GNU General Public License\r
42     and the FreeRTOS license exception along with FreeRTOS; if not itcan be\r
43     viewed here: http://www.freertos.org/a00114.html and also obtained by\r
44     writing to Real Time Engineers Ltd., contact details for whom are available\r
45     on the FreeRTOS WEB site.\r
46 \r
47     1 tab == 4 spaces!\r
48 \r
49     ***************************************************************************\r
50      *                                                                       *\r
51      *    Having a problem?  Start by reading the FAQ "My application does   *\r
52      *    not run, what could be wrong?"                                     *\r
53      *                                                                       *\r
54      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
55      *                                                                       *\r
56     ***************************************************************************\r
57 \r
58 \r
59     http://www.FreeRTOS.org - Documentation, books, training, latest versions, \r
60     license and Real Time Engineers Ltd. contact details.\r
61 \r
62     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
63     including FreeRTOS+Trace - an indispensable productivity tool, and our new\r
64     fully thread aware and reentrant UDP/IP stack.\r
65 \r
66     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High \r
67     Integrity Systems, who sell the code with commercial support, \r
68     indemnification and middleware, under the OpenRTOS brand.\r
69     \r
70     http://www.SafeRTOS.com - High Integrity Systems also provide a safety \r
71     engineered and independently SIL3 certified version for use in safety and \r
72     mission critical applications that require provable dependability.\r
73 */\r
74 \r
75 /*-----------------------------------------------------------\r
76  * Implementation of functions defined in portable.h for the SH2A port.\r
77  *----------------------------------------------------------*/\r
78 \r
79 /* Scheduler includes. */\r
80 #include "FreeRTOS.h"\r
81 #include "task.h"\r
82 \r
83 /* Library includes. */\r
84 #include "string.h"\r
85 \r
86 /* Hardware specifics. */\r
87 #include "iodefine.h"\r
88 \r
89 /*-----------------------------------------------------------*/\r
90 \r
91 /* Tasks should start with interrupts enabled and in Supervisor mode, therefore \r
92 PSW is set with U and I set, and PM and IPL clear. */\r
93 #define portINITIAL_PSW     ( ( portSTACK_TYPE ) 0x00030000 )\r
94 \r
95 /*-----------------------------------------------------------*/\r
96 \r
97 /* The following lines are to ensure vSoftwareInterruptEntry can be referenced,\r
98  and therefore installed in the vector table, when the FreeRTOS code is built\r
99 as a library. */\r
100 extern portBASE_TYPE vSoftwareInterruptEntry;\r
101 const portBASE_TYPE * p_vSoftwareInterruptEntry = &vSoftwareInterruptEntry;\r
102 \r
103 /*-----------------------------------------------------------*/\r
104 \r
105 /*\r
106  * Function to start the first task executing - written in asm code as direct\r
107  * access to registers is required. \r
108  */\r
109 static void prvStartFirstTask( void );\r
110 \r
111 /*\r
112  * Software interrupt handler.  Performs the actual context switch (saving and\r
113  * restoring of registers).  Written in asm code as direct register access is\r
114  * required.\r
115  */\r
116 static void prvYieldHandler( void );\r
117 \r
118 /*\r
119  * The entry point for the software interrupt handler.  This is the function\r
120  * that calls the inline asm function prvYieldHandler().  It is installed in \r
121  * the vector table, but the code that installs it is in prvYieldHandler rather\r
122  * than using a #pragma.\r
123  */\r
124 void vSoftwareInterruptISR( void );\r
125 \r
126 /*-----------------------------------------------------------*/\r
127 \r
128 /* This is accessed by the inline assembler functions so is file scope for\r
129 convenience. */\r
130 extern void *pxCurrentTCB;\r
131 extern void vTaskSwitchContext( void );\r
132 \r
133 /*-----------------------------------------------------------*/\r
134 \r
135 /* \r
136  * See header file for description. \r
137  */\r
138 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
139 {\r
140         /* R0 is not included as it is the stack pointer. */\r
141         \r
142         *pxTopOfStack = 0x00;\r
143         pxTopOfStack--;\r
144     *pxTopOfStack = 0x00;\r
145         pxTopOfStack--;\r
146         *pxTopOfStack = portINITIAL_PSW;\r
147         pxTopOfStack--;\r
148         *pxTopOfStack = ( portSTACK_TYPE ) pxCode;\r
149         \r
150         /* When debugging it can be useful if every register is set to a known\r
151         value.  Otherwise code space can be saved by just setting the registers\r
152         that need to be set. */\r
153         #ifdef USE_FULL_REGISTER_INITIALISATION\r
154         {\r
155                 pxTopOfStack--;\r
156                 *pxTopOfStack = 0xffffffff;     /* r15. */\r
157                 pxTopOfStack--;\r
158                 *pxTopOfStack = 0xeeeeeeee;\r
159                 pxTopOfStack--;\r
160                 *pxTopOfStack = 0xdddddddd;\r
161                 pxTopOfStack--;\r
162                 *pxTopOfStack = 0xcccccccc;\r
163                 pxTopOfStack--;\r
164                 *pxTopOfStack = 0xbbbbbbbb;\r
165                 pxTopOfStack--;\r
166                 *pxTopOfStack = 0xaaaaaaaa;\r
167                 pxTopOfStack--;\r
168                 *pxTopOfStack = 0x99999999;\r
169                 pxTopOfStack--;\r
170                 *pxTopOfStack = 0x88888888;\r
171                 pxTopOfStack--;\r
172                 *pxTopOfStack = 0x77777777;\r
173                 pxTopOfStack--;\r
174                 *pxTopOfStack = 0x66666666;\r
175                 pxTopOfStack--;\r
176                 *pxTopOfStack = 0x55555555;\r
177                 pxTopOfStack--;\r
178                 *pxTopOfStack = 0x44444444;\r
179                 pxTopOfStack--;\r
180                 *pxTopOfStack = 0x33333333;\r
181                 pxTopOfStack--;\r
182                 *pxTopOfStack = 0x22222222;\r
183                 pxTopOfStack--;\r
184         }\r
185         #else\r
186         {\r
187                 pxTopOfStack -= 15;\r
188         }\r
189         #endif\r
190         \r
191         *pxTopOfStack = ( portSTACK_TYPE ) pvParameters; /* R1 */\r
192         pxTopOfStack--;                         \r
193         *pxTopOfStack = 0x12345678; /* Accumulator. */\r
194         pxTopOfStack--;\r
195         *pxTopOfStack = 0x87654321; /* Accumulator. */\r
196 \r
197         return pxTopOfStack;\r
198 }\r
199 /*-----------------------------------------------------------*/\r
200 \r
201 portBASE_TYPE xPortStartScheduler( void )\r
202 {\r
203 extern void vApplicationSetupTimerInterrupt( void );\r
204 \r
205         /* Use pxCurrentTCB just so it does not get optimised away. */\r
206         if( pxCurrentTCB != NULL )\r
207         {\r
208                 /* Call an application function to set up the timer that will generate the\r
209                 tick interrupt.  This way the application can decide which peripheral to \r
210                 use.  A demo application is provided to show a suitable example. */\r
211                 vApplicationSetupTimerInterrupt();\r
212 \r
213                 /* Enable the software interrupt. */            \r
214                 _IEN( _ICU_SWINT ) = 1;\r
215                 \r
216                 /* Ensure the software interrupt is clear. */\r
217                 _IR( _ICU_SWINT ) = 0;\r
218                 \r
219                 /* Ensure the software interrupt is set to the kernel priority. */\r
220                 _IPR( _ICU_SWINT ) = configKERNEL_INTERRUPT_PRIORITY;\r
221         \r
222                 /* Start the first task. */\r
223                 prvStartFirstTask();\r
224         }\r
225 \r
226         /* Just to make sure the function is not optimised away. */\r
227         ( void ) vSoftwareInterruptISR();\r
228 \r
229         /* Should not get here. */\r
230         return pdFAIL;\r
231 }\r
232 /*-----------------------------------------------------------*/\r
233 \r
234 #pragma inline_asm prvStartFirstTask\r
235 static void prvStartFirstTask( void )\r
236 {\r
237         /* When starting the scheduler there is nothing that needs moving to the\r
238         interrupt stack because the function is not called from an interrupt.\r
239         Just ensure the current stack is the user stack. */\r
240         SETPSW  U\r
241 \r
242         /* Obtain the location of the stack associated with which ever task \r
243         pxCurrentTCB is currently pointing to. */\r
244         MOV.L   #_pxCurrentTCB, R15\r
245         MOV.L   [R15], R15\r
246         MOV.L   [R15], R0\r
247 \r
248         /* Restore the registers from the stack of the task pointed to by \r
249         pxCurrentTCB. */\r
250     POP         R15\r
251     MVTACLO     R15             /* Accumulator low 32 bits. */\r
252     POP         R15\r
253     MVTACHI     R15             /* Accumulator high 32 bits. */\r
254     POPM        R1-R15          /* R1 to R15 - R0 is not included as it is the SP. */\r
255     RTE                                 /* This pops the remaining registers. */\r
256     NOP\r
257     NOP\r
258 }\r
259 /*-----------------------------------------------------------*/\r
260 \r
261 #pragma interrupt ( vTickISR( vect = _VECT( configTICK_VECTOR ), enable ) )\r
262 void vTickISR( void )\r
263 {\r
264         /* Increment the tick, and perform any processing the new tick value\r
265         necessitates. */\r
266         set_ipl( configMAX_SYSCALL_INTERRUPT_PRIORITY );\r
267         {\r
268                 vTaskIncrementTick();\r
269         }\r
270         set_ipl( configKERNEL_INTERRUPT_PRIORITY );\r
271         \r
272         /* Only select a new task if the preemptive scheduler is being used. */\r
273         #if( configUSE_PREEMPTION == 1 )\r
274                 taskYIELD();\r
275         #endif\r
276 }\r
277 /*-----------------------------------------------------------*/\r
278 \r
279 void vSoftwareInterruptISR( void )\r
280 {\r
281         prvYieldHandler();\r
282 }\r
283 /*-----------------------------------------------------------*/\r
284 \r
285 #pragma inline_asm prvYieldHandler\r
286 static void prvYieldHandler( void )\r
287 {\r
288         /* Re-enable interrupts. */\r
289         SETPSW  I\r
290 \r
291         /* Move the data that was automatically pushed onto the interrupt stack when\r
292         the interrupt occurred from the interrupt stack to the user stack.  \r
293         \r
294         R15 is saved before it is clobbered. */\r
295         PUSH.L  R15\r
296         \r
297         /* Read the user stack pointer. */\r
298         MVFC    USP, R15\r
299         \r
300         /* Move the address down to the data being moved. */\r
301         SUB             #12, R15\r
302         MVTC    R15, USP\r
303         \r
304         /* Copy the data across. */\r
305         MOV.L   [ R0 ], [ R15 ] ; R15\r
306         MOV.L   4[ R0 ], 4[ R15 ]  ; PC\r
307         MOV.L   8[ R0 ], 8[ R15 ]  ; PSW\r
308 \r
309         /* Move the interrupt stack pointer to its new correct position. */\r
310         ADD     #12, R0\r
311         \r
312         /* All the rest of the registers are saved directly to the user stack. */\r
313         SETPSW  U\r
314 \r
315         /* Save the rest of the general registers (R15 has been saved already). */\r
316         PUSHM   R1-R14\r
317         \r
318         /* Save the accumulator. */\r
319         MVFACHI R15\r
320         PUSH.L  R15\r
321         MVFACMI R15     ; Middle order word.\r
322         SHLL    #16, R15 ; Shifted left as it is restored to the low order word.\r
323         PUSH.L  R15\r
324 \r
325         /* Save the stack pointer to the TCB. */\r
326         MOV.L   #_pxCurrentTCB, R15\r
327         MOV.L   [ R15 ], R15\r
328         MOV.L   R0, [ R15 ]\r
329                         \r
330         /* Ensure the interrupt mask is set to the syscall priority while the kernel\r
331         structures are being accessed. */\r
332         MVTIPL  #configMAX_SYSCALL_INTERRUPT_PRIORITY\r
333 \r
334         /* Select the next task to run. */\r
335         BSR.A   _vTaskSwitchContext\r
336 \r
337         /* Reset the interrupt mask as no more data structure access is required. */\r
338         MVTIPL  #configKERNEL_INTERRUPT_PRIORITY\r
339 \r
340         /* Load the stack pointer of the task that is now selected as the Running\r
341         state task from its TCB. */\r
342         MOV.L   #_pxCurrentTCB,R15\r
343         MOV.L   [ R15 ], R15\r
344         MOV.L   [ R15 ], R0\r
345 \r
346         /* Restore the context of the new task.  The PSW (Program Status Word) and\r
347         PC will be popped by the RTE instruction. */\r
348         POP             R15\r
349         MVTACLO R15\r
350         POP             R15\r
351         MVTACHI R15\r
352         POPM    R1-R15\r
353         RTE\r
354         NOP\r
355         NOP\r
356 }\r
357 /*-----------------------------------------------------------*/\r
358 \r
359 void vPortEndScheduler( void )\r
360 {\r
361         /* Not implemented as there is nothing to return to. */\r
362         \r
363         /* The following line is just to prevent the symbol getting optimised away. */\r
364         ( void ) vTaskSwitchContext();\r
365 }\r
366 /*-----------------------------------------------------------*/\r
367 \r
368 \r
369 \r