2 FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
7 This file is part of the FreeRTOS distribution.
9 FreeRTOS is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License (version 2) as published by the
11 Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.
13 ***************************************************************************
14 >>! NOTE: The modification to the GPL is included to allow you to !<<
15 >>! distribute a combined work that includes FreeRTOS without being !<<
16 >>! obliged to provide the source code for proprietary components !<<
17 >>! outside of the FreeRTOS kernel. !<<
18 ***************************************************************************
20 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
21 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
22 FOR A PARTICULAR PURPOSE. Full license text is available on the following
23 link: http://www.freertos.org/a00114.html
25 ***************************************************************************
27 * FreeRTOS provides completely free yet professionally developed, *
28 * robust, strictly quality controlled, supported, and cross *
29 * platform software that is more than just the market leader, it *
30 * is the industry's de facto standard. *
32 * Help yourself get started quickly while simultaneously helping *
33 * to support the FreeRTOS project by purchasing a FreeRTOS *
34 * tutorial book, reference manual, or both: *
35 * http://www.FreeRTOS.org/Documentation *
37 ***************************************************************************
39 http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading
40 the FAQ page "My application does not run, what could be wrong?". Have you
41 defined configASSERT()?
43 http://www.FreeRTOS.org/support - In return for receiving this top quality
44 embedded software for free we request you assist our global community by
45 participating in the support forum.
47 http://www.FreeRTOS.org/training - Investing in training allows your team to
48 be as productive as possible as early as possible. Now you can receive
49 FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers
50 Ltd, and the world's leading authority on the world's leading RTOS.
52 http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
53 including FreeRTOS+Trace - an indispensable productivity tool, a DOS
54 compatible FAT file system, and our tiny thread aware UDP/IP stack.
56 http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.
57 Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.
59 http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High
60 Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS
61 licenses offer ticketed support, indemnification and commercial middleware.
63 http://www.SafeRTOS.com - High Integrity Systems also provide a safety
64 engineered and independently SIL3 certified version for use in safety and
65 mission critical applications that require provable dependability.
70 /*-----------------------------------------------------------
71 * Implementation of functions defined in portable.h for the RX600 port.
72 *----------------------------------------------------------*/
74 /* Scheduler includes. */
78 /* Library includes. */
81 /* Hardware specifics. */
84 /*-----------------------------------------------------------*/
86 /* Tasks should start with interrupts enabled and in Supervisor mode, therefore
87 PSW is set with U and I set, and PM and IPL clear. */
88 #define portINITIAL_PSW ( ( StackType_t ) 0x00030000 )
89 #define portINITIAL_FPSW ( ( StackType_t ) 0x00000100 )
91 /*-----------------------------------------------------------*/
93 /* The following lines are to ensure vSoftwareInterruptEntry can be referenced,
94 and therefore installed in the vector table, when the FreeRTOS code is built
96 extern BaseType_t vSoftwareInterruptEntry;
97 const BaseType_t * p_vSoftwareInterruptEntry = &vSoftwareInterruptEntry;
99 /*-----------------------------------------------------------*/
102 * Function to start the first task executing - written in asm code as direct
103 * access to registers is required.
105 static void prvStartFirstTask( void );
108 * Software interrupt handler. Performs the actual context switch (saving and
109 * restoring of registers). Written in asm code as direct register access is
112 static void prvYieldHandler( void );
115 * The entry point for the software interrupt handler. This is the function
116 * that calls the inline asm function prvYieldHandler(). It is installed in
117 * the vector table, but the code that installs it is in prvYieldHandler rather
118 * than using a #pragma.
120 void vSoftwareInterruptISR( void );
122 /*-----------------------------------------------------------*/
124 /* This is accessed by the inline assembler functions so is file scope for
126 extern void *pxCurrentTCB;
127 extern void vTaskSwitchContext( void );
129 /*-----------------------------------------------------------*/
132 * See header file for description.
134 StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
136 /* R0 is not included as it is the stack pointer. */
138 *pxTopOfStack = 0x00;
140 *pxTopOfStack = portINITIAL_PSW;
142 *pxTopOfStack = ( StackType_t ) pxCode;
144 /* When debugging it can be useful if every register is set to a known
145 value. Otherwise code space can be saved by just setting the registers
146 that need to be set. */
147 #ifdef USE_FULL_REGISTER_INITIALISATION
150 *pxTopOfStack = 0xffffffff; /* r15. */
152 *pxTopOfStack = 0xeeeeeeee;
154 *pxTopOfStack = 0xdddddddd;
156 *pxTopOfStack = 0xcccccccc;
158 *pxTopOfStack = 0xbbbbbbbb;
160 *pxTopOfStack = 0xaaaaaaaa;
162 *pxTopOfStack = 0x99999999;
164 *pxTopOfStack = 0x88888888;
166 *pxTopOfStack = 0x77777777;
168 *pxTopOfStack = 0x66666666;
170 *pxTopOfStack = 0x55555555;
172 *pxTopOfStack = 0x44444444;
174 *pxTopOfStack = 0x33333333;
176 *pxTopOfStack = 0x22222222;
185 *pxTopOfStack = ( StackType_t ) pvParameters; /* R1 */
187 *pxTopOfStack = portINITIAL_FPSW;
189 *pxTopOfStack = 0x11111111; /* Accumulator 0. */
191 *pxTopOfStack = 0x22222222; /* Accumulator 0. */
193 *pxTopOfStack = 0x33333333; /* Accumulator 0. */
195 *pxTopOfStack = 0x44444444; /* Accumulator 1. */
197 *pxTopOfStack = 0x55555555; /* Accumulator 1. */
199 *pxTopOfStack = 0x66666666; /* Accumulator 1. */
203 /*-----------------------------------------------------------*/
205 BaseType_t xPortStartScheduler( void )
207 extern void vApplicationSetupTimerInterrupt( void );
209 /* Use pxCurrentTCB just so it does not get optimised away. */
210 if( pxCurrentTCB != NULL )
212 /* Call an application function to set up the timer that will generate the
213 tick interrupt. This way the application can decide which peripheral to
214 use. A demo application is provided to show a suitable example. */
215 vApplicationSetupTimerInterrupt();
217 /* Enable the software interrupt. */
218 _IEN( _ICU_SWINT ) = 1;
220 /* Ensure the software interrupt is clear. */
221 _IR( _ICU_SWINT ) = 0;
223 /* Ensure the software interrupt is set to the kernel priority. */
224 _IPR( _ICU_SWINT ) = configKERNEL_INTERRUPT_PRIORITY;
226 /* Start the first task. */
230 /* Just to make sure the function is not optimised away. */
231 ( void ) vSoftwareInterruptISR();
233 /* Should not get here. */
236 /*-----------------------------------------------------------*/
238 #pragma inline_asm prvStartFirstTask
239 static void prvStartFirstTask( void )
241 /* When starting the scheduler there is nothing that needs moving to the
242 interrupt stack because the function is not called from an interrupt.
243 Just ensure the current stack is the user stack. */
246 /* Obtain the location of the stack associated with which ever task
247 pxCurrentTCB is currently pointing to. */
248 MOV.L #_pxCurrentTCB, R15
252 /* Restore the registers from the stack of the task pointed to by
255 MVTACLO R15, A0 /* Accumulator low 32 bits. */
257 MVTACHI R15, A0 /* Accumulator high 32 bits. */
259 MVTACGU R15, A0 /* Accumulator guard. */
261 MVTACLO R15, A1 /* Accumulator low 32 bits. */
263 MVTACHI R15, A1 /* Accumulator high 32 bits. */
265 MVTACGU R15, A1 /* Accumulator guard. */
267 MVTC R15,FPSW /* Floating point status word. */
268 POPM R1-R15 /* R1 to R15 - R0 is not included as it is the SP. */
269 RTE /* This pops the remaining registers. */
273 /*-----------------------------------------------------------*/
275 #pragma interrupt ( vTickISR( vect = _VECT( configTICK_VECTOR ), enable ) )
276 void vTickISR( void )
278 /* Increment the tick, and perform any processing the new tick value
280 set_ipl( configMAX_SYSCALL_INTERRUPT_PRIORITY );
282 if( xTaskIncrementTick() != pdFALSE )
287 set_ipl( configKERNEL_INTERRUPT_PRIORITY );
289 /*-----------------------------------------------------------*/
291 void vSoftwareInterruptISR( void )
295 /*-----------------------------------------------------------*/
297 #pragma inline_asm prvYieldHandler
298 static void prvYieldHandler( void )
300 /* Re-enable interrupts. */
303 /* Move the data that was automatically pushed onto the interrupt stack when
304 the interrupt occurred from the interrupt stack to the user stack.
306 R15 is saved before it is clobbered. */
309 /* Read the user stack pointer. */
312 /* Move the address down to the data being moved. */
316 /* Copy the data across. */
317 MOV.L [ R0 ], [ R15 ] ; R15
318 MOV.L 4[ R0 ], 4[ R15 ] ; PC
319 MOV.L 8[ R0 ], 8[ R15 ] ; PSW
321 /* Move the interrupt stack pointer to its new correct position. */
324 /* All the rest of the registers are saved directly to the user stack. */
327 /* Save the rest of the general registers (R15 has been saved already). */
330 /* Save the FPSW and accumulators. */
337 MVFACLO #0, A1, R15 ; Low order word.
343 MVFACLO #0, A0, R15 ; Low order word.
346 /* Save the stack pointer to the TCB. */
347 MOV.L #_pxCurrentTCB, R15
351 /* Ensure the interrupt mask is set to the syscall priority while the kernel
352 structures are being accessed. */
353 MVTIPL #configMAX_SYSCALL_INTERRUPT_PRIORITY
355 /* Select the next task to run. */
356 BSR.A _vTaskSwitchContext
358 /* Reset the interrupt mask as no more data structure access is required. */
359 MVTIPL #configKERNEL_INTERRUPT_PRIORITY
361 /* Load the stack pointer of the task that is now selected as the Running
362 state task from its TCB. */
363 MOV.L #_pxCurrentTCB,R15
367 /* Restore the context of the new task. The PSW (Program Status Word) and
368 PC will be popped by the RTE instruction. */
370 MVTACLO R15, A0 /* Accumulator low 32 bits. */
372 MVTACHI R15, A0 /* Accumulator high 32 bits. */
374 MVTACGU R15, A0 /* Accumulator guard. */
376 MVTACLO R15, A1 /* Accumulator low 32 bits. */
378 MVTACHI R15, A1 /* Accumulator high 32 bits. */
380 MVTACGU R15, A1 /* Accumulator guard. */
388 /*-----------------------------------------------------------*/
390 void vPortEndScheduler( void )
392 /* Not implemented in ports where there is nothing to return to.
393 Artificially force an assert. */
394 configASSERT( pxCurrentTCB == NULL );
396 /* The following line is just to prevent the symbol getting optimised away. */
397 ( void ) vTaskSwitchContext();
399 /*-----------------------------------------------------------*/