]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ARM7_AT91SAM7S64_IAR/serial/serial.c
fdb907402bf0097fe07efab0b9f77f27281a5258
[freertos] / FreeRTOS / Demo / ARM7_AT91SAM7S64_IAR / serial / serial.c
1 /*\r
2     FreeRTOS V7.3.0 - Copyright (C) 2012 Real Time Engineers Ltd.\r
3 \r
4     FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT \r
5     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
10      *    Complete, revised, and edited pdf reference manuals are also       *\r
11      *    available.                                                         *\r
12      *                                                                       *\r
13      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
14      *    ensuring you get running as quickly as possible and with an        *\r
15      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
16      *    the FreeRTOS project to continue with its mission of providing     *\r
17      *    professional grade, cross platform, de facto standard solutions    *\r
18      *    for microcontrollers - completely free of charge!                  *\r
19      *                                                                       *\r
20      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
21      *                                                                       *\r
22      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
23      *                                                                       *\r
24     ***************************************************************************\r
25 \r
26 \r
27     This file is part of the FreeRTOS distribution.\r
28 \r
29     FreeRTOS is free software; you can redistribute it and/or modify it under\r
30     the terms of the GNU General Public License (version 2) as published by the\r
31     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
32     >>>NOTE<<< The modification to the GPL is included to allow you to\r
33     distribute a combined work that includes FreeRTOS without being obliged to\r
34     provide the source code for proprietary components outside of the FreeRTOS\r
35     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
36     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
37     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
38     more details. You should have received a copy of the GNU General Public\r
39     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
40     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
41     by writing to Richard Barry, contact details for whom are available on the\r
42     FreeRTOS WEB site.\r
43 \r
44     1 tab == 4 spaces!\r
45     \r
46     ***************************************************************************\r
47      *                                                                       *\r
48      *    Having a problem?  Start by reading the FAQ "My application does   *\r
49      *    not run, what could be wrong?"                                     *\r
50      *                                                                       *\r
51      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
52      *                                                                       *\r
53     ***************************************************************************\r
54 \r
55     \r
56     http://www.FreeRTOS.org - Documentation, training, latest versions, license \r
57     and contact details.  \r
58     \r
59     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
60     including FreeRTOS+Trace - an indispensable productivity tool.\r
61 \r
62     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
63     the code with commercial support, indemnification, and middleware, under \r
64     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
65     provide a safety engineered and independently SIL3 certified version under \r
66     the SafeRTOS brand: http://www.SafeRTOS.com.\r
67 */\r
68 \r
69 /* \r
70         BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR UART0. \r
71 */\r
72 \r
73 /* Standard includes. */ \r
74 #include <stdlib.h>\r
75 \r
76 /* Scheduler includes. */\r
77 #include "FreeRTOS.h"\r
78 #include "queue.h"\r
79 \r
80 /* Demo application includes. */\r
81 #include "serial.h"\r
82 \r
83 /*-----------------------------------------------------------*/\r
84 \r
85 /* Location of the COM0 registers. */\r
86 #define serCOM0                                                 ( ( AT91PS_USART ) AT91C_BASE_US0 )\r
87 \r
88 /* Interrupt control macros. */\r
89 #define serINTERRUPT_LEVEL                              ( 5 )\r
90 #define vInterruptOn()                                  AT91F_US_EnableIt( serCOM0, AT91C_US_TXRDY | AT91C_US_RXRDY )\r
91 #define vInterruptOff()                                 AT91F_US_DisableIt( serCOM0, AT91C_US_TXRDY )\r
92 \r
93 /* Misc constants. */\r
94 #define serINVALID_QUEUE                                ( ( xQueueHandle ) 0 )\r
95 #define serHANDLE                                               ( ( xComPortHandle ) 1 )\r
96 #define serNO_BLOCK                                             ( ( portTickType ) 0 )\r
97 #define serNO_TIMEGUARD                                 ( ( unsigned long ) 0 )\r
98 #define serNO_PERIPHERAL_B_SETUP                ( ( unsigned long ) 0 )\r
99 \r
100 \r
101 /* Queues used to hold received characters, and characters waiting to be\r
102 transmitted. */\r
103 static xQueueHandle xRxedChars; \r
104 static xQueueHandle xCharsForTx; \r
105 \r
106 /*-----------------------------------------------------------*/\r
107 \r
108 /* Interrupt entry point written in the assembler file serialISR.s79. */\r
109 extern void vSerialISREntry( void );\r
110 \r
111 /* The interrupt service routine - called from the assembly entry point. */\r
112 __arm void vSerialISR( void );\r
113 \r
114 /*-----------------------------------------------------------*/\r
115 \r
116 /*\r
117  * See the serial2.h header file.\r
118  */\r
119 xComPortHandle xSerialPortInitMinimal( unsigned long ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )\r
120 {\r
121 xComPortHandle xReturn = serHANDLE;\r
122 extern void ( vUART_ISR )( void );\r
123 \r
124         /* Create the queues used to hold Rx and Tx characters. */\r
125         xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
126         xCharsForTx = xQueueCreate( uxQueueLength + 1, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
127 \r
128         /* If the queues were created correctly then setup the serial port \r
129         hardware. */\r
130         if( ( xRxedChars != serINVALID_QUEUE ) && ( xCharsForTx != serINVALID_QUEUE ) )\r
131         {\r
132                 portENTER_CRITICAL();\r
133                 {\r
134                         /* Enable the USART clock. */\r
135                         AT91F_PMC_EnablePeriphClock( AT91C_BASE_PMC, 1 << AT91C_ID_US0 );\r
136 \r
137                         AT91F_PIO_CfgPeriph( AT91C_BASE_PIOA, ( ( unsigned long ) AT91C_PA5_RXD0 ) | ( ( unsigned long ) AT91C_PA6_TXD0 ), serNO_PERIPHERAL_B_SETUP );\r
138 \r
139                         /* Set the required protocol. */\r
140                         AT91F_US_Configure( serCOM0, configCPU_CLOCK_HZ, AT91C_US_ASYNC_MODE, ulWantedBaud, serNO_TIMEGUARD );\r
141 \r
142                         /* Enable Rx and Tx. */\r
143                         serCOM0->US_CR = AT91C_US_RXEN | AT91C_US_TXEN;\r
144 \r
145                         /* Enable the Rx interrupts.  The Tx interrupts are not enabled\r
146                         until there are characters to be transmitted. */\r
147                 AT91F_US_EnableIt( serCOM0, AT91C_US_RXRDY );\r
148 \r
149                         /* Enable the interrupts in the AIC. */\r
150                         AT91F_AIC_ConfigureIt( AT91C_BASE_AIC, AT91C_ID_US0, serINTERRUPT_LEVEL, AT91C_AIC_SRCTYPE_INT_LEVEL_SENSITIVE, ( void (*)( void ) ) vSerialISREntry );\r
151                         AT91F_AIC_EnableIt( AT91C_BASE_AIC, AT91C_ID_US0 );\r
152                 }\r
153                 portEXIT_CRITICAL();\r
154         }\r
155         else\r
156         {\r
157                 xReturn = ( xComPortHandle ) 0;\r
158         }\r
159 \r
160         /* This demo file only supports a single port but we have to return \r
161         something to comply with the standard demo header file. */\r
162         return xReturn;\r
163 }\r
164 /*-----------------------------------------------------------*/\r
165 \r
166 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed char *pcRxedChar, portTickType xBlockTime )\r
167 {\r
168         /* The port handle is not required as this driver only supports one port. */\r
169         ( void ) pxPort;\r
170 \r
171         /* Get the next character from the buffer.  Return false if no characters\r
172         are available, or arrive before xBlockTime expires. */\r
173         if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )\r
174         {\r
175                 return pdTRUE;\r
176         }\r
177         else\r
178         {\r
179                 return pdFALSE;\r
180         }\r
181 }\r
182 /*-----------------------------------------------------------*/\r
183 \r
184 void vSerialPutString( xComPortHandle pxPort, const signed char * const pcString, unsigned short usStringLength )\r
185 {\r
186 signed char *pxNext;\r
187 \r
188         /* A couple of parameters that this port does not use. */\r
189         ( void ) usStringLength;\r
190         ( void ) pxPort;\r
191 \r
192         /* NOTE: This implementation does not handle the queue being full as no\r
193         block time is used! */\r
194 \r
195         /* The port handle is not required as this driver only supports UART0. */\r
196         ( void ) pxPort;\r
197 \r
198         /* Send each character in the string, one at a time. */\r
199         pxNext = ( signed char * ) pcString;\r
200         while( *pxNext )\r
201         {\r
202                 xSerialPutChar( pxPort, *pxNext, serNO_BLOCK );\r
203                 pxNext++;\r
204         }\r
205 }\r
206 /*-----------------------------------------------------------*/\r
207 \r
208 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed char cOutChar, portTickType xBlockTime )\r
209 {\r
210         /* Place the character in the queue of characters to be transmitted. */\r
211         if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) != pdPASS )\r
212         {\r
213                 return pdFAIL;\r
214         }\r
215 \r
216         /* Turn on the Tx interrupt so the ISR will remove the character from the\r
217         queue and send it.   This does not need to be in a critical section as\r
218         if the interrupt has already removed the character the next interrupt\r
219         will simply turn off the Tx interrupt again. */\r
220         vInterruptOn();\r
221 \r
222         return pdPASS;\r
223 }\r
224 /*-----------------------------------------------------------*/\r
225 \r
226 void vSerialClose( xComPortHandle xPort )\r
227 {\r
228         /* Not supported as not required by the demo application. */\r
229 }\r
230 /*-----------------------------------------------------------*/\r
231 \r
232 /* Serial port ISR.  This can cause a context switch so is not defined as a\r
233 standard ISR using the __irq keyword.  Instead a wrapper function is defined\r
234 within serialISR.s79 which in turn calls this function.  See the port\r
235 documentation on the FreeRTOS.org website for more information. */\r
236 __arm void vSerialISR( void )\r
237 {\r
238 unsigned long ulStatus;\r
239 signed char cChar;\r
240 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
241 \r
242         /* What caused the interrupt? */\r
243         ulStatus = serCOM0->US_CSR &= serCOM0->US_IMR;\r
244 \r
245         if( ulStatus & AT91C_US_TXRDY )\r
246         {\r
247                 /* The interrupt was caused by the THR becoming empty.  Are there any\r
248                 more characters to transmit? */\r
249                 if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xHigherPriorityTaskWoken ) == pdTRUE )\r
250                 {\r
251                         /* A character was retrieved from the queue so can be sent to the\r
252                         THR now. */\r
253                         serCOM0->US_THR = cChar;\r
254                 }\r
255                 else\r
256                 {\r
257                         /* Queue empty, nothing to send so turn off the Tx interrupt. */\r
258                         vInterruptOff();\r
259                 }               \r
260         }\r
261 \r
262         if( ulStatus & AT91C_US_RXRDY )\r
263         {\r
264                 /* The interrupt was caused by a character being received.  Grab the\r
265                 character from the RHR and place it in the queue or received \r
266                 characters. */\r
267                 cChar = serCOM0->US_RHR;\r
268                 xQueueSendFromISR( xRxedChars, &cChar, &xHigherPriorityTaskWoken );\r
269         }\r
270 \r
271         /* If a task was woken by either a character being received or a character \r
272         being transmitted then we may need to switch to another task. */\r
273         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
274 \r
275         /* End the interrupt in the AIC. */\r
276         AT91C_BASE_AIC->AIC_EOICR = 0;\r
277 }\r
278 \r
279 \r
280 \r
281 \r
282         \r