usbnet.c revision 1.53 1 /* $NetBSD: usbnet.c,v 1.53 2022/03/03 05:47:50 riastradh Exp $ */
2
3 /*
4 * Copyright (c) 2019 Matthew R. Green
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29 /*
30 * Common code shared between USB network drivers.
31 */
32
33 #include <sys/cdefs.h>
34 __KERNEL_RCSID(0, "$NetBSD: usbnet.c,v 1.53 2022/03/03 05:47:50 riastradh Exp $");
35
36 #include <sys/param.h>
37 #include <sys/kernel.h>
38 #include <sys/kmem.h>
39 #include <sys/module.h>
40 #include <sys/atomic.h>
41
42 #include <dev/usb/usbnet.h>
43 #include <dev/usb/usbhist.h>
44
45 struct usbnet_cdata {
46 struct usbnet_chain *uncd_tx_chain;
47 struct usbnet_chain *uncd_rx_chain;
48
49 int uncd_tx_prod;
50 int uncd_tx_cnt;
51 };
52
53 struct usbnet_private {
54 /*
55 * - unp_core_lock protects most of this structure, the public one,
56 * and the MII / media data.
57 * - unp_rxlock protects the rx path and its data
58 * - unp_txlock protects the tx path and its data
59 * - unp_detachcv handles detach vs open references
60 *
61 * the lock ordering is:
62 * ifnet lock -> unp_core_lock -> unp_rxlock -> unp_txlock
63 * - ifnet lock is not needed for unp_core_lock, but if ifnet lock is
64 * involved, it must be taken first
65 */
66 kmutex_t unp_core_lock;
67 kmutex_t unp_rxlock;
68 kmutex_t unp_txlock;
69 kcondvar_t unp_detachcv;
70
71 struct usbnet_cdata unp_cdata;
72
73 struct ethercom unp_ec;
74 struct mii_data unp_mii;
75 struct usb_task unp_mcasttask;
76 struct usb_task unp_ticktask;
77 struct callout unp_stat_ch;
78 struct usbd_pipe *unp_ep[USBNET_ENDPT_MAX];
79
80 bool unp_dying;
81 bool unp_stopping;
82 bool unp_attached;
83 bool unp_ifp_attached;
84 bool unp_link;
85
86 int unp_refcnt;
87 int unp_timer;
88 unsigned short unp_if_flags;
89 unsigned unp_number;
90
91 krndsource_t unp_rndsrc;
92
93 struct timeval unp_rx_notice;
94 struct timeval unp_tx_notice;
95 struct timeval unp_intr_notice;
96 };
97
98 #define un_cdata(un) (&(un)->un_pri->unp_cdata)
99
100 volatile unsigned usbnet_number;
101
102 static int usbnet_modcmd(modcmd_t, void *);
103
104 #ifdef USB_DEBUG
105 #ifndef USBNET_DEBUG
106 #define usbnetdebug 0
107 #else
108 static int usbnetdebug = 0;
109
110 SYSCTL_SETUP(sysctl_hw_usbnet_setup, "sysctl hw.usbnet setup")
111 {
112 int err;
113 const struct sysctlnode *rnode;
114 const struct sysctlnode *cnode;
115
116 err = sysctl_createv(clog, 0, NULL, &rnode,
117 CTLFLAG_PERMANENT, CTLTYPE_NODE, "usbnet",
118 SYSCTL_DESCR("usbnet global controls"),
119 NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
120
121 if (err)
122 goto fail;
123
124 /* control debugging printfs */
125 err = sysctl_createv(clog, 0, &rnode, &cnode,
126 CTLFLAG_PERMANENT | CTLFLAG_READWRITE, CTLTYPE_INT,
127 "debug", SYSCTL_DESCR("Enable debugging output"),
128 NULL, 0, &usbnetdebug, sizeof(usbnetdebug), CTL_CREATE, CTL_EOL);
129 if (err)
130 goto fail;
131
132 return;
133 fail:
134 aprint_error("%s: sysctl_createv failed (err = %d)\n", __func__, err);
135 }
136
137 #endif /* USBNET_DEBUG */
138 #endif /* USB_DEBUG */
139
140 #define DPRINTF(FMT,A,B,C,D) USBHIST_LOGN(usbnetdebug,1,FMT,A,B,C,D)
141 #define DPRINTFN(N,FMT,A,B,C,D) USBHIST_LOGN(usbnetdebug,N,FMT,A,B,C,D)
142 #define USBNETHIST_FUNC() USBHIST_FUNC()
143 #define USBNETHIST_CALLED(name) USBHIST_CALLED(usbnetdebug)
144 #define USBNETHIST_CALLARGS(FMT,A,B,C,D) \
145 USBHIST_CALLARGS(usbnetdebug,FMT,A,B,C,D)
146 #define USBNETHIST_CALLARGSN(N,FMT,A,B,C,D) \
147 USBHIST_CALLARGSN(usbnetdebug,N,FMT,A,B,C,D)
148
149 /* Callback vectors. */
150
151 static void
152 uno_stop(struct usbnet *un, struct ifnet *ifp, int disable)
153 {
154 KASSERTMSG(!un->un_pri->unp_ifp_attached || IFNET_LOCKED(ifp),
155 "%s", ifp->if_xname);
156 usbnet_isowned_core(un);
157 if (un->un_ops->uno_stop)
158 (*un->un_ops->uno_stop)(ifp, disable);
159 }
160
161 static int
162 uno_ioctl(struct usbnet *un, struct ifnet *ifp, u_long cmd, void *data)
163 {
164 /*
165 * There are cases where IFNET_LOCK will not be held when we
166 * are called (e.g. add/delete multicast address), so we can't
167 * assert it.
168 */
169 if (un->un_ops->uno_ioctl)
170 return (*un->un_ops->uno_ioctl)(ifp, cmd, data);
171 return 0;
172 }
173
174 static int
175 uno_override_ioctl(struct usbnet *un, struct ifnet *ifp, u_long cmd, void *data)
176 {
177 /* See above. */
178 return (*un->un_ops->uno_override_ioctl)(ifp, cmd, data);
179 }
180
181 static int
182 uno_init(struct usbnet *un, struct ifnet *ifp)
183 {
184 KASSERT(IFNET_LOCKED(ifp));
185 return (*un->un_ops->uno_init)(ifp);
186 }
187
188 static int
189 uno_read_reg(struct usbnet *un, int phy, int reg, uint16_t *val)
190 {
191 usbnet_isowned_core(un);
192 return (*un->un_ops->uno_read_reg)(un, phy, reg, val);
193 }
194
195 static int
196 uno_write_reg(struct usbnet *un, int phy, int reg, uint16_t val)
197 {
198 usbnet_isowned_core(un);
199 return (*un->un_ops->uno_write_reg)(un, phy, reg, val);
200 }
201
202 static void
203 uno_mii_statchg(struct usbnet *un, struct ifnet *ifp)
204 {
205 usbnet_isowned_core(un);
206 (*un->un_ops->uno_statchg)(ifp);
207 }
208
209 static unsigned
210 uno_tx_prepare(struct usbnet *un, struct mbuf *m, struct usbnet_chain *c)
211 {
212 usbnet_isowned_tx(un);
213 return (*un->un_ops->uno_tx_prepare)(un, m, c);
214 }
215
216 static void
217 uno_rx_loop(struct usbnet *un, struct usbnet_chain *c, uint32_t total_len)
218 {
219 usbnet_isowned_rx(un);
220 (*un->un_ops->uno_rx_loop)(un, c, total_len);
221 }
222
223 static void
224 uno_tick(struct usbnet *un)
225 {
226 if (un->un_ops->uno_tick)
227 (*un->un_ops->uno_tick)(un);
228 }
229
230 static void
231 uno_intr(struct usbnet *un, usbd_status status)
232 {
233 if (un->un_ops->uno_intr)
234 (*un->un_ops->uno_intr)(un, status);
235 }
236
237 /* Interrupt handling. */
238
239 static struct mbuf *
240 usbnet_newbuf(size_t buflen)
241 {
242 struct mbuf *m;
243
244 if (buflen > MCLBYTES)
245 return NULL;
246
247 MGETHDR(m, M_DONTWAIT, MT_DATA);
248 if (m == NULL)
249 return NULL;
250
251 if (buflen > MHLEN - ETHER_ALIGN) {
252 MCLGET(m, M_DONTWAIT);
253 if (!(m->m_flags & M_EXT)) {
254 m_freem(m);
255 return NULL;
256 }
257 }
258
259 m_adj(m, ETHER_ALIGN);
260 m->m_len = m->m_pkthdr.len = buflen;
261
262 return m;
263 }
264
265 /*
266 * usbnet_rxeof() is designed to be the done callback for rx completion.
267 * it provides generic setup and finalisation, calls a different usbnet
268 * rx_loop callback in the middle, which can use usbnet_enqueue() to
269 * enqueue a packet for higher levels (or usbnet_input() if previously
270 * using if_input() path.)
271 */
272 void
273 usbnet_enqueue(struct usbnet * const un, uint8_t *buf, size_t buflen,
274 int csum_flags, uint32_t csum_data, int mbuf_flags)
275 {
276 USBNETHIST_FUNC();
277 struct ifnet * const ifp = usbnet_ifp(un);
278 struct usbnet_private * const unp __unused = un->un_pri;
279 struct mbuf *m;
280
281 USBNETHIST_CALLARGSN(5, "%jd: enter: len=%ju csf %#jx mbf %#jx",
282 unp->unp_number, buflen, csum_flags, mbuf_flags);
283
284 usbnet_isowned_rx(un);
285
286 m = usbnet_newbuf(buflen);
287 if (m == NULL) {
288 DPRINTF("%jd: no memory", unp->unp_number, 0, 0, 0);
289 if_statinc(ifp, if_ierrors);
290 return;
291 }
292
293 m_set_rcvif(m, ifp);
294 m->m_pkthdr.csum_flags = csum_flags;
295 m->m_pkthdr.csum_data = csum_data;
296 m->m_flags |= mbuf_flags;
297 memcpy(mtod(m, uint8_t *), buf, buflen);
298
299 /* push the packet up */
300 if_percpuq_enqueue(ifp->if_percpuq, m);
301 }
302
303 void
304 usbnet_input(struct usbnet * const un, uint8_t *buf, size_t buflen)
305 {
306 USBNETHIST_FUNC();
307 struct ifnet * const ifp = usbnet_ifp(un);
308 struct usbnet_private * const unp __unused = un->un_pri;
309 struct mbuf *m;
310
311 USBNETHIST_CALLARGSN(5, "%jd: enter: buf %#jx len %ju",
312 unp->unp_number, (uintptr_t)buf, buflen, 0);
313
314 usbnet_isowned_rx(un);
315
316 m = usbnet_newbuf(buflen);
317 if (m == NULL) {
318 if_statinc(ifp, if_ierrors);
319 return;
320 }
321
322 m_set_rcvif(m, ifp);
323 memcpy(mtod(m, char *), buf, buflen);
324
325 /* push the packet up */
326 if_input(ifp, m);
327 }
328
329 /*
330 * A frame has been uploaded: pass the resulting mbuf chain up to
331 * the higher level protocols.
332 */
333 static void
334 usbnet_rxeof(struct usbd_xfer *xfer, void *priv, usbd_status status)
335 {
336 USBNETHIST_FUNC();
337 struct usbnet_chain * const c = priv;
338 struct usbnet * const un = c->unc_un;
339 struct usbnet_private * const unp = un->un_pri;
340 uint32_t total_len;
341
342 USBNETHIST_CALLARGSN(5, "%jd: enter: status %#jx xfer %#jx",
343 unp->unp_number, status, (uintptr_t)xfer, 0);
344
345 mutex_enter(&unp->unp_rxlock);
346
347 if (unp->unp_dying || unp->unp_stopping ||
348 status == USBD_INVAL || status == USBD_NOT_STARTED ||
349 status == USBD_CANCELLED)
350 goto out;
351
352 if (status != USBD_NORMAL_COMPLETION) {
353 if (usbd_ratecheck(&unp->unp_rx_notice))
354 device_printf(un->un_dev, "usb errors on rx: %s\n",
355 usbd_errstr(status));
356 if (status == USBD_STALLED)
357 usbd_clear_endpoint_stall_async(unp->unp_ep[USBNET_ENDPT_RX]);
358 goto done;
359 }
360
361 usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
362
363 if (total_len > un->un_rx_bufsz) {
364 aprint_error_dev(un->un_dev,
365 "rxeof: too large transfer (%u > %u)\n",
366 total_len, un->un_rx_bufsz);
367 goto done;
368 }
369
370 uno_rx_loop(un, c, total_len);
371 usbnet_isowned_rx(un);
372
373 done:
374 if (unp->unp_dying || unp->unp_stopping)
375 goto out;
376
377 mutex_exit(&unp->unp_rxlock);
378
379 /* Setup new transfer. */
380 usbd_setup_xfer(xfer, c, c->unc_buf, un->un_rx_bufsz,
381 un->un_rx_xfer_flags, USBD_NO_TIMEOUT, usbnet_rxeof);
382 usbd_transfer(xfer);
383 return;
384
385 out:
386 mutex_exit(&unp->unp_rxlock);
387 }
388
389 static void
390 usbnet_txeof(struct usbd_xfer *xfer, void *priv, usbd_status status)
391 {
392 USBNETHIST_FUNC(); USBNETHIST_CALLED();
393 struct usbnet_chain * const c = priv;
394 struct usbnet * const un = c->unc_un;
395 struct usbnet_cdata * const cd = un_cdata(un);
396 struct usbnet_private * const unp = un->un_pri;
397 struct ifnet * const ifp = usbnet_ifp(un);
398
399 USBNETHIST_CALLARGSN(5, "%jd: enter: status %#jx xfer %#jx",
400 unp->unp_number, status, (uintptr_t)xfer, 0);
401
402 mutex_enter(&unp->unp_txlock);
403 if (unp->unp_stopping || unp->unp_dying) {
404 mutex_exit(&unp->unp_txlock);
405 return;
406 }
407
408 KASSERT(cd->uncd_tx_cnt > 0);
409 cd->uncd_tx_cnt--;
410
411 unp->unp_timer = 0;
412
413 switch (status) {
414 case USBD_NOT_STARTED:
415 case USBD_CANCELLED:
416 break;
417
418 case USBD_NORMAL_COMPLETION:
419 if_statinc(ifp, if_opackets);
420 break;
421
422 default:
423
424 if_statinc(ifp, if_oerrors);
425 if (usbd_ratecheck(&unp->unp_tx_notice))
426 device_printf(un->un_dev, "usb error on tx: %s\n",
427 usbd_errstr(status));
428 if (status == USBD_STALLED)
429 usbd_clear_endpoint_stall_async(unp->unp_ep[USBNET_ENDPT_TX]);
430 break;
431 }
432
433 mutex_exit(&unp->unp_txlock);
434
435 if (status == USBD_NORMAL_COMPLETION && !IFQ_IS_EMPTY(&ifp->if_snd))
436 (*ifp->if_start)(ifp);
437 }
438
439 static void
440 usbnet_pipe_intr(struct usbd_xfer *xfer, void *priv, usbd_status status)
441 {
442 USBNETHIST_FUNC();
443 struct usbnet * const un = priv;
444 struct usbnet_private * const unp = un->un_pri;
445 struct usbnet_intr * const uni = un->un_intr;
446
447 if (uni == NULL || unp->unp_dying || unp->unp_stopping ||
448 status == USBD_INVAL || status == USBD_NOT_STARTED ||
449 status == USBD_CANCELLED) {
450 USBNETHIST_CALLARGS("%jd: uni %#jx d/s %#jx status %#jx",
451 unp->unp_number, (uintptr_t)uni,
452 (unp->unp_dying << 8) | unp->unp_stopping, status);
453 return;
454 }
455
456 if (status != USBD_NORMAL_COMPLETION) {
457 if (usbd_ratecheck(&unp->unp_intr_notice)) {
458 aprint_error_dev(un->un_dev, "usb error on intr: %s\n",
459 usbd_errstr(status));
460 }
461 if (status == USBD_STALLED)
462 usbd_clear_endpoint_stall_async(unp->unp_ep[USBNET_ENDPT_INTR]);
463 USBNETHIST_CALLARGS("%jd: not normal status %#jx",
464 unp->unp_number, status, 0, 0);
465 return;
466 }
467
468 uno_intr(un, status);
469 }
470
471 static void
472 usbnet_start_locked(struct ifnet *ifp)
473 {
474 USBNETHIST_FUNC();
475 struct usbnet * const un = ifp->if_softc;
476 struct usbnet_cdata * const cd = un_cdata(un);
477 struct usbnet_private * const unp = un->un_pri;
478 struct mbuf *m;
479 unsigned length;
480 bool done_transmit = false;
481 int idx, count;
482
483 USBNETHIST_CALLARGS("%jd: tx_cnt %jd list_cnt %jd link %jd",
484 unp->unp_number, cd->uncd_tx_cnt, un->un_tx_list_cnt,
485 unp->unp_link);
486
487 usbnet_isowned_tx(un);
488 KASSERT(cd->uncd_tx_cnt <= un->un_tx_list_cnt);
489
490 if (!unp->unp_link || (ifp->if_flags & IFF_RUNNING) == 0) {
491 DPRINTF("start called no link (%jx) or running (flags %jx)",
492 unp->unp_link, ifp->if_flags, 0, 0);
493 return;
494 }
495
496 if (cd->uncd_tx_cnt == un->un_tx_list_cnt) {
497 DPRINTF("start called, tx busy (%#jx == %#jx)",
498 cd->uncd_tx_cnt, un->un_tx_list_cnt, 0, 0);
499 return;
500 }
501
502 idx = cd->uncd_tx_prod;
503 count = 0;
504 while (cd->uncd_tx_cnt < un->un_tx_list_cnt) {
505 IFQ_POLL(&ifp->if_snd, m);
506 if (m == NULL) {
507 DPRINTF("start called, queue empty", 0, 0, 0, 0);
508 break;
509 }
510 KASSERT(m->m_pkthdr.len <= un->un_tx_bufsz);
511
512 struct usbnet_chain *c = &cd->uncd_tx_chain[idx];
513
514 length = uno_tx_prepare(un, m, c);
515 if (length == 0) {
516 DPRINTF("uno_tx_prepare gave zero length", 0, 0, 0, 0);
517 if_statinc(ifp, if_oerrors);
518 break;
519 }
520
521 if (__predict_false(c->unc_xfer == NULL)) {
522 DPRINTF("unc_xfer is NULL", 0, 0, 0, 0);
523 if_statinc(ifp, if_oerrors);
524 break;
525 }
526
527 usbd_setup_xfer(c->unc_xfer, c, c->unc_buf, length,
528 un->un_tx_xfer_flags, 10000, usbnet_txeof);
529
530 /* Transmit */
531 usbd_status err = usbd_transfer(c->unc_xfer);
532 if (err != USBD_IN_PROGRESS) {
533 DPRINTF("usbd_transfer on %#jx for %ju bytes: %jd",
534 (uintptr_t)c->unc_buf, length, err, 0);
535 if_statinc(ifp, if_oerrors);
536 break;
537 }
538 done_transmit = true;
539
540 IFQ_DEQUEUE(&ifp->if_snd, m);
541
542 /*
543 * If there's a BPF listener, bounce a copy of this frame
544 * to him.
545 */
546 bpf_mtap(ifp, m, BPF_D_OUT);
547 m_freem(m);
548
549 idx = (idx + 1) % un->un_tx_list_cnt;
550 cd->uncd_tx_cnt++;
551 count++;
552 }
553 cd->uncd_tx_prod = idx;
554
555 DPRINTF("finished with start; tx_cnt %jd list_cnt %jd link %jd",
556 cd->uncd_tx_cnt, un->un_tx_list_cnt, unp->unp_link, 0);
557
558 /*
559 * Set a timeout in case the chip goes out to lunch.
560 */
561 if (done_transmit)
562 unp->unp_timer = 5;
563
564 if (count != 0)
565 rnd_add_uint32(&unp->unp_rndsrc, count);
566 }
567
568 static void
569 usbnet_if_start(struct ifnet *ifp)
570 {
571 struct usbnet * const un = ifp->if_softc;
572 struct usbnet_private * const unp = un->un_pri;
573
574 USBNETHIST_FUNC();
575 USBNETHIST_CALLARGS("%jd: stopping %jd",
576 unp->unp_number, unp->unp_stopping, 0, 0);
577
578 mutex_enter(&unp->unp_txlock);
579 if (!unp->unp_stopping)
580 usbnet_start_locked(ifp);
581 mutex_exit(&unp->unp_txlock);
582 }
583
584 /*
585 * Chain management.
586 *
587 * RX and TX are identical. Keep them that way.
588 */
589
590 /* Start of common RX functions */
591
592 static size_t
593 usbnet_rx_list_size(struct usbnet_cdata * const cd, struct usbnet * const un)
594 {
595 return sizeof(*cd->uncd_rx_chain) * un->un_rx_list_cnt;
596 }
597
598 static void
599 usbnet_rx_list_alloc(struct usbnet * const un)
600 {
601 struct usbnet_cdata * const cd = un_cdata(un);
602
603 cd->uncd_rx_chain = kmem_zalloc(usbnet_rx_list_size(cd, un), KM_SLEEP);
604 }
605
606 static void
607 usbnet_rx_list_free(struct usbnet * const un)
608 {
609 struct usbnet_cdata * const cd = un_cdata(un);
610
611 if (cd->uncd_rx_chain) {
612 kmem_free(cd->uncd_rx_chain, usbnet_rx_list_size(cd, un));
613 cd->uncd_rx_chain = NULL;
614 }
615 }
616
617 static int
618 usbnet_rx_list_init(struct usbnet * const un)
619 {
620 struct usbnet_cdata * const cd = un_cdata(un);
621 struct usbnet_private * const unp = un->un_pri;
622
623 for (size_t i = 0; i < un->un_rx_list_cnt; i++) {
624 struct usbnet_chain *c = &cd->uncd_rx_chain[i];
625
626 c->unc_un = un;
627 if (c->unc_xfer == NULL) {
628 int err = usbd_create_xfer(unp->unp_ep[USBNET_ENDPT_RX],
629 un->un_rx_bufsz, un->un_rx_xfer_flags, 0,
630 &c->unc_xfer);
631 if (err)
632 return err;
633 c->unc_buf = usbd_get_buffer(c->unc_xfer);
634 }
635 }
636
637 return 0;
638 }
639
640 static void
641 usbnet_rx_list_fini(struct usbnet * const un)
642 {
643 struct usbnet_cdata * const cd = un_cdata(un);
644
645 for (size_t i = 0; i < un->un_rx_list_cnt; i++) {
646 struct usbnet_chain *c = &cd->uncd_rx_chain[i];
647
648 if (c->unc_xfer != NULL) {
649 usbd_destroy_xfer(c->unc_xfer);
650 c->unc_xfer = NULL;
651 c->unc_buf = NULL;
652 }
653 }
654 }
655
656 /* End of common RX functions */
657
658 static void
659 usbnet_rx_start_pipes(struct usbnet * const un)
660 {
661 struct usbnet_cdata * const cd = un_cdata(un);
662 struct usbnet_private * const unp = un->un_pri;
663
664 mutex_enter(&unp->unp_rxlock);
665 mutex_enter(&unp->unp_txlock);
666 unp->unp_stopping = false;
667
668 for (size_t i = 0; i < un->un_rx_list_cnt; i++) {
669 struct usbnet_chain *c = &cd->uncd_rx_chain[i];
670
671 usbd_setup_xfer(c->unc_xfer, c, c->unc_buf, un->un_rx_bufsz,
672 un->un_rx_xfer_flags, USBD_NO_TIMEOUT, usbnet_rxeof);
673 usbd_transfer(c->unc_xfer);
674 }
675
676 mutex_exit(&unp->unp_txlock);
677 mutex_exit(&unp->unp_rxlock);
678 }
679
680 /* Start of common TX functions */
681
682 static size_t
683 usbnet_tx_list_size(struct usbnet_cdata * const cd, struct usbnet * const un)
684 {
685 return sizeof(*cd->uncd_tx_chain) * un->un_tx_list_cnt;
686 }
687
688 static void
689 usbnet_tx_list_alloc(struct usbnet * const un)
690 {
691 struct usbnet_cdata * const cd = un_cdata(un);
692
693 cd->uncd_tx_chain = kmem_zalloc(usbnet_tx_list_size(cd, un), KM_SLEEP);
694 }
695
696 static void
697 usbnet_tx_list_free(struct usbnet * const un)
698 {
699 struct usbnet_cdata * const cd = un_cdata(un);
700
701 if (cd->uncd_tx_chain) {
702 kmem_free(cd->uncd_tx_chain, usbnet_tx_list_size(cd, un));
703 cd->uncd_tx_chain = NULL;
704 }
705 }
706
707 static int
708 usbnet_tx_list_init(struct usbnet * const un)
709 {
710 struct usbnet_cdata * const cd = un_cdata(un);
711 struct usbnet_private * const unp = un->un_pri;
712
713 for (size_t i = 0; i < un->un_tx_list_cnt; i++) {
714 struct usbnet_chain *c = &cd->uncd_tx_chain[i];
715
716 c->unc_un = un;
717 if (c->unc_xfer == NULL) {
718 int err = usbd_create_xfer(unp->unp_ep[USBNET_ENDPT_TX],
719 un->un_tx_bufsz, un->un_tx_xfer_flags, 0,
720 &c->unc_xfer);
721 if (err)
722 return err;
723 c->unc_buf = usbd_get_buffer(c->unc_xfer);
724 }
725 }
726
727 return 0;
728 }
729
730 static void
731 usbnet_tx_list_fini(struct usbnet * const un)
732 {
733 struct usbnet_cdata * const cd = un_cdata(un);
734
735 for (size_t i = 0; i < un->un_tx_list_cnt; i++) {
736 struct usbnet_chain *c = &cd->uncd_tx_chain[i];
737
738 if (c->unc_xfer != NULL) {
739 usbd_destroy_xfer(c->unc_xfer);
740 c->unc_xfer = NULL;
741 c->unc_buf = NULL;
742 }
743 }
744 cd->uncd_tx_prod = cd->uncd_tx_cnt = 0;
745 }
746
747 /* End of common TX functions */
748
749 /* Endpoint pipe management. */
750
751 static void
752 usbnet_ep_close_pipes(struct usbnet * const un)
753 {
754 struct usbnet_private * const unp = un->un_pri;
755
756 for (size_t i = 0; i < __arraycount(unp->unp_ep); i++) {
757 if (unp->unp_ep[i] == NULL)
758 continue;
759 usbd_status err = usbd_close_pipe(unp->unp_ep[i]);
760 if (err)
761 aprint_error_dev(un->un_dev, "close pipe %zu: %s\n", i,
762 usbd_errstr(err));
763 unp->unp_ep[i] = NULL;
764 }
765 }
766
767 static usbd_status
768 usbnet_ep_open_pipes(struct usbnet * const un)
769 {
770 struct usbnet_intr * const uni = un->un_intr;
771 struct usbnet_private * const unp = un->un_pri;
772
773 for (size_t i = 0; i < __arraycount(unp->unp_ep); i++) {
774 usbd_status err;
775
776 if (un->un_ed[i] == 0)
777 continue;
778
779 if (i == USBNET_ENDPT_INTR && uni) {
780 err = usbd_open_pipe_intr(un->un_iface, un->un_ed[i],
781 USBD_EXCLUSIVE_USE | USBD_MPSAFE, &unp->unp_ep[i], un,
782 uni->uni_buf, uni->uni_bufsz, usbnet_pipe_intr,
783 uni->uni_interval);
784 } else {
785 err = usbd_open_pipe(un->un_iface, un->un_ed[i],
786 USBD_EXCLUSIVE_USE | USBD_MPSAFE, &unp->unp_ep[i]);
787 }
788 if (err) {
789 usbnet_ep_close_pipes(un);
790 return err;
791 }
792 }
793
794 return USBD_NORMAL_COMPLETION;
795 }
796
797 static usbd_status
798 usbnet_ep_stop_pipes(struct usbnet * const un)
799 {
800 struct usbnet_private * const unp = un->un_pri;
801 usbd_status err = USBD_NORMAL_COMPLETION;
802
803 for (size_t i = 0; i < __arraycount(unp->unp_ep); i++) {
804 if (unp->unp_ep[i] == NULL)
805 continue;
806 usbd_status err2 = usbd_abort_pipe(unp->unp_ep[i]);
807 if (err == USBD_NORMAL_COMPLETION && err2)
808 err = err2;
809 }
810
811 return err;
812 }
813
814 int
815 usbnet_init_rx_tx(struct usbnet * const un)
816 {
817 USBNETHIST_FUNC(); USBNETHIST_CALLED();
818 struct usbnet_private * const unp = un->un_pri;
819 struct ifnet * const ifp = usbnet_ifp(un);
820 usbd_status err;
821 int error = 0;
822
823 KASSERTMSG(!unp->unp_ifp_attached || IFNET_LOCKED(ifp),
824 "%s", ifp->if_xname);
825
826 usbnet_isowned_core(un);
827
828 if (unp->unp_dying) {
829 return EIO;
830 }
831
832 usbnet_busy(un);
833
834 /* Open RX and TX pipes. */
835 err = usbnet_ep_open_pipes(un);
836 if (err) {
837 aprint_error_dev(un->un_dev, "open rx/tx pipes failed: %s\n",
838 usbd_errstr(err));
839 error = EIO;
840 goto out;
841 }
842
843 /* Init RX ring. */
844 if (usbnet_rx_list_init(un)) {
845 aprint_error_dev(un->un_dev, "rx list init failed\n");
846 error = ENOBUFS;
847 goto out;
848 }
849
850 /* Init TX ring. */
851 if (usbnet_tx_list_init(un)) {
852 aprint_error_dev(un->un_dev, "tx list init failed\n");
853 error = ENOBUFS;
854 goto out;
855 }
856
857 /* Indicate we are up and running. */
858 #if 0
859 /* XXX if_mcast_op() can call this without ifnet locked */
860 KASSERT(ifp->if_softc == NULL || IFNET_LOCKED(ifp));
861 #endif
862 ifp->if_flags |= IFF_RUNNING;
863
864 /* Start up the receive pipe(s). */
865 usbnet_rx_start_pipes(un);
866
867 callout_schedule(&unp->unp_stat_ch, hz);
868
869 out:
870 if (error) {
871 usbnet_rx_list_fini(un);
872 usbnet_tx_list_fini(un);
873 usbnet_ep_close_pipes(un);
874 }
875 usbnet_unbusy(un);
876
877 usbnet_isowned_core(un);
878
879 return error;
880 }
881
882 void
883 usbnet_busy(struct usbnet *un)
884 {
885 struct usbnet_private * const unp = un->un_pri;
886
887 usbnet_isowned_core(un);
888
889 unp->unp_refcnt++;
890 }
891
892 void
893 usbnet_unbusy(struct usbnet *un)
894 {
895 struct usbnet_private * const unp = un->un_pri;
896
897 usbnet_isowned_core(un);
898
899 if (--unp->unp_refcnt < 0)
900 cv_broadcast(&unp->unp_detachcv);
901 }
902
903 /* MII management. */
904
905 int
906 usbnet_mii_readreg(device_t dev, int phy, int reg, uint16_t *val)
907 {
908 USBNETHIST_FUNC();
909 struct usbnet * const un = device_private(dev);
910 struct usbnet_private * const unp = un->un_pri;
911 int err;
912
913 /* MII layer ensures core_lock is held. */
914 usbnet_isowned_core(un);
915
916 if (unp->unp_dying) {
917 return EIO;
918 }
919
920 usbnet_busy(un);
921 err = uno_read_reg(un, phy, reg, val);
922 usbnet_unbusy(un);
923
924 if (err) {
925 USBNETHIST_CALLARGS("%jd: read PHY failed: %jd",
926 unp->unp_number, err, 0, 0);
927 return err;
928 }
929
930 return 0;
931 }
932
933 int
934 usbnet_mii_writereg(device_t dev, int phy, int reg, uint16_t val)
935 {
936 USBNETHIST_FUNC();
937 struct usbnet * const un = device_private(dev);
938 struct usbnet_private * const unp = un->un_pri;
939 int err;
940
941 /* MII layer ensures core_lock is held. */
942 usbnet_isowned_core(un);
943
944 if (unp->unp_dying) {
945 return EIO;
946 }
947
948 usbnet_busy(un);
949 err = uno_write_reg(un, phy, reg, val);
950 usbnet_unbusy(un);
951
952 if (err) {
953 USBNETHIST_CALLARGS("%jd: write PHY failed: %jd",
954 unp->unp_number, err, 0, 0);
955 return err;
956 }
957
958 return 0;
959 }
960
961 void
962 usbnet_mii_statchg(struct ifnet *ifp)
963 {
964 USBNETHIST_FUNC(); USBNETHIST_CALLED();
965 struct usbnet * const un = ifp->if_softc;
966
967 /* MII layer ensures core_lock is held. */
968 usbnet_isowned_core(un);
969
970 usbnet_busy(un);
971 uno_mii_statchg(un, ifp);
972 usbnet_unbusy(un);
973 }
974
975 static int
976 usbnet_media_upd(struct ifnet *ifp)
977 {
978 USBNETHIST_FUNC(); USBNETHIST_CALLED();
979 struct usbnet * const un = ifp->if_softc;
980 struct usbnet_private * const unp = un->un_pri;
981 struct mii_data * const mii = usbnet_mii(un);
982
983 /* ifmedia layer ensures core_lock is held. */
984 usbnet_isowned_core(un);
985
986 if (unp->unp_dying)
987 return EIO;
988
989 unp->unp_link = false;
990
991 if (mii->mii_instance) {
992 struct mii_softc *miisc;
993
994 LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
995 mii_phy_reset(miisc);
996 }
997
998 return ether_mediachange(ifp);
999 }
1000
1001 /* ioctl */
1002
1003 static int
1004 usbnet_ifflags_cb(struct ethercom *ec)
1005 {
1006 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1007 struct ifnet *ifp = &ec->ec_if;
1008 struct usbnet *un = ifp->if_softc;
1009 struct usbnet_private * const unp = un->un_pri;
1010 int rv = 0;
1011
1012 KASSERTMSG(IFNET_LOCKED(ifp), "%s", ifp->if_xname);
1013
1014 mutex_enter(&unp->unp_core_lock);
1015
1016 const u_short changed = ifp->if_flags ^ unp->unp_if_flags;
1017 if ((changed & ~(IFF_CANTCHANGE | IFF_DEBUG)) == 0) {
1018 unp->unp_if_flags = ifp->if_flags;
1019 if ((changed & IFF_PROMISC) != 0)
1020 rv = ENETRESET;
1021 } else {
1022 rv = ENETRESET;
1023 }
1024
1025 mutex_exit(&unp->unp_core_lock);
1026
1027 return rv;
1028 }
1029
1030 static int
1031 usbnet_if_ioctl(struct ifnet *ifp, u_long cmd, void *data)
1032 {
1033 USBNETHIST_FUNC();
1034 struct usbnet * const un = ifp->if_softc;
1035 struct usbnet_private * const unp __unused = un->un_pri;
1036 int error;
1037
1038 USBNETHIST_CALLARGSN(11, "%jd: enter %#jx data %#jx",
1039 unp->unp_number, cmd, (uintptr_t)data, 0);
1040
1041 if (un->un_ops->uno_override_ioctl)
1042 return uno_override_ioctl(un, ifp, cmd, data);
1043
1044 error = ether_ioctl(ifp, cmd, data);
1045 if (error == ENETRESET) {
1046 switch (cmd) {
1047 case SIOCADDMULTI:
1048 case SIOCDELMULTI:
1049 usb_add_task(un->un_udev, &unp->unp_mcasttask,
1050 USB_TASKQ_DRIVER);
1051 error = 0;
1052 break;
1053 default:
1054 error = uno_ioctl(un, ifp, cmd, data);
1055 }
1056 }
1057
1058 return error;
1059 }
1060
1061 static void
1062 usbnet_mcast_task(void *arg)
1063 {
1064 USBNETHIST_FUNC();
1065 struct usbnet * const un = arg;
1066 struct usbnet_private * const unp = un->un_pri;
1067 struct ifnet * const ifp = usbnet_ifp(un);
1068 bool dying;
1069 struct ifreq ifr;
1070
1071 USBNETHIST_CALLARGSN(10, "%jd: enter", unp->unp_number, 0, 0, 0);
1072
1073 /*
1074 * If we're detaching, we must check unp_dying _before_
1075 * touching IFNET_LOCK -- the ifnet may have been detached by
1076 * the time this task runs. This is racy -- unp_dying may be
1077 * set immediately after we test it -- but nevertheless safe,
1078 * because usbnet_detach waits for the task to complete before
1079 * issuing if_detach, and necessary, so that we don't touch
1080 * IFNET_LOCK after if_detach. See usbnet_detach for details.
1081 */
1082 mutex_enter(&unp->unp_core_lock);
1083 dying = unp->unp_dying;
1084 mutex_exit(&unp->unp_core_lock);
1085 if (dying)
1086 return;
1087
1088 /*
1089 * Pass a bogus ifr with SIOCDELMULTI -- the goal is to just
1090 * notify the driver to reprogram any hardware multicast
1091 * filter, according to what's already stored in the ethercom.
1092 * None of the drivers actually examine this argument, so it
1093 * doesn't change the ABI as far as they can tell.
1094 */
1095 IFNET_LOCK(ifp);
1096 if (ifp->if_flags & IFF_RUNNING) {
1097 memset(&ifr, 0, sizeof(ifr));
1098 (void)uno_ioctl(un, ifp, SIOCDELMULTI, &ifr);
1099 }
1100 IFNET_UNLOCK(ifp);
1101 }
1102
1103 /*
1104 * Generic stop network function:
1105 * - mark as stopping
1106 * - call DD routine to stop the device
1107 * - turn off running, timer, statchg callout, link
1108 * - stop transfers
1109 * - free RX and TX resources
1110 * - close pipes
1111 *
1112 * usbnet_stop() is exported for drivers to use, expects lock held.
1113 *
1114 * usbnet_if_stop() is for the if_stop handler.
1115 */
1116 void
1117 usbnet_stop(struct usbnet *un, struct ifnet *ifp, int disable)
1118 {
1119 struct usbnet_private * const unp = un->un_pri;
1120
1121 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1122
1123 KASSERTMSG(!unp->unp_ifp_attached || IFNET_LOCKED(ifp),
1124 "%s", ifp->if_xname);
1125 usbnet_isowned_core(un);
1126
1127 usbnet_busy(un);
1128
1129 mutex_enter(&unp->unp_rxlock);
1130 mutex_enter(&unp->unp_txlock);
1131 unp->unp_stopping = true;
1132 mutex_exit(&unp->unp_txlock);
1133 mutex_exit(&unp->unp_rxlock);
1134
1135 uno_stop(un, ifp, disable);
1136
1137 mutex_enter(&unp->unp_txlock);
1138 unp->unp_timer = 0;
1139 mutex_exit(&unp->unp_txlock);
1140
1141 callout_halt(&unp->unp_stat_ch, &unp->unp_core_lock);
1142 usb_rem_task_wait(un->un_udev, &unp->unp_ticktask, USB_TASKQ_DRIVER,
1143 &unp->unp_core_lock);
1144
1145 /* Stop transfers. */
1146 usbnet_ep_stop_pipes(un);
1147
1148 /* Free RX/TX resources. */
1149 usbnet_rx_list_fini(un);
1150 usbnet_tx_list_fini(un);
1151
1152 /* Close pipes. */
1153 usbnet_ep_close_pipes(un);
1154
1155 /* Everything is quesced now. */
1156 KASSERTMSG(!unp->unp_ifp_attached || IFNET_LOCKED(ifp),
1157 "%s", ifp->if_xname);
1158 ifp->if_flags &= ~IFF_RUNNING;
1159
1160 usbnet_unbusy(un);
1161 }
1162
1163 static void
1164 usbnet_if_stop(struct ifnet *ifp, int disable)
1165 {
1166 struct usbnet * const un = ifp->if_softc;
1167 struct usbnet_private * const unp = un->un_pri;
1168
1169 KASSERTMSG(IFNET_LOCKED(ifp), "%s", ifp->if_xname);
1170
1171 mutex_enter(&unp->unp_core_lock);
1172 usbnet_stop(un, ifp, disable);
1173 mutex_exit(&unp->unp_core_lock);
1174 }
1175
1176 /*
1177 * Generic tick task function.
1178 *
1179 * usbnet_tick() is triggered from a callout, and triggers a call to
1180 * usbnet_tick_task() from the usb_task subsystem.
1181 */
1182 static void
1183 usbnet_tick(void *arg)
1184 {
1185 USBNETHIST_FUNC();
1186 struct usbnet * const un = arg;
1187 struct usbnet_private * const unp = un->un_pri;
1188
1189 USBNETHIST_CALLARGSN(10, "%jd: enter", unp->unp_number, 0, 0, 0);
1190
1191 if (unp != NULL && !unp->unp_stopping && !unp->unp_dying) {
1192 /* Perform periodic stuff in process context */
1193 usb_add_task(un->un_udev, &unp->unp_ticktask, USB_TASKQ_DRIVER);
1194 }
1195 }
1196
1197 static void
1198 usbnet_watchdog(struct ifnet *ifp)
1199 {
1200 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1201 struct usbnet * const un = ifp->if_softc;
1202 struct usbnet_private * const unp = un->un_pri;
1203 struct usbnet_cdata * const cd = un_cdata(un);
1204 usbd_status err;
1205
1206 if_statinc(ifp, if_oerrors);
1207 device_printf(un->un_dev, "watchdog timeout\n");
1208
1209 if (cd->uncd_tx_cnt > 0) {
1210 DPRINTF("uncd_tx_cnt=%ju non zero, aborting pipe", 0, 0, 0, 0);
1211 err = usbd_abort_pipe(unp->unp_ep[USBNET_ENDPT_TX]);
1212 if (err)
1213 device_printf(un->un_dev, "pipe abort failed: %s\n",
1214 usbd_errstr(err));
1215 if (cd->uncd_tx_cnt != 0)
1216 DPRINTF("uncd_tx_cnt now %ju", cd->uncd_tx_cnt, 0, 0, 0);
1217 }
1218
1219 if (!IFQ_IS_EMPTY(&ifp->if_snd))
1220 (*ifp->if_start)(ifp);
1221 }
1222
1223 static void
1224 usbnet_tick_task(void *arg)
1225 {
1226 USBNETHIST_FUNC();
1227 struct usbnet * const un = arg;
1228 struct usbnet_private * const unp = un->un_pri;
1229
1230 if (unp == NULL)
1231 return;
1232
1233 USBNETHIST_CALLARGSN(8, "%jd: enter", unp->unp_number, 0, 0, 0);
1234
1235 mutex_enter(&unp->unp_core_lock);
1236 if (unp->unp_stopping || unp->unp_dying) {
1237 mutex_exit(&unp->unp_core_lock);
1238 return;
1239 }
1240
1241 struct ifnet * const ifp = usbnet_ifp(un);
1242 struct mii_data * const mii = usbnet_mii(un);
1243
1244 KASSERT(ifp != NULL); /* embedded member */
1245
1246 usbnet_busy(un);
1247 mutex_exit(&unp->unp_core_lock);
1248
1249 mutex_enter(&unp->unp_txlock);
1250 const bool timeout = unp->unp_timer != 0 && --unp->unp_timer == 0;
1251 mutex_exit(&unp->unp_txlock);
1252 if (timeout)
1253 usbnet_watchdog(ifp);
1254
1255 DPRINTFN(8, "mii %#jx ifp %#jx", (uintptr_t)mii, (uintptr_t)ifp, 0, 0);
1256 if (mii) {
1257 mutex_enter(&unp->unp_core_lock);
1258 mii_tick(mii);
1259 if (!unp->unp_link)
1260 (*mii->mii_statchg)(ifp);
1261 mutex_exit(&unp->unp_core_lock);
1262 }
1263
1264 /* Call driver if requested. */
1265 uno_tick(un);
1266
1267 mutex_enter(&unp->unp_core_lock);
1268 usbnet_unbusy(un);
1269 if (!unp->unp_stopping && !unp->unp_dying)
1270 callout_schedule(&unp->unp_stat_ch, hz);
1271 mutex_exit(&unp->unp_core_lock);
1272 }
1273
1274 static int
1275 usbnet_if_init(struct ifnet *ifp)
1276 {
1277 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1278 struct usbnet * const un = ifp->if_softc;
1279
1280 KASSERTMSG(IFNET_LOCKED(ifp), "%s", ifp->if_xname);
1281
1282 return uno_init(un, ifp);
1283 }
1284
1285
1286 /* Various accessors. */
1287
1288 void
1289 usbnet_set_link(struct usbnet *un, bool link)
1290 {
1291 un->un_pri->unp_link = link;
1292 }
1293
1294 void
1295 usbnet_set_dying(struct usbnet *un, bool link)
1296 {
1297 un->un_pri->unp_dying = link;
1298 }
1299
1300 struct ifnet *
1301 usbnet_ifp(struct usbnet *un)
1302 {
1303 return &un->un_pri->unp_ec.ec_if;
1304 }
1305
1306 struct ethercom *
1307 usbnet_ec(struct usbnet *un)
1308 {
1309 return &un->un_pri->unp_ec;
1310 }
1311
1312 struct mii_data *
1313 usbnet_mii(struct usbnet *un)
1314 {
1315 return un->un_pri->unp_ec.ec_mii;
1316 }
1317
1318 krndsource_t *
1319 usbnet_rndsrc(struct usbnet *un)
1320 {
1321 return &un->un_pri->unp_rndsrc;
1322 }
1323
1324 void *
1325 usbnet_softc(struct usbnet *un)
1326 {
1327 return un->un_sc;
1328 }
1329
1330 bool
1331 usbnet_havelink(struct usbnet *un)
1332 {
1333 return un->un_pri->unp_link;
1334 }
1335
1336 bool
1337 usbnet_isdying(struct usbnet *un)
1338 {
1339 return un->un_pri->unp_dying;
1340 }
1341
1342
1343 /* Locking. */
1344
1345 void
1346 usbnet_lock_core(struct usbnet *un)
1347 {
1348 mutex_enter(&un->un_pri->unp_core_lock);
1349 }
1350
1351 void
1352 usbnet_unlock_core(struct usbnet *un)
1353 {
1354 mutex_exit(&un->un_pri->unp_core_lock);
1355 }
1356
1357 kmutex_t *
1358 usbnet_mutex_core(struct usbnet *un)
1359 {
1360 return &un->un_pri->unp_core_lock;
1361 }
1362
1363 void
1364 usbnet_lock_rx(struct usbnet *un)
1365 {
1366 mutex_enter(&un->un_pri->unp_rxlock);
1367 }
1368
1369 void
1370 usbnet_unlock_rx(struct usbnet *un)
1371 {
1372 mutex_exit(&un->un_pri->unp_rxlock);
1373 }
1374
1375 kmutex_t *
1376 usbnet_mutex_rx(struct usbnet *un)
1377 {
1378 return &un->un_pri->unp_rxlock;
1379 }
1380
1381 void
1382 usbnet_lock_tx(struct usbnet *un)
1383 {
1384 mutex_enter(&un->un_pri->unp_txlock);
1385 }
1386
1387 void
1388 usbnet_unlock_tx(struct usbnet *un)
1389 {
1390 mutex_exit(&un->un_pri->unp_txlock);
1391 }
1392
1393 kmutex_t *
1394 usbnet_mutex_tx(struct usbnet *un)
1395 {
1396 return &un->un_pri->unp_txlock;
1397 }
1398
1399 /* Autoconf management. */
1400
1401 static bool
1402 usbnet_empty_eaddr(struct usbnet * const un)
1403 {
1404 return (un->un_eaddr[0] == 0 && un->un_eaddr[1] == 0 &&
1405 un->un_eaddr[2] == 0 && un->un_eaddr[3] == 0 &&
1406 un->un_eaddr[4] == 0 && un->un_eaddr[5] == 0);
1407 }
1408
1409 /*
1410 * usbnet_attach() and usbnet_attach_ifp() perform setup of the relevant
1411 * 'usbnet'. The first is enough to enable device access (eg, endpoints
1412 * are connected and commands can be sent), and the second connects the
1413 * device to the system networking.
1414 *
1415 * Always call usbnet_detach(), even if usbnet_attach_ifp() is skippped.
1416 * Also usable as driver detach directly.
1417 *
1418 * To skip ethernet configuration (eg, point-to-point), make sure that
1419 * the un_eaddr[] is fully zero.
1420 */
1421
1422 void
1423 usbnet_attach(struct usbnet *un,
1424 const char *detname) /* detach cv name */
1425 {
1426 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1427
1428 /* Required inputs. */
1429 KASSERT(un->un_ops->uno_tx_prepare);
1430 KASSERT(un->un_ops->uno_rx_loop);
1431 KASSERT(un->un_ops->uno_init);
1432 KASSERT(un->un_rx_bufsz);
1433 KASSERT(un->un_tx_bufsz);
1434 KASSERT(un->un_rx_list_cnt);
1435 KASSERT(un->un_tx_list_cnt);
1436
1437 /* Unfortunate fact. */
1438 KASSERT(un == device_private(un->un_dev));
1439
1440 un->un_pri = kmem_zalloc(sizeof(*un->un_pri), KM_SLEEP);
1441 struct usbnet_private * const unp = un->un_pri;
1442
1443 usb_init_task(&unp->unp_mcasttask, usbnet_mcast_task, un,
1444 USB_TASKQ_MPSAFE);
1445 usb_init_task(&unp->unp_ticktask, usbnet_tick_task, un,
1446 USB_TASKQ_MPSAFE);
1447 callout_init(&unp->unp_stat_ch, CALLOUT_MPSAFE);
1448 callout_setfunc(&unp->unp_stat_ch, usbnet_tick, un);
1449
1450 mutex_init(&unp->unp_txlock, MUTEX_DEFAULT, IPL_SOFTUSB);
1451 mutex_init(&unp->unp_rxlock, MUTEX_DEFAULT, IPL_SOFTUSB);
1452 mutex_init(&unp->unp_core_lock, MUTEX_DEFAULT, IPL_NONE);
1453 cv_init(&unp->unp_detachcv, detname);
1454
1455 rnd_attach_source(&unp->unp_rndsrc, device_xname(un->un_dev),
1456 RND_TYPE_NET, RND_FLAG_DEFAULT);
1457
1458 usbnet_rx_list_alloc(un);
1459 usbnet_tx_list_alloc(un);
1460
1461 unp->unp_number = atomic_inc_uint_nv(&usbnet_number);
1462
1463 unp->unp_attached = true;
1464 }
1465
1466 static void
1467 usbnet_attach_mii(struct usbnet *un, const struct usbnet_mii *unm)
1468 {
1469 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1470 struct usbnet_private * const unp = un->un_pri;
1471 struct mii_data * const mii = &unp->unp_mii;
1472 struct ifnet * const ifp = usbnet_ifp(un);
1473
1474 KASSERT(un->un_ops->uno_read_reg);
1475 KASSERT(un->un_ops->uno_write_reg);
1476 KASSERT(un->un_ops->uno_statchg);
1477
1478 mii->mii_ifp = ifp;
1479 mii->mii_readreg = usbnet_mii_readreg;
1480 mii->mii_writereg = usbnet_mii_writereg;
1481 mii->mii_statchg = usbnet_mii_statchg;
1482 mii->mii_flags = MIIF_AUTOTSLEEP;
1483
1484 usbnet_ec(un)->ec_mii = mii;
1485 ifmedia_init_with_lock(&mii->mii_media, 0,
1486 usbnet_media_upd, ether_mediastatus, usbnet_mutex_core(un));
1487 mii_attach(un->un_dev, mii, unm->un_mii_capmask, unm->un_mii_phyloc,
1488 unm->un_mii_offset, unm->un_mii_flags);
1489
1490 if (LIST_FIRST(&mii->mii_phys) == NULL) {
1491 ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
1492 ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
1493 } else
1494 ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
1495 }
1496
1497 void
1498 usbnet_attach_ifp(struct usbnet *un,
1499 unsigned if_flags, /* additional if_flags */
1500 unsigned if_extflags, /* additional if_extflags */
1501 const struct usbnet_mii *unm) /* additional mii_attach flags */
1502 {
1503 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1504 struct usbnet_private * const unp = un->un_pri;
1505 struct ifnet * const ifp = usbnet_ifp(un);
1506
1507 KASSERT(unp->unp_attached);
1508 KASSERT(!unp->unp_ifp_attached);
1509
1510 ifp->if_softc = un;
1511 strlcpy(ifp->if_xname, device_xname(un->un_dev), IFNAMSIZ);
1512 ifp->if_flags = if_flags;
1513 ifp->if_extflags = IFEF_MPSAFE | if_extflags;
1514 ifp->if_ioctl = usbnet_if_ioctl;
1515 ifp->if_start = usbnet_if_start;
1516 ifp->if_init = usbnet_if_init;
1517 ifp->if_stop = usbnet_if_stop;
1518
1519 if (unm)
1520 usbnet_attach_mii(un, unm);
1521 else
1522 unp->unp_link = true;
1523
1524 /* Attach the interface. */
1525 if_initialize(ifp);
1526 if (ifp->_if_input == NULL)
1527 ifp->if_percpuq = if_percpuq_create(ifp);
1528 if_register(ifp);
1529 unp->unp_ifp_attached = true;
1530
1531 /*
1532 * If ethernet address is all zero, skip ether_ifattach() and
1533 * instead attach bpf here..
1534 */
1535 if (!usbnet_empty_eaddr(un)) {
1536 ether_set_ifflags_cb(&unp->unp_ec, usbnet_ifflags_cb);
1537 aprint_normal_dev(un->un_dev, "Ethernet address %s\n",
1538 ether_sprintf(un->un_eaddr));
1539 ether_ifattach(ifp, un->un_eaddr);
1540 } else {
1541 if_alloc_sadl(ifp);
1542 bpf_attach(ifp, DLT_RAW, 0);
1543 }
1544
1545 /* Now ready, and attached. */
1546 IFQ_SET_READY(&ifp->if_snd);
1547
1548 usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, un->un_udev, un->un_dev);
1549
1550 if (!pmf_device_register(un->un_dev, NULL, NULL))
1551 aprint_error_dev(un->un_dev, "couldn't establish power handler\n");
1552 }
1553
1554 int
1555 usbnet_detach(device_t self, int flags)
1556 {
1557 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1558 struct usbnet * const un = device_private(self);
1559 struct usbnet_private * const unp = un->un_pri;
1560
1561 /* Detached before attached finished, so just bail out. */
1562 if (unp == NULL || !unp->unp_attached)
1563 return 0;
1564
1565 struct ifnet * const ifp = usbnet_ifp(un);
1566 struct mii_data * const mii = usbnet_mii(un);
1567
1568 mutex_enter(&unp->unp_core_lock);
1569 unp->unp_dying = true;
1570 mutex_exit(&unp->unp_core_lock);
1571
1572 IFNET_LOCK(ifp);
1573 if (ifp->if_flags & IFF_RUNNING) {
1574 usbnet_if_stop(ifp, 1);
1575 }
1576 IFNET_UNLOCK(ifp);
1577
1578 callout_halt(&unp->unp_stat_ch, NULL);
1579 usb_rem_task_wait(un->un_udev, &unp->unp_ticktask, USB_TASKQ_DRIVER,
1580 NULL);
1581 usb_rem_task_wait(un->un_udev, &unp->unp_mcasttask, USB_TASKQ_DRIVER,
1582 NULL);
1583
1584 mutex_enter(&unp->unp_core_lock);
1585 unp->unp_refcnt--;
1586 while (unp->unp_refcnt >= 0) {
1587 /* Wait for processes to go away */
1588 cv_wait(&unp->unp_detachcv, &unp->unp_core_lock);
1589 }
1590 mutex_exit(&unp->unp_core_lock);
1591
1592 usbnet_rx_list_free(un);
1593 usbnet_tx_list_free(un);
1594
1595 callout_destroy(&unp->unp_stat_ch);
1596 rnd_detach_source(&unp->unp_rndsrc);
1597
1598 if (mii) {
1599 mii_detach(mii, MII_PHY_ANY, MII_OFFSET_ANY);
1600 ifmedia_fini(&mii->mii_media);
1601 }
1602 if (unp->unp_ifp_attached) {
1603 if (!usbnet_empty_eaddr(un))
1604 ether_ifdetach(ifp);
1605 else
1606 bpf_detach(ifp);
1607 if_detach(ifp);
1608 }
1609 usbnet_ec(un)->ec_mii = NULL;
1610
1611 /*
1612 * We have already waited for the multicast task to complete.
1613 * Unfortunately, until if_detach, nothing has prevented it
1614 * from running again -- another thread might issue if_mcast_op
1615 * between the time of our first usb_rem_task_wait and the time
1616 * we actually get around to if_detach.
1617 *
1618 * Fortunately, the first usb_rem_task_wait ensures that if the
1619 * task is scheduled again, it will witness our setting of
1620 * unp_dying to true[*]. So after that point, if the task is
1621 * scheduled again, it will decline to touch IFNET_LOCK and do
1622 * nothing. But we still need to wait for it to complete.
1623 *
1624 * It would be nice if we could write
1625 *
1626 * if_pleasestopissuingmcastopsthanks(ifp);
1627 * usb_rem_task_wait(..., &unp->unp_mcasttask, ...);
1628 * if_detach(ifp);
1629 *
1630 * and then we would need only one usb_rem_task_wait.
1631 *
1632 * Unfortunately, there is no such operation available in
1633 * sys/net at the moment, and it would require a bit of
1634 * coordination with if_mcast_op and doifioctl probably under a
1635 * new lock. So we'll use this kludge until that mechanism is
1636 * invented.
1637 *
1638 * [*] This is not exactly a documented property of the API,
1639 * but it is implied by the single lock in the task queue
1640 * serializing changes to the task state.
1641 */
1642 usb_rem_task_wait(un->un_udev, &unp->unp_mcasttask, USB_TASKQ_DRIVER,
1643 NULL);
1644
1645 cv_destroy(&unp->unp_detachcv);
1646 mutex_destroy(&unp->unp_core_lock);
1647 mutex_destroy(&unp->unp_rxlock);
1648 mutex_destroy(&unp->unp_txlock);
1649
1650 pmf_device_deregister(un->un_dev);
1651
1652 usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, un->un_udev, un->un_dev);
1653
1654 kmem_free(unp, sizeof(*unp));
1655 un->un_pri = NULL;
1656
1657 return 0;
1658 }
1659
1660 int
1661 usbnet_activate(device_t self, devact_t act)
1662 {
1663 USBNETHIST_FUNC(); USBNETHIST_CALLED();
1664 struct usbnet * const un = device_private(self);
1665 struct usbnet_private * const unp = un->un_pri;
1666 struct ifnet * const ifp = usbnet_ifp(un);
1667
1668 switch (act) {
1669 case DVACT_DEACTIVATE:
1670 if_deactivate(ifp);
1671
1672 mutex_enter(&unp->unp_core_lock);
1673 unp->unp_dying = true;
1674 mutex_exit(&unp->unp_core_lock);
1675
1676 mutex_enter(&unp->unp_rxlock);
1677 mutex_enter(&unp->unp_txlock);
1678 unp->unp_stopping = true;
1679 mutex_exit(&unp->unp_txlock);
1680 mutex_exit(&unp->unp_rxlock);
1681
1682 return 0;
1683 default:
1684 return EOPNOTSUPP;
1685 }
1686 }
1687
1688 MODULE(MODULE_CLASS_MISC, usbnet, NULL);
1689
1690 static int
1691 usbnet_modcmd(modcmd_t cmd, void *arg)
1692 {
1693 switch (cmd) {
1694 case MODULE_CMD_INIT:
1695 return 0;
1696 case MODULE_CMD_FINI:
1697 return 0;
1698 case MODULE_CMD_STAT:
1699 case MODULE_CMD_AUTOUNLOAD:
1700 default:
1701 return ENOTTY;
1702 }
1703 }
1704