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
29 /*-----------------------------------------------------------
30 * Implementation of functions defined in portable.h for the ARM7 port.
32 * Components that can be compiled to either ARM or THUMB mode are
33 * contained in this file. The ISR routines, which can only be compiled
34 * to ARM mode are contained in portISR.c.
35 *----------------------------------------------------------*/
37 /* Standard includes. */
40 /* Scheduler includes. */
44 /* Processor constants. */
45 #include "AT91SAM7X256.h"
47 /* Constants required to setup the task context. */
48 #define portINITIAL_SPSR ( ( StackType_t ) 0x1f ) /* System mode, ARM mode, interrupts enabled. */
49 #define portTHUMB_MODE_BIT ( ( StackType_t ) 0x20 )
50 #define portINSTRUCTION_SIZE ( ( StackType_t ) 4 )
51 #define portNO_CRITICAL_SECTION_NESTING ( ( StackType_t ) 0 )
53 /* Constants required to setup the tick ISR. */
54 #define portENABLE_TIMER ( ( uint8_t ) 0x01 )
55 #define portPRESCALE_VALUE 0x00
56 #define portINTERRUPT_ON_MATCH ( ( uint32_t ) 0x01 )
57 #define portRESET_COUNT_ON_MATCH ( ( uint32_t ) 0x02 )
59 /* Constants required to setup the PIT. */
60 #define portPIT_CLOCK_DIVISOR ( ( uint32_t ) 16 )
61 #define portPIT_COUNTER_VALUE ( ( ( configCPU_CLOCK_HZ / portPIT_CLOCK_DIVISOR ) / 1000UL ) * portTICK_PERIOD_MS )
63 #define portINT_LEVEL_SENSITIVE 0
64 #define portPIT_ENABLE ( ( uint16_t ) 0x1 << 24 )
65 #define portPIT_INT_ENABLE ( ( uint16_t ) 0x1 << 25 )
66 /*-----------------------------------------------------------*/
68 /* Setup the timer to generate the tick interrupts. */
69 static void prvSetupTimerInterrupt( void );
72 * The scheduler can only be started from ARM mode, so
73 * vPortISRStartFirstSTask() is defined in portISR.c.
75 extern void vPortISRStartFirstTask( void );
77 /*-----------------------------------------------------------*/
80 * Initialise the stack of a task to look exactly as if a call to
81 * portSAVE_CONTEXT had been called.
83 * See header file for description.
85 StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
87 StackType_t *pxOriginalTOS;
89 pxOriginalTOS = pxTopOfStack;
91 /* To ensure asserts in tasks.c don't fail, although in this case the assert
92 is not really required. */
95 /* Setup the initial stack of the task. The stack is set exactly as
96 expected by the portRESTORE_CONTEXT() macro. */
98 /* First on the stack is the return address - which in this case is the
99 start of the task. The offset is added to make the return address appear
100 as it would within an IRQ ISR. */
101 *pxTopOfStack = ( StackType_t ) pxCode + portINSTRUCTION_SIZE;
104 *pxTopOfStack = ( StackType_t ) 0x00000000; /* R14 */
106 *pxTopOfStack = ( StackType_t ) pxOriginalTOS; /* Stack used when task starts goes in R13. */
108 *pxTopOfStack = ( StackType_t ) 0x12121212; /* R12 */
110 *pxTopOfStack = ( StackType_t ) 0x11111111; /* R11 */
112 *pxTopOfStack = ( StackType_t ) 0x10101010; /* R10 */
114 *pxTopOfStack = ( StackType_t ) 0x09090909; /* R9 */
116 *pxTopOfStack = ( StackType_t ) 0x08080808; /* R8 */
118 *pxTopOfStack = ( StackType_t ) 0x07070707; /* R7 */
120 *pxTopOfStack = ( StackType_t ) 0x06060606; /* R6 */
122 *pxTopOfStack = ( StackType_t ) 0x05050505; /* R5 */
124 *pxTopOfStack = ( StackType_t ) 0x04040404; /* R4 */
126 *pxTopOfStack = ( StackType_t ) 0x03030303; /* R3 */
128 *pxTopOfStack = ( StackType_t ) 0x02020202; /* R2 */
130 *pxTopOfStack = ( StackType_t ) 0x01010101; /* R1 */
133 /* When the task starts is will expect to find the function parameter in
135 *pxTopOfStack = ( StackType_t ) pvParameters; /* R0 */
138 /* The last thing onto the stack is the status register, which is set for
139 system mode, with interrupts enabled. */
140 *pxTopOfStack = ( StackType_t ) portINITIAL_SPSR;
142 #ifdef THUMB_INTERWORK
144 /* We want the task to start in thumb mode. */
145 *pxTopOfStack |= portTHUMB_MODE_BIT;
151 /* Some optimisation levels use the stack differently to others. This
152 means the interrupt flags cannot always be stored on the stack and will
153 instead be stored in a variable, which is then saved as part of the
155 *pxTopOfStack = portNO_CRITICAL_SECTION_NESTING;
159 /*-----------------------------------------------------------*/
161 BaseType_t xPortStartScheduler( void )
163 /* Start the timer that generates the tick ISR. Interrupts are disabled
165 prvSetupTimerInterrupt();
167 /* Start the first task. */
168 vPortISRStartFirstTask();
170 /* Should not get here! */
173 /*-----------------------------------------------------------*/
175 void vPortEndScheduler( void )
177 /* It is unlikely that the ARM port will require this function as there
178 is nothing to return to. */
180 /*-----------------------------------------------------------*/
183 * Setup the timer 0 to generate the tick interrupts at the required frequency.
185 static void prvSetupTimerInterrupt( void )
187 AT91PS_PITC pxPIT = AT91C_BASE_PITC;
189 /* Setup the AIC for PIT interrupts. The interrupt routine chosen depends
190 on whether the preemptive or cooperative scheduler is being used. */
191 #if configUSE_PREEMPTION == 0
193 extern void ( vNonPreemptiveTick ) ( void );
194 AT91F_AIC_ConfigureIt( AT91C_ID_SYS, AT91C_AIC_PRIOR_HIGHEST, portINT_LEVEL_SENSITIVE, ( void (*)(void) ) vNonPreemptiveTick );
198 extern void ( vPreemptiveTick )( void );
199 AT91F_AIC_ConfigureIt( AT91C_ID_SYS, AT91C_AIC_PRIOR_HIGHEST, portINT_LEVEL_SENSITIVE, ( void (*)(void) ) vPreemptiveTick );
203 /* Configure the PIT period. */
204 pxPIT->PITC_PIMR = portPIT_ENABLE | portPIT_INT_ENABLE | portPIT_COUNTER_VALUE;
206 /* Enable the interrupt. Global interrupts are disables at this point so
208 AT91C_BASE_AIC->AIC_IECR = 0x1 << AT91C_ID_SYS;
210 /*-----------------------------------------------------------*/