]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/portable/NetworkInterface/SH2A/NetworkInterface.c
Sync with TCP version from AWS, including:
[freertos] / FreeRTOS-Plus / Source / FreeRTOS-Plus-TCP / portable / NetworkInterface / SH2A / NetworkInterface.c
1 /*\r
2  * FreeRTOS+TCP V2.0.3\r
3  * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://aws.amazon.com/freertos\r
23  * http://www.FreeRTOS.org\r
24  */\r
25 \r
26 \r
27 /* Standard includes. */\r
28 #include <stdint.h>\r
29 \r
30 /* FreeRTOS includes. */\r
31 #include "FreeRTOS.h"\r
32 #include "task.h"\r
33 #include "queue.h"\r
34 #include "semphr.h"\r
35 \r
36 /* FreeRTOS+TCP includes. */\r
37 #include "FreeRTOS_UDP_IP.h"\r
38 #include "FreeRTOS_Sockets.h"\r
39 #include "NetworkBufferManagement.h"\r
40 \r
41 /* Hardware includes. */\r
42 #include "hwEthernet.h"\r
43 \r
44 /* Demo includes. */\r
45 #include "NetworkInterface.h"\r
46 \r
47 #if ipconfigETHERNET_DRIVER_FILTERS_FRAME_TYPES != 1\r
48         #define ipCONSIDER_FRAME_FOR_PROCESSING( pucEthernetBuffer ) eProcessBuffer\r
49 #else\r
50         #define ipCONSIDER_FRAME_FOR_PROCESSING( pucEthernetBuffer ) eConsiderFrameForProcessing( ( pucEthernetBuffer ) )\r
51 #endif\r
52 \r
53 /* When a packet is ready to be sent, if it cannot be sent immediately then the\r
54 task performing the transmit will block for niTX_BUFFER_FREE_WAIT\r
55 milliseconds.  It will do this a maximum of niMAX_TX_ATTEMPTS before giving\r
56 up. */\r
57 #define niTX_BUFFER_FREE_WAIT   ( ( TickType_t ) 2UL / portTICK_PERIOD_MS )\r
58 #define niMAX_TX_ATTEMPTS               ( 5 )\r
59 \r
60 /* The length of the queue used to send interrupt status words from the\r
61 interrupt handler to the deferred handler task. */\r
62 #define niINTERRUPT_QUEUE_LENGTH        ( 10 )\r
63 \r
64 /*-----------------------------------------------------------*/\r
65 \r
66 /*\r
67  * A deferred interrupt handler task that processes\r
68  */\r
69 extern void vEMACHandlerTask( void *pvParameters );\r
70 \r
71 /*-----------------------------------------------------------*/\r
72 \r
73 /* The queue used to communicate Ethernet events with the IP task. */\r
74 extern QueueHandle_t xNetworkEventQueue;\r
75 \r
76 /* The semaphore used to wake the deferred interrupt handler task when an Rx\r
77 interrupt is received. */\r
78 SemaphoreHandle_t xEMACRxEventSemaphore = NULL;\r
79 /*-----------------------------------------------------------*/\r
80 \r
81 BaseType_t xNetworkInterfaceInitialise( void )\r
82 {\r
83 BaseType_t xStatus, xReturn;\r
84 extern uint8_t ucMACAddress[ 6 ];\r
85 \r
86         /* Initialise the MAC. */\r
87         vInitEmac();\r
88 \r
89         while( lEMACWaitForLink() != pdPASS )\r
90     {\r
91         vTaskDelay( 20 );\r
92     }\r
93 \r
94         vSemaphoreCreateBinary( xEMACRxEventSemaphore );\r
95         configASSERT( xEMACRxEventSemaphore );\r
96 \r
97         /* The handler task is created at the highest possible priority to\r
98         ensure the interrupt handler can return directly to it. */\r
99         xTaskCreate( vEMACHandlerTask, "EMAC", configMINIMAL_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL );\r
100         xReturn = pdPASS;\r
101 \r
102         return xReturn;\r
103 }\r
104 /*-----------------------------------------------------------*/\r
105 \r
106 BaseType_t xNetworkInterfaceOutput( NetworkBufferDescriptor_t * const pxNetworkBuffer )\r
107 {\r
108 extern void vEMACCopyWrite( uint8_t * pucBuffer, uint16_t usLength );\r
109 \r
110         vEMACCopyWrite( pxNetworkBuffer->pucBuffer, pxNetworkBuffer->xDataLength );\r
111 \r
112         /* Finished with the network buffer. */\r
113         vReleaseNetworkBufferAndDescriptor( pxNetworkBuffer );\r
114 \r
115         return pdTRUE;\r
116 }\r
117 /*-----------------------------------------------------------*/\r
118 \r
119 \r