]> git.sur5r.net Git - freertos/blob - Demo/ARM7_LPC2106_GCC/serial/serial.c
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@14 1d2547de-c912-0410-9cb9...
[freertos] / Demo / ARM7_LPC2106_GCC / serial / serial.c
1 /*\r
2         FreeRTOS.org V4.0.3 - Copyright (C) 2003-2006 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 */\r
32 \r
33 /*\r
34         Changes from V2.4.0\r
35 \r
36                 + Made serial ISR handling more complete and robust.\r
37 \r
38         Changes from V2.4.1\r
39 \r
40                 + Split serial.c into serial.c and serialISR.c.  serial.c can be \r
41                   compiled using ARM or THUMB modes.  serialISR.c must always be\r
42                   compiled in ARM mode.\r
43                 + Another small change to cSerialPutChar().\r
44 \r
45         Changed from V2.5.1\r
46 \r
47                 + In cSerialPutChar() an extra check is made to ensure the post to\r
48                   the queue was successful if then attempting to retrieve the posted\r
49                   character.\r
50 \r
51 */\r
52 \r
53 /* \r
54         BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR UART0. \r
55 \r
56         This file contains all the serial port components that can be compiled to\r
57         either ARM or THUMB mode.  Components that must be compiled to ARM mode are\r
58         contained in serialISR.c.\r
59 */\r
60 \r
61 /* Standard includes. */\r
62 #include <stdlib.h>\r
63 \r
64 /* Scheduler includes. */\r
65 #include "FreeRTOS.h"\r
66 #include "queue.h"\r
67 #include "task.h"\r
68 \r
69 /* Demo application includes. */\r
70 #include "serial.h"\r
71 \r
72 /*-----------------------------------------------------------*/\r
73 \r
74 /* Constants to setup and access the UART. */\r
75 #define serDLAB                                                 ( ( unsigned portCHAR ) 0x80 )\r
76 #define serENABLE_INTERRUPTS                    ( ( unsigned portCHAR ) 0x03 )\r
77 #define serNO_PARITY                                    ( ( unsigned portCHAR ) 0x00 )\r
78 #define ser1_STOP_BIT                                   ( ( unsigned portCHAR ) 0x00 )\r
79 #define ser8_BIT_CHARS                                  ( ( unsigned portCHAR ) 0x03 )\r
80 #define serFIFO_ON                                              ( ( unsigned portCHAR ) 0x01 )\r
81 #define serCLEAR_FIFO                                   ( ( unsigned portCHAR ) 0x06 )\r
82 #define serWANTED_CLOCK_SCALING                 ( ( unsigned portLONG ) 16 )\r
83 \r
84 /* Constants to setup and access the VIC. */\r
85 #define serUART0_VIC_CHANNEL                    ( ( unsigned portLONG ) 0x0006 )\r
86 #define serUART0_VIC_CHANNEL_BIT                ( ( unsigned portLONG ) 0x0040 )\r
87 #define serUART0_VIC_ENABLE                             ( ( unsigned portLONG ) 0x0020 )\r
88 #define serCLEAR_VIC_INTERRUPT                  ( ( unsigned portLONG ) 0 )\r
89 \r
90 #define serINVALID_QUEUE                                ( ( xQueueHandle ) 0 )\r
91 #define serHANDLE                                               ( ( xComPortHandle ) 1 )\r
92 #define serNO_BLOCK                                             ( ( portTickType ) 0 )\r
93 \r
94 /*-----------------------------------------------------------*/\r
95 \r
96 /* Queues used to hold received characters, and characters waiting to be\r
97 transmitted. */\r
98 static xQueueHandle xRxedChars; \r
99 static xQueueHandle xCharsForTx; \r
100 \r
101 /*-----------------------------------------------------------*/\r
102 \r
103 /* Communication flag between the interrupt service routine and serial API. */\r
104 static volatile portLONG *plTHREEmpty;\r
105 \r
106 /* \r
107  * The queues are created in serialISR.c as they are used from the ISR.\r
108  * Obtain references to the queues and THRE Empty flag. \r
109  */\r
110 extern void vSerialISRCreateQueues(     unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars, xQueueHandle *pxCharsForTx, portLONG volatile **pplTHREEmptyFlag );\r
111 \r
112 /*-----------------------------------------------------------*/\r
113 \r
114 xComPortHandle xSerialPortInitMinimal( unsigned portLONG ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )\r
115 {\r
116 unsigned portLONG ulDivisor, ulWantedClock;\r
117 xComPortHandle xReturn = serHANDLE;\r
118 extern void ( vUART_ISR )( void );\r
119 \r
120         /* The queues are used in the serial ISR routine, so are created from\r
121         serialISR.c (which is always compiled to ARM mode. */\r
122         vSerialISRCreateQueues( uxQueueLength, &xRxedChars, &xCharsForTx, &plTHREEmpty );\r
123 \r
124         if( \r
125                 ( xRxedChars != serINVALID_QUEUE ) && \r
126                 ( xCharsForTx != serINVALID_QUEUE ) && \r
127                 ( ulWantedBaud != ( unsigned portLONG ) 0 ) \r
128           )\r
129         {\r
130                 portENTER_CRITICAL();\r
131                 {\r
132                         /* Setup the baud rate:  Calculate the divisor value. */\r
133                         ulWantedClock = ulWantedBaud * serWANTED_CLOCK_SCALING;\r
134                         ulDivisor = configCPU_CLOCK_HZ / ulWantedClock;\r
135 \r
136                         /* Set the DLAB bit so we can access the divisor. */\r
137                         UART0_LCR |= serDLAB;\r
138 \r
139                         /* Setup the divisor. */\r
140                         UART0_DLL = ( unsigned portCHAR ) ( ulDivisor & ( unsigned portLONG ) 0xff );\r
141                         ulDivisor >>= 8;\r
142                         UART0_DLM = ( unsigned portCHAR ) ( ulDivisor & ( unsigned portLONG ) 0xff );\r
143 \r
144                         /* Turn on the FIFO's and clear the buffers. */\r
145                         UART0_FCR = ( serFIFO_ON | serCLEAR_FIFO );\r
146 \r
147                         /* Setup transmission format. */\r
148                         UART0_LCR = serNO_PARITY | ser1_STOP_BIT | ser8_BIT_CHARS;\r
149 \r
150                         /* Setup the VIC for the UART. */\r
151                         VICIntSelect &= ~( serUART0_VIC_CHANNEL_BIT );\r
152                         VICIntEnable |= serUART0_VIC_CHANNEL_BIT;\r
153                         VICVectAddr1 = ( portLONG ) vUART_ISR;\r
154                         VICVectCntl1 = serUART0_VIC_CHANNEL | serUART0_VIC_ENABLE;\r
155 \r
156                         /* Enable UART0 interrupts. */\r
157                         UART0_IER |= serENABLE_INTERRUPTS;\r
158                 }\r
159                 portEXIT_CRITICAL();\r
160         }\r
161         else\r
162         {\r
163                 xReturn = ( xComPortHandle ) 0;\r
164         }\r
165 \r
166         return xReturn;\r
167 }\r
168 /*-----------------------------------------------------------*/\r
169 \r
170 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed portCHAR *pcRxedChar, portTickType xBlockTime )\r
171 {\r
172         /* The port handle is not required as this driver only supports UART0. */\r
173         ( void ) pxPort;\r
174 \r
175         /* Get the next character from the buffer.  Return false if no characters\r
176         are available, or arrive before xBlockTime expires. */\r
177         if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )\r
178         {\r
179                 return pdTRUE;\r
180         }\r
181         else\r
182         {\r
183                 return pdFALSE;\r
184         }\r
185 }\r
186 /*-----------------------------------------------------------*/\r
187 \r
188 void vSerialPutString( xComPortHandle pxPort, const signed portCHAR * const pcString, unsigned portSHORT usStringLength )\r
189 {\r
190 signed portCHAR *pxNext;\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         ( void ) usStringLength;\r
198 \r
199         /* Send each character in the string, one at a time. */\r
200         pxNext = ( signed portCHAR * ) pcString;\r
201         while( *pxNext )\r
202         {\r
203                 xSerialPutChar( pxPort, *pxNext, serNO_BLOCK );\r
204                 pxNext++;\r
205         }\r
206 }\r
207 /*-----------------------------------------------------------*/\r
208 \r
209 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed portCHAR cOutChar, portTickType xBlockTime )\r
210 {\r
211 signed portBASE_TYPE xReturn;\r
212 \r
213         /* This demo driver only supports one port so the parameter is not used. */\r
214         ( void ) pxPort;\r
215 \r
216         portENTER_CRITICAL();\r
217         {\r
218                 /* Is there space to write directly to the UART? */\r
219                 if( *plTHREEmpty == ( portLONG ) pdTRUE )\r
220                 {\r
221                         /* We wrote the character directly to the UART, so was \r
222                         successful. */\r
223                         *plTHREEmpty = pdFALSE;\r
224                         UART0_THR = cOutChar;\r
225                         xReturn = pdPASS;\r
226                 }\r
227                 else \r
228                 {\r
229                         /* We cannot write directly to the UART, so queue the character.\r
230                         Block for a maximum of xBlockTime if there is no space in the\r
231                         queue. */\r
232                         xReturn = xQueueSend( xCharsForTx, &cOutChar, xBlockTime );\r
233 \r
234                         /* Depending on queue sizing and task prioritisation:  While we \r
235                         were blocked waiting to post interrupts were not disabled.  It is \r
236                         possible that the serial ISR has emptied the Tx queue, in which\r
237                         case we need to start the Tx off again. */\r
238                         if( ( *plTHREEmpty == ( portLONG ) pdTRUE ) && ( xReturn == pdPASS ) )\r
239                         {\r
240                                 xQueueReceive( xCharsForTx, &cOutChar, serNO_BLOCK );\r
241                                 *plTHREEmpty = pdFALSE;\r
242                                 UART0_THR = cOutChar;\r
243                         }\r
244                 }\r
245         }\r
246         portEXIT_CRITICAL();\r
247 \r
248         return xReturn;\r
249 }\r
250 /*-----------------------------------------------------------*/\r
251 \r
252 void vSerialClose( xComPortHandle xPort )\r
253 {\r
254         /* Not supported as not required by the demo application. */\r
255         ( void ) xPort;\r
256 }\r
257 /*-----------------------------------------------------------*/\r
258 \r
259 \r
260 \r
261 \r
262 \r
263         \r