OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [ARM7_LPC2106_GCC/] [serial/] [serialISR.c] - Blame information for rev 615

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
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 UART0.
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
 
75
/*-----------------------------------------------------------*/
76
 
77
/* Constant to access the VIC. */
78
#define serCLEAR_VIC_INTERRUPT                  ( ( unsigned long ) 0 )
79
 
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 )
86
 
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;
92
 
93
/*-----------------------------------------------------------*/
94
 
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.
98
 */
99
void vSerialISRCreateQueues( unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars, xQueueHandle *pxCharsForTx, long volatile **pplTHREEmptyFlag );
100
 
101
/* UART0 interrupt service routine entry point. */
102
void vUART_ISR_Wrapper( void ) __attribute__ ((naked));
103
 
104
/* UART0 interrupt service routine handler. */
105
void vUART_ISR_Handler( void ) __attribute__ ((noinline));
106
 
107
/*-----------------------------------------------------------*/
108
void vSerialISRCreateQueues(    unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxRxedChars,
109
                                                                xQueueHandle *pxCharsForTx, long volatile **pplTHREEmptyFlag )
110
{
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 ) );
114
 
115
        /* Pass back a reference to the queues so the serial API file can
116
        post/receive characters. */
117
        *pxRxedChars = xRxedChars;
118
        *pxCharsForTx = xCharsForTx;
119
 
120
        /* Initialise the THRE empty flag - and pass back a reference. */
121
        lTHREEmpty = ( long ) pdTRUE;
122
        *pplTHREEmptyFlag = &lTHREEmpty;
123
}
124
/*-----------------------------------------------------------*/
125
 
126
void vUART_ISR_Wrapper( void )
127
{
128
        /* Save the context of the interrupted task. */
129
        portSAVE_CONTEXT();
130
 
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");
134
 
135
        /* Restore the context of whichever task is going to run next. */
136
        portRESTORE_CONTEXT();
137
}
138
/*-----------------------------------------------------------*/
139
 
140
void vUART_ISR_Handler( void )
141
{
142
signed char cChar;
143
portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
144
 
145
        /* What caused the interrupt? */
146
        switch( UART0_IIR & serINTERRUPT_SOURCE_MASK )
147
        {
148
                case serSOURCE_ERROR :  /* Not handling this, but clear the interrupt. */
149
                                                                cChar = UART0_LSR;
150
                                                                break;
151
 
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 )
155
                                                                {
156
                                                                        UART0_THR = cChar;
157
                                                                }
158
                                                                else
159
                                                                {
160
                                                                        /* There are no further characters
161
                                                                        queued to send so we can indicate
162
                                                                        that the THRE is available. */
163
                                                                        lTHREEmpty = pdTRUE;
164
                                                                }
165
                                                                break;
166
 
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;
173
 
174
                default                         :       /* There is nothing to do, leave the ISR. */
175
                                                                break;
176
        }
177
 
178
        if( xHigherPriorityTaskWoken )
179
        {
180
                portYIELD_FROM_ISR();
181
        }
182
 
183
        /* Clear the ISR in the VIC. */
184
        VICVectAddr = serCLEAR_VIC_INTERRUPT;
185
}
186
 
187
 
188
 
189
 
190
 
191
 
192
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.