]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/dev/ep/if_ep.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / dev / ep / if_ep.c
1 /*-
2  * Copyright (c) 1994 Herb Peyerl <hpeyerl@novatel.ca>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by Herb Peyerl.
16  * 4. The name of Herb Peyerl may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 /*
35  *      Modified from the FreeBSD 1.1.5.1 version by:
36  *                      Andres Vega Garcia
37  *                      INRIA - Sophia Antipolis, France
38  *                      avega@sophia.inria.fr
39  */
40
41 /*
42  *  Promiscuous mode added and interrupt logic slightly changed
43  *  to reduce the number of adapter failures. Transceiver select
44  *  logic changed to use value from EEPROM. Autoconfiguration
45  *  features added.
46  *  Done by:
47  *          Serge Babkin
48  *          Chelindbank (Chelyabinsk, Russia)
49  *          babkin@hq.icb.chel.su
50  */
51
52 /*
53  * Pccard support for 3C589 by:
54  *              HAMADA Naoki
55  *              nao@tom-yam.or.jp
56  */
57
58 /*
59  * MAINTAINER: Matthew N. Dodd <winter@jurai.net>
60  *                             <mdodd@FreeBSD.org>
61  */
62
63 #include <sys/param.h>
64 #include <sys/systm.h>
65 #include <sys/mbuf.h>
66 #include <sys/socket.h>
67 #include <sys/sockio.h>
68 #include <sys/bus.h>
69
70 #include <machine/bus.h>
71 #include <machine/resource.h>
72 #include <sys/rman.h>
73
74 #include <net/if.h>
75 #include <net/if_dl.h>
76 #include <net/if_media.h>
77 #include <net/if_types.h>
78 #include <net/ethernet.h>
79 #include <net/bpf.h>
80
81 #include <dev/ep/if_epreg.h>
82 #include <dev/ep/if_epvar.h>
83
84 /* Exported variables */
85 devclass_t ep_devclass;
86
87 static int ep_media2if_media[] =
88 {IFM_10_T, IFM_10_5, IFM_NONE, IFM_10_2, IFM_NONE};
89
90 /* if functions */
91 static void epinit(void *);
92 static int epioctl(struct ifnet *, u_long, caddr_t);
93 static void epstart(struct ifnet *);
94 static void epwatchdog(struct ifnet *);
95
96 static void epstart_locked(struct ifnet *);
97 static void epinit_locked(struct ep_softc *);
98
99 /* if_media functions */
100 static int ep_ifmedia_upd(struct ifnet *);
101 static void ep_ifmedia_sts(struct ifnet *, struct ifmediareq *);
102
103 static void epstop(struct ep_softc *);
104 static void epread(struct ep_softc *);
105 static int eeprom_rdy(struct ep_softc *);
106
107 #define EP_FTST(sc, f)  (sc->stat &   (f))
108 #define EP_FSET(sc, f)  (sc->stat |=  (f))
109 #define EP_FRST(sc, f)  (sc->stat &= ~(f))
110
111 static int
112 eeprom_rdy(struct ep_softc *sc)
113 {
114         int i;
115
116         for (i = 0; is_eeprom_busy(sc) && i < MAX_EEPROMBUSY; i++)
117                 DELAY(100);
118
119         if (i >= MAX_EEPROMBUSY) {
120                 device_printf(sc->dev, "eeprom failed to come ready.\n");
121                 return (ENXIO);
122         }
123
124         return (0);
125 }
126
127 /*
128  * get_e: gets a 16 bits word from the EEPROM. we must have set the window
129  * before
130  */
131 int
132 ep_get_e(struct ep_softc *sc, uint16_t offset, uint16_t *result)
133 {
134
135         if (eeprom_rdy(sc))
136                 return (ENXIO);
137
138         CSR_WRITE_2(sc, EP_W0_EEPROM_COMMAND,
139             (EEPROM_CMD_RD << sc->epb.cmd_off) | offset);
140
141         if (eeprom_rdy(sc))
142                 return (ENXIO);
143
144         (*result) = CSR_READ_2(sc, EP_W0_EEPROM_DATA);
145
146         return (0);
147 }
148
149 static int
150 ep_get_macaddr(struct ep_softc *sc, u_char *addr)
151 {
152         int i;
153         uint16_t result;
154         int error;
155         uint16_t *macaddr;
156
157         macaddr = (uint16_t *) addr;
158
159         GO_WINDOW(sc, 0);
160         for (i = EEPROM_NODE_ADDR_0; i <= EEPROM_NODE_ADDR_2; i++) {
161                 error = ep_get_e(sc, i, &result);
162                 if (error)
163                         return (error);
164                 macaddr[i] = htons(result);
165         }
166         return (0);
167 }
168
169 int
170 ep_alloc(device_t dev)
171 {
172         struct ep_softc *sc = device_get_softc(dev);
173         int rid;
174         int error = 0;
175         uint16_t result;
176
177         rid = 0;
178         sc->iobase = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid,
179             RF_ACTIVE);
180         if (!sc->iobase) {
181                 device_printf(dev, "No I/O space?!\n");
182                 error = ENXIO;
183                 goto bad;
184         }
185         rid = 0;
186         sc->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
187         if (!sc->irq) {
188                 device_printf(dev, "No irq?!\n");
189                 error = ENXIO;
190                 goto bad;
191         }
192         sc->dev = dev;
193         sc->stat = 0;           /* 16 bit access */
194
195         sc->bst = rman_get_bustag(sc->iobase);
196         sc->bsh = rman_get_bushandle(sc->iobase);
197
198         sc->ep_connectors = 0;
199         sc->ep_connector = 0;
200
201         GO_WINDOW(sc, 0);
202
203         error = ep_get_e(sc, EEPROM_PROD_ID, &result);
204         if (error)
205                 goto bad;
206         sc->epb.prod_id = result;
207
208         error = ep_get_e(sc, EEPROM_RESOURCE_CFG, &result);
209         if (error)
210                 goto bad;
211         sc->epb.res_cfg = result;
212
213 bad:
214         if (error != 0)
215                 ep_free(dev);
216         return (error);
217 }
218
219 void
220 ep_get_media(struct ep_softc *sc)
221 {
222         uint16_t config;
223
224         GO_WINDOW(sc, 0);
225         config = CSR_READ_2(sc, EP_W0_CONFIG_CTRL);
226         if (config & IS_AUI)
227                 sc->ep_connectors |= AUI;
228         if (config & IS_BNC)
229                 sc->ep_connectors |= BNC;
230         if (config & IS_UTP)
231                 sc->ep_connectors |= UTP;
232
233         if (!(sc->ep_connectors & 7))
234                 if (bootverbose)
235                         device_printf(sc->dev, "no connectors!\n");
236
237         /*
238          * This works for most of the cards so we'll do it here.
239          * The cards that require something different can override
240          * this later on.
241          */
242         sc->ep_connector = CSR_READ_2(sc, EP_W0_ADDRESS_CFG) >> ACF_CONNECTOR_BITS;
243 }
244
245 void
246 ep_free(device_t dev)
247 {
248         struct ep_softc *sc = device_get_softc(dev);
249
250         if (sc->ep_intrhand)
251                 bus_teardown_intr(dev, sc->irq, sc->ep_intrhand);
252         if (sc->iobase)
253                 bus_release_resource(dev, SYS_RES_IOPORT, 0, sc->iobase);
254         if (sc->irq)
255                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->irq);
256         sc->ep_intrhand = 0;
257         sc->iobase = 0;
258         sc->irq = 0;
259 }
260
261 static void
262 ep_setup_station(struct ep_softc *sc, u_char *enaddr)
263 {
264         int i;
265         
266         /*
267          * Setup the station address
268          */
269         GO_WINDOW(sc, 2);
270         for (i = 0; i < ETHER_ADDR_LEN; i++)
271                 CSR_WRITE_1(sc, EP_W2_ADDR_0 + i, enaddr[i]);
272 }
273
274 int
275 ep_attach(struct ep_softc *sc)
276 {
277         struct ifnet *ifp = NULL;
278         struct ifmedia *ifm = NULL;
279         int error;
280
281         sc->gone = 0;
282         EP_LOCK_INIT(sc);
283         if (! (sc->stat & F_ENADDR_SKIP)) {
284                 error = ep_get_macaddr(sc, sc->eaddr);
285                 if (error) {
286                         device_printf(sc->dev, "Unable to get MAC address!\n");
287                         EP_LOCK_DESTROY(sc);
288                         return (ENXIO);
289                 }
290         }
291         ep_setup_station(sc, sc->eaddr);
292         ifp = sc->ifp = if_alloc(IFT_ETHER);
293         if (ifp == NULL) {
294                 device_printf(sc->dev, "if_alloc() failed\n");
295                 EP_LOCK_DESTROY(sc);
296                 return (ENOSPC);
297         }
298
299         ifp->if_softc = sc;
300         if_initname(ifp, device_get_name(sc->dev), device_get_unit(sc->dev));
301         ifp->if_mtu = ETHERMTU;
302         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
303         ifp->if_start = epstart;
304         ifp->if_ioctl = epioctl;
305         ifp->if_watchdog = epwatchdog;
306         ifp->if_init = epinit;
307         IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
308         ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN;
309         IFQ_SET_READY(&ifp->if_snd);
310
311         if (!sc->epb.mii_trans) {
312                 ifmedia_init(&sc->ifmedia, 0, ep_ifmedia_upd, ep_ifmedia_sts);
313
314                 if (sc->ep_connectors & AUI)
315                         ifmedia_add(&sc->ifmedia,
316                             IFM_ETHER | IFM_10_5, 0, NULL);
317                 if (sc->ep_connectors & UTP)
318                         ifmedia_add(&sc->ifmedia,
319                             IFM_ETHER | IFM_10_T, 0, NULL);
320                 if (sc->ep_connectors & BNC)
321                         ifmedia_add(&sc->ifmedia,
322                             IFM_ETHER | IFM_10_2, 0, NULL);
323                 if (!sc->ep_connectors)
324                         ifmedia_add(&sc->ifmedia,
325                             IFM_ETHER | IFM_NONE, 0, NULL);
326
327                 ifmedia_set(&sc->ifmedia,
328                     IFM_ETHER | ep_media2if_media[sc->ep_connector]);
329
330                 ifm = &sc->ifmedia;
331                 ifm->ifm_media = ifm->ifm_cur->ifm_media;
332                 ep_ifmedia_upd(ifp);
333         }
334         ether_ifattach(ifp, sc->eaddr);
335
336 #ifdef EP_LOCAL_STATS
337         sc->rx_no_first = sc->rx_no_mbuf = sc->rx_bpf_disc =
338             sc->rx_overrunf = sc->rx_overrunl = sc->tx_underrun = 0;
339 #endif
340         EP_FSET(sc, F_RX_FIRST);
341         sc->top = sc->mcur = 0;
342
343         epstop(sc);
344
345         return (0);
346 }
347
348 int
349 ep_detach(device_t dev)
350 {
351         struct ep_softc *sc;
352         struct ifnet *ifp;
353
354         sc = device_get_softc(dev);
355         ifp = sc->ifp;
356         EP_ASSERT_UNLOCKED(sc);
357         EP_LOCK(sc);
358         if (bus_child_present(dev))
359                 epstop(sc);
360         sc->gone = 1;
361         ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
362         EP_UNLOCK(sc);
363         ether_ifdetach(ifp);
364         ep_free(dev);
365
366         if_free(ifp);
367         EP_LOCK_DESTROY(sc);
368
369         return (0);
370 }
371
372 static void
373 epinit(void *xsc)
374 {
375         struct ep_softc *sc = xsc;
376         EP_LOCK(sc);
377         epinit_locked(sc);
378         EP_UNLOCK(sc);
379 }
380
381 /*
382  * The order in here seems important. Otherwise we may not receive
383  * interrupts. ?!
384  */
385 static void
386 epinit_locked(struct ep_softc *sc)
387 {
388         struct ifnet *ifp = sc->ifp;
389         int i;
390
391         if (sc->gone)
392                 return;
393
394         EP_ASSERT_LOCKED(sc);
395         EP_BUSY_WAIT(sc);
396
397         GO_WINDOW(sc, 0);
398         CSR_WRITE_2(sc, EP_COMMAND, STOP_TRANSCEIVER);
399         GO_WINDOW(sc, 4);
400         CSR_WRITE_2(sc, EP_W4_MEDIA_TYPE, DISABLE_UTP);
401         GO_WINDOW(sc, 0);
402
403         /* Disable the card */
404         CSR_WRITE_2(sc, EP_W0_CONFIG_CTRL, 0);
405
406         /* Enable the card */
407         CSR_WRITE_2(sc, EP_W0_CONFIG_CTRL, ENABLE_DRQ_IRQ);
408
409         GO_WINDOW(sc, 2);
410         /* Reload the ether_addr. */
411         ep_setup_station(sc, IF_LLADDR(sc->ifp));
412
413         CSR_WRITE_2(sc, EP_COMMAND, RX_RESET);
414         CSR_WRITE_2(sc, EP_COMMAND, TX_RESET);
415         EP_BUSY_WAIT(sc);
416
417         /* Window 1 is operating window */
418         GO_WINDOW(sc, 1);
419         for (i = 0; i < 31; i++)
420                 CSR_READ_1(sc, EP_W1_TX_STATUS);
421
422         /* get rid of stray intr's */
423         CSR_WRITE_2(sc, EP_COMMAND, ACK_INTR | 0xff);
424
425         CSR_WRITE_2(sc, EP_COMMAND, SET_RD_0_MASK | S_5_INTS);
426         CSR_WRITE_2(sc, EP_COMMAND, SET_INTR_MASK | S_5_INTS);
427
428         if (ifp->if_flags & IFF_PROMISC)
429                 CSR_WRITE_2(sc, EP_COMMAND, SET_RX_FILTER | FIL_INDIVIDUAL |
430                     FIL_MULTICAST | FIL_BRDCST | FIL_PROMISC);
431         else
432                 CSR_WRITE_2(sc, EP_COMMAND, SET_RX_FILTER | FIL_INDIVIDUAL |
433                     FIL_MULTICAST | FIL_BRDCST);
434
435         if (!sc->epb.mii_trans)
436                 ep_ifmedia_upd(ifp);
437
438         if (sc->stat & F_HAS_TX_PLL)
439                 CSR_WRITE_2(sc, EP_COMMAND, TX_PLL_ENABLE);
440         CSR_WRITE_2(sc, EP_COMMAND, RX_ENABLE);
441         CSR_WRITE_2(sc, EP_COMMAND, TX_ENABLE);
442
443         ifp->if_drv_flags |= IFF_DRV_RUNNING;
444         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;  /* just in case */
445
446 #ifdef EP_LOCAL_STATS
447         sc->rx_no_first = sc->rx_no_mbuf =
448             sc->rx_overrunf = sc->rx_overrunl = sc->tx_underrun = 0;
449 #endif
450         EP_FSET(sc, F_RX_FIRST);
451         if (sc->top) {
452                 m_freem(sc->top);
453                 sc->top = sc->mcur = 0;
454         }
455         CSR_WRITE_2(sc, EP_COMMAND, SET_RX_EARLY_THRESH | RX_INIT_EARLY_THRESH);
456         CSR_WRITE_2(sc, EP_COMMAND, SET_TX_START_THRESH | 16);
457
458         GO_WINDOW(sc, 1);
459         epstart_locked(ifp);
460 }
461
462 static void
463 epstart(struct ifnet *ifp)
464 {
465         struct ep_softc *sc;
466         sc = ifp->if_softc;
467         EP_LOCK(sc);
468         epstart_locked(ifp);
469         EP_UNLOCK(sc);
470 }
471         
472 static void
473 epstart_locked(struct ifnet *ifp)
474 {
475         struct ep_softc *sc;
476         u_int len;
477         struct mbuf *m, *m0;
478         int pad, started;
479
480         sc = ifp->if_softc;
481         if (sc->gone)
482                 return;
483         EP_ASSERT_LOCKED(sc);
484         EP_BUSY_WAIT(sc);
485         if (ifp->if_drv_flags & IFF_DRV_OACTIVE)
486                 return;
487         started = 0;
488 startagain:
489         /* Sneak a peek at the next packet */
490         IFQ_DRV_DEQUEUE(&ifp->if_snd, m0);
491         if (m0 == NULL)
492                 return;
493         if (!started && (sc->stat & F_HAS_TX_PLL))
494                 CSR_WRITE_2(sc, EP_COMMAND, TX_PLL_ENABLE);
495         started++;
496         for (len = 0, m = m0; m != NULL; m = m->m_next)
497                 len += m->m_len;
498
499         pad = (4 - len) & 3;
500
501         /*
502          * The 3c509 automatically pads short packets to minimum
503          * ethernet length, but we drop packets that are too large.
504          * Perhaps we should truncate them instead?
505          */
506         if (len + pad > ETHER_MAX_LEN) {
507                 /* packet is obviously too large: toss it */
508                 ifp->if_oerrors++;
509                 m_freem(m0);
510                 goto readcheck;
511         }
512         if (CSR_READ_2(sc, EP_W1_FREE_TX) < len + pad + 4) {
513                 /* no room in FIFO */
514                 CSR_WRITE_2(sc, EP_COMMAND, SET_TX_AVAIL_THRESH | (len + pad + 4));
515                 /* make sure */
516                 if (CSR_READ_2(sc, EP_W1_FREE_TX) < len + pad + 4) {
517                         ifp->if_drv_flags |= IFF_DRV_OACTIVE;
518                         IFQ_DRV_PREPEND(&ifp->if_snd, m0);
519                         goto done;
520                 }
521         } else
522                 CSR_WRITE_2(sc, EP_COMMAND,
523                     SET_TX_AVAIL_THRESH | EP_THRESH_DISABLE);
524
525         /* XXX 4.x and earlier would splhigh here */
526
527         CSR_WRITE_2(sc, EP_W1_TX_PIO_WR_1, len);
528         /* Second dword meaningless */
529         CSR_WRITE_2(sc, EP_W1_TX_PIO_WR_1, 0x0);
530
531         if (EP_FTST(sc, F_ACCESS_32_BITS)) {
532                 for (m = m0; m != NULL; m = m->m_next) {
533                         if (m->m_len > 3)
534                                 CSR_WRITE_MULTI_4(sc, EP_W1_TX_PIO_WR_1,
535                                     mtod(m, uint32_t *), m->m_len / 4);
536                         if (m->m_len & 3)
537                                 CSR_WRITE_MULTI_1(sc, EP_W1_TX_PIO_WR_1,
538                                     mtod(m, uint8_t *)+(m->m_len & (~3)),
539                                     m->m_len & 3);
540                 }
541         } else {
542                 for (m = m0; m != NULL; m = m->m_next) {
543                         if (m->m_len > 1)
544                                 CSR_WRITE_MULTI_2(sc, EP_W1_TX_PIO_WR_1,
545                                     mtod(m, uint16_t *), m->m_len / 2);
546                         if (m->m_len & 1)
547                                 CSR_WRITE_1(sc, EP_W1_TX_PIO_WR_1,
548                                     *(mtod(m, uint8_t *)+m->m_len - 1));
549                 }
550         }
551
552         while (pad--)
553                 CSR_WRITE_1(sc, EP_W1_TX_PIO_WR_1, 0);  /* Padding */
554
555         /* XXX and drop splhigh here */
556
557         BPF_MTAP(ifp, m0);
558
559         ifp->if_timer = 2;
560         ifp->if_opackets++;
561         m_freem(m0);
562
563         /*
564          * Is another packet coming in? We don't want to overflow
565          * the tiny RX fifo.
566          */
567 readcheck:
568         if (CSR_READ_2(sc, EP_W1_RX_STATUS) & RX_BYTES_MASK) {
569                 /*
570                  * we check if we have packets left, in that case
571                  * we prepare to come back later
572                  */
573                 if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
574                         CSR_WRITE_2(sc, EP_COMMAND, SET_TX_AVAIL_THRESH | 8);
575                 goto done;
576         }
577         goto startagain;
578 done:;
579         return;
580 }
581
582 void
583 ep_intr(void *arg)
584 {
585         struct ep_softc *sc;
586         int status;
587         struct ifnet *ifp;
588
589         sc = (struct ep_softc *) arg;
590         EP_LOCK(sc);
591         /* XXX 4.x splbio'd here to reduce interruptability */
592
593         /*
594          * quick fix: Try to detect an interrupt when the card goes away.
595          */
596         if (sc->gone || CSR_READ_2(sc, EP_STATUS) == 0xffff) {
597                 EP_UNLOCK(sc);
598                 return;
599         }
600         ifp = sc->ifp;
601
602         CSR_WRITE_2(sc, EP_COMMAND, SET_INTR_MASK);     /* disable all Ints */
603
604 rescan:
605
606         while ((status = CSR_READ_2(sc, EP_STATUS)) & S_5_INTS) {
607
608                 /* first acknowledge all interrupt sources */
609                 CSR_WRITE_2(sc, EP_COMMAND, ACK_INTR | (status & S_MASK));
610
611                 if (status & (S_RX_COMPLETE | S_RX_EARLY))
612                         epread(sc);
613                 if (status & S_TX_AVAIL) {
614                         /* we need ACK */
615                         ifp->if_timer = 0;
616                         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
617                         GO_WINDOW(sc, 1);
618                         CSR_READ_2(sc, EP_W1_FREE_TX);
619                         epstart_locked(ifp);
620                 }
621                 if (status & S_CARD_FAILURE) {
622                         ifp->if_timer = 0;
623 #ifdef EP_LOCAL_STATS
624                         device_printf(sc->dev, "\n\tStatus: %x\n", status);
625                         GO_WINDOW(sc, 4);
626                         printf("\tFIFO Diagnostic: %x\n",
627                             CSR_READ_2(sc, EP_W4_FIFO_DIAG));
628                         printf("\tStat: %x\n", sc->stat);
629                         printf("\tIpackets=%d, Opackets=%d\n",
630                             ifp->if_ipackets, ifp->if_opackets);
631                         printf("\tNOF=%d, NOMB=%d, RXOF=%d, RXOL=%d, TXU=%d\n",
632                             sc->rx_no_first, sc->rx_no_mbuf, sc->rx_overrunf,
633                             sc->rx_overrunl, sc->tx_underrun);
634 #else
635
636 #ifdef DIAGNOSTIC
637                         device_printf(sc->dev,
638                             "Status: %x (input buffer overflow)\n", status);
639 #else
640                         ++ifp->if_ierrors;
641 #endif
642
643 #endif
644                         epinit_locked(sc);
645                         EP_UNLOCK(sc);
646                         return;
647                 }
648                 if (status & S_TX_COMPLETE) {
649                         ifp->if_timer = 0;
650                         /*
651                          * We need ACK. We do it at the end.
652                          *
653                          * We need to read TX_STATUS until we get a
654                          * 0 status in order to turn off the interrupt flag.
655                          */
656                         while ((status = CSR_READ_1(sc, EP_W1_TX_STATUS)) &
657                             TXS_COMPLETE) {
658                                 if (status & TXS_SUCCES_INTR_REQ)
659                                         ;       /* nothing */
660                                 else if (status &
661                                     (TXS_UNDERRUN | TXS_JABBER |
662                                     TXS_MAX_COLLISION)) {
663                                         CSR_WRITE_2(sc, EP_COMMAND, TX_RESET);
664                                         if (status & TXS_UNDERRUN) {
665 #ifdef EP_LOCAL_STATS
666                                                 sc->tx_underrun++;
667 #endif
668                                         } else {
669                                                 if (status & TXS_JABBER);
670                                                 else
671                                                         ++ifp->if_collisions;
672                                                         /* TXS_MAX_COLLISION
673                                                          * we shouldn't get
674                                                          * here
675                                                          */
676                                         }
677                                         ++ifp->if_oerrors;
678                                         CSR_WRITE_2(sc, EP_COMMAND, TX_ENABLE);
679                                         /*
680                                          * To have a tx_avail_int but giving
681                                          * the chance to the Reception
682                                          */
683                                         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
684                                                 CSR_WRITE_2(sc, EP_COMMAND,
685                                                     SET_TX_AVAIL_THRESH | 8);
686                                 }
687                                 /* pops up the next status */
688                                 CSR_WRITE_1(sc, EP_W1_TX_STATUS, 0x0);
689                         }       /* while */
690                         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
691                         GO_WINDOW(sc, 1);
692                         CSR_READ_2(sc, EP_W1_FREE_TX);
693                         epstart_locked(ifp);
694                 }       /* end TX_COMPLETE */
695         }
696
697         CSR_WRITE_2(sc, EP_COMMAND, C_INTR_LATCH);      /* ACK int Latch */
698
699         if ((status = CSR_READ_2(sc, EP_STATUS)) & S_5_INTS)
700                 goto rescan;
701
702         /* re-enable Ints */
703         CSR_WRITE_2(sc, EP_COMMAND, SET_INTR_MASK | S_5_INTS);
704         EP_UNLOCK(sc);
705 }
706
707 static void
708 epread(struct ep_softc *sc)
709 {
710         struct mbuf *top, *mcur, *m;
711         struct ifnet *ifp;
712         int lenthisone;
713         short rx_fifo2, status;
714         short rx_fifo;
715
716 /* XXX Must be called with sc locked */
717
718         ifp = sc->ifp;
719         status = CSR_READ_2(sc, EP_W1_RX_STATUS);
720
721 read_again:
722
723         if (status & ERR_RX) {
724                 ++ifp->if_ierrors;
725                 if (status & ERR_RX_OVERRUN) {
726                         /*
727                          * We can think the rx latency is actually
728                          * greather than we expect
729                          */
730 #ifdef EP_LOCAL_STATS
731                         if (EP_FTST(sc, F_RX_FIRST))
732                                 sc->rx_overrunf++;
733                         else
734                                 sc->rx_overrunl++;
735 #endif
736                 }
737                 goto out;
738         }
739         rx_fifo = rx_fifo2 = status & RX_BYTES_MASK;
740
741         if (EP_FTST(sc, F_RX_FIRST)) {
742                 MGETHDR(m, M_DONTWAIT, MT_DATA);
743                 if (!m)
744                         goto out;
745                 if (rx_fifo >= MINCLSIZE)
746                         MCLGET(m, M_DONTWAIT);
747                 sc->top = sc->mcur = top = m;
748 #define EROUND  ((sizeof(struct ether_header) + 3) & ~3)
749 #define EOFF    (EROUND - sizeof(struct ether_header))
750                 top->m_data += EOFF;
751
752                 /* Read what should be the header. */
753                 CSR_READ_MULTI_2(sc, EP_W1_RX_PIO_RD_1,
754                     mtod(top, uint16_t *), sizeof(struct ether_header) / 2);
755                 top->m_len = sizeof(struct ether_header);
756                 rx_fifo -= sizeof(struct ether_header);
757                 sc->cur_len = rx_fifo2;
758         } else {
759                 /* come here if we didn't have a complete packet last time */
760                 top = sc->top;
761                 m = sc->mcur;
762                 sc->cur_len += rx_fifo2;
763         }
764
765         /* Reads what is left in the RX FIFO */
766         while (rx_fifo > 0) {
767                 lenthisone = min(rx_fifo, M_TRAILINGSPACE(m));
768                 if (lenthisone == 0) {  /* no room in this one */
769                         mcur = m;
770                         MGET(m, M_DONTWAIT, MT_DATA);
771                         if (!m)
772                                 goto out;
773                         if (rx_fifo >= MINCLSIZE)
774                                 MCLGET(m, M_DONTWAIT);
775                         m->m_len = 0;
776                         mcur->m_next = m;
777                         lenthisone = min(rx_fifo, M_TRAILINGSPACE(m));
778                 }
779                 if (EP_FTST(sc, F_ACCESS_32_BITS)) {
780                         /* default for EISA configured cards */
781                         CSR_READ_MULTI_4(sc, EP_W1_RX_PIO_RD_1,
782                             (uint32_t *)(mtod(m, caddr_t)+m->m_len),
783                             lenthisone / 4);
784                         m->m_len += (lenthisone & ~3);
785                         if (lenthisone & 3)
786                                 CSR_READ_MULTI_1(sc, EP_W1_RX_PIO_RD_1,
787                                     mtod(m, caddr_t)+m->m_len, lenthisone & 3);
788                         m->m_len += (lenthisone & 3);
789                 } else {
790                         CSR_READ_MULTI_2(sc, EP_W1_RX_PIO_RD_1,
791                             (uint16_t *)(mtod(m, caddr_t)+m->m_len),
792                             lenthisone / 2);
793                         m->m_len += lenthisone;
794                         if (lenthisone & 1)
795                                 *(mtod(m, caddr_t)+m->m_len - 1) =
796                                     CSR_READ_1(sc, EP_W1_RX_PIO_RD_1);
797                 }
798                 rx_fifo -= lenthisone;
799         }
800
801         if (status & ERR_RX_INCOMPLETE) {
802                 /* we haven't received the complete packet */
803                 sc->mcur = m;
804 #ifdef EP_LOCAL_STATS
805                 /* to know how often we come here */
806                 sc->rx_no_first++;
807 #endif
808                 EP_FRST(sc, F_RX_FIRST);
809                 status = CSR_READ_2(sc, EP_W1_RX_STATUS);
810                 if (!status & ERR_RX_INCOMPLETE) {
811                         /*
812                          * We see if by now, the packet has completly
813                          * arrived
814                          */
815                         goto read_again;
816                 }
817                 CSR_WRITE_2(sc, EP_COMMAND,
818                     SET_RX_EARLY_THRESH | RX_NEXT_EARLY_THRESH);
819                 return;
820         }
821         CSR_WRITE_2(sc, EP_COMMAND, RX_DISCARD_TOP_PACK);
822         ++ifp->if_ipackets;
823         EP_FSET(sc, F_RX_FIRST);
824         top->m_pkthdr.rcvif = sc->ifp;
825         top->m_pkthdr.len = sc->cur_len;
826
827         /*
828          * Drop locks before calling if_input() since it may re-enter
829          * ep_start() in the netisr case.  This would result in a
830          * lock reversal.  Better performance might be obtained by
831          * chaining all packets received, dropping the lock, and then
832          * calling if_input() on each one.
833          */
834         EP_UNLOCK(sc);
835         (*ifp->if_input) (ifp, top);
836         EP_LOCK(sc);
837         sc->top = 0;
838         EP_BUSY_WAIT(sc);
839         CSR_WRITE_2(sc, EP_COMMAND, SET_RX_EARLY_THRESH | RX_INIT_EARLY_THRESH);
840         return;
841
842 out:
843         CSR_WRITE_2(sc, EP_COMMAND, RX_DISCARD_TOP_PACK);
844         if (sc->top) {
845                 m_freem(sc->top);
846                 sc->top = 0;
847 #ifdef EP_LOCAL_STATS
848                 sc->rx_no_mbuf++;
849 #endif
850         }
851         EP_FSET(sc, F_RX_FIRST);
852         EP_BUSY_WAIT(sc);
853         CSR_WRITE_2(sc, EP_COMMAND, SET_RX_EARLY_THRESH | RX_INIT_EARLY_THRESH);
854 }
855
856 static int
857 ep_ifmedia_upd(struct ifnet *ifp)
858 {
859         struct ep_softc *sc = ifp->if_softc;
860         int i = 0, j;
861
862         GO_WINDOW(sc, 0);
863         CSR_WRITE_2(sc, EP_COMMAND, STOP_TRANSCEIVER);
864         GO_WINDOW(sc, 4);
865         CSR_WRITE_2(sc, EP_W4_MEDIA_TYPE, DISABLE_UTP);
866         GO_WINDOW(sc, 0);
867
868         switch (IFM_SUBTYPE(sc->ifmedia.ifm_media)) {
869         case IFM_10_T:
870                 if (sc->ep_connectors & UTP) {
871                         i = ACF_CONNECTOR_UTP;
872                         GO_WINDOW(sc, 4);
873                         CSR_WRITE_2(sc, EP_W4_MEDIA_TYPE, ENABLE_UTP);
874                 }
875                 break;
876         case IFM_10_2:
877                 if (sc->ep_connectors & BNC) {
878                         i = ACF_CONNECTOR_BNC;
879                         CSR_WRITE_2(sc, EP_COMMAND, START_TRANSCEIVER);
880                         DELAY(DELAY_MULTIPLE * 1000);
881                 }
882                 break;
883         case IFM_10_5:
884                 if (sc->ep_connectors & AUI)
885                         i = ACF_CONNECTOR_AUI;
886                 break;
887         default:
888                 i = sc->ep_connector;
889                 device_printf(sc->dev,
890                     "strange connector type in EEPROM: assuming AUI\n");
891         }
892
893         GO_WINDOW(sc, 0);
894         j = CSR_READ_2(sc, EP_W0_ADDRESS_CFG) & 0x3fff;
895         CSR_WRITE_2(sc, EP_W0_ADDRESS_CFG, j | (i << ACF_CONNECTOR_BITS));
896
897         return (0);
898 }
899
900 static void
901 ep_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
902 {
903         struct ep_softc *sc = ifp->if_softc;
904         uint16_t ms;
905
906         switch (IFM_SUBTYPE(sc->ifmedia.ifm_media)) {
907         case IFM_10_T:
908                 GO_WINDOW(sc, 4);
909                 ms = CSR_READ_2(sc, EP_W4_MEDIA_TYPE);
910                 GO_WINDOW(sc, 0);
911                 ifmr->ifm_status = IFM_AVALID;
912                 if (ms & MT_LB) {
913                         ifmr->ifm_status |= IFM_ACTIVE;
914                         ifmr->ifm_active = IFM_ETHER | IFM_10_T;
915                 } else {
916                         ifmr->ifm_active = IFM_ETHER | IFM_NONE;
917                 }
918                 break;
919         default:
920                 ifmr->ifm_active = sc->ifmedia.ifm_media;
921                 break;
922         }
923 }
924
925 static int
926 epioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
927 {
928         struct ep_softc *sc = ifp->if_softc;
929         struct ifreq *ifr = (struct ifreq *) data;
930         int error = 0;
931
932         switch (cmd) {
933         case SIOCSIFFLAGS:
934                 EP_LOCK(sc);
935                 if (((ifp->if_flags & IFF_UP) == 0) &&
936                     (ifp->if_drv_flags & IFF_DRV_RUNNING)) {
937                         ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
938                         epstop(sc);
939                 } else
940                         /* reinitialize card on any parameter change */
941                         epinit_locked(sc);
942                 EP_UNLOCK(sc);
943                 break;
944         case SIOCADDMULTI:
945         case SIOCDELMULTI:
946                 /*
947                  * The Etherlink III has no programmable multicast
948                  * filter.  We always initialize the card to be
949                  * promiscuous to multicast, since we're always a
950                  * member of the ALL-SYSTEMS group, so there's no
951                  * need to process SIOC*MULTI requests.
952                  */
953                 error = 0;
954                 break;
955         case SIOCSIFMEDIA:
956         case SIOCGIFMEDIA:
957                 if (!sc->epb.mii_trans)
958                         error = ifmedia_ioctl(ifp, ifr, &sc->ifmedia, cmd);
959                 else
960                         error = EINVAL;
961                 break;
962         default:
963                 error = ether_ioctl(ifp, cmd, data);
964                 break;
965         }
966         return (error);
967 }
968
969 static void
970 epwatchdog(struct ifnet *ifp)
971 {
972         struct ep_softc *sc = ifp->if_softc;
973
974         if (sc->gone)
975                 return;
976         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
977         epstart(ifp);
978         ep_intr(ifp->if_softc);
979 }
980
981 static void
982 epstop(struct ep_softc *sc)
983 {
984         CSR_WRITE_2(sc, EP_COMMAND, RX_DISABLE);
985         CSR_WRITE_2(sc, EP_COMMAND, RX_DISCARD_TOP_PACK);
986         EP_BUSY_WAIT(sc);
987
988         CSR_WRITE_2(sc, EP_COMMAND, TX_DISABLE);
989         CSR_WRITE_2(sc, EP_COMMAND, STOP_TRANSCEIVER);
990         DELAY(800);
991
992         CSR_WRITE_2(sc, EP_COMMAND, RX_RESET);
993         EP_BUSY_WAIT(sc);
994         CSR_WRITE_2(sc, EP_COMMAND, TX_RESET);
995         EP_BUSY_WAIT(sc);
996
997         CSR_WRITE_2(sc, EP_COMMAND, C_INTR_LATCH);
998         CSR_WRITE_2(sc, EP_COMMAND, SET_RD_0_MASK);
999         CSR_WRITE_2(sc, EP_COMMAND, SET_INTR_MASK);
1000         CSR_WRITE_2(sc, EP_COMMAND, SET_RX_FILTER);
1001 }