]> git.sur5r.net Git - freertos/blob - Demo/ARM7_AT91SAM7X256_Eclipse/RTOSDemo/webserver/EMAC_ISR.c
Update to V5.4.2. See http://www.freertos.org/History.txt .
[freertos] / Demo / ARM7_AT91SAM7X256_Eclipse / RTOSDemo / webserver / EMAC_ISR.c
1 /*\r
2         FreeRTOS V5.4.2 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 \r
4         This file is part of the FreeRTOS distribution.\r
5 \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
14         license details.\r
15 \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
19         more details.\r
20 \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
24 \r
25 \r
26         ***************************************************************************\r
27         *                                                                         *\r
28         * Looking for a quick start?  Then check out the FreeRTOS eBook!          *\r
29         * See http://www.FreeRTOS.org/Documentation for details                   *\r
30         *                                                                         *\r
31         ***************************************************************************\r
32 \r
33         1 tab == 4 spaces!\r
34 \r
35         Please ensure to read the configuration and relevant port sections of the\r
36         online documentation.\r
37 \r
38         http://www.FreeRTOS.org - Documentation, latest information, license and\r
39         contact details.\r
40 \r
41         http://www.SafeRTOS.com - A version that is certified for use in safety\r
42         critical systems.\r
43 \r
44         http://www.OpenRTOS.com - Commercial support, development, porting,\r
45         licensing and training services.\r
46 */\r
47 \r
48 #include "FreeRTOS.h"\r
49 #include "semphr.h"\r
50 #include "task.h"\r
51 \r
52 /* Wrapper for the EMAC interrupt. */\r
53 void vEMACISR_Wrapper( void ) __attribute__((naked));\r
54 \r
55 /* Handler called by the ISR wrapper.  This must be kept a separate\r
56 function to ensure the stack frame is correctly set up. */\r
57 void vEMACISR_Handler( void );\r
58 \r
59 static xSemaphoreHandle xEMACSemaphore;\r
60 \r
61 /*-----------------------------------------------------------*/\r
62 \r
63 void vPassEMACSemaphore( xSemaphoreHandle xSemaphore )\r
64 {\r
65         xEMACSemaphore = xSemaphore;\r
66 }\r
67 /*-----------------------------------------------------------*/\r
68 \r
69 void vEMACISR_Handler( void )\r
70 {\r
71 volatile unsigned portLONG ulIntStatus, ulRxStatus;\r
72 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
73 \r
74         ulIntStatus = AT91C_BASE_EMAC->EMAC_ISR;\r
75         ulRxStatus = AT91C_BASE_EMAC->EMAC_RSR;\r
76 \r
77         if( ( ulIntStatus & AT91C_EMAC_RCOMP ) || ( ulRxStatus & AT91C_EMAC_REC ) )\r
78         {\r
79                 /* A frame has been received, signal the uIP task so it can process\r
80                 the Rx descriptors. */\r
81                 xSemaphoreGiveFromISR( xEMACSemaphore, &xHigherPriorityTaskWoken );\r
82                 AT91C_BASE_EMAC->EMAC_RSR = AT91C_EMAC_REC;\r
83         }\r
84 \r
85         /* Clear the interrupt. */\r
86         AT91C_BASE_AIC->AIC_EOICR = 0;\r
87         \r
88     /* Switch to the uIP task. */\r
89     if( xHigherPriorityTaskWoken )\r
90     {\r
91         /* If a task of higher priority than the interrupted task was\r
92         unblocked by the ISR then this call will ensure that the \r
93         unblocked task is the task the ISR returns to. */\r
94         portYIELD_FROM_ISR();\r
95     }\r
96 }\r
97 /*-----------------------------------------------------------*/\r
98 \r
99 void vEMACISR_Wrapper( void )\r
100 {\r
101         /* Save the context of the interrupted task. */\r
102         portSAVE_CONTEXT();\r
103         \r
104         /* Call the handler task to do the actual work.  This must be a separate\r
105         function to ensure the stack frame is correctly set up. */\r
106         vEMACISR_Handler();\r
107         \r
108         /* Restore the context of whichever task is the next to run. */\r
109         portRESTORE_CONTEXT();\r
110 }\r
111 \r
112 \r