ethernetif.h 1.0 KB
Newer Older
1 2 3 4 5 6 7
#ifndef __NETIF_ETHERNETIF_H__
#define __NETIF_ETHERNETIF_H__

#include "lwip/netif.h"
#include <rtthread.h>

#define NIOCTL_GADDR		0x01
8
#ifndef RT_LWIP_ETH_MTU
9
#define ETHERNET_MTU		1500
10 11 12
#else
#define ETHERNET_MTU		RT_LWIP_ETH_MTU
#endif
13

14 15 16 17
/* eth flag with auto_linkup or phy_linkup */
#define ETHIF_LINK_AUTOUP	0x0000
#define ETHIF_LINK_PHYUP	0x0100

18 19 20 21 22 23 24 25 26
struct eth_device
{
	/* inherit from rt_device */
	struct rt_device parent;

	/* network interface for lwip */
	struct netif *netif;
	struct rt_semaphore tx_ack;

27
	rt_uint16_t flags;
28
	rt_uint8_t  link_changed;
29
	rt_uint8_t  link_status;
30 31 32 33 34 35 36 37

	/* eth device interface */
	struct pbuf* (*eth_rx)(rt_device_t dev);
	rt_err_t (*eth_tx)(rt_device_t dev, struct pbuf* p);
};

rt_err_t eth_device_ready(struct eth_device* dev);
rt_err_t eth_device_init(struct eth_device * dev, char *name);
38
rt_err_t eth_device_init_with_flag(struct eth_device *dev, char *name, rt_uint16_t flag);
39 40
rt_err_t eth_device_linkchange(struct eth_device* dev, rt_bool_t up);

41
int eth_system_device_init(void);
42 43

#endif /* __NETIF_ETHERNETIF_H__ */