2 * FreeRTOS Kernel V11.2.0
3 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5 * SPDX-License-Identifier: MIT
7 * Permission is hereby granted, free of charge, to any person obtaining a copy of
8 * this software and associated documentation files (the "Software"), to deal in
9 * the Software without restriction, including without limitation the rights to
10 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
11 * the Software, and to permit persons to whom the Software is furnished to do so,
12 * subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in all
15 * copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
19 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
20 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 * https://www.FreeRTOS.org
25 * https://github.com/FreeRTOS
29 /* Kernel includes. */
34 #define portINITIAL_FORMAT_VECTOR ( ( StackType_t ) 0x4000 )
36 /* Supervisor mode set. */
37 #define portINITIAL_STATUS_REGISTER ( ( StackType_t ) 0x2000)
39 /* The clock prescale into the timer peripheral. */
40 #define portPRESCALE_VALUE ( ( uint8_t ) 10 )
42 /* The clock frequency into the RTC. */
43 #define portRTC_CLOCK_HZ ( ( uint32_t ) 1000 )
45 asm void interrupt VectorNumber_VL1swi vPortYieldISR( void );
46 static void prvSetupTimerInterrupt( void );
48 /* Used to keep track of the number of nested calls to taskENTER_CRITICAL(). This
49 will be set to 0 prior to the first task being started. */
50 static uint32_t ulCriticalNesting = 0x9999UL;
52 /*-----------------------------------------------------------*/
54 StackType_t *pxPortInitialiseStack( StackType_t * pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
57 uint32_t ulOriginalA5;
59 __asm{ MOVE.L A5, ulOriginalA5 };
62 *pxTopOfStack = (StackType_t) 0xDEADBEEF;
65 /* Exception stack frame starts with the return address. */
66 *pxTopOfStack = ( StackType_t ) pxCode;
69 *pxTopOfStack = ( portINITIAL_FORMAT_VECTOR << 16UL ) | ( portINITIAL_STATUS_REGISTER );
72 *pxTopOfStack = ( StackType_t ) 0x0; /*FP*/
73 pxTopOfStack -= 14; /* A5 to D0. */
75 /* Parameter in A0. */
76 *( pxTopOfStack + 8 ) = ( StackType_t ) pvParameters;
78 /* A5 must be maintained as it is reserved by the compiler. */
79 *( pxTopOfStack + 13 ) = ulOriginalA5;
83 /*-----------------------------------------------------------*/
85 BaseType_t xPortStartScheduler( void )
87 extern void vPortStartFirstTask( void );
89 ulCriticalNesting = 0UL;
91 /* Configure a timer to generate the tick interrupt. */
92 prvSetupTimerInterrupt();
94 /* Start the first task executing. */
95 vPortStartFirstTask();
99 /*-----------------------------------------------------------*/
101 static void prvSetupTimerInterrupt( void )
103 /* Prescale by 1 - ie no prescale. */
106 /* Compare match value. */
107 RTCMOD = portRTC_CLOCK_HZ / configTICK_RATE_HZ;
109 /* Enable the RTC to generate interrupts - interrupts are already disabled
110 when this code executes. */
113 /*-----------------------------------------------------------*/
115 void vPortEndScheduler( void )
117 /* Not implemented as there is nothing to return to. */
119 /*-----------------------------------------------------------*/
121 void vPortEnterCritical( void )
123 if( ulCriticalNesting == 0UL )
125 /* Guard against context switches being pended simultaneously with a
126 critical section being entered. */
129 portDISABLE_INTERRUPTS();
130 if( INTC_FRC == 0UL )
135 portENABLE_INTERRUPTS();
141 /*-----------------------------------------------------------*/
143 void vPortExitCritical( void )
146 if( ulCriticalNesting == 0 )
148 portENABLE_INTERRUPTS();
151 /*-----------------------------------------------------------*/
153 void vPortYieldHandler( void )
155 uint32_t ulSavedInterruptMask;
157 ulSavedInterruptMask = portSET_INTERRUPT_MASK_FROM_ISR();
159 /* Note this will clear all forced interrupts - this is done for speed. */
161 vTaskSwitchContext();
163 portCLEAR_INTERRUPT_MASK_FROM_ISR( ulSavedInterruptMask );
165 /*-----------------------------------------------------------*/
167 void interrupt VectorNumber_Vrtc vPortTickISR( void )
169 uint32_t ulSavedInterruptMask;
171 /* Clear the interrupt. */
172 RTCSC |= RTCSC_RTIF_MASK;
174 /* Increment the RTOS tick. */
175 ulSavedInterruptMask = portSET_INTERRUPT_MASK_FROM_ISR();
177 if( xTaskIncrementTick() != pdFALSE )
182 portCLEAR_INTERRUPT_MASK_FROM_ISR( ulSavedInterruptMask );