]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_A2F200_IAR_and_Keil/uIP_Task.c
Update version number to V7.0.1.
[freertos] / Demo / CORTEX_A2F200_IAR_and_Keil / uIP_Task.c
1 /*\r
2     FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
3         \r
4 \r
5     ***************************************************************************\r
6      *                                                                       *\r
7      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
8      *    Complete, revised, and edited pdf reference manuals are also       *\r
9      *    available.                                                         *\r
10      *                                                                       *\r
11      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
12      *    ensuring you get running as quickly as possible and with an        *\r
13      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
14      *    the FreeRTOS project to continue with its mission of providing     *\r
15      *    professional grade, cross platform, de facto standard solutions    *\r
16      *    for microcontrollers - completely free of charge!                  *\r
17      *                                                                       *\r
18      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
19      *                                                                       *\r
20      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
21      *                                                                       *\r
22     ***************************************************************************\r
23 \r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     >>>NOTE<<< The modification to the GPL is included to allow you to\r
31     distribute a combined work that includes FreeRTOS without being obliged to\r
32     provide the source code for proprietary components outside of the FreeRTOS\r
33     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
34     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
35     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public\r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     http://www.FreeRTOS.org - Documentation, latest information, license and\r
45     contact details.\r
46 \r
47     http://www.SafeRTOS.com - A version that is certified for use in safety\r
48     critical systems.\r
49 \r
50     http://www.OpenRTOS.com - Commercial support, development, porting,\r
51     licensing and training services.\r
52 */\r
53 \r
54 /* Standard includes. */\r
55 #include <string.h>\r
56 \r
57 /* Scheduler includes. */\r
58 #include "FreeRTOS.h"\r
59 #include "task.h"\r
60 #include "queue.h"\r
61 #include "timers.h"\r
62 \r
63 /* uip includes. */\r
64 #include "net/uip.h"\r
65 #include "net/uip_arp.h"\r
66 #include "apps/httpd/httpd.h"\r
67 #include "sys/timer.h"\r
68 #include "net/clock-arch.h"\r
69 \r
70 /* Demo includes. */\r
71 #include "ParTest.h"\r
72 \r
73 /* Hardware driver includes. */\r
74 #include "mss_ethernet_mac_regs.h"\r
75 #include "mss_ethernet_mac.h"\r
76 \r
77 /* The buffer used by the uIP stack to both receive and send.  In this case,\r
78 because the Ethernet driver has been modified to be zero copy - the uip_buf\r
79 variable is just a pointer to an Ethernet buffer, and not a buffer in its own\r
80 right. */\r
81 extern unsigned char *uip_buf;\r
82 \r
83 /* The ARP timer and the periodic timer share a callback function, so the\r
84 respective timer IDs are used to determine which timer actually expired.  These\r
85 constants are assigned to the timer IDs. */\r
86 #define uipARP_TIMER                            0\r
87 #define uipPERIODIC_TIMER                       1\r
88 \r
89 /* The length of the queue used to send events from timers or the Ethernet\r
90 driver to the uIP stack. */\r
91 #define uipEVENT_QUEUE_LENGTH           10\r
92 \r
93 /* A block time of zero simply means "don't block". */\r
94 #define uipDONT_BLOCK                           0UL\r
95 \r
96 /* How long to wait before attempting to connect the MAC again. */\r
97 #define uipINIT_WAIT    ( 100 / portTICK_RATE_MS )\r
98 \r
99 /* Shortcut to the header within the Rx buffer. */\r
100 #define xHeader ((struct uip_eth_hdr *) &uip_buf[ 0 ])\r
101 \r
102 /* Standard constant. */\r
103 #define uipTOTAL_FRAME_HEADER_SIZE      54\r
104 \r
105 /*-----------------------------------------------------------*/\r
106 \r
107 /*\r
108  * Setup the MAC address in the MAC itself, and in the uIP stack.\r
109  */\r
110 static void prvSetMACAddress( void );\r
111 \r
112 /*\r
113  * Perform any uIP initialisation required to ready the stack for http\r
114  * processing.\r
115  */\r
116 static void prvInitialise_uIP( void );\r
117 \r
118 /*\r
119  * Handles Ethernet interrupt events.\r
120  */\r
121 static void prvEMACEventListener( unsigned long ulISREvents );\r
122 \r
123 /*\r
124  * The callback function that is assigned to both the periodic timer and the\r
125  * ARP timer.\r
126  */\r
127 static void prvUIPTimerCallback( xTimerHandle xTimer );\r
128 \r
129 /*\r
130  * Initialise the MAC hardware.\r
131  */\r
132 static void prvInitEmac( void );\r
133 \r
134 /*\r
135  * Write data to the Ethener.  Note that this actually writes data twice for the\r
136  * to get around delayed ack issues when communicating with a non real-time\r
137  * peer (for example, a Windows machine).\r
138  */\r
139 void vEMACWrite( void );\r
140 \r
141 /*\r
142  * Port functions required by the uIP stack.\r
143  */\r
144 clock_time_t clock_time( void );\r
145 \r
146 /*-----------------------------------------------------------*/\r
147 \r
148 /* The queue used to send TCP/IP events to the uIP stack. */\r
149 xQueueHandle xEMACEventQueue = NULL;\r
150 \r
151 /*-----------------------------------------------------------*/\r
152 \r
153 clock_time_t clock_time( void )\r
154 {\r
155         return xTaskGetTickCount();\r
156 }\r
157 /*-----------------------------------------------------------*/\r
158 \r
159 void vuIP_Task( void *pvParameters )\r
160 {\r
161 portBASE_TYPE i;\r
162 unsigned long ulNewEvent = 0UL, ulUIP_Events = 0UL;\r
163 long lPacketLength;\r
164 \r
165         /* Just to prevent compiler warnings about the unused parameter. */\r
166         ( void ) pvParameters;\r
167 \r
168         /* Initialise the uIP stack, configuring for web server usage. */\r
169         prvInitialise_uIP();\r
170 \r
171         /* Initialise the MAC and PHY. */\r
172         prvInitEmac();\r
173 \r
174         for( ;; )\r
175         {\r
176                 /* Is there received data ready to be processed? */\r
177                 lPacketLength = MSS_MAC_rx_packet();\r
178 \r
179                 /* Statements to be executed if data has been received on the Ethernet. */\r
180                 if( ( lPacketLength > 0 ) && ( uip_buf != NULL ) )\r
181                 {\r
182                         uip_len = ( u16_t ) lPacketLength;\r
183                         \r
184                         /* Standard uIP loop taken from the uIP manual. */\r
185                         if( xHeader->type == htons( UIP_ETHTYPE_IP ) )\r
186                         {\r
187                                 uip_arp_ipin();\r
188                                 uip_input();\r
189 \r
190                                 /* If the above function invocation resulted in data that\r
191                                 should be sent out on the network, the global variable\r
192                                 uip_len is set to a value > 0. */\r
193                                 if( uip_len > 0 )\r
194                                 {\r
195                                         uip_arp_out();\r
196                                         vEMACWrite();\r
197                                 }\r
198                         }\r
199                         else if( xHeader->type == htons( UIP_ETHTYPE_ARP ) )\r
200                         {\r
201                                 uip_arp_arpin();\r
202 \r
203                                 /* If the above function invocation resulted in data that\r
204                                 should be sent out on the network, the global variable\r
205                                 uip_len is set to a value > 0. */\r
206                                 if( uip_len > 0 )\r
207                                 {\r
208                                         vEMACWrite();\r
209                                 }\r
210                         }\r
211                 }\r
212                 else\r
213                 {\r
214                         /* Clear the RX event latched in ulUIP_Events - if one was latched. */\r
215                         ulUIP_Events &= ~uipETHERNET_RX_EVENT;\r
216                 }\r
217 \r
218                 /* Statements to be executed if the TCP/IP period timer has expired. */\r
219                 if( ( ulUIP_Events & uipPERIODIC_TIMER_EVENT ) != 0UL )\r
220                 {\r
221                         ulUIP_Events &= ~uipPERIODIC_TIMER_EVENT;\r
222 \r
223                         if( uip_buf != NULL )\r
224                         {\r
225                                 for( i = 0; i < UIP_CONNS; i++ )\r
226                                 {\r
227                                         uip_periodic( i );\r
228         \r
229                                         /* If the above function invocation resulted in data that\r
230                                         should be sent out on the network, the global variable\r
231                                         uip_len is set to a value > 0. */\r
232                                         if( uip_len > 0 )\r
233                                         {\r
234                                                 uip_arp_out();\r
235                                                 vEMACWrite();\r
236                                         }\r
237                                 }\r
238                         }\r
239                 }\r
240 \r
241                 /* Statements to be executed if the ARP timer has expired. */\r
242                 if( ( ulUIP_Events & uipARP_TIMER_EVENT ) != 0 )\r
243                 {\r
244                         ulUIP_Events &= ~uipARP_TIMER_EVENT;\r
245                         uip_arp_timer();\r
246                 }\r
247 \r
248                 /* If all latched events have been cleared - block until another event\r
249                 occurs. */\r
250                 if( ulUIP_Events == pdFALSE )\r
251                 {\r
252                         xQueueReceive( xEMACEventQueue, &ulNewEvent, portMAX_DELAY );\r
253                         ulUIP_Events |= ulNewEvent;\r
254                 }\r
255         }\r
256 }\r
257 /*-----------------------------------------------------------*/\r
258 \r
259 static void prvSetMACAddress( void )\r
260 {\r
261 struct uip_eth_addr xAddr;\r
262 \r
263         /* Configure the MAC address in the uIP stack. */\r
264         xAddr.addr[ 0 ] = configMAC_ADDR0;\r
265         xAddr.addr[ 1 ] = configMAC_ADDR1;\r
266         xAddr.addr[ 2 ] = configMAC_ADDR2;\r
267         xAddr.addr[ 3 ] = configMAC_ADDR3;\r
268         xAddr.addr[ 4 ] = configMAC_ADDR4;\r
269         xAddr.addr[ 5 ] = configMAC_ADDR5;\r
270         uip_setethaddr( xAddr );\r
271 }\r
272 /*-----------------------------------------------------------*/\r
273 \r
274 static void prvInitialise_uIP( void )\r
275 {\r
276 uip_ipaddr_t xIPAddr;\r
277 xTimerHandle xARPTimer, xPeriodicTimer;\r
278 \r
279         uip_init();\r
280         uip_ipaddr( &xIPAddr, configIP_ADDR0, configIP_ADDR1, configIP_ADDR2, configIP_ADDR3 );\r
281         uip_sethostaddr( &xIPAddr );\r
282         uip_ipaddr( &xIPAddr, configNET_MASK0, configNET_MASK1, configNET_MASK2, configNET_MASK3 );\r
283         uip_setnetmask( &xIPAddr );\r
284         prvSetMACAddress();\r
285         httpd_init();\r
286 \r
287         /* Create the queue used to sent TCP/IP events to the uIP stack. */\r
288         xEMACEventQueue = xQueueCreate( uipEVENT_QUEUE_LENGTH, sizeof( unsigned long ) );\r
289 \r
290         /* Create and start the uIP timers. */\r
291         xARPTimer = xTimerCreate(       ( signed char * ) "ARPTimer", /* Just a name that is helpful for debugging, not used by the kernel. */\r
292                                                                 ( 10000UL / portTICK_RATE_MS ), /* Timer period. */\r
293                                                                 pdTRUE, /* Autor-reload. */\r
294                                                                 ( void * ) uipARP_TIMER,\r
295                                                                 prvUIPTimerCallback\r
296                                                         );\r
297 \r
298         xPeriodicTimer = xTimerCreate(  ( signed char * ) "PeriodicTimer",\r
299                                                                         ( 500UL / portTICK_RATE_MS ),\r
300                                                                         pdTRUE, /* Autor-reload. */\r
301                                                                         ( void * ) uipPERIODIC_TIMER,\r
302                                                                         prvUIPTimerCallback\r
303                                                                 );\r
304 \r
305         /* Sanity check that the timers were indeed created. */\r
306         configASSERT( xARPTimer );\r
307         configASSERT( xPeriodicTimer );\r
308 \r
309         /* These commands will block indefinitely until they succeed, so there is\r
310         no point in checking their return values. */\r
311         xTimerStart( xARPTimer, portMAX_DELAY );\r
312         xTimerStart( xPeriodicTimer, portMAX_DELAY );\r
313 }\r
314 /*-----------------------------------------------------------*/\r
315 \r
316 static void prvEMACEventListener( unsigned long ulISREvents )\r
317 {\r
318 long lHigherPriorityTaskWoken = pdFALSE;\r
319 const unsigned long ulRxEvent = uipETHERNET_RX_EVENT;\r
320 \r
321         /* Sanity check that the event queue was indeed created. */\r
322         configASSERT( xEMACEventQueue );\r
323 \r
324         if( ( ulISREvents & MSS_MAC_EVENT_PACKET_SEND ) != 0UL )\r
325         {\r
326                 /* An Ethernet Tx event has occurred. */\r
327                 MSS_MAC_FreeTxBuffers();\r
328         }\r
329 \r
330         if( ( ulISREvents & MSS_MAC_EVENT_PACKET_RECEIVED ) != 0UL )\r
331         {\r
332                 /* An Ethernet Rx event has occurred. */\r
333                 xQueueSendFromISR( xEMACEventQueue, &ulRxEvent, &lHigherPriorityTaskWoken );\r
334         }\r
335 \r
336         portEND_SWITCHING_ISR( lHigherPriorityTaskWoken );\r
337 }\r
338 /*-----------------------------------------------------------*/\r
339 \r
340 static void prvInitEmac( void )\r
341 {\r
342 const unsigned char ucPHYAddress = 1;\r
343 \r
344         /* Initialise the MAC and PHY hardware. */\r
345         MSS_MAC_init( ucPHYAddress );\r
346 \r
347         /* Register the event listener.  The Ethernet interrupt handler will call\r
348         this listener whenever an Rx or a Tx interrupt occurs. */\r
349         MSS_MAC_set_callback( ( MSS_MAC_callback_t ) prvEMACEventListener );\r
350 \r
351     /* Setup the EMAC and the NVIC for MAC interrupts. */\r
352     NVIC_SetPriority( EthernetMAC_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );\r
353     NVIC_EnableIRQ( EthernetMAC_IRQn );\r
354 }\r
355 /*-----------------------------------------------------------*/\r
356 \r
357 void vEMACWrite( void )\r
358 {\r
359 const long lMaxAttempts = 10;\r
360 long lAttempt;\r
361 const portTickType xShortDelay = ( 5 / portTICK_RATE_MS );\r
362 \r
363         /* Try to send data to the Ethernet.  Keep trying for a while if data cannot\r
364         be sent immediately.  Note that this will actually cause the data to be sent\r
365         twice to get around delayed ACK problems when communicating with non real-\r
366         time TCP/IP stacks (such as a Windows machine). */\r
367         for( lAttempt = 0; lAttempt < lMaxAttempts; lAttempt++ )\r
368         {\r
369                 if( MSS_MAC_tx_packet( uip_len ) != 0 )\r
370                 {\r
371                         break;\r
372                 }\r
373                 else\r
374                 {\r
375                         vTaskDelay( xShortDelay );\r
376                 }\r
377         }\r
378 }\r
379 /*-----------------------------------------------------------*/\r
380 \r
381 static void prvUIPTimerCallback( xTimerHandle xTimer )\r
382 {\r
383 static const unsigned long ulARPTimerExpired = uipARP_TIMER_EVENT;\r
384 static const unsigned long ulPeriodicTimerExpired = uipPERIODIC_TIMER_EVENT;\r
385 \r
386         /* This is a time callback, so calls to xQueueSend() must not attempt to\r
387         block.  As this callback is assigned to both the ARP and Periodic timers, the\r
388         first thing to do is ascertain which timer it was that actually expired. */\r
389         switch( ( int ) pvTimerGetTimerID( xTimer ) )\r
390         {\r
391                 case uipARP_TIMER               :       xQueueSend( xEMACEventQueue, &ulARPTimerExpired, uipDONT_BLOCK );\r
392                                                                         break;\r
393 \r
394                 case uipPERIODIC_TIMER  :       xQueueSend( xEMACEventQueue, &ulPeriodicTimerExpired, uipDONT_BLOCK );\r
395                                                                         break;\r
396 \r
397                 default                                 :       /* Should not get here. */\r
398                                                                         break;\r
399         }\r
400 }\r
401 /*-----------------------------------------------------------*/\r
402 \r
403 void vApplicationProcessFormInput( char *pcInputString )\r
404 {\r
405 char *c;\r
406 \r
407         /* Only interested in processing form input if this is the IO page. */\r
408         c = strstr( pcInputString, "io.shtml" );\r
409         \r
410         if( c )\r
411         {\r
412                 /* Is there a command in the string? */\r
413                 c = strstr( pcInputString, "?" );\r
414             if( c )\r
415             {\r
416                         /* Turn the LED's on or off in accordance with the check box status. */\r
417                         if( strstr( c, "LED0=1" ) != NULL )\r
418                         {\r
419                                 /* Turn the LEDs on. */\r
420                                 vParTestSetLED( 3, 1 );\r
421                                 vParTestSetLED( 4, 1 );\r
422                         }\r
423                         else\r
424                         {\r
425                                 /* Turn the LEDs off. */\r
426                                 vParTestSetLED( 3, 0 );\r
427                                 vParTestSetLED( 4, 0 );\r
428                         }\r
429             }\r
430                 else\r
431                 {\r
432                         /* Commands to turn LEDs off are not always explicit. */\r
433                         vParTestSetLED( 3, 0 );\r
434                         vParTestSetLED( 4, 0 );\r
435                 }\r
436         }\r
437 }\r
438 /*-----------------------------------------------------------*/\r