]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/IAR/ARM_CM3/port.c
Add tickless idle support in Cortex-M ports.
[freertos] / FreeRTOS / Source / portable / IAR / ARM_CM3 / port.c
1 /*\r
2     FreeRTOS V7.2.0 - Copyright (C) 2012 Real Time Engineers Ltd.\r
3 \r
4 \r
5     ***************************************************************************\r
6      *                                                                       *\r
7      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
8      *    Complete, revised, and edited pdf reference manuals are also       *\r
9      *    available.                                                         *\r
10      *                                                                       *\r
11      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
12      *    ensuring you get running as quickly as possible and with an        *\r
13      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
14      *    the FreeRTOS project to continue with its mission of providing     *\r
15      *    professional grade, cross platform, de facto standard solutions    *\r
16      *    for microcontrollers - completely free of charge!                  *\r
17      *                                                                       *\r
18      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
19      *                                                                       *\r
20      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
21      *                                                                       *\r
22     ***************************************************************************\r
23 \r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     >>>NOTE<<< The modification to the GPL is included to allow you to\r
31     distribute a combined work that includes FreeRTOS without being obliged to\r
32     provide the source code for proprietary components outside of the FreeRTOS\r
33     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
34     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
35     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public\r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     ***************************************************************************\r
45      *                                                                       *\r
46      *    Having a problem?  Start by reading the FAQ "My application does   *\r
47      *    not run, what could be wrong?                                      *\r
48      *                                                                       *\r
49      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
50      *                                                                       *\r
51     ***************************************************************************\r
52 \r
53 \r
54     http://www.FreeRTOS.org - Documentation, training, latest information,\r
55     license and contact details.\r
56 \r
57     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
58     including FreeRTOS+Trace - an indispensable productivity tool.\r
59 \r
60     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell\r
61     the code with commercial support, indemnification, and middleware, under\r
62     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
63     provide a safety engineered and independently SIL3 certified version under\r
64     the SafeRTOS brand: http://www.SafeRTOS.com.\r
65 */\r
66 \r
67 /*-----------------------------------------------------------\r
68  * Implementation of functions defined in portable.h for the ARM CM3 port.\r
69  *----------------------------------------------------------*/\r
70 \r
71 /* Scheduler includes. */\r
72 #include "FreeRTOS.h"\r
73 #include "task.h"\r
74 \r
75 #if configMAX_SYSCALL_INTERRUPT_PRIORITY == 0\r
76         #error configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to 0.  See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html\r
77 #endif\r
78 \r
79 #ifndef configSYSTICK_CLOCK_HZ\r
80         #define configSYSTICK_CLOCK_HZ configCPU_CLOCK_HZ\r
81         #if configUSE_TICKLESS_IDLE == 1\r
82                 static const unsigned long ulStoppedTimerCompensation = 45UL;\r
83         #endif\r
84 #else /* configSYSTICK_CLOCK_HZ */\r
85         #if configUSE_TICKLESS_IDLE == 1\r
86                 /* Assumes the SysTick clock is slower than the CPU clock. */\r
87                 static const unsigned long ulStoppedTimerCompensation = 45UL / ( configCPU_CLOCK_HZ / configSYSTICK_CLOCK_HZ );\r
88         #endif\r
89 #endif  /* configSYSTICK_CLOCK_HZ */\r
90 \r
91 /* Constants required to manipulate the core.  Registers first... */\r
92 #define portNVIC_SYSTICK_CTRL_REG                       ( * ( ( volatile unsigned long * ) 0xe000e010 ) )\r
93 #define portNVIC_SYSTICK_LOAD_REG                       ( * ( ( volatile unsigned long * ) 0xe000e014 ) )\r
94 #define portNVIC_SYSTICK_CURRENT_VALUE_REG      ( * ( ( volatile unsigned long * ) 0xe000e018 ) )\r
95 #define portNVIC_INT_CTRL_REG                           ( * ( ( volatile unsigned long * ) 0xe000ed04 ) )\r
96 #define portNVIC_SYSPRI2_REG                            ( * ( ( volatile unsigned long * ) 0xe000ed20 ) )\r
97 /* ...then bits in the registers. */\r
98 #define portNVIC_SYSTICK_CLK_BIT                        ( 1UL << 2UL )\r
99 #define portNVIC_SYSTICK_INT_BIT                        ( 1UL << 1UL )\r
100 #define portNVIC_SYSTICK_ENABLE_BIT                     ( 1UL << 0UL )\r
101 #define portNVIC_SYSTICK_COUNT_FLAG_BIT         ( 1UL << 16UL )\r
102 #define portNVIC_PENDSVSET_BIT                          ( 1UL << 28UL )\r
103 #define portNVIC_PENDSVCLEAR_BIT                        ( 1UL << 27UL )\r
104 #define portNVIC_PEND_SYSTICK_CLEAR_BIT         ( 1UL << 25UL )\r
105 \r
106 #define portNVIC_PENDSV_PRI                     ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 16 )\r
107 #define portNVIC_SYSTICK_PRI            ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 24 )\r
108 \r
109 /* Constants required to set up the initial stack. */\r
110 #define portINITIAL_XPSR                        ( 0x01000000 )\r
111 \r
112 /* For backward compatibility, ensure configKERNEL_INTERRUPT_PRIORITY is\r
113 defined.  The value 255 should also ensure backward compatibility.\r
114 FreeRTOS.org versions prior to V4.3.0 did not include this definition. */\r
115 #ifndef configKERNEL_INTERRUPT_PRIORITY\r
116         #define configKERNEL_INTERRUPT_PRIORITY 0\r
117 #endif\r
118 \r
119 /* Each task maintains its own interrupt status in the critical nesting\r
120 variable. */\r
121 static unsigned portBASE_TYPE uxCriticalNesting = 0xaaaaaaaa;\r
122 \r
123 /*\r
124  * Setup the timer to generate the tick interrupts.\r
125  */\r
126 static void prvSetupTimerInterrupt( void );\r
127 \r
128 /*\r
129  * Exception handlers.\r
130  */\r
131 void xPortSysTickHandler( void );\r
132 \r
133 /*\r
134  * Start first task is a separate function so it can be tested in isolation.\r
135  */\r
136 extern void vPortStartFirstTask( void );\r
137 \r
138 /*-----------------------------------------------------------*/\r
139 \r
140 /*\r
141  * The number of SysTick increments that make up one tick period.\r
142  */\r
143 static unsigned long ulTimerReloadValueForOneTick = 0;\r
144 \r
145 /*\r
146  * The maximum number of tick periods that can be suppressed is limited by the\r
147  * 24 bit resolution of the SysTick timer.\r
148  */\r
149 #if configUSE_TICKLESS_IDLE == 1\r
150         static unsigned long xMaximumPossibleSuppressedTicks = 0;\r
151 #endif /* configUSE_TICKLESS_IDLE */\r
152 \r
153 /*-----------------------------------------------------------*/\r
154 \r
155 /*\r
156  * See header file for description.\r
157  */\r
158 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
159 {\r
160         /* Simulate the stack frame as it would be created by a context switch\r
161         interrupt. */\r
162         pxTopOfStack--; /* Offset added to account for the way the MCU uses the stack on entry/exit of interrupts. */\r
163         *pxTopOfStack = portINITIAL_XPSR;       /* xPSR */\r
164         pxTopOfStack--;\r
165         *pxTopOfStack = ( portSTACK_TYPE ) pxCode;      /* PC */\r
166         pxTopOfStack--;\r
167         *pxTopOfStack = 0;      /* LR */\r
168         pxTopOfStack -= 5;      /* R12, R3, R2 and R1. */\r
169         *pxTopOfStack = ( portSTACK_TYPE ) pvParameters;        /* R0 */\r
170         pxTopOfStack -= 8;      /* R11, R10, R9, R8, R7, R6, R5 and R4. */\r
171 \r
172         return pxTopOfStack;\r
173 }\r
174 /*-----------------------------------------------------------*/\r
175 \r
176 /*\r
177  * See header file for description.\r
178  */\r
179 portBASE_TYPE xPortStartScheduler( void )\r
180 {\r
181         /* Make PendSV and SysTick the lowest priority interrupts. */\r
182         portNVIC_SYSPRI2_REG |= portNVIC_PENDSV_PRI;\r
183         portNVIC_SYSPRI2_REG |= portNVIC_SYSTICK_PRI;\r
184 \r
185         /* Start the timer that generates the tick ISR.  Interrupts are disabled\r
186         here already. */\r
187         prvSetupTimerInterrupt();\r
188 \r
189         /* Initialise the critical nesting count ready for the first task. */\r
190         uxCriticalNesting = 0;\r
191 \r
192         /* Start the first task. */\r
193         vPortStartFirstTask();\r
194 \r
195         /* Should not get here! */\r
196         return 0;\r
197 }\r
198 /*-----------------------------------------------------------*/\r
199 \r
200 void vPortEndScheduler( void )\r
201 {\r
202         /* It is unlikely that the CM3 port will require this function as there\r
203         is nothing to return to.  */\r
204 }\r
205 /*-----------------------------------------------------------*/\r
206 \r
207 void vPortYieldFromISR( void )\r
208 {\r
209         /* Set a PendSV to request a context switch. */\r
210         portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT;\r
211 }\r
212 /*-----------------------------------------------------------*/\r
213 \r
214 void vPortEnterCritical( void )\r
215 {\r
216         portDISABLE_INTERRUPTS();\r
217         uxCriticalNesting++;\r
218 }\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 void vPortExitCritical( void )\r
222 {\r
223         uxCriticalNesting--;\r
224         if( uxCriticalNesting == 0 )\r
225         {\r
226                 portENABLE_INTERRUPTS();\r
227         }\r
228 }\r
229 /*-----------------------------------------------------------*/\r
230 \r
231 void xPortSysTickHandler( void )\r
232 {\r
233         /* If using preemption, also force a context switch. */\r
234         #if configUSE_PREEMPTION == 1\r
235                 portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT;\r
236         #endif\r
237 \r
238         #if configUSE_TICKLESS_IDLE == 1\r
239                 portNVIC_SYSTICK_LOAD_REG = ulTimerReloadValueForOneTick;\r
240         #endif\r
241 \r
242         ( void ) portSET_INTERRUPT_MASK_FROM_ISR();\r
243         {\r
244                 vTaskIncrementTick();\r
245         }\r
246         portCLEAR_INTERRUPT_MASK_FROM_ISR( 0 );\r
247 }\r
248 /*-----------------------------------------------------------*/\r
249 \r
250 #if configUSE_TICKLESS_IDLE == 1\r
251 \r
252         __weak void vPortSuppressTicksAndSleep( portTickType xExpectedIdleTime )\r
253         {\r
254         unsigned long ulReloadValue, ulCompleteTickPeriods, ulCompletedSysTickIncrements;\r
255 \r
256                 /* Make sure the SysTick reload value does not overflow the counter. */\r
257                 if( xExpectedIdleTime > xMaximumPossibleSuppressedTicks )\r
258                 {\r
259                         xExpectedIdleTime = xMaximumPossibleSuppressedTicks;\r
260                 }\r
261 \r
262                 /* Calculate the reload value required to wait xExpectedIdleTime\r
263                 tick periods.  -1 is used because this code will execute part way\r
264                 through one of the tick periods, and the fraction of a tick period is\r
265                 accounted for later. */\r
266                 ulReloadValue = ( ulTimerReloadValueForOneTick * ( xExpectedIdleTime - 1UL ) );\r
267                 if( ulReloadValue > ulStoppedTimerCompensation )\r
268                 {\r
269                         ulReloadValue -= ulStoppedTimerCompensation;\r
270                 }\r
271 \r
272                 /* Stop the SysTick momentarily.  The time the SysTick is stopped for\r
273                 is accounted for as best it can be, but using the tickless mode will\r
274                 inevitably result in some tiny drift of the time maintained by the\r
275                 kernel with respect to calendar time. */\r
276                 portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT;\r
277 \r
278                 /* If a context switch is pending then abandon the low power entry as\r
279                 the context switch might have been pended by an external interrupt that\r
280                 requires processing. */\r
281                 if( ( portNVIC_INT_CTRL_REG & portNVIC_PENDSVSET_BIT ) != 0 )\r
282                 {\r
283                         /* Restart SysTick. */\r
284                         portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT;\r
285                 }\r
286                 else\r
287                 {\r
288                         /* Adjust the reload value to take into account that the current\r
289                         time slice is already partially complete. */\r
290                         ulReloadValue += ( portNVIC_SYSTICK_LOAD_REG - ( portNVIC_SYSTICK_LOAD_REG - portNVIC_SYSTICK_CURRENT_VALUE_REG ) );\r
291                         portNVIC_SYSTICK_LOAD_REG = ulReloadValue;\r
292 \r
293                         /* Clear the SysTick count flag and set the count value back to\r
294                         zero. */\r
295                         portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL;\r
296 \r
297                         /* Restart SysTick. */\r
298                         portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT;\r
299 \r
300                         /* Sleep until something happens. */\r
301                         portPRE_SLEEP_PROCESSING();\r
302                         __WFI();\r
303                         portPOST_SLEEP_PROCESSING();\r
304 \r
305                         /* Stop SysTick.  Again, the time the SysTick is stopped for is\r
306                         accounted for as best it can be, but using the tickless mode will\r
307                         inevitably result in some tiny drift of the time maintained by the\r
308                         kernel with respect to calendar time. */\r
309                         portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT;\r
310 \r
311                         if( ( portNVIC_SYSTICK_CTRL_REG & portNVIC_SYSTICK_COUNT_FLAG_BIT ) != 0 )\r
312                         {\r
313                                 /* The tick interrupt has already executed, and the SysTick\r
314                                 count reloaded with the portNVIC_SYSTICK_LOAD_REG value.\r
315                                 Reset the portNVIC_SYSTICK_LOAD_REG with whatever remains of\r
316                                 this tick period. */\r
317                                 portNVIC_SYSTICK_LOAD_REG = ulTimerReloadValueForOneTick - ( ulReloadValue - portNVIC_SYSTICK_CURRENT_VALUE_REG );\r
318 \r
319                                 /* The tick interrupt handler will already have pended the tick\r
320                                 processing in the kernel.  As the pending tick will be\r
321                                 processed as soon as this function exits, the tick value\r
322                                 maintained by the tick is stepped forward by one less than the\r
323                                 time spent waiting. */\r
324                                 ulCompleteTickPeriods = xExpectedIdleTime - 1UL;\r
325                         }\r
326                         else\r
327                         {\r
328                                 /* Something other than the tick interrupt ended the sleep.\r
329                                 Work out how long the sleep lasted. */\r
330                                 ulCompletedSysTickIncrements = ( xExpectedIdleTime * ulTimerReloadValueForOneTick ) - portNVIC_SYSTICK_CURRENT_VALUE_REG;\r
331 \r
332                                 /* How many complete tick periods passed while the processor\r
333                                 was waiting? */\r
334                                 ulCompleteTickPeriods = ulCompletedSysTickIncrements / ulTimerReloadValueForOneTick;\r
335 \r
336                                 /* The reload value is set to whatever fraction of a single tick\r
337                                 period remains. */\r
338                                 portNVIC_SYSTICK_LOAD_REG = ( ( ulCompleteTickPeriods + 1 ) * ulTimerReloadValueForOneTick ) - ulCompletedSysTickIncrements;\r
339                         }\r
340 \r
341                         /* Restart SysTick so it runs from portNVIC_SYSTICK_LOAD_REG\r
342                         again, then set portNVIC_SYSTICK_LOAD_REG back to its standard\r
343                         value. */\r
344                         portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL;\r
345                         portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT;\r
346 \r
347                         vTaskStepTick( ulCompleteTickPeriods );\r
348                 }\r
349         }\r
350 \r
351 #endif /* #if configUSE_TICKLESS_IDLE */\r
352 /*-----------------------------------------------------------*/\r
353 \r
354 /*\r
355  * Setup the systick timer to generate the tick interrupts at the required\r
356  * frequency.\r
357  */\r
358 void prvSetupTimerInterrupt( void )\r
359 {\r
360         /* Configure the constants required to setup the tick interrupt. */\r
361         ulTimerReloadValueForOneTick = ( configSYSTICK_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL;\r
362         #if configUSE_TICKLESS_IDLE == 1\r
363                 xMaximumPossibleSuppressedTicks = 0xffffffUL / ( ( configSYSTICK_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL );\r
364         #endif /* configUSE_TICKLESS_IDLE */\r
365 \r
366         /* Configure SysTick to interrupt at the requested rate. */\r
367         portNVIC_SYSTICK_LOAD_REG = ulTimerReloadValueForOneTick;\r
368         portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT;\r
369 }\r
370 /*-----------------------------------------------------------*/\r
371 \r