]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/RX600/port.c
c91b32811d270c84ad88b985457a7a14d978c791
[freertos] / FreeRTOS / Source / portable / GCC / RX600 / 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 #define portINITIAL_FPSW    ( ( portSTACK_TYPE ) 0x00000100 )\r
87 \r
88 /* These macros allow a critical section to be added around the call to\r
89 vTaskIncrementTick(), which is only ever called from interrupts at the kernel \r
90 priority - ie a known priority.  Therefore these local macros are a slight \r
91 optimisation compared to calling the global SET/CLEAR_INTERRUPT_MASK macros, \r
92 which would require the old IPL to be read first and stored in a local variable. */\r
93 #define portDISABLE_INTERRUPTS_FROM_KERNEL_ISR()        __asm volatile ( "MVTIPL        %0" ::"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY) )\r
94 #define portENABLE_INTERRUPTS_FROM_KERNEL_ISR()         __asm volatile ( "MVTIPL        %0" ::"i"(configKERNEL_INTERRUPT_PRIORITY) )\r
95 \r
96 /*-----------------------------------------------------------*/\r
97 \r
98 /*\r
99  * Function to start the first task executing - written in asm code as direct\r
100  * access to registers is required. \r
101  */\r
102 static void prvStartFirstTask( void ) __attribute__((naked));\r
103 \r
104 /*\r
105  * Software interrupt handler.  Performs the actual context switch (saving and\r
106  * restoring of registers).  Written in asm code as direct register access is\r
107  * required.\r
108  */\r
109 void vSoftwareInterruptISR( void ) __attribute__((naked));\r
110 \r
111 /*\r
112  * The tick interrupt handler.\r
113  */\r
114 void vTickISR( void ) __attribute__((interrupt));\r
115 \r
116 /*-----------------------------------------------------------*/\r
117 \r
118 extern void *pxCurrentTCB;\r
119 \r
120 /*-----------------------------------------------------------*/\r
121 \r
122 /* \r
123  * See header file for description. \r
124  */\r
125 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
126 {\r
127         /* R0 is not included as it is the stack pointer. */\r
128         \r
129         *pxTopOfStack = 0x00;\r
130         pxTopOfStack--;\r
131         *pxTopOfStack = portINITIAL_PSW;\r
132         pxTopOfStack--;\r
133         *pxTopOfStack = ( portSTACK_TYPE ) pxCode;\r
134         \r
135         /* When debugging it can be useful if every register is set to a known\r
136         value.  Otherwise code space can be saved by just setting the registers\r
137         that need to be set. */\r
138         #ifdef USE_FULL_REGISTER_INITIALISATION\r
139         {\r
140                 pxTopOfStack--;\r
141                 *pxTopOfStack = 0xffffffff;     /* r15. */\r
142                 pxTopOfStack--;\r
143                 *pxTopOfStack = 0xeeeeeeee;\r
144                 pxTopOfStack--;\r
145                 *pxTopOfStack = 0xdddddddd;\r
146                 pxTopOfStack--;\r
147                 *pxTopOfStack = 0xcccccccc;\r
148                 pxTopOfStack--;\r
149                 *pxTopOfStack = 0xbbbbbbbb;\r
150                 pxTopOfStack--;\r
151                 *pxTopOfStack = 0xaaaaaaaa;\r
152                 pxTopOfStack--;\r
153                 *pxTopOfStack = 0x99999999;\r
154                 pxTopOfStack--;\r
155                 *pxTopOfStack = 0x88888888;\r
156                 pxTopOfStack--;\r
157                 *pxTopOfStack = 0x77777777;\r
158                 pxTopOfStack--;\r
159                 *pxTopOfStack = 0x66666666;\r
160                 pxTopOfStack--;\r
161                 *pxTopOfStack = 0x55555555;\r
162                 pxTopOfStack--;\r
163                 *pxTopOfStack = 0x44444444;\r
164                 pxTopOfStack--;\r
165                 *pxTopOfStack = 0x33333333;\r
166                 pxTopOfStack--;\r
167                 *pxTopOfStack = 0x22222222;\r
168                 pxTopOfStack--;\r
169         }\r
170         #else\r
171         {\r
172                 pxTopOfStack -= 15;\r
173         }\r
174         #endif\r
175         \r
176         *pxTopOfStack = ( portSTACK_TYPE ) pvParameters; /* R1 */\r
177         pxTopOfStack--;                         \r
178         *pxTopOfStack = portINITIAL_FPSW;\r
179         pxTopOfStack--;\r
180         *pxTopOfStack = 0x12345678; /* Accumulator. */\r
181         pxTopOfStack--;\r
182         *pxTopOfStack = 0x87654321; /* Accumulator. */\r
183 \r
184         return pxTopOfStack;\r
185 }\r
186 /*-----------------------------------------------------------*/\r
187 \r
188 portBASE_TYPE xPortStartScheduler( void )\r
189 {\r
190 extern void vApplicationSetupTimerInterrupt( void );\r
191 \r
192         /* Use pxCurrentTCB just so it does not get optimised away. */\r
193         if( pxCurrentTCB != NULL )\r
194         {\r
195                 /* Call an application function to set up the timer that will generate the\r
196                 tick interrupt.  This way the application can decide which peripheral to \r
197                 use.  A demo application is provided to show a suitable example. */\r
198                 vApplicationSetupTimerInterrupt();\r
199 \r
200                 /* Enable the software interrupt. */            \r
201                 _IEN( _ICU_SWINT ) = 1;\r
202                 \r
203                 /* Ensure the software interrupt is clear. */\r
204                 _IR( _ICU_SWINT ) = 0;\r
205                 \r
206                 /* Ensure the software interrupt is set to the kernel priority. */\r
207                 _IPR( _ICU_SWINT ) = configKERNEL_INTERRUPT_PRIORITY;\r
208 \r
209                 /* Start the first task. */\r
210                 prvStartFirstTask();\r
211         }\r
212 \r
213         /* Should not get here. */\r
214         return pdFAIL;\r
215 }\r
216 /*-----------------------------------------------------------*/\r
217 \r
218 void vPortEndScheduler( void )\r
219 {\r
220         /* Not implemented as there is nothing to return to. */\r
221 }\r
222 /*-----------------------------------------------------------*/\r
223 \r
224 static void prvStartFirstTask( void )\r
225 {\r
226         __asm volatile\r
227         (       \r
228                 /* When starting the scheduler there is nothing that needs moving to the\r
229                 interrupt stack because the function is not called from an interrupt.\r
230                 Just ensure the current stack is the user stack. */\r
231                 "SETPSW         U                                               \n" \\r
232 \r
233                 /* Obtain the location of the stack associated with which ever task \r
234                 pxCurrentTCB is currently pointing to. */\r
235                 "MOV.L          #_pxCurrentTCB, R15             \n" \\r
236                 "MOV.L          [R15], R15                              \n" \\r
237                 "MOV.L          [R15], R0                               \n" \\r
238 \r
239                 /* Restore the registers from the stack of the task pointed to by \r
240                 pxCurrentTCB. */\r
241             "POP                R15                                             \n" \\r
242                 \r
243                 /* Accumulator low 32 bits. */\r
244             "MVTACLO    R15                                     \n" \\r
245             "POP                R15                                             \n" \\r
246                 \r
247                 /* Accumulator high 32 bits. */\r
248             "MVTACHI    R15                                     \n" \\r
249             "POP                R15                                             \n" \\r
250                 \r
251                 /* Floating point status word. */\r
252             "MVTC               R15, FPSW                               \n" \\r
253                 \r
254                 /* R1 to R15 - R0 is not included as it is the SP. */\r
255             "POPM               R1-R15                                  \n" \\r
256                 \r
257                 /* This pops the remaining registers. */\r
258             "RTE                                                                \n" \\r
259             "NOP                                                                \n" \\r
260             "NOP                                                                \n"\r
261         );\r
262 }\r
263 /*-----------------------------------------------------------*/\r
264 \r
265 void vSoftwareInterruptISR( void )\r
266 {\r
267         __asm volatile\r
268         (\r
269                 /* Re-enable interrupts. */\r
270                 "SETPSW         I                                                       \n" \\r
271 \r
272                 /* Move the data that was automatically pushed onto the interrupt stack when\r
273                 the interrupt occurred from the interrupt stack to the user stack.  \r
274         \r
275                 R15 is saved before it is clobbered. */\r
276                 "PUSH.L         R15                                                     \n" \\r
277         \r
278                 /* Read the user stack pointer. */\r
279                 "MVFC           USP, R15                                        \n" \\r
280         \r
281                 /* Move the address down to the data being moved. */\r
282                 "SUB            #12, R15                                        \n" \\r
283                 "MVTC           R15, USP                                        \n" \\r
284         \r
285                 /* Copy the data across, R15, then PC, then PSW. */\r
286                 "MOV.L          [ R0 ], [ R15 ]                         \n" \\r
287                 "MOV.L          4[ R0 ], 4[ R15 ]                       \n" \\r
288                 "MOV.L          8[ R0 ], 8[ R15 ]                       \n" \\r
289 \r
290                 /* Move the interrupt stack pointer to its new correct position. */\r
291                 "ADD            #12, R0                                         \n" \\r
292         \r
293                 /* All the rest of the registers are saved directly to the user stack. */\r
294                 "SETPSW         U                                                       \n" \\r
295 \r
296                 /* Save the rest of the general registers (R15 has been saved already). */\r
297                 "PUSHM          R1-R14                                          \n" \\r
298         \r
299                 /* Save the FPSW and accumulator. */\r
300                 "MVFC           FPSW, R15                                       \n" \\r
301                 "PUSH.L         R15                                                     \n" \\r
302                 "MVFACHI        R15                                                     \n" \\r
303                 "PUSH.L         R15                                                     \n" \\r
304                 \r
305                 /* Middle word. */\r
306                 "MVFACMI        R15                                                     \n" \\r
307                 \r
308                 /* Shifted left as it is restored to the low order word. */\r
309                 "SHLL           #16, R15                                        \n" \\r
310                 "PUSH.L         R15                                                     \n" \\r
311 \r
312                 /* Save the stack pointer to the TCB. */\r
313                 "MOV.L          #_pxCurrentTCB, R15                     \n" \\r
314                 "MOV.L          [ R15 ], R15                            \n" \\r
315                 "MOV.L          R0, [ R15 ]                                     \n" \\r
316                         \r
317                 /* Ensure the interrupt mask is set to the syscall priority while the kernel\r
318                 structures are being accessed. */\r
319                 "MVTIPL         %0                                                      \n" \\r
320 \r
321                 /* Select the next task to run. */\r
322                 "BSR.A          _vTaskSwitchContext                     \n" \\r
323 \r
324                 /* Reset the interrupt mask as no more data structure access is required. */\r
325                 "MVTIPL         %1                                                      \n" \\r
326 \r
327                 /* Load the stack pointer of the task that is now selected as the Running\r
328                 state task from its TCB. */\r
329                 "MOV.L          #_pxCurrentTCB,R15                      \n" \\r
330                 "MOV.L          [ R15 ], R15                            \n" \\r
331                 "MOV.L          [ R15 ], R0                                     \n" \\r
332 \r
333                 /* Restore the context of the new task.  The PSW (Program Status Word) and\r
334                 PC will be popped by the RTE instruction. */\r
335                 "POP            R15                                                     \n" \\r
336                 "MVTACLO        R15                                                     \n" \\r
337                 "POP            R15                                                     \n" \\r
338                 "MVTACHI        R15                                                     \n" \\r
339                 "POP            R15                                                     \n" \\r
340                 "MVTC           R15, FPSW                                       \n" \\r
341                 "POPM           R1-R15                                          \n" \\r
342                 "RTE                                                                    \n" \\r
343                 "NOP                                                                    \n" \\r
344                 "NOP                                                                      "\r
345                 :: "i"(configMAX_SYSCALL_INTERRUPT_PRIORITY), "i"(configKERNEL_INTERRUPT_PRIORITY)\r
346         );\r
347 }\r
348 /*-----------------------------------------------------------*/\r
349 \r
350 void vTickISR( void )\r
351 {\r
352         /* Re-enabled interrupts. */\r
353         __asm volatile( "SETPSW I" );\r
354         \r
355         /* Increment the tick, and perform any processing the new tick value\r
356         necessitates.  Ensure IPL is at the max syscall value first. */\r
357         portDISABLE_INTERRUPTS_FROM_KERNEL_ISR();\r
358         {\r
359                 vTaskIncrementTick(); \r
360         }\r
361         portENABLE_INTERRUPTS_FROM_KERNEL_ISR();\r
362         \r
363         /* Only select a new task if the preemptive scheduler is being used. */\r
364         #if( configUSE_PREEMPTION == 1 )\r
365                 taskYIELD();\r
366         #endif\r
367 }\r
368 /*-----------------------------------------------------------*/\r
369 \r
370 unsigned long ulPortGetIPL( void )\r
371 {\r
372         __asm volatile\r
373         ( \r
374                 "MVFC   PSW, R1                 \n"     \\r
375                 "SHLR   #24, R1                 \n"     \\r
376                 "RTS                                      "\r
377         );\r
378         \r
379         /* This will never get executed, but keeps the compiler from complaining. */\r
380         return 0;\r
381 }\r
382 /*-----------------------------------------------------------*/\r
383 \r
384 void vPortSetIPL( unsigned long ulNewIPL )\r
385 {\r
386         __asm volatile\r
387         ( \r
388                 "PUSH   R5                              \n" \\r
389                 "MVFC   PSW, R5                 \n"     \\r
390                 "SHLL   #24, R1                 \n" \\r
391                 "AND    #-0F000001H, R5 \n" \\r
392                 "OR             R1, R5                  \n" \\r
393                 "MVTC   R5, PSW                 \n" \\r
394                 "POP    R5                              \n" \\r
395                 "RTS                                      "\r
396          );\r
397 }\r