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 = 0x12345678; /* Accumulator. */
129 *pxTopOfStack = 0x87654321; /* Accumulator. */
133 /*-----------------------------------------------------------*/
135 BaseType_t xPortStartScheduler( void )
137 extern void vApplicationSetupTimerInterrupt( void );
139 /* Use pxCurrentTCB just so it does not get optimised away. */
140 if( pxCurrentTCB != NULL )
142 /* Call an application function to set up the timer that will generate the
143 tick interrupt. This way the application can decide which peripheral to
144 use. A demo application is provided to show a suitable example. */
145 vApplicationSetupTimerInterrupt();
147 /* Enable the software interrupt. */
148 _IEN( _ICU_SWINT ) = 1;
150 /* Ensure the software interrupt is clear. */
151 _IR( _ICU_SWINT ) = 0;
153 /* Ensure the software interrupt is set to the kernel priority. */
154 _IPR( _ICU_SWINT ) = configKERNEL_INTERRUPT_PRIORITY;
156 /* Start the first task. */
160 /* Should not get here. */
163 /*-----------------------------------------------------------*/
165 #pragma vector = configTICK_VECTOR
166 __interrupt void vTickISR( void )
168 /* Re-enable interrupts. */
169 __enable_interrupt();
171 /* Increment the tick, and perform any processing the new tick value
173 __set_interrupt_level( configMAX_SYSCALL_INTERRUPT_PRIORITY );
175 if( xTaskIncrementTick() != pdFALSE )
180 __set_interrupt_level( configKERNEL_INTERRUPT_PRIORITY );
182 /*-----------------------------------------------------------*/
184 void vPortEndScheduler( void )
186 /* Not implemented in ports where there is nothing to return to.
187 Artificially force an assert. */
188 configASSERT( pxCurrentTCB == NULL );
190 /*-----------------------------------------------------------*/