]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/ATMega323/port.c
00903f7c3b80a31d23e1b40c97a3b1418c49285e
[freertos] / FreeRTOS / Source / portable / GCC / ATMega323 / port.c
1 /*\r
2     FreeRTOS V7.5.2 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
5 \r
6     ***************************************************************************\r
7      *                                                                       *\r
8      *    FreeRTOS provides completely free yet professionally developed,    *\r
9      *    robust, strictly quality controlled, supported, and cross          *\r
10      *    platform software that has become a de facto standard.             *\r
11      *                                                                       *\r
12      *    Help yourself get started quickly and support the FreeRTOS         *\r
13      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
14      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
15      *                                                                       *\r
16      *    Thank you!                                                         *\r
17      *                                                                       *\r
18     ***************************************************************************\r
19 \r
20     This file is part of the FreeRTOS distribution.\r
21 \r
22     FreeRTOS is free software; you can redistribute it and/or modify it under\r
23     the terms of the GNU General Public License (version 2) as published by the\r
24     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
25 \r
26     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
27     >>! a combined work that includes FreeRTOS without being obliged to provide\r
28     >>! the source code for proprietary components outside of the FreeRTOS\r
29     >>! kernel.\r
30 \r
31     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
32     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
33     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
34     link: http://www.freertos.org/a00114.html\r
35 \r
36     1 tab == 4 spaces!\r
37 \r
38     ***************************************************************************\r
39      *                                                                       *\r
40      *    Having a problem?  Start by reading the FAQ "My application does   *\r
41      *    not run, what could be wrong?"                                     *\r
42      *                                                                       *\r
43      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
44      *                                                                       *\r
45     ***************************************************************************\r
46 \r
47     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
48     license and Real Time Engineers Ltd. contact details.\r
49 \r
50     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
51     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
52     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
53 \r
54     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
55     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
56     licenses offer ticketed support, indemnification and middleware.\r
57 \r
58     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
59     engineered and independently SIL3 certified version for use in safety and\r
60     mission critical applications that require provable dependability.\r
61 \r
62     1 tab == 4 spaces!\r
63 */\r
64 \r
65 /* \r
66 \r
67 Changes from V2.6.0\r
68 \r
69         + AVR port - Replaced the inb() and outb() functions with direct memory\r
70           access.  This allows the port to be built with the 20050414 build of\r
71           WinAVR.\r
72 */\r
73 \r
74 #include <stdlib.h>\r
75 #include <avr/interrupt.h>\r
76 \r
77 #include "FreeRTOS.h"\r
78 #include "task.h"\r
79 \r
80 /*-----------------------------------------------------------\r
81  * Implementation of functions defined in portable.h for the AVR port.\r
82  *----------------------------------------------------------*/\r
83 \r
84 /* Start tasks with interrupts enables. */\r
85 #define portFLAGS_INT_ENABLED                                   ( ( portSTACK_TYPE ) 0x80 )\r
86 \r
87 /* Hardware constants for timer 1. */\r
88 #define portCLEAR_COUNTER_ON_MATCH                              ( ( unsigned char ) 0x08 )\r
89 #define portPRESCALE_64                                                 ( ( unsigned char ) 0x03 )\r
90 #define portCLOCK_PRESCALER                                             ( ( unsigned long ) 64 )\r
91 #define portCOMPARE_MATCH_A_INTERRUPT_ENABLE    ( ( unsigned char ) 0x10 )\r
92 \r
93 /*-----------------------------------------------------------*/\r
94 \r
95 /* We require the address of the pxCurrentTCB variable, but don't want to know\r
96 any details of its type. */\r
97 typedef void tskTCB;\r
98 extern volatile tskTCB * volatile pxCurrentTCB;\r
99 \r
100 /*-----------------------------------------------------------*/\r
101 \r
102 /* \r
103  * Macro to save all the general purpose registers, the save the stack pointer\r
104  * into the TCB.  \r
105  * \r
106  * The first thing we do is save the flags then disable interrupts.  This is to \r
107  * guard our stack against having a context switch interrupt after we have already \r
108  * pushed the registers onto the stack - causing the 32 registers to be on the \r
109  * stack twice. \r
110  * \r
111  * r1 is set to zero as the compiler expects it to be thus, however some\r
112  * of the math routines make use of R1. \r
113  * \r
114  * The interrupts will have been disabled during the call to portSAVE_CONTEXT()\r
115  * so we need not worry about reading/writing to the stack pointer. \r
116  */\r
117 \r
118 #define portSAVE_CONTEXT()                                                                      \\r
119         asm volatile (  "push   r0                                              \n\t"   \\r
120                                         "in             r0, __SREG__                    \n\t"   \\r
121                                         "cli                                                    \n\t"   \\r
122                                         "push   r0                                              \n\t"   \\r
123                                         "push   r1                                              \n\t"   \\r
124                                         "clr    r1                                              \n\t"   \\r
125                                         "push   r2                                              \n\t"   \\r
126                                         "push   r3                                              \n\t"   \\r
127                                         "push   r4                                              \n\t"   \\r
128                                         "push   r5                                              \n\t"   \\r
129                                         "push   r6                                              \n\t"   \\r
130                                         "push   r7                                              \n\t"   \\r
131                                         "push   r8                                              \n\t"   \\r
132                                         "push   r9                                              \n\t"   \\r
133                                         "push   r10                                             \n\t"   \\r
134                                         "push   r11                                             \n\t"   \\r
135                                         "push   r12                                             \n\t"   \\r
136                                         "push   r13                                             \n\t"   \\r
137                                         "push   r14                                             \n\t"   \\r
138                                         "push   r15                                             \n\t"   \\r
139                                         "push   r16                                             \n\t"   \\r
140                                         "push   r17                                             \n\t"   \\r
141                                         "push   r18                                             \n\t"   \\r
142                                         "push   r19                                             \n\t"   \\r
143                                         "push   r20                                             \n\t"   \\r
144                                         "push   r21                                             \n\t"   \\r
145                                         "push   r22                                             \n\t"   \\r
146                                         "push   r23                                             \n\t"   \\r
147                                         "push   r24                                             \n\t"   \\r
148                                         "push   r25                                             \n\t"   \\r
149                                         "push   r26                                             \n\t"   \\r
150                                         "push   r27                                             \n\t"   \\r
151                                         "push   r28                                             \n\t"   \\r
152                                         "push   r29                                             \n\t"   \\r
153                                         "push   r30                                             \n\t"   \\r
154                                         "push   r31                                             \n\t"   \\r
155                                         "lds    r26, pxCurrentTCB               \n\t"   \\r
156                                         "lds    r27, pxCurrentTCB + 1   \n\t"   \\r
157                                         "in             r0, 0x3d                                \n\t"   \\r
158                                         "st             x+, r0                                  \n\t"   \\r
159                                         "in             r0, 0x3e                                \n\t"   \\r
160                                         "st             x+, r0                                  \n\t"   \\r
161                                 );\r
162 \r
163 /* \r
164  * Opposite to portSAVE_CONTEXT().  Interrupts will have been disabled during\r
165  * the context save so we can write to the stack pointer. \r
166  */\r
167 \r
168 #define portRESTORE_CONTEXT()                                                           \\r
169         asm volatile (  "lds    r26, pxCurrentTCB               \n\t"   \\r
170                                         "lds    r27, pxCurrentTCB + 1   \n\t"   \\r
171                                         "ld             r28, x+                                 \n\t"   \\r
172                                         "out    __SP_L__, r28                   \n\t"   \\r
173                                         "ld             r29, x+                                 \n\t"   \\r
174                                         "out    __SP_H__, r29                   \n\t"   \\r
175                                         "pop    r31                                             \n\t"   \\r
176                                         "pop    r30                                             \n\t"   \\r
177                                         "pop    r29                                             \n\t"   \\r
178                                         "pop    r28                                             \n\t"   \\r
179                                         "pop    r27                                             \n\t"   \\r
180                                         "pop    r26                                             \n\t"   \\r
181                                         "pop    r25                                             \n\t"   \\r
182                                         "pop    r24                                             \n\t"   \\r
183                                         "pop    r23                                             \n\t"   \\r
184                                         "pop    r22                                             \n\t"   \\r
185                                         "pop    r21                                             \n\t"   \\r
186                                         "pop    r20                                             \n\t"   \\r
187                                         "pop    r19                                             \n\t"   \\r
188                                         "pop    r18                                             \n\t"   \\r
189                                         "pop    r17                                             \n\t"   \\r
190                                         "pop    r16                                             \n\t"   \\r
191                                         "pop    r15                                             \n\t"   \\r
192                                         "pop    r14                                             \n\t"   \\r
193                                         "pop    r13                                             \n\t"   \\r
194                                         "pop    r12                                             \n\t"   \\r
195                                         "pop    r11                                             \n\t"   \\r
196                                         "pop    r10                                             \n\t"   \\r
197                                         "pop    r9                                              \n\t"   \\r
198                                         "pop    r8                                              \n\t"   \\r
199                                         "pop    r7                                              \n\t"   \\r
200                                         "pop    r6                                              \n\t"   \\r
201                                         "pop    r5                                              \n\t"   \\r
202                                         "pop    r4                                              \n\t"   \\r
203                                         "pop    r3                                              \n\t"   \\r
204                                         "pop    r2                                              \n\t"   \\r
205                                         "pop    r1                                              \n\t"   \\r
206                                         "pop    r0                                              \n\t"   \\r
207                                         "out    __SREG__, r0                    \n\t"   \\r
208                                         "pop    r0                                              \n\t"   \\r
209                                 );\r
210 \r
211 /*-----------------------------------------------------------*/\r
212 \r
213 /*\r
214  * Perform hardware setup to enable ticks from timer 1, compare match A.\r
215  */\r
216 static void prvSetupTimerInterrupt( void );\r
217 /*-----------------------------------------------------------*/\r
218 \r
219 /* \r
220  * See header file for description. \r
221  */\r
222 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
223 {\r
224 unsigned short usAddress;\r
225 \r
226         /* Place a few bytes of known values on the bottom of the stack. \r
227         This is just useful for debugging. */\r
228 \r
229         *pxTopOfStack = 0x11;\r
230         pxTopOfStack--;\r
231         *pxTopOfStack = 0x22;\r
232         pxTopOfStack--;\r
233         *pxTopOfStack = 0x33;\r
234         pxTopOfStack--;\r
235 \r
236         /* Simulate how the stack would look after a call to vPortYield() generated by \r
237         the compiler. */\r
238 \r
239         /*lint -e950 -e611 -e923 Lint doesn't like this much - but nothing I can do about it. */\r
240 \r
241         /* The start of the task code will be popped off the stack last, so place\r
242         it on first. */\r
243         usAddress = ( unsigned short ) pxCode;\r
244         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
245         pxTopOfStack--;\r
246 \r
247         usAddress >>= 8;\r
248         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
249         pxTopOfStack--;\r
250 \r
251         /* Next simulate the stack as if after a call to portSAVE_CONTEXT().  \r
252         portSAVE_CONTEXT places the flags on the stack immediately after r0\r
253         to ensure the interrupts get disabled as soon as possible, and so ensuring\r
254         the stack use is minimal should a context switch interrupt occur. */\r
255         *pxTopOfStack = ( portSTACK_TYPE ) 0x00;        /* R0 */\r
256         pxTopOfStack--;\r
257         *pxTopOfStack = portFLAGS_INT_ENABLED;\r
258         pxTopOfStack--;\r
259 \r
260 \r
261         /* Now the remaining registers.   The compiler expects R1 to be 0. */\r
262         *pxTopOfStack = ( portSTACK_TYPE ) 0x00;        /* R1 */\r
263         pxTopOfStack--;\r
264         *pxTopOfStack = ( portSTACK_TYPE ) 0x02;        /* R2 */\r
265         pxTopOfStack--;\r
266         *pxTopOfStack = ( portSTACK_TYPE ) 0x03;        /* R3 */\r
267         pxTopOfStack--;\r
268         *pxTopOfStack = ( portSTACK_TYPE ) 0x04;        /* R4 */\r
269         pxTopOfStack--;\r
270         *pxTopOfStack = ( portSTACK_TYPE ) 0x05;        /* R5 */\r
271         pxTopOfStack--;\r
272         *pxTopOfStack = ( portSTACK_TYPE ) 0x06;        /* R6 */\r
273         pxTopOfStack--;\r
274         *pxTopOfStack = ( portSTACK_TYPE ) 0x07;        /* R7 */\r
275         pxTopOfStack--;\r
276         *pxTopOfStack = ( portSTACK_TYPE ) 0x08;        /* R8 */\r
277         pxTopOfStack--;\r
278         *pxTopOfStack = ( portSTACK_TYPE ) 0x09;        /* R9 */\r
279         pxTopOfStack--;\r
280         *pxTopOfStack = ( portSTACK_TYPE ) 0x10;        /* R10 */\r
281         pxTopOfStack--;\r
282         *pxTopOfStack = ( portSTACK_TYPE ) 0x11;        /* R11 */\r
283         pxTopOfStack--;\r
284         *pxTopOfStack = ( portSTACK_TYPE ) 0x12;        /* R12 */\r
285         pxTopOfStack--;\r
286         *pxTopOfStack = ( portSTACK_TYPE ) 0x13;        /* R13 */\r
287         pxTopOfStack--;\r
288         *pxTopOfStack = ( portSTACK_TYPE ) 0x14;        /* R14 */\r
289         pxTopOfStack--;\r
290         *pxTopOfStack = ( portSTACK_TYPE ) 0x15;        /* R15 */\r
291         pxTopOfStack--;\r
292         *pxTopOfStack = ( portSTACK_TYPE ) 0x16;        /* R16 */\r
293         pxTopOfStack--;\r
294         *pxTopOfStack = ( portSTACK_TYPE ) 0x17;        /* R17 */\r
295         pxTopOfStack--;\r
296         *pxTopOfStack = ( portSTACK_TYPE ) 0x18;        /* R18 */\r
297         pxTopOfStack--;\r
298         *pxTopOfStack = ( portSTACK_TYPE ) 0x19;        /* R19 */\r
299         pxTopOfStack--;\r
300         *pxTopOfStack = ( portSTACK_TYPE ) 0x20;        /* R20 */\r
301         pxTopOfStack--;\r
302         *pxTopOfStack = ( portSTACK_TYPE ) 0x21;        /* R21 */\r
303         pxTopOfStack--;\r
304         *pxTopOfStack = ( portSTACK_TYPE ) 0x22;        /* R22 */\r
305         pxTopOfStack--;\r
306         *pxTopOfStack = ( portSTACK_TYPE ) 0x23;        /* R23 */\r
307         pxTopOfStack--;\r
308 \r
309         /* Place the parameter on the stack in the expected location. */\r
310         usAddress = ( unsigned short ) pvParameters;\r
311         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
312         pxTopOfStack--;\r
313 \r
314         usAddress >>= 8;\r
315         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
316         pxTopOfStack--;\r
317 \r
318         *pxTopOfStack = ( portSTACK_TYPE ) 0x26;        /* R26 X */\r
319         pxTopOfStack--;\r
320         *pxTopOfStack = ( portSTACK_TYPE ) 0x27;        /* R27 */\r
321         pxTopOfStack--;\r
322         *pxTopOfStack = ( portSTACK_TYPE ) 0x28;        /* R28 Y */\r
323         pxTopOfStack--;\r
324         *pxTopOfStack = ( portSTACK_TYPE ) 0x29;        /* R29 */\r
325         pxTopOfStack--;\r
326         *pxTopOfStack = ( portSTACK_TYPE ) 0x30;        /* R30 Z */\r
327         pxTopOfStack--;\r
328         *pxTopOfStack = ( portSTACK_TYPE ) 0x031;       /* R31 */\r
329         pxTopOfStack--;\r
330 \r
331         /*lint +e950 +e611 +e923 */\r
332 \r
333         return pxTopOfStack;\r
334 }\r
335 /*-----------------------------------------------------------*/\r
336 \r
337 portBASE_TYPE xPortStartScheduler( void )\r
338 {\r
339         /* Setup the hardware to generate the tick. */\r
340         prvSetupTimerInterrupt();\r
341 \r
342         /* Restore the context of the first task that is going to run. */\r
343         portRESTORE_CONTEXT();\r
344 \r
345         /* Simulate a function call end as generated by the compiler.  We will now\r
346         jump to the start of the task the context of which we have just restored. */\r
347         asm volatile ( "ret" );\r
348 \r
349         /* Should not get here. */\r
350         return pdTRUE;\r
351 }\r
352 /*-----------------------------------------------------------*/\r
353 \r
354 void vPortEndScheduler( void )\r
355 {\r
356         /* It is unlikely that the AVR port will get stopped.  If required simply\r
357         disable the tick interrupt here. */\r
358 }\r
359 /*-----------------------------------------------------------*/\r
360 \r
361 /*\r
362  * Manual context switch.  The first thing we do is save the registers so we\r
363  * can use a naked attribute.\r
364  */\r
365 void vPortYield( void ) __attribute__ ( ( naked ) );\r
366 void vPortYield( void )\r
367 {\r
368         portSAVE_CONTEXT();\r
369         vTaskSwitchContext();\r
370         portRESTORE_CONTEXT();\r
371 \r
372         asm volatile ( "ret" );\r
373 }\r
374 /*-----------------------------------------------------------*/\r
375 \r
376 /*\r
377  * Context switch function used by the tick.  This must be identical to \r
378  * vPortYield() from the call to vTaskSwitchContext() onwards.  The only\r
379  * difference from vPortYield() is the tick count is incremented as the\r
380  * call comes from the tick ISR.\r
381  */\r
382 void vPortYieldFromTick( void ) __attribute__ ( ( naked ) );\r
383 void vPortYieldFromTick( void )\r
384 {\r
385         portSAVE_CONTEXT();\r
386         if( xTaskIncrementTick() != pdFALSE )\r
387         {\r
388                 vTaskSwitchContext();\r
389         }\r
390         portRESTORE_CONTEXT();\r
391 \r
392         asm volatile ( "ret" );\r
393 }\r
394 /*-----------------------------------------------------------*/\r
395 \r
396 /*\r
397  * Setup timer 1 compare match A to generate a tick interrupt.\r
398  */\r
399 static void prvSetupTimerInterrupt( void )\r
400 {\r
401 unsigned long ulCompareMatch;\r
402 unsigned char ucHighByte, ucLowByte;\r
403 \r
404         /* Using 16bit timer 1 to generate the tick.  Correct fuses must be\r
405         selected for the configCPU_CLOCK_HZ clock. */\r
406 \r
407         ulCompareMatch = configCPU_CLOCK_HZ / configTICK_RATE_HZ;\r
408 \r
409         /* We only have 16 bits so have to scale to get our required tick rate. */\r
410         ulCompareMatch /= portCLOCK_PRESCALER;\r
411 \r
412         /* Adjust for correct value. */\r
413         ulCompareMatch -= ( unsigned long ) 1;\r
414 \r
415         /* Setup compare match value for compare match A.  Interrupts are disabled \r
416         before this is called so we need not worry here. */\r
417         ucLowByte = ( unsigned char ) ( ulCompareMatch & ( unsigned long ) 0xff );\r
418         ulCompareMatch >>= 8;\r
419         ucHighByte = ( unsigned char ) ( ulCompareMatch & ( unsigned long ) 0xff );\r
420         OCR1AH = ucHighByte;\r
421         OCR1AL = ucLowByte;\r
422 \r
423         /* Setup clock source and compare match behaviour. */\r
424         ucLowByte = portCLEAR_COUNTER_ON_MATCH | portPRESCALE_64;\r
425         TCCR1B = ucLowByte;\r
426 \r
427         /* Enable the interrupt - this is okay as interrupt are currently globally\r
428         disabled. */\r
429         ucLowByte = TIMSK;\r
430         ucLowByte |= portCOMPARE_MATCH_A_INTERRUPT_ENABLE;\r
431         TIMSK = ucLowByte;\r
432 }\r
433 /*-----------------------------------------------------------*/\r
434 \r
435 #if configUSE_PREEMPTION == 1\r
436 \r
437         /*\r
438          * Tick ISR for preemptive scheduler.  We can use a naked attribute as\r
439          * the context is saved at the start of vPortYieldFromTick().  The tick\r
440          * count is incremented after the context is saved.\r
441          */\r
442         void SIG_OUTPUT_COMPARE1A( void ) __attribute__ ( ( signal, naked ) );\r
443         void SIG_OUTPUT_COMPARE1A( void )\r
444         {\r
445                 vPortYieldFromTick();\r
446                 asm volatile ( "reti" );\r
447         }\r
448 #else\r
449 \r
450         /*\r
451          * Tick ISR for the cooperative scheduler.  All this does is increment the\r
452          * tick count.  We don't need to switch context, this can only be done by\r
453          * manual calls to taskYIELD();\r
454          */\r
455         void SIG_OUTPUT_COMPARE1A( void ) __attribute__ ( ( signal ) );\r
456         void SIG_OUTPUT_COMPARE1A( void )\r
457         {\r
458                 xTaskIncrementTick();\r
459         }\r
460 #endif\r
461 \r
462 \r
463         \r