simple-FreeRTOS-demo application is created
[armadillo_firmware.git] / simple-FreeRTOS-demo / serial / serialISR.c
blob36a90c4fd31f834262ec2e89e81e578e70dec1bd
1 /*
2 FreeRTOS V6.0.5 - Copyright (C) 2010 Real Time Engineers Ltd.
4 ***************************************************************************
5 * *
6 * If you are: *
7 * *
8 * + New to FreeRTOS, *
9 * + Wanting to learn FreeRTOS or multitasking in general quickly *
10 * + Looking for basic training, *
11 * + Wanting to improve your FreeRTOS skills and productivity *
12 * *
13 * then take a look at the FreeRTOS eBook *
14 * *
15 * "Using the FreeRTOS Real Time Kernel - a Practical Guide" *
16 * http://www.FreeRTOS.org/Documentation *
17 * *
18 * A pdf reference manual is also available. Both are usually delivered *
19 * to your inbox within 20 minutes to two hours when purchased between 8am *
20 * and 8pm GMT (although please allow up to 24 hours in case of *
21 * exceptional circumstances). Thank you for your support! *
22 * *
23 ***************************************************************************
25 This file is part of the FreeRTOS distribution.
27 FreeRTOS is free software; you can redistribute it and/or modify it under
28 the terms of the GNU General Public License (version 2) as published by the
29 Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
30 ***NOTE*** The exception to the GPL is included to allow you to distribute
31 a combined work that includes FreeRTOS without being obliged to provide the
32 source code for proprietary components outside of the FreeRTOS kernel.
33 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT
34 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
35 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
36 more details. You should have received a copy of the GNU General Public
37 License and the FreeRTOS license exception along with FreeRTOS; if not it
38 can be viewed here: http://www.freertos.org/a00114.html and also obtained
39 by writing to Richard Barry, contact details for whom are available on the
40 FreeRTOS WEB site.
42 1 tab == 4 spaces!
44 http://www.FreeRTOS.org - Documentation, latest information, license and
45 contact details.
47 http://www.SafeRTOS.com - A version that is certified for use in safety
48 critical systems.
50 http://www.OpenRTOS.com - Commercial support, development, porting,
51 licensing and training services.
55 /*
56 BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR UART0.
58 This file contains all the serial port components that must be compiled
59 to ARM mode. The components that can be compiled to either ARM or THUMB
60 mode are contained in serial.c.
64 /* Standard includes. */
65 #include <stdlib.h>
67 /* Scheduler includes. */
68 #include "FreeRTOS.h"
69 #include "queue.h"
70 #include "task.h"
72 /* Demo application includes. */
73 #include "serial.h"
75 /*-----------------------------------------------------------*/
77 /* Constant to access the VIC. */
78 #define serCLEAR_VIC_INTERRUPT ( ( unsigned long ) 0 )
80 /* Constants to determine the ISR source. */
81 #define serSOURCE_THRE ( ( unsigned char ) 0x02 )
82 #define serSOURCE_RX_TIMEOUT ( ( unsigned char ) 0x0c )
83 #define serSOURCE_ERROR ( ( unsigned char ) 0x06 )
84 #define serSOURCE_RX ( ( unsigned char ) 0x04 )
85 #define serINTERRUPT_SOURCE_MASK ( ( unsigned char ) 0x0f )
87 /* Queues used to hold received characters, and characters waiting to be
88 transmitted. */
89 static xQueueHandle xRxedChars;
90 static xQueueHandle xCharsForTx;
91 static volatile long lTHREEmpty;
93 /*-----------------------------------------------------------*/
95 /*
96 * The queues are created in serialISR.c as they are used from the ISR.
97 * Obtain references to the queues and THRE Empty flag.
99 void vSerialISRCreateQueues( unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars, xQueueHandle *pxCharsForTx, long volatile **pplTHREEmptyFlag );
101 /* UART0 interrupt service routine entry point. */
102 void vUART_ISR_Wrapper( void ) __attribute__ ((naked));
104 /* UART0 interrupt service routine handler. */
105 void vUART_ISR_Handler( void ) __attribute__ ((noinline));
107 /*-----------------------------------------------------------*/
108 void vSerialISRCreateQueues( unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars,
109 xQueueHandle *pxCharsForTx, long volatile **pplTHREEmptyFlag )
111 /* Create the queues used to hold Rx and Tx characters. */
112 xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );
113 xCharsForTx = xQueueCreate( uxQueueLength + 1, ( unsigned portBASE_TYPE ) sizeof( signed char ) );
115 /* Pass back a reference to the queues so the serial API file can
116 post/receive characters. */
117 *pxRxedChars = xRxedChars;
118 *pxCharsForTx = xCharsForTx;
120 /* Initialise the THRE empty flag - and pass back a reference. */
121 lTHREEmpty = ( long ) pdTRUE;
122 *pplTHREEmptyFlag = &lTHREEmpty;
124 /*-----------------------------------------------------------*/
126 void vUART_ISR_Wrapper( void )
128 /* Save the context of the interrupted task. */
129 portSAVE_CONTEXT();
131 /* Call the handler. This must be a separate function from the wrapper
132 to ensure the correct stack frame is set up. */
133 __asm volatile ("bl vUART_ISR_Handler");
135 /* Restore the context of whichever task is going to run next. */
136 portRESTORE_CONTEXT();
138 /*-----------------------------------------------------------*/
140 void vUART_ISR_Handler( void )
142 signed char cChar;
143 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
145 /* What caused the interrupt? */
146 switch( UART0_IIR & serINTERRUPT_SOURCE_MASK )
148 case serSOURCE_ERROR : /* Not handling this, but clear the interrupt. */
149 cChar = UART0_LSR;
150 break;
152 case serSOURCE_THRE : /* The THRE is empty. If there is another
153 character in the Tx queue, send it now. */
154 if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xHigherPriorityTaskWoken ) == pdTRUE )
156 UART0_THR = cChar;
158 else
160 /* There are no further characters
161 queued to send so we can indicate
162 that the THRE is available. */
163 lTHREEmpty = pdTRUE;
165 break;
167 case serSOURCE_RX_TIMEOUT :
168 case serSOURCE_RX : /* A character was received. Place it in
169 the queue of received characters. */
170 cChar = UART0_RBR;
171 xQueueSendFromISR( xRxedChars, &cChar, &xHigherPriorityTaskWoken );
172 break;
174 default : /* There is nothing to do, leave the ISR. */
175 break;
178 if( xHigherPriorityTaskWoken )
180 portYIELD_FROM_ISR();
183 /* Clear the ISR in the VIC. */
184 VICVectAddr = serCLEAR_VIC_INTERRUPT;