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 /*-----------------------------------------------------------
30 * Implementation of functions defined in portable.h for the PIC32MEC14xx port.
31 *----------------------------------------------------------*/
33 /* Scheduler include files. */
37 /* Microchip includes. */
42 #error This port is designed to work with XC32 on MEC14xx. Please update your C compiler version or settings.
45 #if( ( configMAX_SYSCALL_INTERRUPT_PRIORITY >= 0x7 ) || ( configMAX_SYSCALL_INTERRUPT_PRIORITY == 0 ) )
46 #error configMAX_SYSCALL_INTERRUPT_PRIORITY must be less than 7 and greater than 0
49 /* Bits within various registers. */
50 #define portIE_BIT ( 0x00000001 )
51 #define portEXL_BIT ( 0x00000002 )
53 /* The EXL bit is set to ensure interrupts do not occur while the context of
54 the first task is being restored. MEC14xx does not have DSP HW. */
55 #define portINITIAL_SR ( portIE_BIT | portEXL_BIT )
57 /* MEC14xx RTOS Timer MMCR's. */
58 #define portMMCR_RTMR_PRELOAD *((volatile uint32_t *)(0xA0007404ul))
59 #define portMMCR_RTMR_CONTROL *((volatile uint32_t *)(0xA0007408ul))
61 /* MEC14xx JTVIC external interrupt controller is mapped to M14K closely-coupled
63 #define portGIRQ23_RTOS_TIMER_BITPOS ( 4 )
64 #define portGIRQ23_RTOS_TIMER_MASK ( 1ul << ( portGIRQ23_RTOS_TIMER_BITPOS ) )
65 #define portMMCR_JTVIC_GIRQ23_SRC *((volatile uint32_t *)(0xBFFFC0F0ul))
66 #define portMMCR_JTVIC_GIRQ23_SETEN *((volatile uint32_t *)(0xBFFFC0F4ul))
67 #define portMMCR_JTVIC_GIRQ23_PRIA *((volatile uint32_t *)(0xBFFFC3F0ul))
69 /* MIPS Software Interrupts are routed through JTVIC GIRQ24 */
70 #define portGIRQ24_M14K_SOFTIRQ0_BITPOS ( 1 )
71 #define portGIRQ24_M14K_SOFTIRQ0_MASK ( 1ul << ( portGIRQ24_M14K_SOFTIRQ0_BITPOS ) )
72 #define portMMCR_JTVIC_GIRQ24_SRC *((volatile uint32_t *)(0xBFFFC100ul))
73 #define portMMCR_JTVIC_GIRQ24_SETEN *((volatile uint32_t *)(0xBFFFC104ul))
74 #define portMMCR_JTVIC_GIRQ24_PRIA *((volatile uint32_t *)(0xBFFFC400ul))
77 By default port.c generates its tick interrupt from the RTOS timer. The user
78 can override this behaviour by:
79 1: Providing their own implementation of vApplicationSetupTickTimerInterrupt(),
80 which is the function that configures the timer. The function is defined
81 as a weak symbol in this file so if the same function name is used in the
82 application code then the version in the application code will be linked
83 into the application in preference to the version defined in this file.
84 2: Provide a vector implementation in port_asm.S that overrides the default
85 behaviour for the specified interrupt vector.
86 3: Specify the correct bit to clear the interrupt during the timer interrupt
89 #ifndef configTICK_INTERRUPT_VECTOR
90 #define configTICK_INTERRUPT_VECTOR girq23_b4
91 #define configCLEAR_TICK_TIMER_INTERRUPT() portMMCR_JTVIC_GIRQ23_SRC = portGIRQ23_RTOS_TIMER_MASK
93 #ifndef configCLEAR_TICK_TIMER_INTERRUPT
94 #error If configTICK_INTERRUPT_VECTOR is defined in application code then configCLEAR_TICK_TIMER_INTERRUPT must also be defined in application code.
98 /* Let the user override the pre-loading of the initial RA with the address of
99 prvTaskExitError() in case it messes up unwinding of the stack in the debugger -
100 in which case configTASK_RETURN_ADDRESS can be defined as 0 (NULL). */
101 #ifdef configTASK_RETURN_ADDRESS
102 #define portTASK_RETURN_ADDRESS configTASK_RETURN_ADDRESS
104 #define portTASK_RETURN_ADDRESS prvTaskExitError
107 /* Set configCHECK_FOR_STACK_OVERFLOW to 3 to add ISR stack checking to task
108 stack checking. A problem in the ISR stack will trigger an assert, not call the
109 stack overflow hook function (because the stack overflow hook is specific to a
110 task stack, not the ISR stack). */
111 #if( configCHECK_FOR_STACK_OVERFLOW > 2 )
113 /* Don't use 0xa5 as the stack fill bytes as that is used by the kernel for
114 the task stacks, and so will legitimately appear in many positions within
116 #define portISR_STACK_FILL_BYTE 0xee
118 static const uint8_t ucExpectedStackBytes[] = {
119 portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, \
120 portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, \
121 portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, \
122 portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, \
123 portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE }; \
125 #define portCHECK_ISR_STACK() configASSERT( ( memcmp( ( void * ) xISRStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) == 0 ) )
127 /* Define the function away. */
128 #define portCHECK_ISR_STACK()
129 #endif /* configCHECK_FOR_STACK_OVERFLOW > 2 */
132 /*-----------------------------------------------------------*/
135 * Used to catch tasks that attempt to return from their implementing function.
137 static void prvTaskExitError( void );
139 /*-----------------------------------------------------------*/
141 /* Records the interrupt nesting depth. This is initialised to one as it is
142 decremented to 0 when the first task starts. */
143 volatile UBaseType_t uxInterruptNesting = 0x01;
145 /* Stores the task stack pointer when a switch is made to use the system stack. */
146 UBaseType_t uxSavedTaskStackPointer = 0;
148 /* The stack used by interrupt service routines that cause a context switch. */
149 StackType_t xISRStack[ configISR_STACK_SIZE ] = { 0 };
151 /* The top of stack value ensures there is enough space to store 6 registers on
152 the callers stack, as some functions seem to want to do this. */
153 const StackType_t * const xISRStackTop = &( xISRStack[ configISR_STACK_SIZE - 7 ] );
155 /*-----------------------------------------------------------*/
158 * See header file for description.
160 StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
162 /* Ensure byte alignment is maintained when leaving this function. */
165 *pxTopOfStack = (StackType_t) 0xDEADBEEF;
168 *pxTopOfStack = (StackType_t) 0x12345678; /* Word to which the stack pointer will be left pointing after context restore. */
171 *pxTopOfStack = (StackType_t) ulPortGetCP0Cause();
174 *pxTopOfStack = (StackType_t) portINITIAL_SR; /* CP0_STATUS */
177 *pxTopOfStack = (StackType_t) pxCode; /* CP0_EPC */
180 *pxTopOfStack = (StackType_t) portTASK_RETURN_ADDRESS; /* ra */
183 *pxTopOfStack = (StackType_t) pvParameters; /* Parameters to pass in. */
188 /*-----------------------------------------------------------*/
190 static __inline uint32_t prvDisableInterrupt( void )
194 __asm volatile( "di %0; ehb" : "=r" ( prev_state ) :: "memory" );
197 /*-----------------------------------------------------------*/
199 static void prvTaskExitError( void )
201 /* A function that implements a task must not exit or attempt to return to
202 its caller as there is nothing to return to. If a task wants to exit it
203 should instead call vTaskDelete( NULL ).
205 Artificially force an assert() to be triggered if configASSERT() is
206 defined, then stop here so application writers can catch the error. */
207 configASSERT( uxSavedTaskStackPointer == 0UL );
208 portDISABLE_INTERRUPTS();
211 /*-----------------------------------------------------------*/
214 * Setup a timer for a regular tick. This function uses the RTOS timer.
215 * The function is declared weak so an application writer can use a different
216 * timer by redefining this implementation. If a different timer is used then
217 * configTICK_INTERRUPT_VECTOR must also be defined in FreeRTOSConfig.h to
218 * ensure the RTOS provided tick interrupt handler is installed on the correct
221 __attribute__(( weak )) void vApplicationSetupTickTimerInterrupt( void )
223 /* MEC14xx RTOS Timer whose input clock is 32KHz. */
224 const uint32_t ulPreload = ( 32768ul / ( configTICK_RATE_HZ ) );
226 configASSERT( ulPreload != 0UL );
228 /* Configure the RTOS timer. */
229 portMMCR_RTMR_CONTROL = 0ul;
230 portMMCR_RTMR_PRELOAD = ulPreload;
232 /* Configure interrupts from the RTOS timer. */
233 portMMCR_JTVIC_GIRQ23_SRC = ( portGIRQ23_RTOS_TIMER_MASK );
234 portMMCR_JTVIC_GIRQ23_PRIA &= ~( 0x0Ful << 16 );
235 portMMCR_JTVIC_GIRQ23_PRIA |= ( ( portIPL_TO_CODE( configKERNEL_INTERRUPT_PRIORITY ) ) << 16 );
236 portMMCR_JTVIC_GIRQ23_SETEN = ( portGIRQ23_RTOS_TIMER_MASK );
238 /* Enable the RTOS timer. */
239 portMMCR_RTMR_CONTROL = 0x0Fu;
241 /*-----------------------------------------------------------*/
243 void vPortEndScheduler(void)
245 /* Not implemented in ports where there is nothing to return to.
246 Artificially force an assert. */
247 configASSERT( uxInterruptNesting == 1000UL );
249 /*-----------------------------------------------------------*/
251 BaseType_t xPortStartScheduler( void )
253 extern void vPortStartFirstTask( void );
254 extern void *pxCurrentTCB;
256 #if ( configCHECK_FOR_STACK_OVERFLOW > 2 )
258 /* Fill the ISR stack to make it easy to asses how much is being used. */
259 memset( ( void * ) xISRStack, portISR_STACK_FILL_BYTE, sizeof( xISRStack ) );
261 #endif /* configCHECK_FOR_STACK_OVERFLOW > 2 */
263 /* Clear the software interrupt flag. */
264 portMMCR_JTVIC_GIRQ24_SRC = (portGIRQ24_M14K_SOFTIRQ0_MASK);
266 /* Set software timer priority. Each GIRQn has one nibble containing its
268 portMMCR_JTVIC_GIRQ24_PRIA &= ~(0xF0ul);
269 portMMCR_JTVIC_GIRQ24_PRIA |= ( portIPL_TO_CODE( configKERNEL_INTERRUPT_PRIORITY ) << 4 );
271 /* Enable software interrupt. */
272 portMMCR_JTVIC_GIRQ24_SETEN = ( portGIRQ24_M14K_SOFTIRQ0_MASK );
274 /* Setup the timer to generate the tick. Interrupts will have been disabled
275 by the time we get here. */
276 vApplicationSetupTickTimerInterrupt();
278 /* Start the highest priority task that has been created so far. Its stack
279 location is loaded into uxSavedTaskStackPointer. */
280 uxSavedTaskStackPointer = *( UBaseType_t * ) pxCurrentTCB;
281 vPortStartFirstTask();
283 /* Should never get here as the tasks will now be executing! Call the task
284 exit error function to prevent compiler warnings about a static function
285 not being called in the case that the application writer overrides this
286 functionality by defining configTASK_RETURN_ADDRESS. */
291 /*-----------------------------------------------------------*/
293 void vPortIncrementTick( void )
295 UBaseType_t uxSavedStatus;
298 uxSavedStatus = uxPortSetInterruptMaskFromISR();
300 if( xTaskIncrementTick() != pdFALSE )
302 /* Pend a context switch. */
303 ulCause = ulPortGetCP0Cause();
304 ulCause |= ( 1ul << 8UL );
305 vPortSetCP0Cause( ulCause );
308 vPortClearInterruptMaskFromISR( uxSavedStatus );
310 /* Look for the ISR stack getting near or past its limit. */
311 portCHECK_ISR_STACK();
313 /* Clear timer interrupt. */
314 configCLEAR_TICK_TIMER_INTERRUPT();
316 /*-----------------------------------------------------------*/
318 UBaseType_t uxPortSetInterruptMaskFromISR( void )
320 UBaseType_t uxSavedStatusRegister;
322 prvDisableInterrupt();
323 uxSavedStatusRegister = ulPortGetCP0Status() | 0x01;
325 /* This clears the IPL bits, then sets them to
326 configMAX_SYSCALL_INTERRUPT_PRIORITY. This function should not be called
327 from an interrupt that has a priority above
328 configMAX_SYSCALL_INTERRUPT_PRIORITY so, when used correctly, the action
329 can only result in the IPL being unchanged or raised, and therefore never
331 vPortSetCP0Status( ( ( uxSavedStatusRegister & ( ~portALL_IPL_BITS ) ) ) | ( configMAX_SYSCALL_INTERRUPT_PRIORITY << portIPL_SHIFT ) );
333 return uxSavedStatusRegister;
335 /*-----------------------------------------------------------*/
337 void vPortClearInterruptMaskFromISR( UBaseType_t uxSavedStatusRegister )
339 vPortSetCP0Status( uxSavedStatusRegister );
341 /*-----------------------------------------------------------*/