usbnet.h

来自「AMLOGIC DPF source code」· C头文件 代码 · 共 497 行 · 第 1/2 页

H
497
字号
 * priority order, you will need to roll your own function. */static inline unsigned int mii_nway_result (unsigned int negotiated){    unsigned int ret;    if (negotiated & LPA_100FULL)        ret = LPA_100FULL;    else if (negotiated & LPA_100BASE4)        ret = LPA_100BASE4;    else if (negotiated & LPA_100HALF)        ret = LPA_100HALF;    else if (negotiated & LPA_10FULL)        ret = LPA_10FULL;    else        ret = LPA_10HALF;    return ret;}struct net_device_stats{    unsigned long   rx_packets;             /* total packets received       */    unsigned long   tx_packets;             /* total packets transmitted    */    unsigned long   rx_bytes;               /* total bytes received         */    unsigned long   tx_bytes;               /* total bytes transmitted      */    unsigned long   rx_errors;              /* bad packets received         */    unsigned long   tx_errors;              /* packet transmit problems     */    unsigned long   rx_dropped;             /* no space in linux buffers    */    unsigned long   tx_dropped;             /* no space available in linux  */    unsigned long   multicast;              /* multicast packets received   */    unsigned long   collisions;    /* detailed rx_errors: */    unsigned long   rx_length_errors;    unsigned long   rx_over_errors;         /* receiver ring buff overflow  */    unsigned long   rx_crc_errors;          /* recved pkt with crc error    */    unsigned long   rx_frame_errors;        /* recv'd frame alignment error */    unsigned long   rx_fifo_errors;         /* recv'r fifo overrun          */    unsigned long   rx_missed_errors;       /* receiver missed packet       */    /* detailed tx_errors */    unsigned long   tx_aborted_errors;    unsigned long   tx_carrier_errors;    unsigned long   tx_fifo_errors;    unsigned long   tx_heartbeat_errors;    unsigned long   tx_window_errors;    /* for cslip etc */    unsigned long   rx_compressed;    unsigned long   tx_compressed;};/* interface from usbnet core to each USB networking link we handle */struct usbnet {    struct netif net;	/* housekeeping */	struct usb_device	*udev;	//struct driver_info	*driver_info;	//wait_queue_head_t	*wait;	/* i/o info: pipes etc */	unsigned		in, out;	struct usb_host_endpoint *status;	unsigned		maxpacket;	//struct timer_list	delay;	/* protocol/interface state */    //struct netif        *net;    struct net_device_stats	stats;	int			msg_enable;	unsigned long		data [5];	u32			xid;	u32			hard_mtu;	/* count any extra framing */	size_t		rx_urb_size;    /* size for rx urbs  */	//struct mii_if_info	mii;    struct {        int phy_id;        int phy_id_mask;        int reg_num_mask;    } mii;	/* various kinds of pending driver work */	struct pbuf_head	rxq;	struct pbuf_head	txq;	struct pbuf_head	done;	struct urb		*interrupt;	//struct tasklet_struct	bh;	//struct work_struct	kevent;	unsigned long		flags;#		define EVENT_TX_HALT	0#		define EVENT_RX_HALT	1#		define EVENT_RX_MEMORY	2#		define EVENT_STS_SPLIT	3#		define EVENT_LINK_RESET	4};#if 0static inline struct usb_driver *driver_of(struct usb_interface *intf){	return to_usb_driver(intf->dev.driver);}#endif#if 0/* interface from the device/framing level "minidriver" to core */struct driver_info {	char		*description;	int		flags;/* framing is CDC Ethernet, not writing ZLPs (hw issues), or optionally: */#define FLAG_FRAMING_NC	0x0001		/* guard against device dropouts */#define FLAG_FRAMING_GL	0x0002		/* genelink batches packets */#define FLAG_FRAMING_Z	0x0004		/* zaurus adds a trailer */#define FLAG_FRAMING_RN	0x0008		/* RNDIS batches, plus huge header */#define FLAG_NO_SETINT	0x0010		/* device can't set_interface() */#define FLAG_ETHER	0x0020		/* maybe use "eth%d" names */#define FLAG_FRAMING_AX 0x0040          /* AX88772/178 packets */	/* init device ... can sleep, or cause probe() failure */	int	(*bind)(struct usbnet *, struct usb_interface *);	/* cleanup device ... can sleep, but can't fail */	void	(*unbind)(struct usbnet *, struct usb_interface *);	/* reset device ... can sleep */	int	(*reset)(struct usbnet *);	/* see if peer is connected ... can sleep */	int	(*check_connect)(struct usbnet *);	/* for status polling */	void	(*status)(struct usbnet *, struct urb *);	/* link reset handling, called from defer_kevent */	int	(*link_reset)(struct usbnet *);	/* fixup rx packet (strip framing) */	int	(*rx_fixup)(struct usbnet *dev, struct sk_buff *skb);	/* fixup tx packet (add framing) */	struct sk_buff	*(*tx_fixup)(struct usbnet *dev,                                 struct sk_buff *skb, gfp_t flags);	/* for new devices, use the descriptor-reading code instead */	int		in;		/* rx endpoint */	int		out;		/* tx endpoint */	unsigned long	data;		/* Misc driver specific data */};#endif/* Minidrivers are just drivers using the "usbnet" core as a powerful * network-specific subroutine library ... that happens to do pretty * much everything except custom framing and chip-specific stuff. */extern int usbnet_probe(struct usb_interface *, const struct usb_device_id *);//extern int usbnet_suspend (struct usb_interface *, pm_message_t );//extern int usbnet_resume (struct usb_interface *);extern void usbnet_disconnect(struct usb_interface *);#if 0/* Drivers that reuse some of the standard USB CDC infrastructure * (notably, using multiple interfaces according to the the CDC * union descriptor) get some helper code. */struct cdc_state {	struct usb_cdc_header_desc	*header;	struct usb_cdc_union_desc	*u;	struct usb_cdc_ether_desc	*ether;	struct usb_interface		*control;	struct usb_interface		*data;};extern int usbnet_generic_cdc_bind (struct usbnet *, struct usb_interface *);extern void usbnet_cdc_unbind (struct usbnet *, struct usb_interface *);/* CDC and RNDIS support the same host-chosen packet filters for IN transfers */#define	DEFAULT_FILTER	(USB_CDC_PACKET_TYPE_BROADCAST \ 			|USB_CDC_PACKET_TYPE_ALL_MULTICAST \ 			|USB_CDC_PACKET_TYPE_PROMISCUOUS \ 			|USB_CDC_PACKET_TYPE_DIRECTED)/* we record the state for each of our queued skbs */enum skb_state {	illegal = 0,	tx_start, tx_done,	rx_start, rx_done, rx_cleanup};struct skb_data {	/* skb->cb is one of these */	struct urb		*urb;	struct usbnet		*dev;	enum skb_state		state;	size_t			length;};#endifenum pbuf_data_state {    illegal = 0,    tx_start, tx_done,    rx_start, rx_done, rx_cleanup};struct pbuf_data {    struct urb           * urb;    struct usbnet        * dev;    enum pbuf_data_state   state;    size_t                 length};int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf);//extern void usbnet_defer_kevent (struct usbnet *, int);void usbnet_skb_return (struct usbnet *dev, struct pbuf *p);#if 0extern u32 usbnet_get_msglevel (struct net_device *);extern void usbnet_set_msglevel (struct net_device *, u32);extern void usbnet_get_drvinfo (struct net_device *, struct ethtool_drvinfo *);/* messaging support includes the interface name, so it must not be * used before it has one ... notably, in minidriver bind() calls. */#ifdef DEBUG#define devdbg(usbnet, fmt, arg...) \	printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , ## arg)#else#define devdbg(usbnet, fmt, arg...) do {} while(0)#endif#define deverr(usbnet, fmt, arg...) \	printk(KERN_ERR "%s: " fmt "\n" , (usbnet)->net->name , ## arg)#define devwarn(usbnet, fmt, arg...) \	printk(KERN_WARNING "%s: " fmt "\n" , (usbnet)->net->name , ## arg)#define devinfo(usbnet, fmt, arg...) \	printk(KERN_INFO "%s: " fmt "\n" , (usbnet)->net->name , ## arg);#endif // 0#endif	/* __USBNET_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?