]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_A5_SAMA5D4x_EK_IAR/main.c
Update version number in readiness for V10.3.0 release. Sync SVN with reviewed releas...
[freertos] / FreeRTOS / Demo / CORTEX_A5_SAMA5D4x_EK_IAR / main.c
1 /*\r
2  * FreeRTOS Kernel V10.3.0\r
3  * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 /******************************************************************************\r
29  * This project provides two demo applications.  A simple blinky style project,\r
30  * and a more comprehensive test and demo application.  The\r
31  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting (defined in this file) is used to\r
32  * select between the two.  The simply blinky demo is implemented and described\r
33  * in main_blinky.c.  The more comprehensive test and demo application is\r
34  * implemented and described in main_full.c.\r
35  *\r
36  * This file implements the code that is not demo specific, including the\r
37  * hardware setup, standard FreeRTOS hook functions, and the ISR hander called\r
38  * by the RTOS after interrupt entry (including nesting) has been taken care of.\r
39  *\r
40  * ENSURE TO READ THE DOCUMENTATION PAGE FOR THIS PORT AND DEMO APPLICATION ON\r
41  * THE http://www.FreeRTOS.org WEB SITE FOR FULL INFORMATION ON USING THIS DEMO\r
42  * APPLICATION, AND ITS ASSOCIATE FreeRTOS ARCHITECTURE PORT!\r
43  *\r
44  */\r
45 \r
46 /* Scheduler include files. */\r
47 #include "FreeRTOS.h"\r
48 #include "task.h"\r
49 #include "semphr.h"\r
50 \r
51 /* Standard demo includes. */\r
52 #include "partest.h"\r
53 #include "TimerDemo.h"\r
54 #include "QueueOverwrite.h"\r
55 #include "EventGroupsDemo.h"\r
56 \r
57 /* Library includes. */\r
58 #include "chip.h"\r
59 \r
60 /* Set mainCREATE_SIMPLE_BLINKY_DEMO_ONLY to one to run the simple blinky demo,\r
61 or 0 to run the more comprehensive test and demo application. */\r
62 #define mainCREATE_SIMPLE_BLINKY_DEMO_ONLY      1\r
63 \r
64 /*-----------------------------------------------------------*/\r
65 \r
66 /*\r
67  * Configure the hardware as necessary to run this demo.\r
68  */\r
69 static void prvSetupHardware( void );\r
70 \r
71 /*\r
72  * main_blinky() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 1.\r
73  * main_full() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 0.\r
74  */\r
75 #if( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 )\r
76         extern void main_blinky( void );\r
77 #else\r
78         extern void main_full( void );\r
79 #endif /* #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 */\r
80 \r
81 /* Prototypes for the standard FreeRTOS callback/hook functions implemented\r
82 within this file. */\r
83 void vApplicationMallocFailedHook( void );\r
84 void vApplicationIdleHook( void );\r
85 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );\r
86 void vApplicationTickHook( void );\r
87 \r
88 /* Prototype for the IRQ handler called by the generic Cortex-A5 RTOS port\r
89 layer. */\r
90 void vApplicationIRQHandler( void );\r
91 \r
92 /*-----------------------------------------------------------*/\r
93 \r
94 int main( void )\r
95 {\r
96         /* Configure the hardware ready to run the demo. */\r
97         prvSetupHardware();\r
98 \r
99         /* The mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top\r
100         of this file. */\r
101         #if( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 )\r
102         {\r
103                 main_blinky();\r
104         }\r
105         #else\r
106         {\r
107                 main_full();\r
108         }\r
109         #endif\r
110 \r
111         return 0;\r
112 }\r
113 /*-----------------------------------------------------------*/\r
114 \r
115 static void prvSetupHardware( void )\r
116 {\r
117     /* Disable watchdog */\r
118     WDT_Disable( WDT );\r
119 \r
120         /* Set protect mode in the AIC for easier debugging.  THIS IS COMMENTED OUT\r
121         AS IT RESULTS IN SPURIOUS INTERRUPTS.\r
122         AIC->AIC_DCR |= AIC_DCR_PROT; */\r
123 \r
124         /* Configure ports used by LEDs. */\r
125         vParTestInitialise();\r
126 \r
127         #if defined (ddram)\r
128         {\r
129                 MMU_Initialize( ( uint32_t * ) 0x20C000 );\r
130                 CP15_EnableMMU();\r
131                 CP15_EnableDcache();\r
132                 CP15_EnableIcache();\r
133         }\r
134         #endif\r
135 }\r
136 /*-----------------------------------------------------------*/\r
137 \r
138 void vApplicationMallocFailedHook( void )\r
139 {\r
140         /* Called if a call to pvPortMalloc() fails because there is insufficient\r
141         free memory available in the FreeRTOS heap.  pvPortMalloc() is called\r
142         internally by FreeRTOS API functions that create tasks, queues, software\r
143         timers, and semaphores.  The size of the FreeRTOS heap is set by the\r
144         configTOTAL_HEAP_SIZE configuration constant in FreeRTOSConfig.h. */\r
145 \r
146         /* Force an assert. */\r
147         configASSERT( ( volatile void * ) NULL );\r
148 }\r
149 /*-----------------------------------------------------------*/\r
150 \r
151 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
152 {\r
153         ( void ) pcTaskName;\r
154         ( void ) pxTask;\r
155 \r
156         /* Run time stack overflow checking is performed if\r
157         configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
158         function is called if a stack overflow is detected. */\r
159 \r
160         /* Force an assert. */\r
161         configASSERT( ( volatile void * ) NULL );\r
162 }\r
163 /*-----------------------------------------------------------*/\r
164 \r
165 void vApplicationIdleHook( void )\r
166 {\r
167 volatile size_t xFreeHeapSpace;\r
168 \r
169         /* This is just a trivial example of an idle hook.  It is called on each\r
170         cycle of the idle task.  It must *NOT* attempt to block.  In this case the\r
171         idle task just queries the amount of FreeRTOS heap that remains.  See the\r
172         memory management section on the http://www.FreeRTOS.org web site for memory\r
173         management options.  If there is a lot of heap memory free then the\r
174         configTOTAL_HEAP_SIZE value in FreeRTOSConfig.h can be reduced to free up\r
175         RAM. */\r
176         xFreeHeapSpace = xPortGetFreeHeapSize();\r
177 \r
178         /* Remove compiler warning about xFreeHeapSpace being set but never used. */\r
179         ( void ) xFreeHeapSpace;\r
180 }\r
181 /*-----------------------------------------------------------*/\r
182 \r
183 void vAssertCalled( const char * pcFile, unsigned long ulLine )\r
184 {\r
185 volatile unsigned long ul = 0;\r
186 \r
187         ( void ) pcFile;\r
188         ( void ) ulLine;\r
189 \r
190         taskENTER_CRITICAL();\r
191         {\r
192                 /* Set ul to a non-zero value using the debugger to step out of this\r
193                 function. */\r
194                 while( ul == 0 )\r
195                 {\r
196                         portNOP();\r
197                 }\r
198         }\r
199         taskEXIT_CRITICAL();\r
200 }\r
201 /*-----------------------------------------------------------*/\r
202 \r
203 void vApplicationTickHook( void )\r
204 {\r
205         #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 0\r
206         {\r
207                 /* The full demo includes a software timer demo/test that requires\r
208                 prodding periodically from the tick interrupt. */\r
209                 vTimerPeriodicISRTests();\r
210 \r
211                 /* Call the periodic queue overwrite from ISR demo. */\r
212                 vQueueOverwritePeriodicISRDemo();\r
213 \r
214                 /* Call the periodic event group from ISR demo. */\r
215                 vPeriodicEventGroupsProcessing();\r
216         }\r
217         #endif\r
218 }\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 /* The function called by the RTOS port layer after it has managed interrupt\r
222 entry. */\r
223 void vApplicationIRQHandler( void )\r
224 {\r
225 typedef void (*ISRFunction_t)( void );\r
226 ISRFunction_t pxISRFunction;\r
227 volatile uint32_t * pulAIC_IVR = ( uint32_t * ) configINTERRUPT_VECTOR_ADDRESS;\r
228 \r
229         /* Obtain the address of the interrupt handler from the AIR. */\r
230         pxISRFunction = ( ISRFunction_t ) *pulAIC_IVR;\r
231 \r
232         /* Write back to the SAMA5's interrupt controller's IVR register in case the\r
233         CPU is in protect mode.  If the interrupt controller is not in protect mode\r
234         then this write is not necessary. */\r
235         *pulAIC_IVR = ( uint32_t ) pxISRFunction;\r
236 \r
237         /* Ensure the write takes before re-enabling interrupts. */\r
238         __DSB();\r
239         __ISB();\r
240     __enable_irq();\r
241 \r
242         /* Call the installed ISR. */\r
243         pxISRFunction();\r
244 }\r
245 \r