2 FreeRTOS V5.4.1 - Copyright (C) 2009 Real Time Engineers Ltd.
\r
4 This file is part of the FreeRTOS distribution.
\r
6 FreeRTOS is free software; you can redistribute it and/or modify it under
\r
7 the terms of the GNU General Public License (version 2) as published by the
\r
8 Free Software Foundation and modified by the FreeRTOS exception.
\r
9 **NOTE** The exception to the GPL is included to allow you to distribute a
\r
10 combined work that includes FreeRTOS without being obliged to provide the
\r
11 source code for proprietary components outside of the FreeRTOS kernel.
\r
12 Alternative commercial license and support terms are also available upon
\r
13 request. See the licensing section of http://www.FreeRTOS.org for full
\r
16 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT
\r
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
\r
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
\r
21 You should have received a copy of the GNU General Public License along
\r
22 with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59
\r
23 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\r
26 ***************************************************************************
\r
28 * Looking for a quick start? Then check out the FreeRTOS eBook! *
\r
29 * See http://www.FreeRTOS.org/Documentation for details *
\r
31 ***************************************************************************
\r
35 Please ensure to read the configuration and relevant port sections of the
\r
36 online documentation.
\r
38 http://www.FreeRTOS.org - Documentation, latest information, license and
\r
41 http://www.SafeRTOS.com - A version that is certified for use in safety
\r
44 http://www.OpenRTOS.com - Commercial support, development, porting,
\r
45 licensing and training services.
\r
50 BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER FOR UART
\r
53 /* Scheduler includes. */
\r
54 #include "FreeRTOS.h"
\r
58 /* Demo application includes. */
\r
61 /* Library includes. */
\r
62 #include "xparameters.h"
\r
63 #include "xuartlite.h"
\r
64 #include "xuartlite_l.h"
\r
66 /*-----------------------------------------------------------*/
\r
68 /* Queues used to hold received characters, and characters waiting to be
\r
70 static xQueueHandle xRxedChars;
\r
71 static xQueueHandle xCharsForTx;
\r
73 /* Structure that maintains information on the UART being used. */
\r
74 static XUartLite xUART;
\r
77 * Sample UART interrupt handler. Note this is used to demonstrate the kernel
\r
78 * features and test the port - it is not intended to represent an efficient
\r
81 static void vSerialISR( XUartLite *pxUART );
\r
83 /*-----------------------------------------------------------*/
\r
85 xComPortHandle xSerialPortInitMinimal( unsigned portLONG ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )
\r
87 /* NOTE: The baud rate used by this driver is determined by the hardware
\r
88 parameterization of the UART Lite peripheral, and the baud value passed to
\r
89 this function has no effect. */
\r
90 ( void ) ulWantedBaud;
\r
92 /* Create the queues used to hold Rx and Tx characters. */
\r
93 xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );
\r
94 xCharsForTx = xQueueCreate( uxQueueLength + 1, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );
\r
96 /* Only initialise the UART if the queues were created correctly. */
\r
97 if( ( xRxedChars != NULL ) && ( xCharsForTx != NULL ) )
\r
100 XUartLite_Initialize( &xUART, XPAR_RS232_UART_DEVICE_ID );
\r
101 XUartLite_ResetFifos( &xUART );
\r
102 XUartLite_DisableInterrupt( &xUART );
\r
104 if( xPortInstallInterruptHandler( XPAR_XPS_INTC_0_RS232_UART_INTERRUPT_INTR, ( XInterruptHandler )vSerialISR, (void *)&xUART ) == pdPASS )
\r
106 /* xPortInstallInterruptHandler() could fail if
\r
107 vPortSetupInterruptController() has not been called prior to this
\r
109 XUartLite_EnableInterrupt( &xUART );
\r
113 /* There is only one port so the handle is not used. */
\r
114 return ( xComPortHandle ) 0;
\r
116 /*-----------------------------------------------------------*/
\r
118 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed portCHAR *pcRxedChar, portTickType xBlockTime )
\r
120 /* The port handle is not required as this driver only supports one UART. */
\r
123 /* Get the next character from the buffer. Return false if no characters
\r
124 are available, or arrive before xBlockTime expires. */
\r
125 if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )
\r
134 /*-----------------------------------------------------------*/
\r
136 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed portCHAR cOutChar, portTickType xBlockTime )
\r
138 portBASE_TYPE xReturn = pdTRUE;
\r
140 /* Just to remove compiler warning. */
\r
143 portENTER_CRITICAL();
\r
145 /* If the UART FIFO is full we can block posting the new data on the
\r
147 if( XUartLite_mIsTransmitFull( XPAR_RS232_UART_BASEADDR ) )
\r
149 if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) != pdPASS )
\r
154 /* Otherwise, if there is data already in the queue we should add the
\r
155 new data to the back of the queue to ensure the sequencing is
\r
157 else if( uxQueueMessagesWaiting( xCharsForTx ) )
\r
159 if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) != pdPASS )
\r
164 /* If the UART FIFO is not full and there is no data already in the
\r
165 queue we can write directly to the FIFO without disrupting the
\r
169 XIo_Out32( XPAR_RS232_UART_BASEADDR + XUL_TX_FIFO_OFFSET, cOutChar );
\r
172 portEXIT_CRITICAL();
\r
176 /*-----------------------------------------------------------*/
\r
178 void vSerialClose( xComPortHandle xPort )
\r
180 /* Not supported as not required by the demo application. */
\r
183 /*-----------------------------------------------------------*/
\r
185 static void vSerialISR( XUartLite *pxUART )
\r
187 unsigned portLONG ulISRStatus;
\r
188 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE, lDidSomething;
\r
191 /* Just to remove compiler warning. */
\r
196 lDidSomething = pdFALSE;
\r
198 ulISRStatus = XIo_In32( XPAR_RS232_UART_BASEADDR + XUL_STATUS_REG_OFFSET );
\r
200 if( ( ulISRStatus & XUL_SR_RX_FIFO_VALID_DATA ) != 0 )
\r
202 /* A character is available - place it in the queue of received
\r
203 characters. This might wake a task that was blocked waiting for
\r
205 cChar = ( portCHAR ) XIo_In32( XPAR_RS232_UART_BASEADDR + XUL_RX_FIFO_OFFSET );
\r
206 xQueueSendFromISR( xRxedChars, &cChar, &xHigherPriorityTaskWoken );
\r
207 lDidSomething = pdTRUE;
\r
210 if( ( ulISRStatus & XUL_SR_TX_FIFO_EMPTY ) != 0 )
\r
212 /* There is space in the FIFO - if there are any characters queue for
\r
213 transmission they can be sent to the UART now. This might unblock a
\r
214 task that was waiting for space to become available on the Tx queue. */
\r
215 if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xHigherPriorityTaskWoken ) == pdTRUE )
\r
217 XIo_Out32( XPAR_RS232_UART_BASEADDR + XUL_TX_FIFO_OFFSET, cChar );
\r
218 lDidSomething = pdTRUE;
\r
221 } while( lDidSomething == pdTRUE );
\r
223 /* If we woke any tasks we may require a context switch. */
\r
224 if( xHigherPriorityTaskWoken )
\r
226 portYIELD_FROM_ISR();
\r