usbnet.h revision 1.10 1 1.10 mrg /* $NetBSD: usbnet.h,v 1.10 2019/08/11 01:29:45 mrg Exp $ */
2 1.1 mrg
3 1.1 mrg /*
4 1.1 mrg * Copyright (c) 2019 Matthew R. Green
5 1.1 mrg * All rights reserved.
6 1.1 mrg *
7 1.1 mrg * Redistribution and use in source and binary forms, with or without
8 1.1 mrg * modification, are permitted provided that the following conditions
9 1.1 mrg * are met:
10 1.1 mrg * 1. Redistributions of source code must retain the above copyright
11 1.1 mrg * notice, this list of conditions and the following disclaimer.
12 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mrg * notice, this list of conditions and the following disclaimer in the
14 1.1 mrg * documentation and/or other materials provided with the distribution.
15 1.1 mrg * 3. The name of the author may not be used to endorse or promote products
16 1.1 mrg * derived from this software without specific prior written permission.
17 1.1 mrg *
18 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 mrg * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 mrg * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 mrg * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 mrg * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 1.1 mrg * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 1.1 mrg * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 1.1 mrg * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 1.1 mrg * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 1.1 mrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 1.1 mrg * SUCH DAMAGE.
29 1.1 mrg */
30 1.1 mrg
31 1.1 mrg #ifndef _DEV_USB_USBNET_H
32 1.1 mrg #define _DEV_USB_USBNET_H
33 1.1 mrg
34 1.1 mrg /*
35 1.1 mrg * Common code/data shared by all USB ethernet drivers (using these routines.)
36 1.1 mrg *
37 1.1 mrg * This framework provides the following features for USB ethernet drivers:
38 1.1 mrg *
39 1.1 mrg * - USB endpoint pipe handling
40 1.1 mrg * - rx and tx chain handling
41 1.1 mrg * - generic handlers or support for several struct ifnet callbacks
42 1.1 mrg * - MII bus locking
43 1.1 mrg * - interrupt handling
44 1.1 mrg * - partial autoconf handling
45 1.1 mrg *
46 1.1 mrg * Consumers of this interface need to:
47 1.1 mrg *
48 1.1 mrg * - replace most softc members with "struct usbnet" usage, in particular
49 1.1 mrg * use usbnet pointer for ifp->if_softc, and device_private (real softc
50 1.1 mrg * can be stored in un_sc member)
51 1.1 mrg * - use MII bus lock / access methods
52 1.1 mrg * - usbnet_attach() to initialise and allocate rx/tx chains
53 1.5 mrg * - usbnet_attach_ifp() to attach the interface, and either ether_ifattach()
54 1.5 mrg * for ethernet devices, or if_alloc_sadl()/bpf_attach() pair otherwise.
55 1.1 mrg * - usbnet_detach() to clean them up
56 1.1 mrg * - usbnet_activate() for autoconf
57 1.1 mrg * - interface ioctl and start have direct frontends with callbacks for
58 1.1 mrg * device specific handling:
59 1.6 skrll * - ioctl can use either a device-specific override (useful for special
60 1.5 mrg * cases), but provides a normal handler with callback to handle
61 1.5 mrg * ENETRESET conditions that should be sufficient for most users
62 1.1 mrg * - start uses usbnet send callback
63 1.1 mrg * - interface init and stop have helper functions
64 1.1 mrg * - device specific init should use usbnet_init_rx_tx() to open pipes
65 1.1 mrg * to the device and setup the rx/tx chains for use after any device
66 1.1 mrg * specific setup
67 1.1 mrg * - usbnet_stop() must be called with the un_lock held, and will
68 1.1 mrg * call the device-specific usbnet stop callback, which enables the
69 1.1 mrg * standard init calls stop idiom.
70 1.1 mrg * - interrupt handling:
71 1.1 mrg * - for rx, usbnet_init_rx_tx() will enable the receive pipes and
72 1.1 mrg * call the rx_loop callback to handle device specific processing of
73 1.1 mrg * packets, which can use usbnet_enqueue() to provide data to the
74 1.1 mrg * higher layers
75 1.1 mrg * - for tx, usbnet_start (if_start) will pull entries out of the
76 1.1 mrg * transmit queue and use the send callback for the given mbuf.
77 1.1 mrg * the usb callback will use usbnet_txeof() for the transmit
78 1.1 mrg * completion function (internal to usbnet)
79 1.1 mrg */
80 1.1 mrg
81 1.1 mrg #include <sys/device.h>
82 1.1 mrg #include <sys/mbuf.h>
83 1.1 mrg #include <sys/rndsource.h>
84 1.2 mrg #include <sys/mutex.h>
85 1.1 mrg
86 1.1 mrg #include <net/bpf.h>
87 1.1 mrg #include <net/if.h>
88 1.1 mrg #include <net/if_arp.h>
89 1.3 skrll #include <net/if_dl.h>
90 1.3 skrll #include <net/if_ether.h>
91 1.1 mrg #include <net/if_media.h>
92 1.1 mrg
93 1.1 mrg #include <dev/mii/mii.h>
94 1.1 mrg #include <dev/mii/miivar.h>
95 1.1 mrg
96 1.1 mrg #include <dev/usb/usb.h>
97 1.1 mrg #include <dev/usb/usbdi.h>
98 1.1 mrg #include <dev/usb/usbdivar.h>
99 1.1 mrg #include <dev/usb/usbdi_util.h>
100 1.1 mrg #include <dev/usb/usbdevs.h>
101 1.1 mrg
102 1.1 mrg /*
103 1.10 mrg * Per-transfer data.
104 1.1 mrg *
105 1.10 mrg * Front-end must set un_rx_list_cnt and un_tx_list_cnt before
106 1.10 mrg * calling usbnet_attach(), and then call usbnet_rx_tx_init()
107 1.10 mrg * which will allocate the chain arrays, and must be NULL to
108 1.4 mrg * indicate the first call.
109 1.1 mrg */
110 1.1 mrg struct usbnet;
111 1.1 mrg struct usbnet_chain {
112 1.1 mrg struct usbnet *unc_un;
113 1.1 mrg struct usbd_xfer *unc_xfer;
114 1.1 mrg uint8_t *unc_buf;
115 1.1 mrg };
116 1.1 mrg
117 1.1 mrg /*
118 1.1 mrg * Extend this as necessary. axe(4) claims to want 6 total, but
119 1.1 mrg * does not implement them.
120 1.1 mrg */
121 1.1 mrg enum usbnet_ep {
122 1.1 mrg USBNET_ENDPT_RX,
123 1.1 mrg USBNET_ENDPT_TX,
124 1.1 mrg USBNET_ENDPT_INTR,
125 1.1 mrg USBNET_ENDPT_MAX,
126 1.1 mrg };
127 1.1 mrg
128 1.1 mrg /* Interface stop callback. */
129 1.1 mrg typedef void (*usbnet_stop_cb)(struct ifnet *, int);
130 1.1 mrg /* Interface ioctl callback. */
131 1.1 mrg typedef int (*usbnet_ioctl_cb)(struct ifnet *, u_long, void *);
132 1.1 mrg /* Initialise device callback. */
133 1.1 mrg typedef int (*usbnet_init_cb)(struct ifnet *);
134 1.4 mrg
135 1.1 mrg /* MII read register callback. */
136 1.1 mrg typedef usbd_status (*usbnet_mii_read_reg_cb)(struct usbnet *, int reg,
137 1.1 mrg int phy, uint16_t *val);
138 1.1 mrg /* MII write register callback. */
139 1.1 mrg typedef usbd_status (*usbnet_mii_write_reg_cb)(struct usbnet *, int reg,
140 1.1 mrg int phy, uint16_t val);
141 1.1 mrg /* MII status change callback. */
142 1.1 mrg typedef void (*usbnet_mii_statchg_cb)(struct ifnet *);
143 1.4 mrg
144 1.1 mrg /* Prepare packet to send callback, returns length. */
145 1.1 mrg typedef unsigned (*usbnet_tx_prepare_cb)(struct usbnet *, struct mbuf *,
146 1.1 mrg struct usbnet_chain *);
147 1.1 mrg /* Receive some packets callback. */
148 1.1 mrg typedef void (*usbnet_rx_loop_cb)(struct usbnet *, struct usbd_xfer *,
149 1.1 mrg struct usbnet_chain *, uint32_t);
150 1.4 mrg /* Interrupt pipe callback. */
151 1.4 mrg typedef void (*usbnet_intr_cb)(struct usbnet *, usbd_status);
152 1.1 mrg
153 1.7 mrg struct usbnet_ops {
154 1.7 mrg usbnet_stop_cb uno_stop;
155 1.7 mrg usbnet_ioctl_cb uno_ioctl;
156 1.7 mrg usbnet_ioctl_cb uno_override_ioctl;
157 1.7 mrg usbnet_init_cb uno_init;
158 1.7 mrg usbnet_mii_read_reg_cb uno_read_reg;
159 1.7 mrg usbnet_mii_write_reg_cb uno_write_reg;
160 1.7 mrg usbnet_mii_statchg_cb uno_statchg;
161 1.7 mrg usbnet_tx_prepare_cb uno_tx_prepare;
162 1.7 mrg usbnet_rx_loop_cb uno_rx_loop;
163 1.7 mrg usbnet_intr_cb uno_intr;
164 1.7 mrg };
165 1.7 mrg
166 1.1 mrg /*
167 1.9 mrg * USB interrupt pipe support. Use this if usbd_open_pipe_intr() should
168 1.9 mrg * be used for the interrupt pipe.
169 1.9 mrg */
170 1.9 mrg struct usbnet_intr {
171 1.9 mrg /*
172 1.9 mrg * Point un_intr to this structure to use usbd_open_pipe_intr() not
173 1.9 mrg * usbd_open_pipe() for USBNET_ENDPT_INTR, with this buffer, size,
174 1.9 mrg * and interval.
175 1.9 mrg */
176 1.9 mrg void *uni_buf;
177 1.9 mrg unsigned uni_bufsz;
178 1.9 mrg unsigned uni_interval;
179 1.9 mrg };
180 1.9 mrg
181 1.9 mrg /*
182 1.9 mrg * Generic USB ethernet structure. Use this as ifp->if_softc and set as
183 1.9 mrg * device_private() in attach unless already using struct usbnet here.
184 1.4 mrg *
185 1.4 mrg * Devices without MII should call usbnet_attach_ifp() with have_mii set
186 1.4 mrg * to true, and should ensure that the un_statchg_cb callback sets the
187 1.4 mrg * un_link member. Devices without MII have this forced to true.
188 1.1 mrg */
189 1.9 mrg struct usbnet_private;
190 1.1 mrg struct usbnet {
191 1.9 mrg /*
192 1.9 mrg * This section should be filled in before calling
193 1.9 mrg * usbnet_attach().
194 1.9 mrg */
195 1.1 mrg void *un_sc; /* real softc */
196 1.1 mrg device_t un_dev;
197 1.1 mrg struct usbd_interface *un_iface;
198 1.9 mrg struct usbd_device *un_udev;
199 1.7 mrg struct usbnet_ops *un_ops;
200 1.9 mrg struct usbnet_intr *un_intr;
201 1.1 mrg
202 1.9 mrg /* Inputs for rx/tx chain control. */
203 1.9 mrg unsigned un_rx_bufsz;
204 1.9 mrg unsigned un_tx_bufsz;
205 1.9 mrg unsigned un_rx_list_cnt;
206 1.9 mrg unsigned un_tx_list_cnt;
207 1.9 mrg int un_rx_xfer_flags;
208 1.9 mrg int un_tx_xfer_flags;
209 1.1 mrg
210 1.9 mrg /*
211 1.9 mrg * This section should be filled in before calling
212 1.9 mrg * usbnet_attach_ifp().
213 1.9 mrg */
214 1.1 mrg enum usbnet_ep un_ed[USBNET_ENDPT_MAX];
215 1.1 mrg
216 1.9 mrg /* MII specific. Not used without MII. */
217 1.9 mrg int un_phyno;
218 1.9 mrg /* Ethernet specific. All zeroes indicates non-Ethernet. */
219 1.9 mrg uint8_t un_eaddr[ETHER_ADDR_LEN];
220 1.8 mrg
221 1.1 mrg /*
222 1.9 mrg * This section is for driver to use, not touched by usbnet.
223 1.1 mrg */
224 1.9 mrg unsigned un_flags;
225 1.1 mrg
226 1.4 mrg /*
227 1.9 mrg * This section is private to usbnet. Don't touch.
228 1.4 mrg */
229 1.9 mrg struct usbnet_private *un_pri;
230 1.1 mrg };
231 1.1 mrg
232 1.9 mrg /* Various accessors. */
233 1.1 mrg
234 1.9 mrg void usbnet_set_link(struct usbnet *, bool);
235 1.9 mrg
236 1.9 mrg struct ifnet *usbnet_ifp(struct usbnet *);
237 1.9 mrg struct ethercom *usbnet_ec(struct usbnet *);
238 1.9 mrg struct mii_data *usbnet_mii(struct usbnet *);
239 1.9 mrg krndsource_t *usbnet_rndsrc(struct usbnet *);
240 1.9 mrg void *usbnet_softc(struct usbnet *);
241 1.1 mrg
242 1.9 mrg bool usbnet_havelink(struct usbnet *);
243 1.9 mrg bool usbnet_isdying(struct usbnet *);
244 1.4 mrg
245 1.4 mrg
246 1.9 mrg /*
247 1.9 mrg * Locking. Note that the isowned() are implemented here so that
248 1.9 mrg * empty-KASSERT() causes them to be elided for non-DIAG builds.
249 1.9 mrg */
250 1.9 mrg void usbnet_lock(struct usbnet *);
251 1.9 mrg void usbnet_unlock(struct usbnet *);
252 1.9 mrg kmutex_t *usbnet_mutex(struct usbnet *);
253 1.4 mrg static __inline__ void
254 1.4 mrg usbnet_isowned(struct usbnet *un)
255 1.4 mrg {
256 1.9 mrg KASSERT(mutex_owned(usbnet_mutex(un)));
257 1.4 mrg }
258 1.4 mrg
259 1.9 mrg void usbnet_lock_rx(struct usbnet *);
260 1.9 mrg void usbnet_unlock_rx(struct usbnet *);
261 1.9 mrg kmutex_t *usbnet_mutex_rx(struct usbnet *);
262 1.4 mrg static __inline__ void
263 1.4 mrg usbnet_isowned_rx(struct usbnet *un)
264 1.4 mrg {
265 1.9 mrg KASSERT(mutex_owned(usbnet_mutex_rx(un)));
266 1.4 mrg }
267 1.4 mrg
268 1.9 mrg void usbnet_lock_tx(struct usbnet *);
269 1.9 mrg void usbnet_unlock_tx(struct usbnet *);
270 1.9 mrg kmutex_t *usbnet_mutex_tx(struct usbnet *);
271 1.4 mrg static __inline__ void
272 1.9 mrg usbnet_isowned_tx(struct usbnet *un)
273 1.4 mrg {
274 1.9 mrg KASSERT(mutex_owned(usbnet_mutex_tx(un)));
275 1.4 mrg }
276 1.4 mrg
277 1.9 mrg /*
278 1.9 mrg * Endpoint / rx/tx chain management:
279 1.9 mrg *
280 1.10 mrg * usbnet_attach() initialises usbnet and allocates rx and tx chains
281 1.9 mrg * usbnet_init_rx_tx() open pipes, initialises the rx/tx chains for use
282 1.9 mrg * usbnet_stop() stops pipes, cleans (not frees) rx/tx chains, locked
283 1.9 mrg * version assumes un_lock is held
284 1.9 mrg * usbnet_detach() frees the rx/tx chains
285 1.9 mrg *
286 1.9 mrg * Setup un_ed[] with valid end points before calling usbnet_attach().
287 1.9 mrg * Call usbnet_init_rx_tx() to initialise pipes, which will be open
288 1.9 mrg * upon success.
289 1.9 mrg */
290 1.9 mrg int usbnet_init_rx_tx(struct usbnet * const);
291 1.4 mrg
292 1.9 mrg /* MII. */
293 1.1 mrg void usbnet_lock_mii(struct usbnet *);
294 1.1 mrg void usbnet_lock_mii_un_locked(struct usbnet *);
295 1.1 mrg void usbnet_unlock_mii(struct usbnet *);
296 1.1 mrg void usbnet_unlock_mii_un_locked(struct usbnet *);
297 1.9 mrg kmutex_t *usbnet_mutex_mii(struct usbnet *);
298 1.4 mrg static __inline__ void
299 1.4 mrg usbnet_isowned_mii(struct usbnet *un)
300 1.4 mrg {
301 1.9 mrg KASSERT(mutex_owned(usbnet_mutex_mii(un)));
302 1.4 mrg }
303 1.4 mrg
304 1.9 mrg
305 1.7 mrg int usbnet_mii_readreg(device_t, int, int, uint16_t *);
306 1.7 mrg int usbnet_mii_writereg(device_t, int, int, uint16_t);
307 1.7 mrg void usbnet_mii_statchg(struct ifnet *);
308 1.1 mrg
309 1.1 mrg /* interrupt handling */
310 1.5 mrg void usbnet_enqueue(struct usbnet * const, uint8_t *, size_t, int,
311 1.5 mrg uint32_t, int);
312 1.5 mrg void usbnet_input(struct usbnet * const, uint8_t *, size_t);
313 1.1 mrg
314 1.1 mrg /* autoconf */
315 1.9 mrg void usbnet_attach(struct usbnet *un, const char *);
316 1.2 mrg void usbnet_attach_ifp(struct usbnet *, bool, unsigned, unsigned, int);
317 1.1 mrg int usbnet_detach(device_t, int);
318 1.1 mrg int usbnet_activate(device_t, devact_t);
319 1.1 mrg
320 1.1 mrg /* stop backend */
321 1.1 mrg void usbnet_stop(struct usbnet *, struct ifnet *, int);
322 1.1 mrg
323 1.1 mrg #endif /* _DEV_USB_USBNET_H */
324