]> git.sur5r.net Git - freertos/blob - Source/portable/IAR/AVR32_UC3/port.c
Add AVR32 port and demo files.
[freertos] / Source / portable / IAR / AVR32_UC3 / port.c
1 /*This file has been prepared for Doxygen automatic documentation generation.*/\r
2 /*! \file *********************************************************************\r
3  *\r
4  * \brief FreeRTOS port source for AVR32 UC3.\r
5  *\r
6  * - Compiler:           IAR EWAVR32\r
7  * - Supported devices:  All AVR32 devices can be used.\r
8  * - AppNote:\r
9  *\r
10  * \author               Atmel Corporation: http://www.atmel.com \n\r
11  *                       Support email: avr32@atmel.com\r
12  *\r
13  *****************************************************************************/\r
14 \r
15 /*\r
16         FreeRTOS.org V4.2.0 - Copyright (C) 2003-2007 Richard Barry.\r
17 \r
18         This file is part of the FreeRTOS.org distribution.\r
19 \r
20         FreeRTOS.org is free software; you can redistribute it and/or modify\r
21         it under the terms of the GNU General Public License as published by\r
22         the Free Software Foundation; either version 2 of the License, or\r
23         (at your option) any later version.\r
24 \r
25         FreeRTOS.org is distributed in the hope that it will be useful,\r
26         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
27         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
28         GNU General Public License for more details.\r
29 \r
30         You should have received a copy of the GNU General Public License\r
31         along with FreeRTOS.org; if not, write to the Free Software\r
32         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
33 \r
34         A special exception to the GPL can be applied should you wish to distribute\r
35         a combined work that includes FreeRTOS.org, without being obliged to provide\r
36         the source code for any proprietary components.  See the licensing section\r
37         of http://www.FreeRTOS.org for full details of how and when the exception\r
38         can be applied.\r
39 \r
40         ***************************************************************************\r
41         See http://www.FreeRTOS.org for documentation, latest information, license\r
42         and contact details.  Please ensure to read the configuration and relevant\r
43         port sections of the online documentation.\r
44         ***************************************************************************\r
45 */\r
46 \r
47 \r
48 /* Scheduler includes. */\r
49 #include "FreeRTOS.h"\r
50 \r
51 /* Get rid of inline in task.h. */\r
52 #include "task.h"\r
53 \r
54 /* AVR32 UC3 includes. */\r
55 #include <avr32/iouc3a0512.h>\r
56 #include <intrinsics.h>\r
57 #include "gpio.h"\r
58 \r
59 #if configDBG\r
60         #include "usart.h"\r
61 #endif\r
62 \r
63 #if( configTICK_USE_TC==1 )\r
64         #include "tc.h"\r
65 #endif\r
66 \r
67 \r
68 /* Constants required to setup the task context. */\r
69 #define portINITIAL_SR            ( ( portSTACK_TYPE ) 0x00400000 ) /* AVR32 : [M2:M0]=001 I1M=0 I0M=0, GM=0 */\r
70 #define portINSTRUCTION_SIZE      ( ( portSTACK_TYPE ) 0 )\r
71 \r
72 /* Each task maintains its own critical nesting variable. */\r
73 #define portNO_CRITICAL_NESTING   ( ( unsigned portLONG ) 0 )\r
74 volatile unsigned portLONG ulCriticalNesting = 9999UL;\r
75 \r
76 #if( configTICK_USE_TC==0 )\r
77         static void prvScheduleNextTick( void );\r
78 #endif\r
79 /*-----------------------------------------------------------*/\r
80 \r
81 /*\r
82  * Low-level initialization routine called during startup, before the main\r
83  * function.\r
84  */\r
85 int __low_level_init(void)\r
86 {\r
87         #if configHEAP_INIT\r
88                 #pragma segment = "HEAP"\r
89                 portBASE_TYPE *pxMem;\r
90         #endif\r
91 \r
92         /* Enable exceptions. */\r
93         ENABLE_ALL_EXCEPTIONS();\r
94 \r
95         /* Initialize interrupt handling. */\r
96         INTC_init_interrupts();\r
97 \r
98         #if configHEAP_INIT\r
99         {\r
100                 /* Initialize the heap used by malloc. */\r
101                 for( pxMem = __segment_begin( "HEAP" ); pxMem < ( portBASE_TYPE * ) __segment_end( "HEAP" ); )\r
102                 {\r
103                         *pxMem++ = 0xA5A5A5A5;\r
104                 }\r
105         }\r
106         #endif\r
107 \r
108         /* Code section present if and only if the debug trace is activated. */\r
109         #if configDBG\r
110         {\r
111                 static const usart_options_t usart_opt =\r
112                 {\r
113                   .baudrate = configDBG_USART_BAUDRATE,\r
114                   .charlength = 8,\r
115                   .paritytype = USART_NO_PARITY,\r
116                   .stopbits = USART_1_STOPBIT,\r
117                   .channelmode = USART_MODE_NORMAL\r
118                 };\r
119 \r
120                 /* Initialize the USART used for the debug trace with the configured parameters. */\r
121                 extern volatile avr32_usart_t *volatile stdio_usart_base;\r
122                 stdio_usart_base = configDBG_USART;\r
123                 gpio_enable_module_pin(configDBG_USART_RX_PIN, configDBG_USART_RX_FUNCTION);\r
124                 gpio_enable_module_pin(configDBG_USART_TX_PIN, configDBG_USART_TX_FUNCTION);\r
125                 usart_init_rs232(configDBG_USART, &usart_opt, configCPU_CLOCK_HZ);\r
126         }\r
127         #endif\r
128 \r
129         /* Request initialization of data segments. */\r
130         return 1;\r
131 }\r
132 /*-----------------------------------------------------------*/\r
133 \r
134 /* Added as there is no such function in FreeRTOS. */\r
135 void *pvPortRealloc( void *pv, size_t xWantedSize )\r
136 {\r
137 void *pvReturn;\r
138 \r
139         vTaskSuspendAll();\r
140         {\r
141                 pvReturn = realloc( pv, xWantedSize );\r
142         }\r
143         xTaskResumeAll();\r
144 \r
145         return pvReturn;\r
146 }\r
147 /*-----------------------------------------------------------*/\r
148 \r
149 /* The cooperative scheduler requires a normal IRQ service routine to\r
150 simply increment the system tick. */\r
151 /* The preemptive scheduler is defined as "naked" as the full context is saved\r
152 on entry as part of the context switch. */\r
153 #pragma shadow_registers = full   // Naked.\r
154 static void vTick( void )\r
155 {\r
156         /* Save the context of the interrupted task. */\r
157         portSAVE_CONTEXT_OS_INT();\r
158 \r
159         /* Schedule the COUNT&COMPARE match interrupt in (configCPU_CLOCK_HZ/configTICK_RATE_HZ)\r
160         clock cycles from now. */\r
161         #if( configTICK_USE_TC==1 )\r
162                 /* Clear the interrupt flag. */\r
163                 AVR32_TC.channel[configTICK_TC_CHANNEL].sr;\r
164         #else\r
165                 prvScheduleNextTick();\r
166         #endif\r
167         \r
168         /* Because FreeRTOS is not supposed to run with nested interrupts, put all OS\r
169         calls in a critical section . */\r
170         portENTER_CRITICAL();\r
171                 vTaskIncrementTick();\r
172         portEXIT_CRITICAL();\r
173 \r
174         /* Restore the context of the "elected task". */\r
175         portRESTORE_CONTEXT_OS_INT();\r
176 }\r
177 /*-----------------------------------------------------------*/\r
178 \r
179 #pragma shadow_registers = full   // Naked.\r
180 void SCALLYield( void )\r
181 {\r
182         /* Save the context of the interrupted task. */\r
183         portSAVE_CONTEXT_SCALL();\r
184         vTaskSwitchContext();\r
185         portRESTORE_CONTEXT_SCALL();\r
186 }\r
187 /*-----------------------------------------------------------*/\r
188 \r
189 /* The code generated by the GCC compiler uses the stack in different ways at\r
190 different optimisation levels.  The interrupt flags can therefore not always\r
191 be saved to the stack.  Instead the critical section nesting level is stored\r
192 in a variable, which is then saved as part of the stack context. */\r
193 void vPortEnterCritical( void )\r
194 {\r
195         /* Disable interrupts */\r
196         portDISABLE_INTERRUPTS();\r
197 \r
198         /* Now interrupts are disabled ulCriticalNesting can be accessed\r
199          directly.  Increment ulCriticalNesting to keep a count of how many times\r
200          portENTER_CRITICAL() has been called. */\r
201         ulCriticalNesting++;\r
202 }\r
203 /*-----------------------------------------------------------*/\r
204 \r
205 void vPortExitCritical( void )\r
206 {\r
207         if(ulCriticalNesting > portNO_CRITICAL_NESTING)\r
208         {\r
209                 ulCriticalNesting--;\r
210                 if( ulCriticalNesting == portNO_CRITICAL_NESTING )\r
211                 {\r
212                         /* Enable all interrupt/exception. */\r
213                         portENABLE_INTERRUPTS();\r
214                 }\r
215         }\r
216 }\r
217 /*-----------------------------------------------------------*/\r
218 \r
219 /* Setup the timer to generate the tick interrupts. */\r
220 static void prvSetupTimerInterrupt( void );\r
221 /*-----------------------------------------------------------*/\r
222 \r
223 /*\r
224  * Initialise the stack of a task to look exactly as if a call to\r
225  * portSAVE_CONTEXT had been called.\r
226  *\r
227  * See header file for description.\r
228  */\r
229 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
230 {\r
231         /* Setup the initial stack of the task.  The stack is set exactly as\r
232         expected by the portRESTORE_CONTEXT() macro. */\r
233 \r
234         /* When the task starts, it will expect to find the function parameter in R12. */\r
235         pxTopOfStack--;\r
236         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x08080808;                                        /* R8 */\r
237         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x09090909;                                        /* R9 */\r
238         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x0A0A0A0A;                                        /* R10 */\r
239         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x0B0B0B0B;                                        /* R11 */\r
240         *pxTopOfStack-- = ( portSTACK_TYPE ) pvParameters;                                      /* R12 */\r
241         *pxTopOfStack-- = ( portSTACK_TYPE ) 0xDEADBEEF;                                        /* R14/LR */\r
242         *pxTopOfStack-- = ( portSTACK_TYPE ) pxCode + portINSTRUCTION_SIZE; /* R15/PC */\r
243         *pxTopOfStack-- = ( portSTACK_TYPE ) portINITIAL_SR;                            /* SR */\r
244         *pxTopOfStack-- = ( portSTACK_TYPE ) 0xFF0000FF;                                        /* R0 */\r
245         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x01010101;                                        /* R1 */\r
246         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x02020202;                                        /* R2 */\r
247         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x03030303;                                        /* R3 */\r
248         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x04040404;                                        /* R4 */\r
249         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x05050505;                                        /* R5 */\r
250         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x06060606;                                        /* R6 */\r
251         *pxTopOfStack-- = ( portSTACK_TYPE ) 0x07070707;                                        /* R7 */\r
252         *pxTopOfStack = ( portSTACK_TYPE ) portNO_CRITICAL_NESTING;                     /* ulCriticalNesting */\r
253 \r
254         return pxTopOfStack;\r
255 }\r
256 /*-----------------------------------------------------------*/\r
257 \r
258 portBASE_TYPE xPortStartScheduler( void )\r
259 {\r
260         /* Start the timer that generates the tick ISR.  Interrupts are disabled\r
261         here already. */\r
262         prvSetupTimerInterrupt();\r
263 \r
264         /* Start the first task. */\r
265         portRESTORE_CONTEXT();\r
266 \r
267         /* Should not get here! */\r
268         return 0;\r
269 }\r
270 /*-----------------------------------------------------------*/\r
271 \r
272 void vPortEndScheduler( void )\r
273 {\r
274         /* It is unlikely that the AVR32 port will require this function as there\r
275         is nothing to return to.  */\r
276 }\r
277 /*-----------------------------------------------------------*/\r
278 \r
279 /* Schedule the COUNT&COMPARE match interrupt in (configCPU_CLOCK_HZ/configTICK_RATE_HZ)\r
280 clock cycles from now. */\r
281 #if( configTICK_USE_TC==0 )\r
282         static void prvScheduleNextTick(void)\r
283         {\r
284                 unsigned long lCountVal, lCompareVal;\r
285 \r
286                 lCountVal = Get_system_register(AVR32_COUNT);\r
287                 lCompareVal = lCountVal + (configCPU_CLOCK_HZ/configTICK_RATE_HZ);\r
288                 Set_system_register(AVR32_COMPARE, lCompareVal);\r
289         }\r
290 #endif\r
291 /*-----------------------------------------------------------*/\r
292 \r
293 /* Setup the timer to generate the tick interrupts. */\r
294 static void prvSetupTimerInterrupt(void)\r
295 {\r
296         #if( configTICK_USE_TC==1 )\r
297 \r
298                 volatile avr32_tc_t *tc = &AVR32_TC;\r
299 \r
300                 // Options for waveform genration.\r
301                 tc_waveform_opt_t waveform_opt =\r
302                 {\r
303                 .channel  = configTICK_TC_CHANNEL,             /* Channel selection. */\r
304 \r
305                 .bswtrg   = TC_EVT_EFFECT_NOOP,                /* Software trigger effect on TIOB. */\r
306                 .beevt    = TC_EVT_EFFECT_NOOP,                /* External event effect on TIOB. */\r
307                 .bcpc     = TC_EVT_EFFECT_NOOP,                /* RC compare effect on TIOB. */\r
308                 .bcpb     = TC_EVT_EFFECT_NOOP,                /* RB compare effect on TIOB. */\r
309 \r
310                 .aswtrg   = TC_EVT_EFFECT_NOOP,                /* Software trigger effect on TIOA. */\r
311                 .aeevt    = TC_EVT_EFFECT_NOOP,                /* External event effect on TIOA. */\r
312                 .acpc     = TC_EVT_EFFECT_NOOP,                /* RC compare effect on TIOA: toggle. */\r
313                 .acpa     = TC_EVT_EFFECT_NOOP,                /* RA compare effect on TIOA: toggle (other possibilities are none, set and clear). */\r
314 \r
315                 .wavsel   = TC_WAVEFORM_SEL_UP_MODE_RC_TRIGGER,/* Waveform selection: Up mode without automatic trigger on RC compare. */\r
316                 .enetrg   = FALSE,                             /* External event trigger enable. */\r
317                 .eevt     = 0,                                 /* External event selection. */\r
318                 .eevtedg  = TC_SEL_NO_EDGE,                    /* External event edge selection. */\r
319                 .cpcdis   = FALSE,                             /* Counter disable when RC compare. */\r
320                 .cpcstop  = FALSE,                             /* Counter clock stopped with RC compare. */\r
321 \r
322                 .burst    = FALSE,                             /* Burst signal selection. */\r
323                 .clki     = FALSE,                             /* Clock inversion. */\r
324                 .tcclks   = TC_CLOCK_SOURCE_TC2                /* Internal source clock 2. */\r
325                 };\r
326 \r
327                 tc_interrupt_t tc_interrupt =\r
328                 {\r
329                         .etrgs=0,\r
330                         .ldrbs=0,\r
331                         .ldras=0,\r
332                         .cpcs =1,\r
333                         .cpbs =0,\r
334                         .cpas =0,\r
335                         .lovrs=0,\r
336                         .covfs=0,\r
337                 };\r
338 \r
339         #endif\r
340 \r
341         /* Disable all interrupt/exception. */\r
342         portDISABLE_INTERRUPTS();\r
343 \r
344         /* Register the compare interrupt handler to the interrupt controller and\r
345         enable the compare interrupt. */\r
346 \r
347         #if( configTICK_USE_TC==1 )\r
348         {\r
349                 INTC_register_interrupt((__int_handler)&vTick, configTICK_TC_IRQ, INT0);\r
350 \r
351                 /* Initialize the timer/counter. */\r
352                 tc_init_waveform(tc, &waveform_opt);\r
353 \r
354                 /* Set the compare triggers.\r
355                 Remember TC counter is 16-bits, so counting second is not possible!\r
356                 That's why we configure it to count ms. */\r
357                 tc_write_rc( tc, configTICK_TC_CHANNEL, ( configPBA_CLOCK_HZ / 4) / 1000 );\r
358 \r
359                 tc_configure_interrupts( tc, configTICK_TC_CHANNEL, &tc_interrupt );\r
360 \r
361                 /* Start the timer/counter. */\r
362                 tc_start(tc, configTICK_TC_CHANNEL);\r
363         }\r
364         #else\r
365         {\r
366                 INTC_register_interrupt((__int_handler)&vTick, AVR32_CORE_COMPARE_IRQ, INT0);\r
367                 prvScheduleNextTick();\r
368         }\r
369         #endif\r
370 }\r