]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ARM7_AT91FR40008_GCC/serial/serialISR.c
2aebe4b2a25e610548fc36328368559793c9be05
[freertos] / FreeRTOS / Demo / ARM7_AT91FR40008_GCC / serial / serialISR.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   BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR USART0. \r
68 \r
69   This file contains all the serial port components that must be compiled\r
70   to ARM mode.  The components that can be compiled to either ARM or THUMB\r
71   mode are contained in serial.c.\r
72 \r
73 */\r
74 \r
75 /* Standard includes. */\r
76 #include <stdlib.h>\r
77 \r
78 /* Scheduler includes. */\r
79 #include "FreeRTOS.h"\r
80 #include "queue.h"\r
81 #include "task.h"\r
82 \r
83 /* Demo application includes. */\r
84 #include "serial.h"\r
85 #include "AT91R40008.h"\r
86 #include "usart.h"\r
87 \r
88 /*-----------------------------------------------------------*/\r
89 \r
90 /* Constant to access the AIC. */\r
91 #define serCLEAR_AIC_INTERRUPT      ( ( unsigned long ) 0 )\r
92 \r
93 /* Constants to determine the ISR source. */\r
94 #define serSOURCE_THRE                          ( ( unsigned char ) 0x02 )\r
95 #define serSOURCE_RX_TIMEOUT            ( ( unsigned char ) 0x0c )\r
96 #define serSOURCE_ERROR                         ( ( unsigned char ) 0x06 )\r
97 #define serSOURCE_RX                            ( ( unsigned char ) 0x04 )\r
98 #define serINTERRUPT_SOURCE_MASK    ( ( unsigned long ) (US_RXRDY | US_TXRDY | US_RXBRK | US_OVRE | US_FRAME | US_PARE) )\r
99 \r
100 /* Queues used to hold received characters, and characters waiting to be\r
101 transmitted. */\r
102 static xQueueHandle xRxedChars; \r
103 static xQueueHandle xCharsForTx; \r
104 \r
105 /*-----------------------------------------------------------*/\r
106 \r
107 /* UART0 interrupt service routine.  This can cause a context switch so MUST\r
108 be declared "naked". */\r
109 void vUART_ISR_Wrapper( void ) __attribute__ ((naked));\r
110 \r
111 /* The ISR function that actually performs the work.  This must be separate \r
112 from the wrapper to ensure the correct stack frame is set up. */\r
113 void vUART_ISR_Handler( void ) __attribute__ ((noinline));\r
114 \r
115 /*-----------------------------------------------------------*/\r
116 void vSerialISRCreateQueues( unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars, xQueueHandle *pxCharsForTx )\r
117 {\r
118         /* Create the queues used to hold Rx and Tx characters. */\r
119         xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
120         xCharsForTx = xQueueCreate( uxQueueLength + 1, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
121 \r
122         /* Pass back a reference to the queues so the serial API file can \r
123         post/receive characters. */\r
124         *pxRxedChars = xRxedChars;\r
125         *pxCharsForTx = xCharsForTx;\r
126 }\r
127 /*-----------------------------------------------------------*/\r
128 \r
129 void vUART_ISR_Wrapper( void )\r
130 {\r
131         /* Save the context of the interrupted task. */\r
132         portSAVE_CONTEXT();\r
133 \r
134         /* Call the handler.  This must be a separate function to ensure the \r
135         stack frame is correctly set up. */\r
136         __asm volatile( "bl vUART_ISR_Handler" );\r
137 \r
138         /* Restore the context of whichever task will run next. */\r
139         portRESTORE_CONTEXT();\r
140 }\r
141 /*-----------------------------------------------------------*/\r
142 \r
143 void vUART_ISR_Handler( void )\r
144 {\r
145 /* Now we can declare the local variables.   These must be static. */\r
146 signed char cChar;\r
147 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
148 unsigned long ulStatus;\r
149 \r
150         /* What caused the interrupt? */\r
151         ulStatus = AT91C_BASE_US0->US_CSR & AT91C_BASE_US0->US_IMR;\r
152 \r
153         if (ulStatus & US_TXRDY)\r
154         {\r
155                 /* The interrupt was caused by the THR becoming empty.  Are there any\r
156                 more characters to transmit? */\r
157                 if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xHigherPriorityTaskWoken ) == pdTRUE )\r
158                 {\r
159                         /* A character was retrieved from the queue so can be sent to the\r
160                         THR now. */\r
161                         AT91C_BASE_US0->US_THR = cChar;\r
162                 }\r
163                 else\r
164                 {\r
165                         /* Queue empty, nothing to send so turn off the Tx interrupt. */\r
166                         AT91C_BASE_US0->US_IDR = US_TXRDY;\r
167                 }    \r
168         }\r
169 \r
170         if (ulStatus & US_RXRDY)\r
171         {\r
172                 /* The interrupt was caused by the receiver getting data. */\r
173                 cChar = AT91C_BASE_US0->US_RHR;\r
174 \r
175                 xQueueSendFromISR(xRxedChars, &cChar, &xHigherPriorityTaskWoken);\r
176         }\r
177 \r
178         /* Acknowledge the interrupt at AIC level... */\r
179         AT91C_BASE_AIC->AIC_EOICR = serCLEAR_AIC_INTERRUPT;\r
180 \r
181         /* If an event caused a task to unblock then we call "Yield from ISR" to\r
182         ensure that the unblocked task is the task that executes when the interrupt\r
183         completes if the unblocked task has a priority higher than the interrupted\r
184         task. */\r
185         if( xHigherPriorityTaskWoken )\r
186         {\r
187                 portYIELD_FROM_ISR();\r
188         }\r
189 }\r
190 /*-----------------------------------------------------------*/\r
191 \r