2 * FreeRTOS SMP Kernel V202110.00
3 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * https://www.FreeRTOS.org
23 * https://github.com/FreeRTOS
28 /*-----------------------------------------------------------
29 * Implementation of functions defined in portable.h for the SH2A port.
30 *----------------------------------------------------------*/
32 /* Scheduler includes. */
36 /* Library includes. */
39 /* Hardware specifics. */
42 /*-----------------------------------------------------------*/
44 /* Tasks should start with interrupts enabled and in Supervisor mode, therefore
45 PSW is set with U and I set, and PM and IPL clear. */
46 #define portINITIAL_PSW ( ( StackType_t ) 0x00030000 )
47 #define portINITIAL_FPSW ( ( StackType_t ) 0x00000100 )
49 /*-----------------------------------------------------------*/
52 * Function to start the first task executing - written in asm code as direct
53 * access to registers is required.
55 extern void prvStartFirstTask( void );
58 * The tick ISR handler. The peripheral used is configured by the application
59 * via a hook/callback function.
61 __interrupt void vTickISR( void );
63 /*-----------------------------------------------------------*/
65 extern void *pxCurrentTCB;
67 /*-----------------------------------------------------------*/
70 * See header file for description.
72 StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
74 /* R0 is not included as it is the stack pointer. */
78 *pxTopOfStack = portINITIAL_PSW;
80 *pxTopOfStack = ( StackType_t ) pxCode;
82 /* When debugging it can be useful if every register is set to a known
83 value. Otherwise code space can be saved by just setting the registers
84 that need to be set. */
85 #ifdef USE_FULL_REGISTER_INITIALISATION
88 *pxTopOfStack = 0xffffffff; /* r15. */
90 *pxTopOfStack = 0xeeeeeeee;
92 *pxTopOfStack = 0xdddddddd;
94 *pxTopOfStack = 0xcccccccc;
96 *pxTopOfStack = 0xbbbbbbbb;
98 *pxTopOfStack = 0xaaaaaaaa;
100 *pxTopOfStack = 0x99999999;
102 *pxTopOfStack = 0x88888888;
104 *pxTopOfStack = 0x77777777;
106 *pxTopOfStack = 0x66666666;
108 *pxTopOfStack = 0x55555555;
110 *pxTopOfStack = 0x44444444;
112 *pxTopOfStack = 0x33333333;
114 *pxTopOfStack = 0x22222222;
123 *pxTopOfStack = ( StackType_t ) pvParameters; /* R1 */
125 *pxTopOfStack = portINITIAL_FPSW;
127 *pxTopOfStack = 0x11111111; /* Accumulator 0. */
129 *pxTopOfStack = 0x22222222; /* Accumulator 0. */
131 *pxTopOfStack = 0x33333333; /* Accumulator 0. */
133 *pxTopOfStack = 0x44444444; /* Accumulator 1. */
135 *pxTopOfStack = 0x55555555; /* Accumulator 1. */
137 *pxTopOfStack = 0x66666666; /* Accumulator 1. */
141 /*-----------------------------------------------------------*/
143 BaseType_t xPortStartScheduler( void )
145 extern void vApplicationSetupTimerInterrupt( void );
147 /* Use pxCurrentTCB just so it does not get optimised away. */
148 if( pxCurrentTCB != NULL )
150 /* Call an application function to set up the timer that will generate the
151 tick interrupt. This way the application can decide which peripheral to
152 use. A demo application is provided to show a suitable example. */
153 vApplicationSetupTimerInterrupt();
155 /* Enable the software interrupt. */
156 _IEN( _ICU_SWINT ) = 1;
158 /* Ensure the software interrupt is clear. */
159 _IR( _ICU_SWINT ) = 0;
161 /* Ensure the software interrupt is set to the kernel priority. */
162 _IPR( _ICU_SWINT ) = configKERNEL_INTERRUPT_PRIORITY;
164 /* Start the first task. */
168 /* Should not get here. */
171 /*-----------------------------------------------------------*/
173 #pragma vector = configTICK_VECTOR
174 __interrupt void vTickISR( void )
176 /* Re-enable interrupts. */
177 __enable_interrupt();
179 /* Increment the tick, and perform any processing the new tick value
181 __set_interrupt_level( configMAX_SYSCALL_INTERRUPT_PRIORITY );
183 if( xTaskIncrementTick() != pdFALSE )
188 __set_interrupt_level( configKERNEL_INTERRUPT_PRIORITY );
190 /*-----------------------------------------------------------*/
192 void vPortEndScheduler( void )
194 /* Not implemented in ports where there is nothing to return to.
195 Artificially force an assert. */
196 configASSERT( pxCurrentTCB == NULL );
198 /*-----------------------------------------------------------*/