]> git.sur5r.net Git - freertos/blob - Demo/ARM7_LPC2106_GCC/serial/serial.c
Update to V4.7.0.
[freertos] / Demo / ARM7_LPC2106_GCC / serial / serial.c
1 /*\r
2         FreeRTOS.org V4.7.0 - Copyright (C) 2003-2007 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section \r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26         ***************************************************************************\r
27         See http://www.FreeRTOS.org for documentation, latest information, license \r
28         and contact details.  Please ensure to read the configuration and relevant \r
29         port sections of the online documentation.\r
30 \r
31         Also see http://www.SafeRTOS.com a version that has been certified for use\r
32         in safety critical systems, plus commercial licensing, development and\r
33         support options.\r
34         ***************************************************************************\r
35 */\r
36 \r
37 /*\r
38         Changes from V2.4.0\r
39 \r
40                 + Made serial ISR handling more complete and robust.\r
41 \r
42         Changes from V2.4.1\r
43 \r
44                 + Split serial.c into serial.c and serialISR.c.  serial.c can be \r
45                   compiled using ARM or THUMB modes.  serialISR.c must always be\r
46                   compiled in ARM mode.\r
47                 + Another small change to cSerialPutChar().\r
48 \r
49         Changed from V2.5.1\r
50 \r
51                 + In cSerialPutChar() an extra check is made to ensure the post to\r
52                   the queue was successful if then attempting to retrieve the posted\r
53                   character.\r
54 \r
55 */\r
56 \r
57 /* \r
58         BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR UART0. \r
59 \r
60         This file contains all the serial port components that can be compiled to\r
61         either ARM or THUMB mode.  Components that must be compiled to ARM mode are\r
62         contained in serialISR.c.\r
63 */\r
64 \r
65 /* Standard includes. */\r
66 #include <stdlib.h>\r
67 \r
68 /* Scheduler includes. */\r
69 #include "FreeRTOS.h"\r
70 #include "queue.h"\r
71 #include "task.h"\r
72 \r
73 /* Demo application includes. */\r
74 #include "serial.h"\r
75 \r
76 /*-----------------------------------------------------------*/\r
77 \r
78 /* Constants to setup and access the UART. */\r
79 #define serDLAB                                                 ( ( unsigned portCHAR ) 0x80 )\r
80 #define serENABLE_INTERRUPTS                    ( ( unsigned portCHAR ) 0x03 )\r
81 #define serNO_PARITY                                    ( ( unsigned portCHAR ) 0x00 )\r
82 #define ser1_STOP_BIT                                   ( ( unsigned portCHAR ) 0x00 )\r
83 #define ser8_BIT_CHARS                                  ( ( unsigned portCHAR ) 0x03 )\r
84 #define serFIFO_ON                                              ( ( unsigned portCHAR ) 0x01 )\r
85 #define serCLEAR_FIFO                                   ( ( unsigned portCHAR ) 0x06 )\r
86 #define serWANTED_CLOCK_SCALING                 ( ( unsigned portLONG ) 16 )\r
87 \r
88 /* Constants to setup and access the VIC. */\r
89 #define serUART0_VIC_CHANNEL                    ( ( unsigned portLONG ) 0x0006 )\r
90 #define serUART0_VIC_CHANNEL_BIT                ( ( unsigned portLONG ) 0x0040 )\r
91 #define serUART0_VIC_ENABLE                             ( ( unsigned portLONG ) 0x0020 )\r
92 #define serCLEAR_VIC_INTERRUPT                  ( ( unsigned portLONG ) 0 )\r
93 \r
94 #define serINVALID_QUEUE                                ( ( xQueueHandle ) 0 )\r
95 #define serHANDLE                                               ( ( xComPortHandle ) 1 )\r
96 #define serNO_BLOCK                                             ( ( portTickType ) 0 )\r
97 \r
98 /*-----------------------------------------------------------*/\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 /* Communication flag between the interrupt service routine and serial API. */\r
108 static volatile portLONG *plTHREEmpty;\r
109 \r
110 /* \r
111  * The queues are created in serialISR.c as they are used from the ISR.\r
112  * Obtain references to the queues and THRE Empty flag. \r
113  */\r
114 extern void vSerialISRCreateQueues(     unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars, xQueueHandle *pxCharsForTx, portLONG volatile **pplTHREEmptyFlag );\r
115 \r
116 /*-----------------------------------------------------------*/\r
117 \r
118 xComPortHandle xSerialPortInitMinimal( unsigned portLONG ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )\r
119 {\r
120 unsigned portLONG ulDivisor, ulWantedClock;\r
121 xComPortHandle xReturn = serHANDLE;\r
122 extern void ( vUART_ISR_Wrapper )( void );\r
123 \r
124         /* The queues are used in the serial ISR routine, so are created from\r
125         serialISR.c (which is always compiled to ARM mode. */\r
126         vSerialISRCreateQueues( uxQueueLength, &xRxedChars, &xCharsForTx, &plTHREEmpty );\r
127 \r
128         if( \r
129                 ( xRxedChars != serINVALID_QUEUE ) && \r
130                 ( xCharsForTx != serINVALID_QUEUE ) && \r
131                 ( ulWantedBaud != ( unsigned portLONG ) 0 ) \r
132           )\r
133         {\r
134                 portENTER_CRITICAL();\r
135                 {\r
136                         /* Setup the baud rate:  Calculate the divisor value. */\r
137                         ulWantedClock = ulWantedBaud * serWANTED_CLOCK_SCALING;\r
138                         ulDivisor = configCPU_CLOCK_HZ / ulWantedClock;\r
139 \r
140                         /* Set the DLAB bit so we can access the divisor. */\r
141                         UART0_LCR |= serDLAB;\r
142 \r
143                         /* Setup the divisor. */\r
144                         UART0_DLL = ( unsigned portCHAR ) ( ulDivisor & ( unsigned portLONG ) 0xff );\r
145                         ulDivisor >>= 8;\r
146                         UART0_DLM = ( unsigned portCHAR ) ( ulDivisor & ( unsigned portLONG ) 0xff );\r
147 \r
148                         /* Turn on the FIFO's and clear the buffers. */\r
149                         UART0_FCR = ( serFIFO_ON | serCLEAR_FIFO );\r
150 \r
151                         /* Setup transmission format. */\r
152                         UART0_LCR = serNO_PARITY | ser1_STOP_BIT | ser8_BIT_CHARS;\r
153 \r
154                         /* Setup the VIC for the UART. */\r
155                         VICIntSelect &= ~( serUART0_VIC_CHANNEL_BIT );\r
156                         VICIntEnable |= serUART0_VIC_CHANNEL_BIT;\r
157                         VICVectAddr1 = ( portLONG ) vUART_ISR_Wrapper;\r
158                         VICVectCntl1 = serUART0_VIC_CHANNEL | serUART0_VIC_ENABLE;\r
159 \r
160                         /* Enable UART0 interrupts. */\r
161                         UART0_IER |= serENABLE_INTERRUPTS;\r
162                 }\r
163                 portEXIT_CRITICAL();\r
164         }\r
165         else\r
166         {\r
167                 xReturn = ( xComPortHandle ) 0;\r
168         }\r
169 \r
170         return xReturn;\r
171 }\r
172 /*-----------------------------------------------------------*/\r
173 \r
174 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed portCHAR *pcRxedChar, portTickType xBlockTime )\r
175 {\r
176         /* The port handle is not required as this driver only supports UART0. */\r
177         ( void ) pxPort;\r
178 \r
179         /* Get the next character from the buffer.  Return false if no characters\r
180         are available, or arrive before xBlockTime expires. */\r
181         if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )\r
182         {\r
183                 return pdTRUE;\r
184         }\r
185         else\r
186         {\r
187                 return pdFALSE;\r
188         }\r
189 }\r
190 /*-----------------------------------------------------------*/\r
191 \r
192 void vSerialPutString( xComPortHandle pxPort, const signed portCHAR * const pcString, unsigned portSHORT usStringLength )\r
193 {\r
194 signed portCHAR *pxNext;\r
195 \r
196         /* NOTE: This implementation does not handle the queue being full as no\r
197         block time is used! */\r
198 \r
199         /* The port handle is not required as this driver only supports UART0. */\r
200         ( void ) pxPort;\r
201         ( void ) usStringLength;\r
202 \r
203         /* Send each character in the string, one at a time. */\r
204         pxNext = ( signed portCHAR * ) pcString;\r
205         while( *pxNext )\r
206         {\r
207                 xSerialPutChar( pxPort, *pxNext, serNO_BLOCK );\r
208                 pxNext++;\r
209         }\r
210 }\r
211 /*-----------------------------------------------------------*/\r
212 \r
213 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed portCHAR cOutChar, portTickType xBlockTime )\r
214 {\r
215 signed portBASE_TYPE xReturn;\r
216 \r
217         /* This demo driver only supports one port so the parameter is not used. */\r
218         ( void ) pxPort;\r
219 \r
220         portENTER_CRITICAL();\r
221         {\r
222                 /* Is there space to write directly to the UART? */\r
223                 if( *plTHREEmpty == ( portLONG ) pdTRUE )\r
224                 {\r
225                         /* We wrote the character directly to the UART, so was \r
226                         successful. */\r
227                         *plTHREEmpty = pdFALSE;\r
228                         UART0_THR = cOutChar;\r
229                         xReturn = pdPASS;\r
230                 }\r
231                 else \r
232                 {\r
233                         /* We cannot write directly to the UART, so queue the character.\r
234                         Block for a maximum of xBlockTime if there is no space in the\r
235                         queue. */\r
236                         xReturn = xQueueSend( xCharsForTx, &cOutChar, xBlockTime );\r
237 \r
238                         /* Depending on queue sizing and task prioritisation:  While we \r
239                         were blocked waiting to post interrupts were not disabled.  It is \r
240                         possible that the serial ISR has emptied the Tx queue, in which\r
241                         case we need to start the Tx off again. */\r
242                         if( ( *plTHREEmpty == ( portLONG ) pdTRUE ) && ( xReturn == pdPASS ) )\r
243                         {\r
244                                 xQueueReceive( xCharsForTx, &cOutChar, serNO_BLOCK );\r
245                                 *plTHREEmpty = pdFALSE;\r
246                                 UART0_THR = cOutChar;\r
247                         }\r
248                 }\r
249         }\r
250         portEXIT_CRITICAL();\r
251 \r
252         return xReturn;\r
253 }\r
254 /*-----------------------------------------------------------*/\r
255 \r
256 void vSerialClose( xComPortHandle xPort )\r
257 {\r
258         /* Not supported as not required by the demo application. */\r
259         ( void ) xPort;\r
260 }\r
261 /*-----------------------------------------------------------*/\r
262 \r
263 \r
264 \r
265 \r
266 \r
267         \r