]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c
Change version numbers in preparation for V7.6.0 release.
[freertos] / FreeRTOS / Demo / CORTEX_LM3Sxxxx_IAR_Keil / webserver / emac.c
1 /*\r
2     FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd. \r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS provides completely free yet professionally developed,    *\r
10      *    robust, strictly quality controlled, supported, and cross          *\r
11      *    platform software that has become a de facto standard.             *\r
12      *                                                                       *\r
13      *    Help yourself get started quickly and support the FreeRTOS         *\r
14      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
15      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
16      *                                                                       *\r
17      *    Thank you!                                                         *\r
18      *                                                                       *\r
19     ***************************************************************************\r
20 \r
21     This file is part of the FreeRTOS distribution.\r
22 \r
23     FreeRTOS is free software; you can redistribute it and/or modify it under\r
24     the terms of the GNU General Public License (version 2) as published by the\r
25     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
26 \r
27     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
28     >>! a combined work that includes FreeRTOS without being obliged to provide\r
29     >>! the source code for proprietary components outside of the FreeRTOS\r
30     >>! kernel.\r
31 \r
32     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
33     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
34     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
35     link: http://www.freertos.org/a00114.html\r
36 \r
37     1 tab == 4 spaces!\r
38 \r
39     ***************************************************************************\r
40      *                                                                       *\r
41      *    Having a problem?  Start by reading the FAQ "My application does   *\r
42      *    not run, what could be wrong?"                                     *\r
43      *                                                                       *\r
44      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
49     license and Real Time Engineers Ltd. contact details.\r
50 \r
51     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
52     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
53     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
54 \r
55     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
56     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
57     licenses offer ticketed support, indemnification and middleware.\r
58 \r
59     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
60     engineered and independently SIL3 certified version for use in safety and\r
61     mission critical applications that require provable dependability.\r
62 \r
63     1 tab == 4 spaces!\r
64 */\r
65 \r
66 /* Kernel includes. */\r
67 #include "FreeRTOS.h"\r
68 #include "semphr.h"\r
69 #include "task.h"\r
70 \r
71 /* Demo includes. */\r
72 #include "emac.h"\r
73 \r
74 /* uIP includes. */\r
75 #include "uip.h"\r
76 \r
77 /* Hardware library includes. */\r
78 #include "hw_types.h"\r
79 #include "hw_memmap.h"\r
80 #include "hw_ints.h"\r
81 #include "hw_ethernet.h"\r
82 #include "ethernet.h"\r
83 #include "interrupt.h"\r
84 \r
85 #define emacNUM_RX_BUFFERS              5\r
86 #define emacFRAM_SIZE_BYTES     2\r
87 #define macNEGOTIATE_DELAY              2000\r
88 #define macWAIT_SEND_TIME               ( 10 )\r
89 \r
90 /* The task that handles the MAC peripheral.  This is created at a high\r
91 priority and is effectively a deferred interrupt handler.  The peripheral\r
92 handling is deferred to a task to prevent the entire FIFO having to be read\r
93 from within an ISR. */\r
94 void vMACHandleTask( void *pvParameters );\r
95 \r
96 /*-----------------------------------------------------------*/\r
97 \r
98 /* The semaphore used to wake the uIP task when data arrives. */\r
99 xSemaphoreHandle xEMACSemaphore = NULL;\r
100 \r
101 /* The semaphore used to wake the interrupt handler task.  The peripheral\r
102 is processed at the task level to prevent the need to read the entire FIFO from\r
103 within the ISR itself. */\r
104 xSemaphoreHandle xMACInterruptSemaphore = NULL;\r
105 \r
106 /* The buffer used by the uIP stack.  In this case the pointer is used to\r
107 point to one of the Rx buffers. */\r
108 unsigned portCHAR *uip_buf;\r
109 \r
110 /* Buffers into which Rx data is placed. */\r
111 static union\r
112 {\r
113         unsigned portLONG ulJustForAlignment;\r
114         unsigned portCHAR ucRxBuffers[ emacNUM_RX_BUFFERS ][ UIP_BUFSIZE + ( 4 * emacFRAM_SIZE_BYTES ) ];\r
115 } uxRxBuffers;\r
116 \r
117 /* The length of the data within each of the Rx buffers. */\r
118 static unsigned portLONG ulRxLength[ emacNUM_RX_BUFFERS ];\r
119 \r
120 /* Used to keep a track of the number of bytes to transmit. */\r
121 static unsigned portLONG ulNextTxSpace;\r
122 \r
123 /*-----------------------------------------------------------*/\r
124 \r
125 portBASE_TYPE vInitEMAC( void )\r
126 {\r
127 unsigned long ulTemp;\r
128 portBASE_TYPE xReturn;\r
129 \r
130         /* Ensure all interrupts are disabled. */\r
131         EthernetIntDisable( ETH_BASE, ( ETH_INT_PHY | ETH_INT_MDIO | ETH_INT_RXER | ETH_INT_RXOF | ETH_INT_TX | ETH_INT_TXER | ETH_INT_RX));\r
132 \r
133         /* Clear any interrupts that were already pending. */\r
134     ulTemp = EthernetIntStatus( ETH_BASE, pdFALSE );\r
135     EthernetIntClear( ETH_BASE, ulTemp );\r
136 \r
137         /* Initialise the MAC and connect. */\r
138     EthernetInit( ETH_BASE );\r
139     EthernetConfigSet( ETH_BASE, ( ETH_CFG_TX_DPLXEN | ETH_CFG_TX_CRCEN | ETH_CFG_TX_PADEN ) );\r
140     EthernetEnable( ETH_BASE );\r
141 \r
142         /* Mark each Rx buffer as empty. */\r
143         for( ulTemp = 0; ulTemp < emacNUM_RX_BUFFERS; ulTemp++ )\r
144         {\r
145                 ulRxLength[ ulTemp ] = 0;\r
146         }\r
147         \r
148         /* Create the queue and task used to defer the MAC processing to the\r
149         task level. */\r
150         vSemaphoreCreateBinary( xMACInterruptSemaphore );\r
151         xSemaphoreTake( xMACInterruptSemaphore, 0 );\r
152         xReturn = xTaskCreate( vMACHandleTask, ( signed portCHAR * ) "MAC", configMINIMAL_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL );\r
153         vTaskDelay( macNEGOTIATE_DELAY );\r
154         \r
155         /* We are only interested in Rx interrupts. */\r
156         IntPrioritySet( INT_ETH, configKERNEL_INTERRUPT_PRIORITY );\r
157     IntEnable( INT_ETH );\r
158     EthernetIntEnable(ETH_BASE, ETH_INT_RX);\r
159 \r
160         return xReturn;\r
161 }\r
162 /*-----------------------------------------------------------*/\r
163 \r
164 unsigned int uiGetEMACRxData( unsigned char *ucBuffer )\r
165 {\r
166 static unsigned long ulNextRxBuffer = 0;\r
167 unsigned int iLen;\r
168 \r
169         iLen = ulRxLength[ ulNextRxBuffer ];\r
170 \r
171         if( iLen != 0 )\r
172         {\r
173                 /* Leave room for the size at the start of the buffer. */\r
174                 uip_buf = &( uxRxBuffers.ucRxBuffers[ ulNextRxBuffer ][ 2 ] );\r
175                 \r
176                 ulRxLength[ ulNextRxBuffer ] = 0;\r
177                 \r
178                 ulNextRxBuffer++;\r
179                 if( ulNextRxBuffer >= emacNUM_RX_BUFFERS )\r
180                 {\r
181                         ulNextRxBuffer = 0;\r
182                 }\r
183         }\r
184 \r
185     return iLen;\r
186 }\r
187 /*-----------------------------------------------------------*/\r
188 \r
189 void vInitialiseSend( void )\r
190 {\r
191         /* Set the index to the first byte to send - skipping over the size\r
192         bytes. */\r
193         ulNextTxSpace = 2;\r
194 }\r
195 /*-----------------------------------------------------------*/\r
196 \r
197 void vIncrementTxLength( unsigned portLONG ulLength )\r
198 {\r
199         ulNextTxSpace += ulLength;\r
200 }\r
201 /*-----------------------------------------------------------*/\r
202 \r
203 void vSendBufferToMAC( void )\r
204 {\r
205 unsigned long *pulSource;\r
206 unsigned portSHORT * pus;\r
207 unsigned portLONG ulNextWord;\r
208 \r
209         /* Locate the data to be send. */\r
210         pus = ( unsigned portSHORT * ) uip_buf;\r
211 \r
212         /* Add in the size of the data. */\r
213         pus--;\r
214         *pus = ulNextTxSpace;\r
215 \r
216         /* Wait for data to be sent if there is no space immediately. */\r
217     while( !EthernetSpaceAvail( ETH_BASE ) )\r
218     {\r
219                 vTaskDelay( macWAIT_SEND_TIME );\r
220     }\r
221         \r
222         pulSource = ( unsigned portLONG * ) pus;        \r
223         \r
224         for( ulNextWord = 0; ulNextWord < ulNextTxSpace; ulNextWord += sizeof( unsigned portLONG ) )\r
225         {\r
226         HWREG(ETH_BASE + MAC_O_DATA) = *pulSource;\r
227                 pulSource++;\r
228         }\r
229 \r
230         /* Go. */\r
231     HWREG( ETH_BASE + MAC_O_TR ) = MAC_TR_NEWTX;\r
232 }\r
233 /*-----------------------------------------------------------*/\r
234 \r
235 void vEMAC_ISR( void )\r
236 {\r
237 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
238 unsigned portLONG ulTemp;\r
239 \r
240         /* Clear the interrupt. */\r
241         ulTemp = EthernetIntStatus( ETH_BASE, pdFALSE );\r
242         EthernetIntClear( ETH_BASE, ulTemp );\r
243                 \r
244         /* Was it an Rx interrupt? */\r
245         if( ulTemp & ETH_INT_RX )\r
246         {\r
247                 xSemaphoreGiveFromISR( xMACInterruptSemaphore, &xHigherPriorityTaskWoken );\r
248                 EthernetIntDisable( ETH_BASE, ETH_INT_RX );\r
249         }\r
250                 \r
251     /* Switch to the uIP task. */\r
252         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
253 }\r
254 /*-----------------------------------------------------------*/\r
255 \r
256 void vMACHandleTask( void *pvParameters )\r
257 {\r
258 unsigned long i, ulInt;\r
259 unsigned portLONG ulLength;\r
260 unsigned long *pulBuffer;\r
261 static unsigned portLONG ulNextRxBuffer = 0;\r
262 \r
263         for( ;; )\r
264         {\r
265                 /* Wait for something to do. */\r
266                 xSemaphoreTake( xMACInterruptSemaphore, portMAX_DELAY );\r
267                 \r
268                 while( ( ulInt = ( EthernetIntStatus( ETH_BASE, pdFALSE ) & ETH_INT_RX ) ) != 0 )\r
269                 {               \r
270                         ulLength = HWREG( ETH_BASE + MAC_O_DATA );\r
271                         \r
272                         /* Leave room at the start of the buffer for the size. */\r
273                         pulBuffer = ( unsigned long * ) &( uxRxBuffers.ucRxBuffers[ ulNextRxBuffer ][ 2 ] );                    \r
274                         *pulBuffer = ( ulLength >> 16 );\r
275 \r
276                         /* Get the size of the data. */                 \r
277                         pulBuffer = ( unsigned long * ) &( uxRxBuffers.ucRxBuffers[ ulNextRxBuffer ][ 4 ] );                    \r
278                         ulLength &= 0xFFFF;\r
279                         \r
280                         if( ulLength > 4 )\r
281                         {\r
282                                 ulLength -= 4;\r
283                                 \r
284                                 if( ulLength >= UIP_BUFSIZE )\r
285                                 {\r
286                                         /* The data won't fit in our buffer.  Ensure we don't\r
287                                         try to write into the buffer. */\r
288                                         ulLength = 0;\r
289                                 }\r
290 \r
291                                 /* Read out the data into our buffer. */\r
292                                 for( i = 0; i < ulLength; i += sizeof( unsigned portLONG ) )\r
293                                 {\r
294                                         *pulBuffer = HWREG( ETH_BASE + MAC_O_DATA );\r
295                                         pulBuffer++;\r
296                                 }\r
297                                 \r
298                                 /* Store the length of the data into the separate array. */\r
299                                 ulRxLength[ ulNextRxBuffer ] = ulLength;\r
300                                 \r
301                                 /* Use the next buffer the next time through. */\r
302                                 ulNextRxBuffer++;\r
303                                 if( ulNextRxBuffer >= emacNUM_RX_BUFFERS )\r
304                                 {\r
305                                         ulNextRxBuffer = 0;\r
306                                 }\r
307                 \r
308                                 /* Ensure the uIP task is not blocked as data has arrived. */\r
309                                 xSemaphoreGive( xEMACSemaphore );\r
310                         }\r
311                 }\r
312                 \r
313                 EthernetIntEnable( ETH_BASE, ETH_INT_RX );\r
314                 \r
315                 ( void ) ulInt;\r
316         }\r
317 }\r
318 \r