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