]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/TriCore_TC1782_TriBoard_GCC/RTOSDemo/InterruptNestTest.c
Update FreeRTOS version number to V7.5.3
[freertos] / FreeRTOS / Demo / TriCore_TC1782_TriBoard_GCC / RTOSDemo / InterruptNestTest.c
1 /*\r
2     FreeRTOS V7.5.3 - Copyright (C) 2013 Real Time Engineers Ltd. \r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS provides completely free yet professionally developed,    *\r
10      *    robust, strictly quality controlled, supported, and cross          *\r
11      *    platform software that has become a de facto standard.             *\r
12      *                                                                       *\r
13      *    Help yourself get started quickly and support the FreeRTOS         *\r
14      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
15      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
16      *                                                                       *\r
17      *    Thank you!                                                         *\r
18      *                                                                       *\r
19     ***************************************************************************\r
20 \r
21     This file is part of the FreeRTOS distribution.\r
22 \r
23     FreeRTOS is free software; you can redistribute it and/or modify it under\r
24     the terms of the GNU General Public License (version 2) as published by the\r
25     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
26 \r
27     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
28     >>! a combined work that includes FreeRTOS without being obliged to provide\r
29     >>! the source code for proprietary components outside of the FreeRTOS\r
30     >>! kernel.\r
31 \r
32     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
33     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
34     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
35     link: http://www.freertos.org/a00114.html\r
36 \r
37     1 tab == 4 spaces!\r
38 \r
39     ***************************************************************************\r
40      *                                                                       *\r
41      *    Having a problem?  Start by reading the FAQ "My application does   *\r
42      *    not run, what could be wrong?"                                     *\r
43      *                                                                       *\r
44      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
49     license and Real Time Engineers Ltd. contact details.\r
50 \r
51     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
52     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
53     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
54 \r
55     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
56     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
57     licenses offer ticketed support, indemnification and middleware.\r
58 \r
59     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
60     engineered and independently SIL3 certified version for use in safety and\r
61     mission critical applications that require provable dependability.\r
62 \r
63     1 tab == 4 spaces!\r
64 */\r
65 \r
66 /*\r
67  * It is intended that the tasks and timers in this file cause interrupts to\r
68  * nest at least one level deeper than they would otherwise.\r
69  *\r
70  * A timer is configured to create an interrupt at moderately high frequency,\r
71  * as defined by the tmrtestHIGH_FREQUENCY_TIMER_TEST_HZ constant.  The\r
72  * interrupt priority is by configHIGH_FREQUENCY_TIMER_PRIORITY, which is set\r
73  * to ( configMAX_SYSCALL_INTERRUPT_PRIORITY - 1UL ), the second highest\r
74  * priority from which interrupt safe FreeRTOS API calls can be made.\r
75  *\r
76  * The timer interrupt handler counts the number of times it is called.  When\r
77  * it has determined that the number of calls means that 10ms has passed, it\r
78  * 'gives' a semaphore, and resets it call count.\r
79  *\r
80  * A high priority task is used to receive the data posted to the queue by the\r
81  * interrupt service routine.  The task should, then, leave the blocked state\r
82  * and 'take' the available semaphore every 10ms.  The frequency at which it\r
83  * actually leaves the blocked state is verified by the demo's check task (see\r
84  * the the documentation for the entire demo on the FreeRTOS.org web site),\r
85  * which then flags an error if the frequency lower than expected.\r
86  */\r
87 \r
88 /* Standard includes. */\r
89 #include <stdlib.h>\r
90 #include <string.h>\r
91 \r
92 /* Scheduler includes. */\r
93 #include "FreeRTOS.h"\r
94 #include "task.h"\r
95 #include "semphr.h"\r
96 \r
97 /* Demo application includes. */\r
98 #include "InterruptNestTest.h"\r
99 \r
100 /* TriCore specific includes. */\r
101 #include <tc1782.h>\r
102 #include <machine/intrinsics.h>\r
103 #include <machine/cint.h>\r
104 #include <machine/wdtcon.h>\r
105 \r
106 /* This constant is specific to this test application.  It allows the high\r
107 frequency (interrupt nesting test) timer to know how often to trigger, and the\r
108 check task to know how many iterations to expect at any given time. */\r
109 #define tmrtestHIGH_FREQUENCY_TIMER_TEST_HZ             ( 8931UL )\r
110 \r
111 /*\r
112  * The handler for the high priority timer interrupt.\r
113  */\r
114 static void prvPortHighFrequencyTimerHandler( int iArg ) __attribute__((longcall));\r
115 \r
116 /*\r
117  * The task that receives messages posted to a queue by the higher priority\r
118  * timer interrupt.\r
119  */\r
120 static void prvHighFrequencyTimerTask( void *pvParameters );\r
121 \r
122 /* Constants used to configure the timer and determine how often the task\r
123 should receive data. */\r
124 static const unsigned long ulCompareMatchValue = configPERIPHERAL_CLOCK_HZ / tmrtestHIGH_FREQUENCY_TIMER_TEST_HZ;\r
125 static const unsigned long ulInterruptsPer10ms = tmrtestHIGH_FREQUENCY_TIMER_TEST_HZ / 100UL;\r
126 static const unsigned long ulSemaphoreGiveRate_ms = 10UL;\r
127 \r
128 /* The semaphore used to synchronise the interrupt with the task. */\r
129 static xSemaphoreHandle xHighFrequencyTimerSemaphore = NULL;\r
130 \r
131 /* Holds the count of the number of times the task is unblocked by the timer. */\r
132 static volatile unsigned long ulHighFrequencyTaskIterations = 0UL;\r
133 \r
134 /*-----------------------------------------------------------*/\r
135 \r
136 void vSetupInterruptNestingTest( void )\r
137 {\r
138 unsigned long ulCompareMatchBits;\r
139 \r
140         /* Create the semaphore used to communicate between the high frequency\r
141         interrupt and the task. */\r
142         vSemaphoreCreateBinary( xHighFrequencyTimerSemaphore );\r
143         configASSERT( xHighFrequencyTimerSemaphore );\r
144         \r
145         /* Create the task that pends on the semaphore that is given by the\r
146         high frequency interrupt. */\r
147         xTaskCreate( prvHighFrequencyTimerTask, ( signed char * ) "HFTmr", configMINIMAL_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL );\r
148         \r
149         /* Setup the interrupt itself.  The STM module clock divider is setup when \r
150         the tick interrupt is configured - which is when the scheduler is started - \r
151         so there is no need     to do it here.\r
152 \r
153         The tick interrupt uses compare match 0, so this test uses compare match\r
154         1, which means shifting up the values by 16 before writing them to the\r
155         register. */\r
156         ulCompareMatchBits = ( 0x1fUL - __CLZ( ulCompareMatchValue ) );\r
157         ulCompareMatchBits <<= 16UL;\r
158         \r
159         /* Write the values to the relevant SMT registers, without changing other\r
160         bits. */\r
161         taskENTER_CRITICAL();\r
162         {\r
163                 STM_CMCON.reg &= ~( 0x1fUL << 16UL );\r
164                 STM_CMCON.reg |= ulCompareMatchBits;\r
165                 STM_CMP1.reg = ulCompareMatchValue;\r
166 \r
167                 if( 0 != _install_int_handler( configHIGH_FREQUENCY_TIMER_PRIORITY, prvPortHighFrequencyTimerHandler, 0 ) )\r
168                 {\r
169                         /* Set-up the interrupt. */\r
170                         STM_SRC1.reg = ( configHIGH_FREQUENCY_TIMER_PRIORITY | 0x00005000UL );\r
171         \r
172                         /* Enable the Interrupt. */\r
173                         STM_ISRR.reg &= ~( 0x03UL << 2UL );\r
174                         STM_ISRR.reg |= ( 0x1UL << 2UL );\r
175                         STM_ICR.reg &= ~( 0x07UL << 4UL );\r
176                         STM_ICR.reg |= ( 0x5UL << 4UL );\r
177                 }\r
178                 else\r
179                 {\r
180                         /* Failed to install the interrupt. */\r
181                         configASSERT( ( ( volatile void * ) NULL ) );\r
182                 }\r
183         }\r
184         taskEXIT_CRITICAL();\r
185 }\r
186 /*-----------------------------------------------------------*/\r
187 \r
188 unsigned long ulInterruptNestingTestGetIterationCount( unsigned long *pulExpectedIncFrequency_ms )\r
189 {\r
190 unsigned long ulReturn;\r
191 \r
192         *pulExpectedIncFrequency_ms = ulSemaphoreGiveRate_ms;\r
193         portENTER_CRITICAL();\r
194         {\r
195                 ulReturn = ulHighFrequencyTaskIterations;\r
196                 ulHighFrequencyTaskIterations = 0UL;\r
197         }\r
198 \r
199         return ulReturn;\r
200 }\r
201 /*-----------------------------------------------------------*/\r
202 \r
203 static void prvHighFrequencyTimerTask( void *pvParameters )\r
204 {\r
205         /* Just to remove compiler warnings about the unused parameter. */\r
206         ( void ) pvParameters;\r
207 \r
208         for( ;; )\r
209         {\r
210                 /* Wait for the next trigger from the high frequency timer interrupt. */\r
211                 xSemaphoreTake( xHighFrequencyTimerSemaphore, portMAX_DELAY );\r
212                 \r
213                 /* Just count how many times the task has been unblocked before\r
214                 returning to wait for the semaphore again. */\r
215                 ulHighFrequencyTaskIterations++;\r
216         }\r
217 }\r
218 /*-----------------------------------------------------------*/\r
219 \r
220 static void prvPortHighFrequencyTimerHandler( int iArg )\r
221 {\r
222 static volatile unsigned long ulExecutionCounter = 0UL;\r
223 unsigned long ulHigherPriorityTaskWoken = pdFALSE;\r
224 \r
225         /* Just to avoid compiler warnings about unused parameters. */\r
226         ( void ) iArg;\r
227 \r
228         /* Clear the interrupt source. */\r
229         STM_ISRR.reg = 1UL << 2UL;\r
230 \r
231         /* Reload the Compare Match register for X ticks into the future.*/\r
232         STM_CMP1.reg += ulCompareMatchValue;\r
233 \r
234         ulExecutionCounter++;\r
235         \r
236         if( ulExecutionCounter >= ulInterruptsPer10ms )\r
237         {\r
238                 ulExecutionCounter = xSemaphoreGiveFromISR( xHighFrequencyTimerSemaphore, &ulHigherPriorityTaskWoken );\r
239                 \r
240                 /* If the semaphore was given ulExeuctionCounter will now be pdTRUE. */\r
241                 configASSERT( ulExecutionCounter == pdTRUE );\r
242                 \r
243                 /* Start counting again. */\r
244                 ulExecutionCounter = 0UL;\r
245         }\r
246         \r
247         /* Context switch on exit if necessary. */\r
248         portYIELD_FROM_ISR( ulHigherPriorityTaskWoken );\r
249 }\r