]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_MB9B500_IAR_Keil/serial.c
57658f26e2c30e72207a2f3d64424221964c8d9b
[freertos] / Demo / CORTEX_MB9B500_IAR_Keil / serial.c
1 /*\r
2     FreeRTOS V7.0.0 - Copyright (C) 2011 Real Time Engineers Ltd.\r
3         \r
4 \r
5     ***************************************************************************\r
6      *                                                                       *\r
7      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
8      *    Complete, revised, and edited pdf reference manuals are also       *\r
9      *    available.                                                         *\r
10      *                                                                       *\r
11      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
12      *    ensuring you get running as quickly as possible and with an        *\r
13      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
14      *    the FreeRTOS project to continue with its mission of providing     *\r
15      *    professional grade, cross platform, de facto standard solutions    *\r
16      *    for microcontrollers - completely free of charge!                  *\r
17      *                                                                       *\r
18      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
19      *                                                                       *\r
20      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
21      *                                                                       *\r
22     ***************************************************************************\r
23 \r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     >>>NOTE<<< The modification to the GPL is included to allow you to\r
31     distribute a combined work that includes FreeRTOS without being obliged to\r
32     provide the source code for proprietary components outside of the FreeRTOS\r
33     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
34     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
35     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public\r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     http://www.FreeRTOS.org - Documentation, latest information, license and\r
45     contact details.\r
46 \r
47     http://www.SafeRTOS.com - A version that is certified for use in safety\r
48     critical systems.\r
49 \r
50     http://www.OpenRTOS.com - Commercial support, development, porting,\r
51     licensing and training services.\r
52 */\r
53 \r
54 /*\r
55         BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR UART0.\r
56         \r
57         ***Note*** This example uses queues to send each character into an interrupt\r
58         service routine and out of an interrupt service routine individually.  This\r
59         is done to demonstrate queues being used in an interrupt, and to deliberately\r
60         load the system to test the FreeRTOS port.  It is *NOT* meant to be an\r
61         example of an efficient implementation.  An efficient implementation should\r
62         use FIFOs or DMA if available, and only use FreeRTOS API functions when\r
63         enough has been received to warrant a task being unblocked to process the\r
64         data.\r
65 */\r
66 \r
67 /* Scheduler includes. */\r
68 #include "FreeRTOS.h"\r
69 #include "queue.h"\r
70 #include "semphr.h"\r
71 #include "comtest2.h"\r
72 \r
73 /* Library includes. */\r
74 #include "mb9bf506n.h"\r
75 #include "system_mb9bf50x.h"\r
76 \r
77 /* Demo application includes. */\r
78 #include "serial.h"\r
79 /*-----------------------------------------------------------*/\r
80 \r
81 /* Register bit definitions. */\r
82 #define serRX_INT_ENABLE                0x10\r
83 #define serTX_INT_ENABLE                0x08\r
84 #define serRX_ENABLE                    0x02\r
85 #define serTX_ENABLE                    0x01\r
86 #define serORE_ERROR_BIT                0x08\r
87 #define serFRE_ERROR_BIT                0x10\r
88 #define serPE_ERROR_BIT                 0x20\r
89 #define serRX_INT                               0x04\r
90 #define serTX_INT                               0x02\r
91 \r
92 /* Misc defines. */\r
93 #define serINVALID_QUEUE                                ( ( xQueueHandle ) 0 )\r
94 #define serNO_BLOCK                                             ( ( portTickType ) 0 )\r
95 \r
96 /*-----------------------------------------------------------*/\r
97 \r
98 /* The queue used to hold received characters. */\r
99 static xQueueHandle xRxedChars;\r
100 static xQueueHandle xCharsForTx;\r
101 \r
102 /*-----------------------------------------------------------*/\r
103 \r
104 /*\r
105  * See the serial2.h header file.\r
106  */\r
107 xComPortHandle xSerialPortInitMinimal( unsigned long ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )\r
108 {\r
109         /* Create the queues used to hold Rx/Tx characters. */\r
110         xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
111         xCharsForTx = xQueueCreate( uxQueueLength + 1, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
112         \r
113         /* If the queues were created correctly then setup the serial port\r
114         hardware. */\r
115         if( ( xRxedChars != serINVALID_QUEUE ) && ( xCharsForTx != serINVALID_QUEUE ) )\r
116         {\r
117                 /* Ensure interrupts don't fire during the init process.  Interrupts\r
118                 will be enabled automatically when the first task start running. */\r
119                 portDISABLE_INTERRUPTS();\r
120                 \r
121                 /* Configure P21 and P22 for use by the UART. */\r
122                 FM3_GPIO->PFR2 |= ( 1 << 0x01 ) | ( 1 << 0x02 );\r
123                 \r
124                 /* SIN0_0 and SOT0_0. */\r
125                 FM3_GPIO->EPFR07 |= ( 1 << 6 );\r
126                 \r
127                 /* Reset. */\r
128                 FM3_MFS0_UART->SCR = 0x80;\r
129                 \r
130                 /* Enable output in mode 0. */\r
131                 FM3_MFS0_UART->SMR = 0x01;\r
132                 \r
133                 /* Clear all errors that may already be present. */\r
134                 FM3_MFS0_UART->SSR = 0x00;\r
135                 FM3_MFS0_UART->ESCR = 0x00;\r
136                 \r
137                 FM3_MFS0_UART->BGR = ( configCPU_CLOCK_HZ / 2UL ) / ( ulWantedBaud - 1UL );\r
138 \r
139                 /* Enable Rx, Tx, and the Rx interrupt. */              \r
140                 FM3_MFS0_UART->SCR |= ( serRX_ENABLE | serTX_ENABLE | serRX_INT_ENABLE );\r
141                 \r
142                 /* Configure the NVIC for UART interrupts. */\r
143                 NVIC_ClearPendingIRQ( MFS0RX_IRQn );\r
144                 NVIC_EnableIRQ( MFS0RX_IRQn );\r
145                 \r
146                 /* The priority *MUST* be at or below\r
147                 configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY as FreeRTOS API functions\r
148                 are called in the interrupt handler. */\r
149                 NVIC_SetPriority( MFS0RX_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );\r
150                 \r
151                 /* Do the same for the Tx interrupts. */\r
152                 NVIC_ClearPendingIRQ( MFS0TX_IRQn );\r
153                 NVIC_EnableIRQ( MFS0TX_IRQn );\r
154                 \r
155                 /* The priority *MUST* be at or below\r
156                 configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY as FreeRTOS API functions\r
157                 are called in the interrupt handler. */\r
158                 NVIC_SetPriority( MFS0TX_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );\r
159         }\r
160 \r
161         /* This demo file only supports a single port but we have to return\r
162         something to comply with the standard demo header file. */\r
163         return ( xComPortHandle ) 0;\r
164 }\r
165 /*-----------------------------------------------------------*/\r
166 \r
167 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed char *pcRxedChar, portTickType xBlockTime )\r
168 {\r
169         /* The port handle is not required as this driver only supports one port. */\r
170         ( void ) pxPort;\r
171 \r
172         /* Get the next character from the buffer.  Return false if no characters\r
173         are available, or arrive before xBlockTime expires. */\r
174         if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )\r
175         {\r
176                 return pdTRUE;\r
177         }\r
178         else\r
179         {\r
180                 return pdFALSE;\r
181         }\r
182 }\r
183 /*-----------------------------------------------------------*/\r
184 \r
185 void vSerialPutString( xComPortHandle pxPort, const signed char * const pcString, unsigned short usStringLength )\r
186 {\r
187 signed char *pxNext;\r
188 \r
189         /* A couple of parameters that this port does not use. */\r
190         ( void ) usStringLength;\r
191         ( void ) pxPort;\r
192 \r
193         /* NOTE: This implementation does not handle the queue being full as no\r
194         block time is used! */\r
195 \r
196         /* The port handle is not required as this driver only supports one UART. */\r
197         ( void ) pxPort;\r
198 \r
199         /* Send each character in the string, one at a time. */\r
200         pxNext = ( signed char * ) 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 char cOutChar, portTickType xBlockTime )\r
210 {\r
211 signed portBASE_TYPE xReturn;\r
212 \r
213         if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) == pdPASS )\r
214         {\r
215                 xReturn = pdPASS;\r
216                 \r
217                 /* Enable the UART Tx interrupt. */\r
218                 FM3_MFS0_UART->SCR |= serTX_INT_ENABLE;\r
219         }\r
220         else\r
221         {\r
222                 xReturn = pdFAIL;\r
223         }\r
224 \r
225         return xReturn;\r
226 }\r
227 /*-----------------------------------------------------------*/\r
228 \r
229 void vSerialClose( xComPortHandle xPort )\r
230 {\r
231         /* Not supported as not required by the demo application. */\r
232 }\r
233 /*-----------------------------------------------------------*/\r
234 \r
235 void MFS0RX_IRQHandler( void )\r
236 {\r
237 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
238 char cChar;\r
239 \r
240         if( ( FM3_MFS0_UART->SSR & ( serORE_ERROR_BIT | serFRE_ERROR_BIT | serPE_ERROR_BIT ) ) != 0 )\r
241         {\r
242                 /* A PE, ORE or FRE error occurred.  Clear it. */\r
243                 FM3_MFS0_UART->SSR |= ( 1 << 7 );\r
244                 cChar = FM3_MFS0_UART->RDR;\r
245         }\r
246         else if( FM3_MFS0_UART->SSR & serRX_INT )\r
247         {\r
248                 /* A character has been received on the USART, send it to the Rx\r
249                 handler task. */\r
250                 cChar = FM3_MFS0_UART->RDR;\r
251                 xQueueSendFromISR( xRxedChars, &cChar, &xHigherPriorityTaskWoken );\r
252         }       \r
253 \r
254         /* If sending or receiving from a queue has caused a task to unblock, and\r
255         the unblocked task has a priority equal to or higher than the currently\r
256         running task (the task this ISR interrupted), then xHigherPriorityTaskWoken\r
257         will have automatically been set to pdTRUE within the queue send or receive\r
258         function.  portEND_SWITCHING_ISR() will then ensure that this ISR returns\r
259         directly to the higher priority unblocked task. */\r
260         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
261 }\r
262 /*-----------------------------------------------------------*/\r
263 \r
264 void MFS0TX_IRQHandler( void )\r
265 {\r
266 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
267 char cChar;\r
268 \r
269         if( FM3_MFS0_UART->SSR & serTX_INT )\r
270         {\r
271                 /* The interrupt was caused by the TX register becoming empty.  Are\r
272                 there any more characters to transmit? */\r
273                 if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xHigherPriorityTaskWoken ) == pdTRUE )\r
274                 {\r
275                         /* A character was retrieved from the queue so can be sent to the\r
276                         USART now. */\r
277                         FM3_MFS0_UART->TDR = cChar;\r
278                 }\r
279                 else\r
280                 {\r
281                         /* Disable the Tx interrupt. */\r
282                         FM3_MFS0_UART->SCR &= ~serTX_INT_ENABLE;\r
283                 }               \r
284         }       \r
285 \r
286         /* If sending or receiving from a queue has caused a task to unblock, and\r
287         the unblocked task has a priority equal to or higher than the currently\r
288         running task (the task this ISR interrupted), then xHigherPriorityTaskWoken\r
289         will have automatically been set to pdTRUE within the queue send or receive\r
290         function.  portEND_SWITCHING_ISR() will then ensure that this ISR returns\r
291         directly to the higher priority unblocked task. */\r
292         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
293 }\r
294 \r
295 \r
296 \r
297 \r
298 \r
299         \r