]> git.sur5r.net Git - freertos/blob - Demo/ARM7_AT91SAM7S64_IAR/serial/serial.c
Ensure LPC1768 demos are correct prior to V5.4.0 release.
[freertos] / Demo / ARM7_AT91SAM7S64_IAR / serial / serial.c
1 /*\r
2         FreeRTOS V5.4.0 - Copyright (C) 2003-2009 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS distribution.\r
5 \r
6         FreeRTOS is free software; you can redistribute it and/or modify it     under \r
7         the terms of the GNU General Public License (version 2) as published by the \r
8         Free Software Foundation and modified by the FreeRTOS exception.\r
9         **NOTE** The exception to the GPL is included to allow you to distribute a\r
10         combined work that includes FreeRTOS without being obliged to provide the \r
11         source code for proprietary components outside of the FreeRTOS kernel.  \r
12         Alternative commercial license and support terms are also available upon \r
13         request.  See the licensing section of http://www.FreeRTOS.org for full \r
14         license details.\r
15 \r
16         FreeRTOS is distributed in the hope that it will be useful,     but WITHOUT\r
17         ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
18         FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
19         more details.\r
20 \r
21         You should have received a copy of the GNU General Public License along\r
22         with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59\r
23         Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
24 \r
25 \r
26         ***************************************************************************\r
27         *                                                                         *\r
28         * Looking for a quick start?  Then check out the FreeRTOS eBook!          *\r
29         * See http://www.FreeRTOS.org/Documentation for details                   *\r
30         *                                                                         *\r
31         ***************************************************************************\r
32 \r
33         1 tab == 4 spaces!\r
34 \r
35         Please ensure to read the configuration and relevant port sections of the\r
36         online documentation.\r
37 \r
38         http://www.FreeRTOS.org - Documentation, latest information, license and\r
39         contact details.\r
40 \r
41         http://www.SafeRTOS.com - A version that is certified for use in safety\r
42         critical systems.\r
43 \r
44         http://www.OpenRTOS.com - Commercial support, development, porting,\r
45         licensing and training services.\r
46 */\r
47 \r
48 /* \r
49         BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR UART0. \r
50 */\r
51 \r
52 /* Standard includes. */ \r
53 #include <stdlib.h>\r
54 \r
55 /* Scheduler includes. */\r
56 #include "FreeRTOS.h"\r
57 #include "queue.h"\r
58 \r
59 /* Demo application includes. */\r
60 #include "serial.h"\r
61 \r
62 /*-----------------------------------------------------------*/\r
63 \r
64 /* Location of the COM0 registers. */\r
65 #define serCOM0                                                 ( ( AT91PS_USART ) AT91C_BASE_US0 )\r
66 \r
67 /* Interrupt control macros. */\r
68 #define serINTERRUPT_LEVEL                              ( 5 )\r
69 #define vInterruptOn()                                  AT91F_US_EnableIt( serCOM0, AT91C_US_TXRDY | AT91C_US_RXRDY )\r
70 #define vInterruptOff()                                 AT91F_US_DisableIt( serCOM0, AT91C_US_TXRDY )\r
71 \r
72 /* Misc constants. */\r
73 #define serINVALID_QUEUE                                ( ( xQueueHandle ) 0 )\r
74 #define serHANDLE                                               ( ( xComPortHandle ) 1 )\r
75 #define serNO_BLOCK                                             ( ( portTickType ) 0 )\r
76 #define serNO_TIMEGUARD                                 ( ( unsigned portLONG ) 0 )\r
77 #define serNO_PERIPHERAL_B_SETUP                ( ( unsigned portLONG ) 0 )\r
78 \r
79 \r
80 /* Queues used to hold received characters, and characters waiting to be\r
81 transmitted. */\r
82 static xQueueHandle xRxedChars; \r
83 static xQueueHandle xCharsForTx; \r
84 \r
85 /*-----------------------------------------------------------*/\r
86 \r
87 /* Interrupt entry point written in the assembler file serialISR.s79. */\r
88 extern void vSerialISREntry( void );\r
89 \r
90 /* The interrupt service routine - called from the assembly entry point. */\r
91 __arm void vSerialISR( void );\r
92 \r
93 /*-----------------------------------------------------------*/\r
94 \r
95 /*\r
96  * See the serial2.h header file.\r
97  */\r
98 xComPortHandle xSerialPortInitMinimal( unsigned portLONG ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )\r
99 {\r
100 xComPortHandle xReturn = serHANDLE;\r
101 extern void ( vUART_ISR )( void );\r
102 \r
103         /* Create the queues used to hold Rx and Tx characters. */\r
104         xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );\r
105         xCharsForTx = xQueueCreate( uxQueueLength + 1, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );\r
106 \r
107         /* If the queues were created correctly then setup the serial port \r
108         hardware. */\r
109         if( ( xRxedChars != serINVALID_QUEUE ) && ( xCharsForTx != serINVALID_QUEUE ) )\r
110         {\r
111                 portENTER_CRITICAL();\r
112                 {\r
113                         /* Enable the USART clock. */\r
114                         AT91F_PMC_EnablePeriphClock( AT91C_BASE_PMC, 1 << AT91C_ID_US0 );\r
115 \r
116                         AT91F_PIO_CfgPeriph( AT91C_BASE_PIOA, ( ( unsigned portLONG ) AT91C_PA5_RXD0 ) | ( ( unsigned portLONG ) AT91C_PA6_TXD0 ), serNO_PERIPHERAL_B_SETUP );\r
117 \r
118                         /* Set the required protocol. */\r
119                         AT91F_US_Configure( serCOM0, configCPU_CLOCK_HZ, AT91C_US_ASYNC_MODE, ulWantedBaud, serNO_TIMEGUARD );\r
120 \r
121                         /* Enable Rx and Tx. */\r
122                         serCOM0->US_CR = AT91C_US_RXEN | AT91C_US_TXEN;\r
123 \r
124                         /* Enable the Rx interrupts.  The Tx interrupts are not enabled\r
125                         until there are characters to be transmitted. */\r
126                 AT91F_US_EnableIt( serCOM0, AT91C_US_RXRDY );\r
127 \r
128                         /* Enable the interrupts in the AIC. */\r
129                         AT91F_AIC_ConfigureIt( AT91C_BASE_AIC, AT91C_ID_US0, serINTERRUPT_LEVEL, AT91C_AIC_SRCTYPE_INT_LEVEL_SENSITIVE, ( void (*)( void ) ) vSerialISREntry );\r
130                         AT91F_AIC_EnableIt( AT91C_BASE_AIC, AT91C_ID_US0 );\r
131                 }\r
132                 portEXIT_CRITICAL();\r
133         }\r
134         else\r
135         {\r
136                 xReturn = ( xComPortHandle ) 0;\r
137         }\r
138 \r
139         /* This demo file only supports a single port but we have to return \r
140         something to comply with the standard demo header file. */\r
141         return xReturn;\r
142 }\r
143 /*-----------------------------------------------------------*/\r
144 \r
145 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed portCHAR *pcRxedChar, portTickType xBlockTime )\r
146 {\r
147         /* The port handle is not required as this driver only supports one port. */\r
148         ( void ) pxPort;\r
149 \r
150         /* Get the next character from the buffer.  Return false if no characters\r
151         are available, or arrive before xBlockTime expires. */\r
152         if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )\r
153         {\r
154                 return pdTRUE;\r
155         }\r
156         else\r
157         {\r
158                 return pdFALSE;\r
159         }\r
160 }\r
161 /*-----------------------------------------------------------*/\r
162 \r
163 void vSerialPutString( xComPortHandle pxPort, const signed portCHAR * const pcString, unsigned portSHORT usStringLength )\r
164 {\r
165 signed portCHAR *pxNext;\r
166 \r
167         /* A couple of parameters that this port does not use. */\r
168         ( void ) usStringLength;\r
169         ( void ) pxPort;\r
170 \r
171         /* NOTE: This implementation does not handle the queue being full as no\r
172         block time is used! */\r
173 \r
174         /* The port handle is not required as this driver only supports UART0. */\r
175         ( void ) pxPort;\r
176 \r
177         /* Send each character in the string, one at a time. */\r
178         pxNext = ( signed portCHAR * ) pcString;\r
179         while( *pxNext )\r
180         {\r
181                 xSerialPutChar( pxPort, *pxNext, serNO_BLOCK );\r
182                 pxNext++;\r
183         }\r
184 }\r
185 /*-----------------------------------------------------------*/\r
186 \r
187 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed portCHAR cOutChar, portTickType xBlockTime )\r
188 {\r
189         /* Place the character in the queue of characters to be transmitted. */\r
190         if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) != pdPASS )\r
191         {\r
192                 return pdFAIL;\r
193         }\r
194 \r
195         /* Turn on the Tx interrupt so the ISR will remove the character from the\r
196         queue and send it.   This does not need to be in a critical section as\r
197         if the interrupt has already removed the character the next interrupt\r
198         will simply turn off the Tx interrupt again. */\r
199         vInterruptOn();\r
200 \r
201         return pdPASS;\r
202 }\r
203 /*-----------------------------------------------------------*/\r
204 \r
205 void vSerialClose( xComPortHandle xPort )\r
206 {\r
207         /* Not supported as not required by the demo application. */\r
208 }\r
209 /*-----------------------------------------------------------*/\r
210 \r
211 /* Serial port ISR.  This can cause a context switch so is not defined as a\r
212 standard ISR using the __irq keyword.  Instead a wrapper function is defined\r
213 within serialISR.s79 which in turn calls this function.  See the port\r
214 documentation on the FreeRTOS.org website for more information. */\r
215 __arm void vSerialISR( void )\r
216 {\r
217 unsigned portLONG ulStatus;\r
218 signed portCHAR cChar;\r
219 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
220 \r
221         /* What caused the interrupt? */\r
222         ulStatus = serCOM0->US_CSR &= serCOM0->US_IMR;\r
223 \r
224         if( ulStatus & AT91C_US_TXRDY )\r
225         {\r
226                 /* The interrupt was caused by the THR becoming empty.  Are there any\r
227                 more characters to transmit? */\r
228                 if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xHigherPriorityTaskWoken ) == pdTRUE )\r
229                 {\r
230                         /* A character was retrieved from the queue so can be sent to the\r
231                         THR now. */\r
232                         serCOM0->US_THR = cChar;\r
233                 }\r
234                 else\r
235                 {\r
236                         /* Queue empty, nothing to send so turn off the Tx interrupt. */\r
237                         vInterruptOff();\r
238                 }               \r
239         }\r
240 \r
241         if( ulStatus & AT91C_US_RXRDY )\r
242         {\r
243                 /* The interrupt was caused by a character being received.  Grab the\r
244                 character from the RHR and place it in the queue or received \r
245                 characters. */\r
246                 cChar = serCOM0->US_RHR;\r
247                 xQueueSendFromISR( xRxedChars, &cChar, &xHigherPriorityTaskWoken );\r
248         }\r
249 \r
250         /* If a task was woken by either a character being received or a character \r
251         being transmitted then we may need to switch to another task. */\r
252         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
253 \r
254         /* End the interrupt in the AIC. */\r
255         AT91C_BASE_AIC->AIC_EOICR = 0;\r
256 }\r
257 \r
258 \r
259 \r
260 \r
261         \r