1 |
577 |
jeremybenn |
/*
|
2 |
|
|
FreeRTOS V6.1.1 - Copyright (C) 2011 Real Time Engineers Ltd.
|
3 |
|
|
|
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 books - available as PDF or paperback *
|
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 |
|
|
***************************************************************************
|
24 |
|
|
|
25 |
|
|
This file is part of the FreeRTOS distribution.
|
26 |
|
|
|
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.
|
41 |
|
|
|
42 |
|
|
1 tab == 4 spaces!
|
43 |
|
|
|
44 |
|
|
http://www.FreeRTOS.org - Documentation, latest information, license and
|
45 |
|
|
contact details.
|
46 |
|
|
|
47 |
|
|
http://www.SafeRTOS.com - A version that is certified for use in safety
|
48 |
|
|
critical systems.
|
49 |
|
|
|
50 |
|
|
http://www.OpenRTOS.com - Commercial support, development, porting,
|
51 |
|
|
licensing and training services.
|
52 |
|
|
*/
|
53 |
|
|
|
54 |
|
|
|
55 |
|
|
/*
|
56 |
|
|
BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR USART0.
|
57 |
|
|
|
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.
|
61 |
|
|
|
62 |
|
|
*/
|
63 |
|
|
|
64 |
|
|
/* Standard includes. */
|
65 |
|
|
#include <stdlib.h>
|
66 |
|
|
|
67 |
|
|
/* Scheduler includes. */
|
68 |
|
|
#include "FreeRTOS.h"
|
69 |
|
|
#include "queue.h"
|
70 |
|
|
#include "task.h"
|
71 |
|
|
|
72 |
|
|
/* Demo application includes. */
|
73 |
|
|
#include "serial.h"
|
74 |
|
|
#include "AT91R40008.h"
|
75 |
|
|
#include "usart.h"
|
76 |
|
|
|
77 |
|
|
/*-----------------------------------------------------------*/
|
78 |
|
|
|
79 |
|
|
/* Constant to access the AIC. */
|
80 |
|
|
#define serCLEAR_AIC_INTERRUPT ( ( unsigned long ) 0 )
|
81 |
|
|
|
82 |
|
|
/* Constants to determine the ISR source. */
|
83 |
|
|
#define serSOURCE_THRE ( ( unsigned char ) 0x02 )
|
84 |
|
|
#define serSOURCE_RX_TIMEOUT ( ( unsigned char ) 0x0c )
|
85 |
|
|
#define serSOURCE_ERROR ( ( unsigned char ) 0x06 )
|
86 |
|
|
#define serSOURCE_RX ( ( unsigned char ) 0x04 )
|
87 |
|
|
#define serINTERRUPT_SOURCE_MASK ( ( unsigned long ) (US_RXRDY | US_TXRDY | US_RXBRK | US_OVRE | US_FRAME | US_PARE) )
|
88 |
|
|
|
89 |
|
|
/* Queues used to hold received characters, and characters waiting to be
|
90 |
|
|
transmitted. */
|
91 |
|
|
static xQueueHandle xRxedChars;
|
92 |
|
|
static xQueueHandle xCharsForTx;
|
93 |
|
|
|
94 |
|
|
/*-----------------------------------------------------------*/
|
95 |
|
|
|
96 |
|
|
/* UART0 interrupt service routine. This can cause a context switch so MUST
|
97 |
|
|
be declared "naked". */
|
98 |
|
|
void vUART_ISR_Wrapper( void ) __attribute__ ((naked));
|
99 |
|
|
|
100 |
|
|
/* The ISR function that actually performs the work. This must be separate
|
101 |
|
|
from the wrapper to ensure the correct stack frame is set up. */
|
102 |
|
|
void vUART_ISR_Handler( void ) __attribute__ ((noinline));
|
103 |
|
|
|
104 |
|
|
/*-----------------------------------------------------------*/
|
105 |
|
|
void vSerialISRCreateQueues( unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars, xQueueHandle *pxCharsForTx )
|
106 |
|
|
{
|
107 |
|
|
/* Create the queues used to hold Rx and Tx characters. */
|
108 |
|
|
xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );
|
109 |
|
|
xCharsForTx = xQueueCreate( uxQueueLength + 1, ( unsigned portBASE_TYPE ) sizeof( signed char ) );
|
110 |
|
|
|
111 |
|
|
/* Pass back a reference to the queues so the serial API file can
|
112 |
|
|
post/receive characters. */
|
113 |
|
|
*pxRxedChars = xRxedChars;
|
114 |
|
|
*pxCharsForTx = xCharsForTx;
|
115 |
|
|
}
|
116 |
|
|
/*-----------------------------------------------------------*/
|
117 |
|
|
|
118 |
|
|
void vUART_ISR_Wrapper( void )
|
119 |
|
|
{
|
120 |
|
|
/* Save the context of the interrupted task. */
|
121 |
|
|
portSAVE_CONTEXT();
|
122 |
|
|
|
123 |
|
|
/* Call the handler. This must be a separate function to ensure the
|
124 |
|
|
stack frame is correctly set up. */
|
125 |
|
|
__asm volatile( "bl vUART_ISR_Handler" );
|
126 |
|
|
|
127 |
|
|
/* Restore the context of whichever task will run next. */
|
128 |
|
|
portRESTORE_CONTEXT();
|
129 |
|
|
}
|
130 |
|
|
/*-----------------------------------------------------------*/
|
131 |
|
|
|
132 |
|
|
void vUART_ISR_Handler( void )
|
133 |
|
|
{
|
134 |
|
|
/* Now we can declare the local variables. These must be static. */
|
135 |
|
|
signed char cChar;
|
136 |
|
|
portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
|
137 |
|
|
unsigned long ulStatus;
|
138 |
|
|
|
139 |
|
|
/* What caused the interrupt? */
|
140 |
|
|
ulStatus = AT91C_BASE_US0->US_CSR & AT91C_BASE_US0->US_IMR;
|
141 |
|
|
|
142 |
|
|
if (ulStatus & US_TXRDY)
|
143 |
|
|
{
|
144 |
|
|
/* The interrupt was caused by the THR becoming empty. Are there any
|
145 |
|
|
more characters to transmit? */
|
146 |
|
|
if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xHigherPriorityTaskWoken ) == pdTRUE )
|
147 |
|
|
{
|
148 |
|
|
/* A character was retrieved from the queue so can be sent to the
|
149 |
|
|
THR now. */
|
150 |
|
|
AT91C_BASE_US0->US_THR = cChar;
|
151 |
|
|
}
|
152 |
|
|
else
|
153 |
|
|
{
|
154 |
|
|
/* Queue empty, nothing to send so turn off the Tx interrupt. */
|
155 |
|
|
AT91C_BASE_US0->US_IDR = US_TXRDY;
|
156 |
|
|
}
|
157 |
|
|
}
|
158 |
|
|
|
159 |
|
|
if (ulStatus & US_RXRDY)
|
160 |
|
|
{
|
161 |
|
|
/* The interrupt was caused by the receiver getting data. */
|
162 |
|
|
cChar = AT91C_BASE_US0->US_RHR;
|
163 |
|
|
|
164 |
|
|
xQueueSendFromISR(xRxedChars, &cChar, &xHigherPriorityTaskWoken);
|
165 |
|
|
}
|
166 |
|
|
|
167 |
|
|
/* Acknowledge the interrupt at AIC level... */
|
168 |
|
|
AT91C_BASE_AIC->AIC_EOICR = serCLEAR_AIC_INTERRUPT;
|
169 |
|
|
|
170 |
|
|
/* If an event caused a task to unblock then we call "Yield from ISR" to
|
171 |
|
|
ensure that the unblocked task is the task that executes when the interrupt
|
172 |
|
|
completes if the unblocked task has a priority higher than the interrupted
|
173 |
|
|
task. */
|
174 |
|
|
if( xHigherPriorityTaskWoken )
|
175 |
|
|
{
|
176 |
|
|
portYIELD_FROM_ISR();
|
177 |
|
|
}
|
178 |
|
|
}
|
179 |
|
|
/*-----------------------------------------------------------*/
|
180 |
|
|
|