1 /*
2 * u_ether.h -- interface to USB gadget "ethernet link" utilities
3 *
4 * Copyright (C) 2003-2005,2008 David Brownell
5 * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger
6 * Copyright (C) 2008 Nokia Corporation
7 *
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.
12 */
13
14 #ifndef __U_ETHER_H
15 #define __U_ETHER_H
16
17 #include <linux/err.h>
18 #include <linux/if_ether.h>
19 #include <linux/usb/composite.h>
20 #include <linux/usb/cdc.h>
21
22 #include "gadget_chips.h"
23
24 struct eth_dev;
25
26 /*
27 * This represents the USB side of an "ethernet" link, managed by a USB
28 * function which provides control and (maybe) framing. Two functions
29 * in different configurations could share the same ethernet link/netdev,
30 * using different host interaction models.
31 *
32 * There is a current limitation that only one instance of this link may
33 * be present in any given configuration. When that's a problem, network
34 * layer facilities can be used to package multiple logical links on this
35 * single "physical" one.
36 */
37 struct gether {
38 struct usb_function func;
39
40 /* updated by gether_{connect,disconnect} */
41 struct eth_dev *ioport;
42
43 /* endpoints handle full and/or high speeds */
44 struct usb_ep *in_ep;
45 struct usb_ep *out_ep;
46
47 bool is_zlp_ok;
48
49 u16 cdc_filter;
50
51 /* hooks for added framing, as needed for RNDIS and EEM. */
52 u32 header_len;
53 /* NCM requires fixed size bundles */
54 bool is_fixed;
55 u32 fixed_out_len;
56 u32 fixed_in_len;
57 unsigned ul_max_pkts_per_xfer;
58 unsigned dl_max_pkts_per_xfer;
59 bool multi_pkt_xfer;
60 struct sk_buff *(*wrap)(struct gether *port,
61 struct sk_buff *skb);
62 int (*unwrap)(struct gether *port,
63 struct sk_buff *skb,
64 struct sk_buff_head *list);
65
66 /* called on network open/close */
67 void (*open)(struct gether *);
68 void (*close)(struct gether *);
69 };
70
71 #define DEFAULT_FILTER (USB_CDC_PACKET_TYPE_BROADCAST \
72 |USB_CDC_PACKET_TYPE_ALL_MULTICAST \
73 |USB_CDC_PACKET_TYPE_PROMISCUOUS \
74 |USB_CDC_PACKET_TYPE_DIRECTED)
75
76 /* variant of gether_setup that allows customizing network device name */
77 struct eth_dev *gether_setup_name(struct usb_gadget *g, u8 ethaddr[ETH_ALEN],
78 const char *netname);
79
80 /* netdev setup/teardown as directed by the gadget driver */
81 /* gether_setup - initialize one ethernet-over-usb link
82 * @g: gadget to associated with these links
83 * @ethaddr: NULL, or a buffer in which the ethernet address of the
84 * host side of the link is recorded
85 * Context: may sleep
86 *
87 * This sets up the single network link that may be exported by a
88 * gadget driver using this framework. The link layer addresses are
89 * set up using module parameters.
90 *
91 * Returns negative errno, or zero on success
92 */
gether_setup(struct usb_gadget * g,u8 ethaddr[ETH_ALEN])93 static inline struct eth_dev *gether_setup(struct usb_gadget *g,
94 u8 ethaddr[ETH_ALEN])
95 {
96 return gether_setup_name(g, ethaddr, "usb");
97 }
98
99 void gether_cleanup(struct eth_dev *dev);
100
101 /* connect/disconnect is handled by individual functions */
102 struct net_device *gether_connect(struct gether *);
103 void gether_disconnect(struct gether *);
104
105 /* Some controllers can't support CDC Ethernet (ECM) ... */
can_support_ecm(struct usb_gadget * gadget)106 static inline bool can_support_ecm(struct usb_gadget *gadget)
107 {
108 if (!gadget_supports_altsettings(gadget))
109 return false;
110
111 /* Everything else is *presumably* fine ... but this is a bit
112 * chancy, so be **CERTAIN** there are no hardware issues with
113 * your controller. Add it above if it can't handle CDC.
114 */
115 return true;
116 }
117
118 /* each configuration may bind one instance of an ethernet link */
119 int geth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
120 struct eth_dev *dev);
121 int ecm_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
122 struct eth_dev *dev);
123 int ncm_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
124 struct eth_dev *dev);
125 int eem_bind_config(struct usb_configuration *c, struct eth_dev *dev);
126
127 #ifdef USB_ETH_RNDIS
128
129 int rndis_bind_config_vendor(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
130 u32 vendorID, const char *manufacturer, struct eth_dev *dev);
131
132 #else
133
134 static inline int
rndis_bind_config_vendor(struct usb_configuration * c,u8 ethaddr[ETH_ALEN],u32 vendorID,const char * manufacturer,struct eth_dev * dev)135 rndis_bind_config_vendor(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
136 u32 vendorID, const char *manufacturer, struct eth_dev *dev)
137 {
138 return 0;
139 }
140
141 #endif
142
143 /**
144 * rndis_bind_config - add RNDIS network link to a configuration
145 * @c: the configuration to support the network link
146 * @ethaddr: a buffer in which the ethernet address of the host side
147 * side of the link was recorded
148 * Context: single threaded during gadget setup
149 *
150 * Returns zero on success, else negative errno.
151 *
152 * Caller must have called @gether_setup(). Caller is also responsible
153 * for calling @gether_cleanup() before module unload.
154 */
rndis_bind_config(struct usb_configuration * c,u8 ethaddr[ETH_ALEN],struct eth_dev * dev)155 static inline int rndis_bind_config(struct usb_configuration *c,
156 u8 ethaddr[ETH_ALEN], struct eth_dev *dev)
157 {
158 return rndis_bind_config_vendor(c, ethaddr, 0, NULL, dev);
159 }
160
161
162 #endif /* __U_ETHER_H */
163