Merge branch 'for-3.11' of git://linux-nfs.org/~bfields/linux
[linux-2.6.git] / drivers / usb / gadget / u_ether.h
blobfb23d1fde8eb52701cab66b6b1103423d63e13de
1 /*
2 * u_ether.h -- interface to USB gadget "ethernet link" utilities
4 * Copyright (C) 2003-2005,2008 David Brownell
5 * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger
6 * Copyright (C) 2008 Nokia Corporation
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #ifndef __U_ETHER_H
15 #define __U_ETHER_H
17 #include <linux/err.h>
18 #include <linux/if_ether.h>
19 #include <linux/usb/composite.h>
20 #include <linux/usb/cdc.h>
22 #include "gadget_chips.h"
24 #define QMULT_DEFAULT 5
27 * dev_addr: initial value
28 * changed by "ifconfig usb0 hw ether xx:xx:xx:xx:xx:xx"
29 * host_addr: this address is invisible to ifconfig
31 #define USB_ETHERNET_MODULE_PARAMETERS() \
32 static unsigned qmult = QMULT_DEFAULT; \
33 module_param(qmult, uint, S_IRUGO|S_IWUSR); \
34 MODULE_PARM_DESC(qmult, "queue length multiplier at high/super speed");\
36 static char *dev_addr; \
37 module_param(dev_addr, charp, S_IRUGO); \
38 MODULE_PARM_DESC(dev_addr, "Device Ethernet Address"); \
40 static char *host_addr; \
41 module_param(host_addr, charp, S_IRUGO); \
42 MODULE_PARM_DESC(host_addr, "Host Ethernet Address")
44 struct eth_dev;
47 * This represents the USB side of an "ethernet" link, managed by a USB
48 * function which provides control and (maybe) framing. Two functions
49 * in different configurations could share the same ethernet link/netdev,
50 * using different host interaction models.
52 * There is a current limitation that only one instance of this link may
53 * be present in any given configuration. When that's a problem, network
54 * layer facilities can be used to package multiple logical links on this
55 * single "physical" one.
57 struct gether {
58 struct usb_function func;
60 /* updated by gether_{connect,disconnect} */
61 struct eth_dev *ioport;
63 /* endpoints handle full and/or high speeds */
64 struct usb_ep *in_ep;
65 struct usb_ep *out_ep;
67 bool is_zlp_ok;
69 u16 cdc_filter;
71 /* hooks for added framing, as needed for RNDIS and EEM. */
72 u32 header_len;
73 /* NCM requires fixed size bundles */
74 bool is_fixed;
75 u32 fixed_out_len;
76 u32 fixed_in_len;
77 struct sk_buff *(*wrap)(struct gether *port,
78 struct sk_buff *skb);
79 int (*unwrap)(struct gether *port,
80 struct sk_buff *skb,
81 struct sk_buff_head *list);
83 /* called on network open/close */
84 void (*open)(struct gether *);
85 void (*close)(struct gether *);
88 #define DEFAULT_FILTER (USB_CDC_PACKET_TYPE_BROADCAST \
89 |USB_CDC_PACKET_TYPE_ALL_MULTICAST \
90 |USB_CDC_PACKET_TYPE_PROMISCUOUS \
91 |USB_CDC_PACKET_TYPE_DIRECTED)
93 /* variant of gether_setup that allows customizing network device name */
94 struct eth_dev *gether_setup_name(struct usb_gadget *g,
95 const char *dev_addr, const char *host_addr,
96 u8 ethaddr[ETH_ALEN], unsigned qmult, const char *netname);
98 /* netdev setup/teardown as directed by the gadget driver */
99 /* gether_setup - initialize one ethernet-over-usb link
100 * @g: gadget to associated with these links
101 * @ethaddr: NULL, or a buffer in which the ethernet address of the
102 * host side of the link is recorded
103 * Context: may sleep
105 * This sets up the single network link that may be exported by a
106 * gadget driver using this framework. The link layer addresses are
107 * set up using module parameters.
109 * Returns negative errno, or zero on success
111 static inline struct eth_dev *gether_setup(struct usb_gadget *g,
112 const char *dev_addr, const char *host_addr,
113 u8 ethaddr[ETH_ALEN], unsigned qmult)
115 return gether_setup_name(g, dev_addr, host_addr, ethaddr, qmult, "usb");
119 * variant of gether_setup_default that allows customizing
120 * network device name
122 struct net_device *gether_setup_name_default(const char *netname);
125 * gether_register_netdev - register the net device
126 * @net: net device to register
128 * Registers the net device associated with this ethernet-over-usb link
131 int gether_register_netdev(struct net_device *net);
133 /* gether_setup_default - initialize one ethernet-over-usb link
134 * Context: may sleep
136 * This sets up the single network link that may be exported by a
137 * gadget driver using this framework. The link layer addresses
138 * are set to random values.
140 * Returns negative errno, or zero on success
142 static inline struct net_device *gether_setup_default(void)
144 return gether_setup_name_default("usb");
148 * gether_set_gadget - initialize one ethernet-over-usb link with a gadget
149 * @net: device representing this link
150 * @g: the gadget to initialize with
152 * This associates one ethernet-over-usb link with a gadget.
154 void gether_set_gadget(struct net_device *net, struct usb_gadget *g);
157 * gether_set_dev_addr - initialize an ethernet-over-usb link with eth address
158 * @net: device representing this link
159 * @dev_addr: eth address of this device
161 * This sets the device-side Ethernet address of this ethernet-over-usb link
162 * if dev_addr is correct.
163 * Returns negative errno if the new address is incorrect.
165 int gether_set_dev_addr(struct net_device *net, const char *dev_addr);
168 * gether_get_dev_addr - get an ethernet-over-usb link eth address
169 * @net: device representing this link
170 * @dev_addr: place to store device's eth address
171 * @len: length of the @dev_addr buffer
173 * This gets the device-side Ethernet address of this ethernet-over-usb link.
174 * Returns zero on success, else negative errno.
176 int gether_get_dev_addr(struct net_device *net, char *dev_addr, int len);
179 * gether_set_host_addr - initialize an ethernet-over-usb link with host address
180 * @net: device representing this link
181 * @host_addr: eth address of the host
183 * This sets the host-side Ethernet address of this ethernet-over-usb link
184 * if host_addr is correct.
185 * Returns negative errno if the new address is incorrect.
187 int gether_set_host_addr(struct net_device *net, const char *host_addr);
190 * gether_get_host_addr - get an ethernet-over-usb link host address
191 * @net: device representing this link
192 * @host_addr: place to store eth address of the host
193 * @len: length of the @host_addr buffer
195 * This gets the host-side Ethernet address of this ethernet-over-usb link.
196 * Returns zero on success, else negative errno.
198 int gether_get_host_addr(struct net_device *net, char *host_addr, int len);
201 * gether_get_host_addr_cdc - get an ethernet-over-usb link host address
202 * @net: device representing this link
203 * @host_addr: place to store eth address of the host
204 * @len: length of the @host_addr buffer
206 * This gets the CDC formatted host-side Ethernet address of this
207 * ethernet-over-usb link.
208 * Returns zero on success, else negative errno.
210 int gether_get_host_addr_cdc(struct net_device *net, char *host_addr, int len);
213 * gether_get_host_addr_u8 - get an ethernet-over-usb link host address
214 * @net: device representing this link
215 * @host_mac: place to store the eth address of the host
217 * This gets the binary formatted host-side Ethernet address of this
218 * ethernet-over-usb link.
220 void gether_get_host_addr_u8(struct net_device *net, u8 host_mac[ETH_ALEN]);
223 * gether_set_qmult - initialize an ethernet-over-usb link with a multiplier
224 * @net: device representing this link
225 * @qmult: queue multiplier
227 * This sets the queue length multiplier of this ethernet-over-usb link.
228 * For higher speeds use longer queues.
230 void gether_set_qmult(struct net_device *net, unsigned qmult);
233 * gether_get_qmult - get an ethernet-over-usb link multiplier
234 * @net: device representing this link
236 * This gets the queue length multiplier of this ethernet-over-usb link.
238 unsigned gether_get_qmult(struct net_device *net);
241 * gether_get_ifname - get an ethernet-over-usb link interface name
242 * @net: device representing this link
243 * @name: place to store the interface name
244 * @len: length of the @name buffer
246 * This gets the interface name of this ethernet-over-usb link.
247 * Returns zero on success, else negative errno.
249 int gether_get_ifname(struct net_device *net, char *name, int len);
251 void gether_cleanup(struct eth_dev *dev);
253 /* connect/disconnect is handled by individual functions */
254 struct net_device *gether_connect(struct gether *);
255 void gether_disconnect(struct gether *);
257 /* Some controllers can't support CDC Ethernet (ECM) ... */
258 static inline bool can_support_ecm(struct usb_gadget *gadget)
260 if (!gadget_supports_altsettings(gadget))
261 return false;
263 /* Everything else is *presumably* fine ... but this is a bit
264 * chancy, so be **CERTAIN** there are no hardware issues with
265 * your controller. Add it above if it can't handle CDC.
267 return true;
270 /* each configuration may bind one instance of an ethernet link */
271 int geth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
272 struct eth_dev *dev);
273 int ecm_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
274 struct eth_dev *dev);
276 #ifdef USB_ETH_RNDIS
278 int rndis_bind_config_vendor(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
279 u32 vendorID, const char *manufacturer, struct eth_dev *dev);
281 #else
283 static inline int
284 rndis_bind_config_vendor(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
285 u32 vendorID, const char *manufacturer, struct eth_dev *dev)
287 return 0;
290 #endif
293 * rndis_bind_config - add RNDIS network link to a configuration
294 * @c: the configuration to support the network link
295 * @ethaddr: a buffer in which the ethernet address of the host side
296 * side of the link was recorded
297 * Context: single threaded during gadget setup
299 * Returns zero on success, else negative errno.
301 * Caller must have called @gether_setup(). Caller is also responsible
302 * for calling @gether_cleanup() before module unload.
304 static inline int rndis_bind_config(struct usb_configuration *c,
305 u8 ethaddr[ETH_ALEN], struct eth_dev *dev)
307 return rndis_bind_config_vendor(c, ethaddr, 0, NULL, dev);
311 #endif /* __U_ETHER_H */