aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/net/usbnet.h
diff options
context:
space:
mode:
authorDavid Brownell <david-b@pacbell.net>2005-08-31 12:52:31 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2005-09-08 19:28:30 -0400
commitf29fc259976e9f4dd1fe8ed59ccdd50e4ea61db0 (patch)
treeef2798f4b6581926082b88a8cd6cdecbd11ac39e /drivers/usb/net/usbnet.h
parentdd7d50081f5dafd9392bd79f1ec90d553a7303c9 (diff)
[PATCH] USB: usbnet (1/9) clean up framing
This starts to prepare the core of "usbnet" to know less about various framing protocols that map Ethernet packets onto USB, so "minidrivers" can be modules that just plug into the core. - Remove some framing-specific code that cluttered the core: * net->hard_header_len records how much space to preallocate; now drivers that add their own framing (Net1080, GeneLink, Zaurus, and RNDIS) will have smoother TX paths. Even for the drivers (Zaurus, Net1080) that need trailers. * defines new dev->hard_mtu, using this "hardware" limit to check changes to the link's settable "software" mtu. * now net->hard_header_len and dev->hard_mtu are set up in the driver bind() routines, if needed. - Transaction ID is no longer specific to the Net1080 framing; RNDIS needs one too. - Creates a new "usbnet.h" header with declarations that are shared between the core and what will be separate modules. - Plus a couple other minor tweaks, like recognizing -ESHUTDOWN means the keventd work should just shut itself down asap. The core code is only about 1/3 of this large file. Splitting out the minidrivers into separate modules (e.g. ones for ASIX adapters, Zaurii and similar, CDC Ethernet, etc), in later patches, will improve maintainability and shrink typical runtime footprints. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/net/usbnet.h')
-rw-r--r--drivers/usb/net/usbnet.h150
1 files changed, 150 insertions, 0 deletions
diff --git a/drivers/usb/net/usbnet.h b/drivers/usb/net/usbnet.h
new file mode 100644
index 000000000000..44026189a8a1
--- /dev/null
+++ b/drivers/usb/net/usbnet.h
@@ -0,0 +1,150 @@
1/*
2 * USB Networking Link Interface
3 *
4 * Copyright (C) 2000-2005 by David Brownell <dbrownell@users.sourceforge.net>
5 * Copyright (C) 2003-2005 David Hollis <dhollis@davehollis.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22
23#ifndef __USBNET_H
24#define __USBNET_H
25
26
27/* interface from usbnet core to each USB networking device we handle */
28struct usbnet {
29 /* housekeeping */
30 struct usb_device *udev;
31 struct driver_info *driver_info;
32 wait_queue_head_t *wait;
33
34 /* i/o info: pipes etc */
35 unsigned in, out;
36 struct usb_host_endpoint *status;
37 unsigned maxpacket;
38 struct timer_list delay;
39
40 /* protocol/interface state */
41 struct net_device *net;
42 struct net_device_stats stats;
43 int msg_enable;
44 unsigned long data [5];
45 u32 xid;
46 u32 hard_mtu; /* count any extra framing */
47 struct mii_if_info mii;
48
49 /* various kinds of pending driver work */
50 struct sk_buff_head rxq;
51 struct sk_buff_head txq;
52 struct sk_buff_head done;
53 struct urb *interrupt;
54 struct tasklet_struct bh;
55
56 struct work_struct kevent;
57 unsigned long flags;
58# define EVENT_TX_HALT 0
59# define EVENT_RX_HALT 1
60# define EVENT_RX_MEMORY 2
61# define EVENT_STS_SPLIT 3
62# define EVENT_LINK_RESET 4
63};
64
65
66/* interface from the device/framing level "minidriver" to core */
67struct driver_info {
68 char *description;
69
70 int flags;
71/* framing is CDC Ethernet, not writing ZLPs (hw issues), or optionally: */
72#define FLAG_FRAMING_NC 0x0001 /* guard against device dropouts */
73#define FLAG_FRAMING_GL 0x0002 /* genelink batches packets */
74#define FLAG_FRAMING_Z 0x0004 /* zaurus adds a trailer */
75#define FLAG_FRAMING_RN 0x0008 /* RNDIS batches, plus huge header */
76
77#define FLAG_NO_SETINT 0x0010 /* device can't set_interface() */
78#define FLAG_ETHER 0x0020 /* maybe use "eth%d" names */
79
80#define FLAG_FRAMING_AX 0x0040 /* AX88772/178 packets */
81
82 /* init device ... can sleep, or cause probe() failure */
83 int (*bind)(struct usbnet *, struct usb_interface *);
84
85 /* cleanup device ... can sleep, but can't fail */
86 void (*unbind)(struct usbnet *, struct usb_interface *);
87
88 /* reset device ... can sleep */
89 int (*reset)(struct usbnet *);
90
91 /* see if peer is connected ... can sleep */
92 int (*check_connect)(struct usbnet *);
93
94 /* for status polling */
95 void (*status)(struct usbnet *, struct urb *);
96
97 /* link reset handling, called from defer_kevent */
98 int (*link_reset)(struct usbnet *);
99
100 /* fixup rx packet (strip framing) */
101 int (*rx_fixup)(struct usbnet *dev, struct sk_buff *skb);
102
103 /* fixup tx packet (add framing) */
104 struct sk_buff *(*tx_fixup)(struct usbnet *dev,
105 struct sk_buff *skb, unsigned flags);
106
107 /* for new devices, use the descriptor-reading code instead */
108 int in; /* rx endpoint */
109 int out; /* tx endpoint */
110
111 unsigned long data; /* Misc driver specific data */
112};
113
114
115/* we record the state for each of our queued skbs */
116enum skb_state {
117 illegal = 0,
118 tx_start, tx_done,
119 rx_start, rx_done, rx_cleanup
120};
121
122struct skb_data { /* skb->cb is one of these */
123 struct urb *urb;
124 struct usbnet *dev;
125 enum skb_state state;
126 size_t length;
127};
128
129
130
131/* messaging support includes the interface name, so it must not be
132 * used before it has one ... notably, in minidriver bind() calls.
133 */
134#ifdef DEBUG
135#define devdbg(usbnet, fmt, arg...) \
136 printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , ## arg)
137#else
138#define devdbg(usbnet, fmt, arg...) do {} while(0)
139#endif
140
141#define deverr(usbnet, fmt, arg...) \
142 printk(KERN_ERR "%s: " fmt "\n" , (usbnet)->net->name , ## arg)
143#define devwarn(usbnet, fmt, arg...) \
144 printk(KERN_WARNING "%s: " fmt "\n" , (usbnet)->net->name , ## arg)
145
146#define devinfo(usbnet, fmt, arg...) \
147 printk(KERN_INFO "%s: " fmt "\n" , (usbnet)->net->name , ## arg); \
148
149
150#endif /* __USBNET_H */