]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/ATMega323/port.c
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Source / portable / GCC / ATMega323 / port.c
1 /*\r
2     FreeRTOS V7.1.1 - 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 \r
69 Changes from V2.6.0\r
70 \r
71         + AVR port - Replaced the inb() and outb() functions with direct memory\r
72           access.  This allows the port to be built with the 20050414 build of\r
73           WinAVR.\r
74 */\r
75 \r
76 #include <stdlib.h>\r
77 #include <avr/interrupt.h>\r
78 \r
79 #include "FreeRTOS.h"\r
80 #include "task.h"\r
81 \r
82 /*-----------------------------------------------------------\r
83  * Implementation of functions defined in portable.h for the AVR port.\r
84  *----------------------------------------------------------*/\r
85 \r
86 /* Start tasks with interrupts enables. */\r
87 #define portFLAGS_INT_ENABLED                                   ( ( portSTACK_TYPE ) 0x80 )\r
88 \r
89 /* Hardware constants for timer 1. */\r
90 #define portCLEAR_COUNTER_ON_MATCH                              ( ( unsigned char ) 0x08 )\r
91 #define portPRESCALE_64                                                 ( ( unsigned char ) 0x03 )\r
92 #define portCLOCK_PRESCALER                                             ( ( unsigned long ) 64 )\r
93 #define portCOMPARE_MATCH_A_INTERRUPT_ENABLE    ( ( unsigned char ) 0x10 )\r
94 \r
95 /*-----------------------------------------------------------*/\r
96 \r
97 /* We require the address of the pxCurrentTCB variable, but don't want to know\r
98 any details of its type. */\r
99 typedef void tskTCB;\r
100 extern volatile tskTCB * volatile pxCurrentTCB;\r
101 \r
102 /*-----------------------------------------------------------*/\r
103 \r
104 /* \r
105  * Macro to save all the general purpose registers, the save the stack pointer\r
106  * into the TCB.  \r
107  * \r
108  * The first thing we do is save the flags then disable interrupts.  This is to \r
109  * guard our stack against having a context switch interrupt after we have already \r
110  * pushed the registers onto the stack - causing the 32 registers to be on the \r
111  * stack twice. \r
112  * \r
113  * r1 is set to zero as the compiler expects it to be thus, however some\r
114  * of the math routines make use of R1. \r
115  * \r
116  * The interrupts will have been disabled during the call to portSAVE_CONTEXT()\r
117  * so we need not worry about reading/writing to the stack pointer. \r
118  */\r
119 \r
120 #define portSAVE_CONTEXT()                                                                      \\r
121         asm volatile (  "push   r0                                              \n\t"   \\r
122                                         "in             r0, __SREG__                    \n\t"   \\r
123                                         "cli                                                    \n\t"   \\r
124                                         "push   r0                                              \n\t"   \\r
125                                         "push   r1                                              \n\t"   \\r
126                                         "clr    r1                                              \n\t"   \\r
127                                         "push   r2                                              \n\t"   \\r
128                                         "push   r3                                              \n\t"   \\r
129                                         "push   r4                                              \n\t"   \\r
130                                         "push   r5                                              \n\t"   \\r
131                                         "push   r6                                              \n\t"   \\r
132                                         "push   r7                                              \n\t"   \\r
133                                         "push   r8                                              \n\t"   \\r
134                                         "push   r9                                              \n\t"   \\r
135                                         "push   r10                                             \n\t"   \\r
136                                         "push   r11                                             \n\t"   \\r
137                                         "push   r12                                             \n\t"   \\r
138                                         "push   r13                                             \n\t"   \\r
139                                         "push   r14                                             \n\t"   \\r
140                                         "push   r15                                             \n\t"   \\r
141                                         "push   r16                                             \n\t"   \\r
142                                         "push   r17                                             \n\t"   \\r
143                                         "push   r18                                             \n\t"   \\r
144                                         "push   r19                                             \n\t"   \\r
145                                         "push   r20                                             \n\t"   \\r
146                                         "push   r21                                             \n\t"   \\r
147                                         "push   r22                                             \n\t"   \\r
148                                         "push   r23                                             \n\t"   \\r
149                                         "push   r24                                             \n\t"   \\r
150                                         "push   r25                                             \n\t"   \\r
151                                         "push   r26                                             \n\t"   \\r
152                                         "push   r27                                             \n\t"   \\r
153                                         "push   r28                                             \n\t"   \\r
154                                         "push   r29                                             \n\t"   \\r
155                                         "push   r30                                             \n\t"   \\r
156                                         "push   r31                                             \n\t"   \\r
157                                         "lds    r26, pxCurrentTCB               \n\t"   \\r
158                                         "lds    r27, pxCurrentTCB + 1   \n\t"   \\r
159                                         "in             r0, 0x3d                                \n\t"   \\r
160                                         "st             x+, r0                                  \n\t"   \\r
161                                         "in             r0, 0x3e                                \n\t"   \\r
162                                         "st             x+, r0                                  \n\t"   \\r
163                                 );\r
164 \r
165 /* \r
166  * Opposite to portSAVE_CONTEXT().  Interrupts will have been disabled during\r
167  * the context save so we can write to the stack pointer. \r
168  */\r
169 \r
170 #define portRESTORE_CONTEXT()                                                           \\r
171         asm volatile (  "lds    r26, pxCurrentTCB               \n\t"   \\r
172                                         "lds    r27, pxCurrentTCB + 1   \n\t"   \\r
173                                         "ld             r28, x+                                 \n\t"   \\r
174                                         "out    __SP_L__, r28                   \n\t"   \\r
175                                         "ld             r29, x+                                 \n\t"   \\r
176                                         "out    __SP_H__, r29                   \n\t"   \\r
177                                         "pop    r31                                             \n\t"   \\r
178                                         "pop    r30                                             \n\t"   \\r
179                                         "pop    r29                                             \n\t"   \\r
180                                         "pop    r28                                             \n\t"   \\r
181                                         "pop    r27                                             \n\t"   \\r
182                                         "pop    r26                                             \n\t"   \\r
183                                         "pop    r25                                             \n\t"   \\r
184                                         "pop    r24                                             \n\t"   \\r
185                                         "pop    r23                                             \n\t"   \\r
186                                         "pop    r22                                             \n\t"   \\r
187                                         "pop    r21                                             \n\t"   \\r
188                                         "pop    r20                                             \n\t"   \\r
189                                         "pop    r19                                             \n\t"   \\r
190                                         "pop    r18                                             \n\t"   \\r
191                                         "pop    r17                                             \n\t"   \\r
192                                         "pop    r16                                             \n\t"   \\r
193                                         "pop    r15                                             \n\t"   \\r
194                                         "pop    r14                                             \n\t"   \\r
195                                         "pop    r13                                             \n\t"   \\r
196                                         "pop    r12                                             \n\t"   \\r
197                                         "pop    r11                                             \n\t"   \\r
198                                         "pop    r10                                             \n\t"   \\r
199                                         "pop    r9                                              \n\t"   \\r
200                                         "pop    r8                                              \n\t"   \\r
201                                         "pop    r7                                              \n\t"   \\r
202                                         "pop    r6                                              \n\t"   \\r
203                                         "pop    r5                                              \n\t"   \\r
204                                         "pop    r4                                              \n\t"   \\r
205                                         "pop    r3                                              \n\t"   \\r
206                                         "pop    r2                                              \n\t"   \\r
207                                         "pop    r1                                              \n\t"   \\r
208                                         "pop    r0                                              \n\t"   \\r
209                                         "out    __SREG__, r0                    \n\t"   \\r
210                                         "pop    r0                                              \n\t"   \\r
211                                 );\r
212 \r
213 /*-----------------------------------------------------------*/\r
214 \r
215 /*\r
216  * Perform hardware setup to enable ticks from timer 1, compare match A.\r
217  */\r
218 static void prvSetupTimerInterrupt( void );\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 /* \r
222  * See header file for description. \r
223  */\r
224 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
225 {\r
226 unsigned short usAddress;\r
227 \r
228         /* Place a few bytes of known values on the bottom of the stack. \r
229         This is just useful for debugging. */\r
230 \r
231         *pxTopOfStack = 0x11;\r
232         pxTopOfStack--;\r
233         *pxTopOfStack = 0x22;\r
234         pxTopOfStack--;\r
235         *pxTopOfStack = 0x33;\r
236         pxTopOfStack--;\r
237 \r
238         /* Simulate how the stack would look after a call to vPortYield() generated by \r
239         the compiler. */\r
240 \r
241         /*lint -e950 -e611 -e923 Lint doesn't like this much - but nothing I can do about it. */\r
242 \r
243         /* The start of the task code will be popped off the stack last, so place\r
244         it on first. */\r
245         usAddress = ( unsigned short ) pxCode;\r
246         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
247         pxTopOfStack--;\r
248 \r
249         usAddress >>= 8;\r
250         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
251         pxTopOfStack--;\r
252 \r
253         /* Next simulate the stack as if after a call to portSAVE_CONTEXT().  \r
254         portSAVE_CONTEXT places the flags on the stack immediately after r0\r
255         to ensure the interrupts get disabled as soon as possible, and so ensuring\r
256         the stack use is minimal should a context switch interrupt occur. */\r
257         *pxTopOfStack = ( portSTACK_TYPE ) 0x00;        /* R0 */\r
258         pxTopOfStack--;\r
259         *pxTopOfStack = portFLAGS_INT_ENABLED;\r
260         pxTopOfStack--;\r
261 \r
262 \r
263         /* Now the remaining registers.   The compiler expects R1 to be 0. */\r
264         *pxTopOfStack = ( portSTACK_TYPE ) 0x00;        /* R1 */\r
265         pxTopOfStack--;\r
266         *pxTopOfStack = ( portSTACK_TYPE ) 0x02;        /* R2 */\r
267         pxTopOfStack--;\r
268         *pxTopOfStack = ( portSTACK_TYPE ) 0x03;        /* R3 */\r
269         pxTopOfStack--;\r
270         *pxTopOfStack = ( portSTACK_TYPE ) 0x04;        /* R4 */\r
271         pxTopOfStack--;\r
272         *pxTopOfStack = ( portSTACK_TYPE ) 0x05;        /* R5 */\r
273         pxTopOfStack--;\r
274         *pxTopOfStack = ( portSTACK_TYPE ) 0x06;        /* R6 */\r
275         pxTopOfStack--;\r
276         *pxTopOfStack = ( portSTACK_TYPE ) 0x07;        /* R7 */\r
277         pxTopOfStack--;\r
278         *pxTopOfStack = ( portSTACK_TYPE ) 0x08;        /* R8 */\r
279         pxTopOfStack--;\r
280         *pxTopOfStack = ( portSTACK_TYPE ) 0x09;        /* R9 */\r
281         pxTopOfStack--;\r
282         *pxTopOfStack = ( portSTACK_TYPE ) 0x10;        /* R10 */\r
283         pxTopOfStack--;\r
284         *pxTopOfStack = ( portSTACK_TYPE ) 0x11;        /* R11 */\r
285         pxTopOfStack--;\r
286         *pxTopOfStack = ( portSTACK_TYPE ) 0x12;        /* R12 */\r
287         pxTopOfStack--;\r
288         *pxTopOfStack = ( portSTACK_TYPE ) 0x13;        /* R13 */\r
289         pxTopOfStack--;\r
290         *pxTopOfStack = ( portSTACK_TYPE ) 0x14;        /* R14 */\r
291         pxTopOfStack--;\r
292         *pxTopOfStack = ( portSTACK_TYPE ) 0x15;        /* R15 */\r
293         pxTopOfStack--;\r
294         *pxTopOfStack = ( portSTACK_TYPE ) 0x16;        /* R16 */\r
295         pxTopOfStack--;\r
296         *pxTopOfStack = ( portSTACK_TYPE ) 0x17;        /* R17 */\r
297         pxTopOfStack--;\r
298         *pxTopOfStack = ( portSTACK_TYPE ) 0x18;        /* R18 */\r
299         pxTopOfStack--;\r
300         *pxTopOfStack = ( portSTACK_TYPE ) 0x19;        /* R19 */\r
301         pxTopOfStack--;\r
302         *pxTopOfStack = ( portSTACK_TYPE ) 0x20;        /* R20 */\r
303         pxTopOfStack--;\r
304         *pxTopOfStack = ( portSTACK_TYPE ) 0x21;        /* R21 */\r
305         pxTopOfStack--;\r
306         *pxTopOfStack = ( portSTACK_TYPE ) 0x22;        /* R22 */\r
307         pxTopOfStack--;\r
308         *pxTopOfStack = ( portSTACK_TYPE ) 0x23;        /* R23 */\r
309         pxTopOfStack--;\r
310 \r
311         /* Place the parameter on the stack in the expected location. */\r
312         usAddress = ( unsigned short ) pvParameters;\r
313         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
314         pxTopOfStack--;\r
315 \r
316         usAddress >>= 8;\r
317         *pxTopOfStack = ( portSTACK_TYPE ) ( usAddress & ( unsigned short ) 0x00ff );\r
318         pxTopOfStack--;\r
319 \r
320         *pxTopOfStack = ( portSTACK_TYPE ) 0x26;        /* R26 X */\r
321         pxTopOfStack--;\r
322         *pxTopOfStack = ( portSTACK_TYPE ) 0x27;        /* R27 */\r
323         pxTopOfStack--;\r
324         *pxTopOfStack = ( portSTACK_TYPE ) 0x28;        /* R28 Y */\r
325         pxTopOfStack--;\r
326         *pxTopOfStack = ( portSTACK_TYPE ) 0x29;        /* R29 */\r
327         pxTopOfStack--;\r
328         *pxTopOfStack = ( portSTACK_TYPE ) 0x30;        /* R30 Z */\r
329         pxTopOfStack--;\r
330         *pxTopOfStack = ( portSTACK_TYPE ) 0x031;       /* R31 */\r
331         pxTopOfStack--;\r
332 \r
333         /*lint +e950 +e611 +e923 */\r
334 \r
335         return pxTopOfStack;\r
336 }\r
337 /*-----------------------------------------------------------*/\r
338 \r
339 portBASE_TYPE xPortStartScheduler( void )\r
340 {\r
341         /* Setup the hardware to generate the tick. */\r
342         prvSetupTimerInterrupt();\r
343 \r
344         /* Restore the context of the first task that is going to run. */\r
345         portRESTORE_CONTEXT();\r
346 \r
347         /* Simulate a function call end as generated by the compiler.  We will now\r
348         jump to the start of the task the context of which we have just restored. */\r
349         asm volatile ( "ret" );\r
350 \r
351         /* Should not get here. */\r
352         return pdTRUE;\r
353 }\r
354 /*-----------------------------------------------------------*/\r
355 \r
356 void vPortEndScheduler( void )\r
357 {\r
358         /* It is unlikely that the AVR port will get stopped.  If required simply\r
359         disable the tick interrupt here. */\r
360 }\r
361 /*-----------------------------------------------------------*/\r
362 \r
363 /*\r
364  * Manual context switch.  The first thing we do is save the registers so we\r
365  * can use a naked attribute.\r
366  */\r
367 void vPortYield( void ) __attribute__ ( ( naked ) );\r
368 void vPortYield( void )\r
369 {\r
370         portSAVE_CONTEXT();\r
371         vTaskSwitchContext();\r
372         portRESTORE_CONTEXT();\r
373 \r
374         asm volatile ( "ret" );\r
375 }\r
376 /*-----------------------------------------------------------*/\r
377 \r
378 /*\r
379  * Context switch function used by the tick.  This must be identical to \r
380  * vPortYield() from the call to vTaskSwitchContext() onwards.  The only\r
381  * difference from vPortYield() is the tick count is incremented as the\r
382  * call comes from the tick ISR.\r
383  */\r
384 void vPortYieldFromTick( void ) __attribute__ ( ( naked ) );\r
385 void vPortYieldFromTick( void )\r
386 {\r
387         portSAVE_CONTEXT();\r
388         vTaskIncrementTick();\r
389         vTaskSwitchContext();\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                 vTaskIncrementTick();\r
459         }\r
460 #endif\r
461 \r
462 \r
463         \r