]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/lwIP_Demo/lwIP_port/include/netif/xadapter.h
Update version number ready for V8.2.1 release.
[freertos] / FreeRTOS / Demo / MicroBlaze_Kintex7_EthernetLite / RTOSDemo / src / lwIP_Demo / lwIP_port / include / netif / xadapter.h
1 /******************************************************************************
2 *
3 * Copyright (C) 2007 - 2014 Xilinx, Inc.  All rights reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * Use of the Software is limited solely to applications:
16 * (a) running on a Xilinx device, or
17 * (b) that interact with a Xilinx device through a bus or interconnect.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * XILINX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 *
27 * Except as contained in this notice, the name of the Xilinx shall not be used
28 * in advertising or otherwise to promote the sale, use or other dealings in
29 * this Software without prior written authorization from Xilinx.
30 *
31 ******************************************************************************/
32
33 #ifndef __XADAPTER_H_
34 #define __XADAPTER_H_
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 #include "lwipopts.h"
41
42 #if !NO_SYS
43 #ifdef OS_IS_XILKERNEL
44 #include "xmk.h"
45 #endif
46 #include "lwip/sys.h"
47 #endif
48
49 #include "lwip/netif.h"
50 #include "lwip/ip.h"
51
52 #include "netif/xtopology.h"
53
54 struct xemac_s {
55         enum xemac_types type;
56         int  topology_index;
57         void *state;
58 #if !NO_SYS
59         sys_sem_t sem_rx_data_available;
60 #endif
61 };
62
63 void            lwip_raw_init();
64 int             xemacif_input(struct netif *netif);
65 void            xemacif_input_thread(struct netif *netif);
66 struct netif *  xemac_add(struct netif *netif,
67         struct ip_addr *ipaddr, struct ip_addr *netmask, struct ip_addr *gw,
68         unsigned char *mac_ethernet_address,
69         unsigned mac_baseaddr);
70 #ifdef __arm__
71 void xemacpsif_resetrx_on_no_rxdata(struct netif *netif);
72 #endif
73
74 /* global lwip debug variable used for debugging */
75 extern int lwip_runtime_debug;
76
77 #ifdef __cplusplus
78 }
79 #endif
80
81 #endif