]> CyberLeo.Net >> Repos - FreeBSD/releng/9.3.git/blob - sys/dev/my/if_my.c
Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.
[FreeBSD/releng/9.3.git] / sys / dev / my / if_my.c
1 /*-
2  * Written by: yen_cw@myson.com.tw
3  * Copyright (c) 2002 Myson Technology Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions, and the following disclaimer,
11  *    without modification, immediately at the beginning of the file.
12  * 2. The name of the author may not be used to endorse or promote products
13  *    derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
19  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * Myson fast ethernet PCI NIC driver, available at: http://www.myson.com.tw/
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/sockio.h>
36 #include <sys/mbuf.h>
37 #include <sys/malloc.h>
38 #include <sys/kernel.h>
39 #include <sys/socket.h>
40 #include <sys/queue.h>
41 #include <sys/types.h>
42 #include <sys/module.h>
43 #include <sys/lock.h>
44 #include <sys/mutex.h>
45
46 #define NBPFILTER       1
47
48 #include <net/if.h>
49 #include <net/if_arp.h>
50 #include <net/ethernet.h>
51 #include <net/if_media.h>
52 #include <net/if_types.h>
53 #include <net/if_dl.h>
54 #include <net/bpf.h>
55
56 #include <vm/vm.h>              /* for vtophys */
57 #include <vm/pmap.h>            /* for vtophys */
58 #include <machine/bus.h>
59 #include <machine/resource.h>
60 #include <sys/bus.h>
61 #include <sys/rman.h>
62
63 #include <dev/pci/pcireg.h>
64 #include <dev/pci/pcivar.h>
65
66 /*
67  * #define MY_USEIOSPACE
68  */
69
70 static int      MY_USEIOSPACE = 1;
71
72 #ifdef MY_USEIOSPACE
73 #define MY_RES                  SYS_RES_IOPORT
74 #define MY_RID                  MY_PCI_LOIO
75 #else
76 #define MY_RES                  SYS_RES_MEMORY
77 #define MY_RID                  MY_PCI_LOMEM
78 #endif
79
80
81 #include <dev/my/if_myreg.h>
82
83 /*
84  * Various supported device vendors/types and their names.
85  */
86 struct my_type *my_info_tmp;
87 static struct my_type my_devs[] = {
88         {MYSONVENDORID, MTD800ID, "Myson MTD80X Based Fast Ethernet Card"},
89         {MYSONVENDORID, MTD803ID, "Myson MTD80X Based Fast Ethernet Card"},
90         {MYSONVENDORID, MTD891ID, "Myson MTD89X Based Giga Ethernet Card"},
91         {0, 0, NULL}
92 };
93
94 /*
95  * Various supported PHY vendors/types and their names. Note that this driver
96  * will work with pretty much any MII-compliant PHY, so failure to positively
97  * identify the chip is not a fatal error.
98  */
99 static struct my_type my_phys[] = {
100         {MysonPHYID0, MysonPHYID0, "<MYSON MTD981>"},
101         {SeeqPHYID0, SeeqPHYID0, "<SEEQ 80225>"},
102         {AhdocPHYID0, AhdocPHYID0, "<AHDOC 101>"},
103         {MarvellPHYID0, MarvellPHYID0, "<MARVELL 88E1000>"},
104         {LevelOnePHYID0, LevelOnePHYID0, "<LevelOne LXT1000>"},
105         {0, 0, "<MII-compliant physical interface>"}
106 };
107
108 static int      my_probe(device_t);
109 static int      my_attach(device_t);
110 static int      my_detach(device_t);
111 static int      my_newbuf(struct my_softc *, struct my_chain_onefrag *);
112 static int      my_encap(struct my_softc *, struct my_chain *, struct mbuf *);
113 static void     my_rxeof(struct my_softc *);
114 static void     my_txeof(struct my_softc *);
115 static void     my_txeoc(struct my_softc *);
116 static void     my_intr(void *);
117 static void     my_start(struct ifnet *);
118 static void     my_start_locked(struct ifnet *);
119 static int      my_ioctl(struct ifnet *, u_long, caddr_t);
120 static void     my_init(void *);
121 static void     my_init_locked(struct my_softc *);
122 static void     my_stop(struct my_softc *);
123 static void     my_autoneg_timeout(void *);
124 static void     my_watchdog(void *);
125 static int      my_shutdown(device_t);
126 static int      my_ifmedia_upd(struct ifnet *);
127 static void     my_ifmedia_sts(struct ifnet *, struct ifmediareq *);
128 static u_int16_t my_phy_readreg(struct my_softc *, int);
129 static void     my_phy_writereg(struct my_softc *, int, int);
130 static void     my_autoneg_xmit(struct my_softc *);
131 static void     my_autoneg_mii(struct my_softc *, int, int);
132 static void     my_setmode_mii(struct my_softc *, int);
133 static void     my_getmode_mii(struct my_softc *);
134 static void     my_setcfg(struct my_softc *, int);
135 static void     my_setmulti(struct my_softc *);
136 static void     my_reset(struct my_softc *);
137 static int      my_list_rx_init(struct my_softc *);
138 static int      my_list_tx_init(struct my_softc *);
139 static long     my_send_cmd_to_phy(struct my_softc *, int, int);
140
141 #define MY_SETBIT(sc, reg, x) CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) | (x))
142 #define MY_CLRBIT(sc, reg, x) CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) & ~(x))
143
144 static device_method_t my_methods[] = {
145         /* Device interface */
146         DEVMETHOD(device_probe, my_probe),
147         DEVMETHOD(device_attach, my_attach),
148         DEVMETHOD(device_detach, my_detach),
149         DEVMETHOD(device_shutdown, my_shutdown),
150
151         {0, 0}
152 };
153
154 static driver_t my_driver = {
155         "my",
156         my_methods,
157         sizeof(struct my_softc)
158 };
159
160 static devclass_t my_devclass;
161
162 DRIVER_MODULE(my, pci, my_driver, my_devclass, 0, 0);
163 MODULE_DEPEND(my, pci, 1, 1, 1);
164 MODULE_DEPEND(my, ether, 1, 1, 1);
165
166 static long
167 my_send_cmd_to_phy(struct my_softc * sc, int opcode, int regad)
168 {
169         long            miir;
170         int             i;
171         int             mask, data;
172
173         MY_LOCK_ASSERT(sc);
174
175         /* enable MII output */
176         miir = CSR_READ_4(sc, MY_MANAGEMENT);
177         miir &= 0xfffffff0;
178
179         miir |= MY_MASK_MIIR_MII_WRITE + MY_MASK_MIIR_MII_MDO;
180
181         /* send 32 1's preamble */
182         for (i = 0; i < 32; i++) {
183                 /* low MDC; MDO is already high (miir) */
184                 miir &= ~MY_MASK_MIIR_MII_MDC;
185                 CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
186
187                 /* high MDC */
188                 miir |= MY_MASK_MIIR_MII_MDC;
189                 CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
190         }
191
192         /* calculate ST+OP+PHYAD+REGAD+TA */
193         data = opcode | (sc->my_phy_addr << 7) | (regad << 2);
194
195         /* sent out */
196         mask = 0x8000;
197         while (mask) {
198                 /* low MDC, prepare MDO */
199                 miir &= ~(MY_MASK_MIIR_MII_MDC + MY_MASK_MIIR_MII_MDO);
200                 if (mask & data)
201                         miir |= MY_MASK_MIIR_MII_MDO;
202
203                 CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
204                 /* high MDC */
205                 miir |= MY_MASK_MIIR_MII_MDC;
206                 CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
207                 DELAY(30);
208
209                 /* next */
210                 mask >>= 1;
211                 if (mask == 0x2 && opcode == MY_OP_READ)
212                         miir &= ~MY_MASK_MIIR_MII_WRITE;
213         }
214
215         return miir;
216 }
217
218
219 static u_int16_t
220 my_phy_readreg(struct my_softc * sc, int reg)
221 {
222         long            miir;
223         int             mask, data;
224
225         MY_LOCK_ASSERT(sc);
226
227         if (sc->my_info->my_did == MTD803ID)
228                 data = CSR_READ_2(sc, MY_PHYBASE + reg * 2);
229         else {
230                 miir = my_send_cmd_to_phy(sc, MY_OP_READ, reg);
231
232                 /* read data */
233                 mask = 0x8000;
234                 data = 0;
235                 while (mask) {
236                         /* low MDC */
237                         miir &= ~MY_MASK_MIIR_MII_MDC;
238                         CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
239
240                         /* read MDI */
241                         miir = CSR_READ_4(sc, MY_MANAGEMENT);
242                         if (miir & MY_MASK_MIIR_MII_MDI)
243                                 data |= mask;
244
245                         /* high MDC, and wait */
246                         miir |= MY_MASK_MIIR_MII_MDC;
247                         CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
248                         DELAY(30);
249
250                         /* next */
251                         mask >>= 1;
252                 }
253
254                 /* low MDC */
255                 miir &= ~MY_MASK_MIIR_MII_MDC;
256                 CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
257         }
258
259         return (u_int16_t) data;
260 }
261
262
263 static void
264 my_phy_writereg(struct my_softc * sc, int reg, int data)
265 {
266         long            miir;
267         int             mask;
268
269         MY_LOCK_ASSERT(sc);
270
271         if (sc->my_info->my_did == MTD803ID)
272                 CSR_WRITE_2(sc, MY_PHYBASE + reg * 2, data);
273         else {
274                 miir = my_send_cmd_to_phy(sc, MY_OP_WRITE, reg);
275
276                 /* write data */
277                 mask = 0x8000;
278                 while (mask) {
279                         /* low MDC, prepare MDO */
280                         miir &= ~(MY_MASK_MIIR_MII_MDC + MY_MASK_MIIR_MII_MDO);
281                         if (mask & data)
282                                 miir |= MY_MASK_MIIR_MII_MDO;
283                         CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
284                         DELAY(1);
285
286                         /* high MDC */
287                         miir |= MY_MASK_MIIR_MII_MDC;
288                         CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
289                         DELAY(1);
290
291                         /* next */
292                         mask >>= 1;
293                 }
294
295                 /* low MDC */
296                 miir &= ~MY_MASK_MIIR_MII_MDC;
297                 CSR_WRITE_4(sc, MY_MANAGEMENT, miir);
298         }
299         return;
300 }
301
302
303 /*
304  * Program the 64-bit multicast hash filter.
305  */
306 static void
307 my_setmulti(struct my_softc * sc)
308 {
309         struct ifnet   *ifp;
310         int             h = 0;
311         u_int32_t       hashes[2] = {0, 0};
312         struct ifmultiaddr *ifma;
313         u_int32_t       rxfilt;
314         int             mcnt = 0;
315
316         MY_LOCK_ASSERT(sc);
317
318         ifp = sc->my_ifp;
319
320         rxfilt = CSR_READ_4(sc, MY_TCRRCR);
321
322         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
323                 rxfilt |= MY_AM;
324                 CSR_WRITE_4(sc, MY_TCRRCR, rxfilt);
325                 CSR_WRITE_4(sc, MY_MAR0, 0xFFFFFFFF);
326                 CSR_WRITE_4(sc, MY_MAR1, 0xFFFFFFFF);
327
328                 return;
329         }
330         /* first, zot all the existing hash bits */
331         CSR_WRITE_4(sc, MY_MAR0, 0);
332         CSR_WRITE_4(sc, MY_MAR1, 0);
333
334         /* now program new ones */
335         if_maddr_rlock(ifp);
336         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
337                 if (ifma->ifma_addr->sa_family != AF_LINK)
338                         continue;
339                 h = ~ether_crc32_be(LLADDR((struct sockaddr_dl *)
340                     ifma->ifma_addr), ETHER_ADDR_LEN) >> 26;
341                 if (h < 32)
342                         hashes[0] |= (1 << h);
343                 else
344                         hashes[1] |= (1 << (h - 32));
345                 mcnt++;
346         }
347         if_maddr_runlock(ifp);
348
349         if (mcnt)
350                 rxfilt |= MY_AM;
351         else
352                 rxfilt &= ~MY_AM;
353         CSR_WRITE_4(sc, MY_MAR0, hashes[0]);
354         CSR_WRITE_4(sc, MY_MAR1, hashes[1]);
355         CSR_WRITE_4(sc, MY_TCRRCR, rxfilt);
356         return;
357 }
358
359 /*
360  * Initiate an autonegotiation session.
361  */
362 static void
363 my_autoneg_xmit(struct my_softc * sc)
364 {
365         u_int16_t       phy_sts = 0;
366
367         MY_LOCK_ASSERT(sc);
368
369         my_phy_writereg(sc, PHY_BMCR, PHY_BMCR_RESET);
370         DELAY(500);
371         while (my_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_RESET);
372
373         phy_sts = my_phy_readreg(sc, PHY_BMCR);
374         phy_sts |= PHY_BMCR_AUTONEGENBL | PHY_BMCR_AUTONEGRSTR;
375         my_phy_writereg(sc, PHY_BMCR, phy_sts);
376
377         return;
378 }
379
380 static void
381 my_autoneg_timeout(void *arg)
382 {
383         struct my_softc *sc;
384
385         sc = arg;
386         MY_LOCK_ASSERT(sc);
387         my_autoneg_mii(sc, MY_FLAG_DELAYTIMEO, 1);
388 }
389
390 /*
391  * Invoke autonegotiation on a PHY.
392  */
393 static void
394 my_autoneg_mii(struct my_softc * sc, int flag, int verbose)
395 {
396         u_int16_t       phy_sts = 0, media, advert, ability;
397         u_int16_t       ability2 = 0;
398         struct ifnet   *ifp;
399         struct ifmedia *ifm;
400
401         MY_LOCK_ASSERT(sc);
402
403         ifm = &sc->ifmedia;
404         ifp = sc->my_ifp;
405
406         ifm->ifm_media = IFM_ETHER | IFM_AUTO;
407
408 #ifndef FORCE_AUTONEG_TFOUR
409         /*
410          * First, see if autoneg is supported. If not, there's no point in
411          * continuing.
412          */
413         phy_sts = my_phy_readreg(sc, PHY_BMSR);
414         if (!(phy_sts & PHY_BMSR_CANAUTONEG)) {
415                 if (verbose)
416                         device_printf(sc->my_dev,
417                             "autonegotiation not supported\n");
418                 ifm->ifm_media = IFM_ETHER | IFM_10_T | IFM_HDX;
419                 return;
420         }
421 #endif
422         switch (flag) {
423         case MY_FLAG_FORCEDELAY:
424                 /*
425                  * XXX Never use this option anywhere but in the probe
426                  * routine: making the kernel stop dead in its tracks for
427                  * three whole seconds after we've gone multi-user is really
428                  * bad manners.
429                  */
430                 my_autoneg_xmit(sc);
431                 DELAY(5000000);
432                 break;
433         case MY_FLAG_SCHEDDELAY:
434                 /*
435                  * Wait for the transmitter to go idle before starting an
436                  * autoneg session, otherwise my_start() may clobber our
437                  * timeout, and we don't want to allow transmission during an
438                  * autoneg session since that can screw it up.
439                  */
440                 if (sc->my_cdata.my_tx_head != NULL) {
441                         sc->my_want_auto = 1;
442                         MY_UNLOCK(sc);
443                         return;
444                 }
445                 my_autoneg_xmit(sc);
446                 callout_reset(&sc->my_autoneg_timer, hz * 5, my_autoneg_timeout,
447                     sc);
448                 sc->my_autoneg = 1;
449                 sc->my_want_auto = 0;
450                 return;
451         case MY_FLAG_DELAYTIMEO:
452                 callout_stop(&sc->my_autoneg_timer);
453                 sc->my_autoneg = 0;
454                 break;
455         default:
456                 device_printf(sc->my_dev, "invalid autoneg flag: %d\n", flag);
457                 return;
458         }
459
460         if (my_phy_readreg(sc, PHY_BMSR) & PHY_BMSR_AUTONEGCOMP) {
461                 if (verbose)
462                         device_printf(sc->my_dev, "autoneg complete, ");
463                 phy_sts = my_phy_readreg(sc, PHY_BMSR);
464         } else {
465                 if (verbose)
466                         device_printf(sc->my_dev, "autoneg not complete, ");
467         }
468
469         media = my_phy_readreg(sc, PHY_BMCR);
470
471         /* Link is good. Report modes and set duplex mode. */
472         if (my_phy_readreg(sc, PHY_BMSR) & PHY_BMSR_LINKSTAT) {
473                 if (verbose)
474                         device_printf(sc->my_dev, "link status good. ");
475                 advert = my_phy_readreg(sc, PHY_ANAR);
476                 ability = my_phy_readreg(sc, PHY_LPAR);
477                 if ((sc->my_pinfo->my_vid == MarvellPHYID0) ||
478                     (sc->my_pinfo->my_vid == LevelOnePHYID0)) {
479                         ability2 = my_phy_readreg(sc, PHY_1000SR);
480                         if (ability2 & PHY_1000SR_1000BTXFULL) {
481                                 advert = 0;
482                                 ability = 0;
483                                 /*
484                                  * this version did not support 1000M,
485                                  * ifm->ifm_media =
486                                  * IFM_ETHER|IFM_1000_T|IFM_FDX;
487                                  */
488                                 ifm->ifm_media =
489                                     IFM_ETHER | IFM_100_TX | IFM_FDX;
490                                 media &= ~PHY_BMCR_SPEEDSEL;
491                                 media |= PHY_BMCR_1000;
492                                 media |= PHY_BMCR_DUPLEX;
493                                 printf("(full-duplex, 1000Mbps)\n");
494                         } else if (ability2 & PHY_1000SR_1000BTXHALF) {
495                                 advert = 0;
496                                 ability = 0;
497                                 /*
498                                  * this version did not support 1000M,
499                                  * ifm->ifm_media = IFM_ETHER|IFM_1000_T;
500                                  */
501                                 ifm->ifm_media = IFM_ETHER | IFM_100_TX;
502                                 media &= ~PHY_BMCR_SPEEDSEL;
503                                 media &= ~PHY_BMCR_DUPLEX;
504                                 media |= PHY_BMCR_1000;
505                                 printf("(half-duplex, 1000Mbps)\n");
506                         }
507                 }
508                 if (advert & PHY_ANAR_100BT4 && ability & PHY_ANAR_100BT4) {
509                         ifm->ifm_media = IFM_ETHER | IFM_100_T4;
510                         media |= PHY_BMCR_SPEEDSEL;
511                         media &= ~PHY_BMCR_DUPLEX;
512                         printf("(100baseT4)\n");
513                 } else if (advert & PHY_ANAR_100BTXFULL &&
514                            ability & PHY_ANAR_100BTXFULL) {
515                         ifm->ifm_media = IFM_ETHER | IFM_100_TX | IFM_FDX;
516                         media |= PHY_BMCR_SPEEDSEL;
517                         media |= PHY_BMCR_DUPLEX;
518                         printf("(full-duplex, 100Mbps)\n");
519                 } else if (advert & PHY_ANAR_100BTXHALF &&
520                            ability & PHY_ANAR_100BTXHALF) {
521                         ifm->ifm_media = IFM_ETHER | IFM_100_TX | IFM_HDX;
522                         media |= PHY_BMCR_SPEEDSEL;
523                         media &= ~PHY_BMCR_DUPLEX;
524                         printf("(half-duplex, 100Mbps)\n");
525                 } else if (advert & PHY_ANAR_10BTFULL &&
526                            ability & PHY_ANAR_10BTFULL) {
527                         ifm->ifm_media = IFM_ETHER | IFM_10_T | IFM_FDX;
528                         media &= ~PHY_BMCR_SPEEDSEL;
529                         media |= PHY_BMCR_DUPLEX;
530                         printf("(full-duplex, 10Mbps)\n");
531                 } else if (advert) {
532                         ifm->ifm_media = IFM_ETHER | IFM_10_T | IFM_HDX;
533                         media &= ~PHY_BMCR_SPEEDSEL;
534                         media &= ~PHY_BMCR_DUPLEX;
535                         printf("(half-duplex, 10Mbps)\n");
536                 }
537                 media &= ~PHY_BMCR_AUTONEGENBL;
538
539                 /* Set ASIC's duplex mode to match the PHY. */
540                 my_phy_writereg(sc, PHY_BMCR, media);
541                 my_setcfg(sc, media);
542         } else {
543                 if (verbose)
544                         device_printf(sc->my_dev, "no carrier\n");
545         }
546
547         my_init_locked(sc);
548         if (sc->my_tx_pend) {
549                 sc->my_autoneg = 0;
550                 sc->my_tx_pend = 0;
551                 my_start_locked(ifp);
552         }
553         return;
554 }
555
556 /*
557  * To get PHY ability.
558  */
559 static void
560 my_getmode_mii(struct my_softc * sc)
561 {
562         u_int16_t       bmsr;
563         struct ifnet   *ifp;
564
565         MY_LOCK_ASSERT(sc);
566         ifp = sc->my_ifp;
567         bmsr = my_phy_readreg(sc, PHY_BMSR);
568         if (bootverbose)
569                 device_printf(sc->my_dev, "PHY status word: %x\n", bmsr);
570
571         /* fallback */
572         sc->ifmedia.ifm_media = IFM_ETHER | IFM_10_T | IFM_HDX;
573
574         if (bmsr & PHY_BMSR_10BTHALF) {
575                 if (bootverbose)
576                         device_printf(sc->my_dev,
577                             "10Mbps half-duplex mode supported\n");
578                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_10_T | IFM_HDX,
579                     0, NULL);
580                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_10_T, 0, NULL);
581         }
582         if (bmsr & PHY_BMSR_10BTFULL) {
583                 if (bootverbose)
584                         device_printf(sc->my_dev,
585                             "10Mbps full-duplex mode supported\n");
586
587                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_10_T | IFM_FDX,
588                     0, NULL);
589                 sc->ifmedia.ifm_media = IFM_ETHER | IFM_10_T | IFM_FDX;
590         }
591         if (bmsr & PHY_BMSR_100BTXHALF) {
592                 if (bootverbose)
593                         device_printf(sc->my_dev,
594                             "100Mbps half-duplex mode supported\n");
595                 ifp->if_baudrate = 100000000;
596                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_100_TX, 0, NULL);
597                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_100_TX | IFM_HDX,
598                             0, NULL);
599                 sc->ifmedia.ifm_media = IFM_ETHER | IFM_100_TX | IFM_HDX;
600         }
601         if (bmsr & PHY_BMSR_100BTXFULL) {
602                 if (bootverbose)
603                         device_printf(sc->my_dev,
604                             "100Mbps full-duplex mode supported\n");
605                 ifp->if_baudrate = 100000000;
606                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_100_TX | IFM_FDX,
607                     0, NULL);
608                 sc->ifmedia.ifm_media = IFM_ETHER | IFM_100_TX | IFM_FDX;
609         }
610         /* Some also support 100BaseT4. */
611         if (bmsr & PHY_BMSR_100BT4) {
612                 if (bootverbose)
613                         device_printf(sc->my_dev, "100baseT4 mode supported\n");
614                 ifp->if_baudrate = 100000000;
615                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_100_T4, 0, NULL);
616                 sc->ifmedia.ifm_media = IFM_ETHER | IFM_100_T4;
617 #ifdef FORCE_AUTONEG_TFOUR
618                 if (bootverbose)
619                         device_printf(sc->my_dev,
620                             "forcing on autoneg support for BT4\n");
621                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_AUTO, 0 NULL):
622                 sc->ifmedia.ifm_media = IFM_ETHER | IFM_AUTO;
623 #endif
624         }
625 #if 0                           /* this version did not support 1000M, */
626         if (sc->my_pinfo->my_vid == MarvellPHYID0) {
627                 if (bootverbose)
628                         device_printf(sc->my_dev,
629                             "1000Mbps half-duplex mode supported\n");
630
631                 ifp->if_baudrate = 1000000000;
632                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_1000_T, 0, NULL);
633                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_1000_T | IFM_HDX,
634                     0, NULL);
635                 if (bootverbose)
636                         device_printf(sc->my_dev,
637                             "1000Mbps full-duplex mode supported\n");
638                 ifp->if_baudrate = 1000000000;
639                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_1000_T | IFM_FDX,
640                     0, NULL);
641                 sc->ifmedia.ifm_media = IFM_ETHER | IFM_1000_T | IFM_FDX;
642         }
643 #endif
644         if (bmsr & PHY_BMSR_CANAUTONEG) {
645                 if (bootverbose)
646                         device_printf(sc->my_dev, "autoneg supported\n");
647                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_AUTO, 0, NULL);
648                 sc->ifmedia.ifm_media = IFM_ETHER | IFM_AUTO;
649         }
650         return;
651 }
652
653 /*
654  * Set speed and duplex mode.
655  */
656 static void
657 my_setmode_mii(struct my_softc * sc, int media)
658 {
659         u_int16_t       bmcr;
660         struct ifnet   *ifp;
661
662         MY_LOCK_ASSERT(sc);
663         ifp = sc->my_ifp;
664         /*
665          * If an autoneg session is in progress, stop it.
666          */
667         if (sc->my_autoneg) {
668                 device_printf(sc->my_dev, "canceling autoneg session\n");
669                 callout_stop(&sc->my_autoneg_timer);
670                 sc->my_autoneg = sc->my_want_auto = 0;
671                 bmcr = my_phy_readreg(sc, PHY_BMCR);
672                 bmcr &= ~PHY_BMCR_AUTONEGENBL;
673                 my_phy_writereg(sc, PHY_BMCR, bmcr);
674         }
675         device_printf(sc->my_dev, "selecting MII, ");
676         bmcr = my_phy_readreg(sc, PHY_BMCR);
677         bmcr &= ~(PHY_BMCR_AUTONEGENBL | PHY_BMCR_SPEEDSEL | PHY_BMCR_1000 |
678                   PHY_BMCR_DUPLEX | PHY_BMCR_LOOPBK);
679
680 #if 0                           /* this version did not support 1000M, */
681         if (IFM_SUBTYPE(media) == IFM_1000_T) {
682                 printf("1000Mbps/T4, half-duplex\n");
683                 bmcr &= ~PHY_BMCR_SPEEDSEL;
684                 bmcr &= ~PHY_BMCR_DUPLEX;
685                 bmcr |= PHY_BMCR_1000;
686         }
687 #endif
688         if (IFM_SUBTYPE(media) == IFM_100_T4) {
689                 printf("100Mbps/T4, half-duplex\n");
690                 bmcr |= PHY_BMCR_SPEEDSEL;
691                 bmcr &= ~PHY_BMCR_DUPLEX;
692         }
693         if (IFM_SUBTYPE(media) == IFM_100_TX) {
694                 printf("100Mbps, ");
695                 bmcr |= PHY_BMCR_SPEEDSEL;
696         }
697         if (IFM_SUBTYPE(media) == IFM_10_T) {
698                 printf("10Mbps, ");
699                 bmcr &= ~PHY_BMCR_SPEEDSEL;
700         }
701         if ((media & IFM_GMASK) == IFM_FDX) {
702                 printf("full duplex\n");
703                 bmcr |= PHY_BMCR_DUPLEX;
704         } else {
705                 printf("half duplex\n");
706                 bmcr &= ~PHY_BMCR_DUPLEX;
707         }
708         my_phy_writereg(sc, PHY_BMCR, bmcr);
709         my_setcfg(sc, bmcr);
710         return;
711 }
712
713 /*
714  * The Myson manual states that in order to fiddle with the 'full-duplex' and
715  * '100Mbps' bits in the netconfig register, we first have to put the
716  * transmit and/or receive logic in the idle state.
717  */
718 static void
719 my_setcfg(struct my_softc * sc, int bmcr)
720 {
721         int             i, restart = 0;
722
723         MY_LOCK_ASSERT(sc);
724         if (CSR_READ_4(sc, MY_TCRRCR) & (MY_TE | MY_RE)) {
725                 restart = 1;
726                 MY_CLRBIT(sc, MY_TCRRCR, (MY_TE | MY_RE));
727                 for (i = 0; i < MY_TIMEOUT; i++) {
728                         DELAY(10);
729                         if (!(CSR_READ_4(sc, MY_TCRRCR) &
730                             (MY_TXRUN | MY_RXRUN)))
731                                 break;
732                 }
733                 if (i == MY_TIMEOUT)
734                         device_printf(sc->my_dev,
735                             "failed to force tx and rx to idle \n");
736         }
737         MY_CLRBIT(sc, MY_TCRRCR, MY_PS1000);
738         MY_CLRBIT(sc, MY_TCRRCR, MY_PS10);
739         if (bmcr & PHY_BMCR_1000)
740                 MY_SETBIT(sc, MY_TCRRCR, MY_PS1000);
741         else if (!(bmcr & PHY_BMCR_SPEEDSEL))
742                 MY_SETBIT(sc, MY_TCRRCR, MY_PS10);
743         if (bmcr & PHY_BMCR_DUPLEX)
744                 MY_SETBIT(sc, MY_TCRRCR, MY_FD);
745         else
746                 MY_CLRBIT(sc, MY_TCRRCR, MY_FD);
747         if (restart)
748                 MY_SETBIT(sc, MY_TCRRCR, MY_TE | MY_RE);
749         return;
750 }
751
752 static void
753 my_reset(struct my_softc * sc)
754 {
755         register int    i;
756
757         MY_LOCK_ASSERT(sc);
758         MY_SETBIT(sc, MY_BCR, MY_SWR);
759         for (i = 0; i < MY_TIMEOUT; i++) {
760                 DELAY(10);
761                 if (!(CSR_READ_4(sc, MY_BCR) & MY_SWR))
762                         break;
763         }
764         if (i == MY_TIMEOUT)
765                 device_printf(sc->my_dev, "reset never completed!\n");
766
767         /* Wait a little while for the chip to get its brains in order. */
768         DELAY(1000);
769         return;
770 }
771
772 /*
773  * Probe for a Myson chip. Check the PCI vendor and device IDs against our
774  * list and return a device name if we find a match.
775  */
776 static int
777 my_probe(device_t dev)
778 {
779         struct my_type *t;
780
781         t = my_devs;
782         while (t->my_name != NULL) {
783                 if ((pci_get_vendor(dev) == t->my_vid) &&
784                     (pci_get_device(dev) == t->my_did)) {
785                         device_set_desc(dev, t->my_name);
786                         my_info_tmp = t;
787                         return (BUS_PROBE_DEFAULT);
788                 }
789                 t++;
790         }
791         return (ENXIO);
792 }
793
794 /*
795  * Attach the interface. Allocate softc structures, do ifmedia setup and
796  * ethernet/BPF attach.
797  */
798 static int
799 my_attach(device_t dev)
800 {
801         int             i;
802         u_char          eaddr[ETHER_ADDR_LEN];
803         u_int32_t       iobase;
804         struct my_softc *sc;
805         struct ifnet   *ifp;
806         int             media = IFM_ETHER | IFM_100_TX | IFM_FDX;
807         unsigned int    round;
808         caddr_t         roundptr;
809         struct my_type *p;
810         u_int16_t       phy_vid, phy_did, phy_sts = 0;
811         int             rid, error = 0;
812
813         sc = device_get_softc(dev);
814         sc->my_dev = dev;
815         mtx_init(&sc->my_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
816             MTX_DEF);
817         callout_init_mtx(&sc->my_autoneg_timer, &sc->my_mtx, 0);
818         callout_init_mtx(&sc->my_watchdog, &sc->my_mtx, 0);
819
820         /*
821          * Map control/status registers.
822          */
823         pci_enable_busmaster(dev);
824
825         if (my_info_tmp->my_did == MTD800ID) {
826                 iobase = pci_read_config(dev, MY_PCI_LOIO, 4);
827                 if (iobase & 0x300)
828                         MY_USEIOSPACE = 0;
829         }
830
831         rid = MY_RID;
832         sc->my_res = bus_alloc_resource_any(dev, MY_RES, &rid, RF_ACTIVE);
833
834         if (sc->my_res == NULL) {
835                 device_printf(dev, "couldn't map ports/memory\n");
836                 error = ENXIO;
837                 goto destroy_mutex;
838         }
839         sc->my_btag = rman_get_bustag(sc->my_res);
840         sc->my_bhandle = rman_get_bushandle(sc->my_res);
841
842         rid = 0;
843         sc->my_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
844                                             RF_SHAREABLE | RF_ACTIVE);
845
846         if (sc->my_irq == NULL) {
847                 device_printf(dev, "couldn't map interrupt\n");
848                 error = ENXIO;
849                 goto release_io;
850         }
851
852         sc->my_info = my_info_tmp;
853
854         /* Reset the adapter. */
855         MY_LOCK(sc);
856         my_reset(sc);
857         MY_UNLOCK(sc);
858
859         /*
860          * Get station address
861          */
862         for (i = 0; i < ETHER_ADDR_LEN; ++i)
863                 eaddr[i] = CSR_READ_1(sc, MY_PAR0 + i);
864
865         sc->my_ldata_ptr = malloc(sizeof(struct my_list_data) + 8,
866                                   M_DEVBUF, M_NOWAIT);
867         if (sc->my_ldata_ptr == NULL) {
868                 device_printf(dev, "no memory for list buffers!\n");
869                 error = ENXIO;
870                 goto release_irq;
871         }
872         sc->my_ldata = (struct my_list_data *) sc->my_ldata_ptr;
873         round = (uintptr_t)sc->my_ldata_ptr & 0xF;
874         roundptr = sc->my_ldata_ptr;
875         for (i = 0; i < 8; i++) {
876                 if (round % 8) {
877                         round++;
878                         roundptr++;
879                 } else
880                         break;
881         }
882         sc->my_ldata = (struct my_list_data *) roundptr;
883         bzero(sc->my_ldata, sizeof(struct my_list_data));
884
885         ifp = sc->my_ifp = if_alloc(IFT_ETHER);
886         if (ifp == NULL) {
887                 device_printf(dev, "can not if_alloc()\n");
888                 error = ENOSPC;
889                 goto free_ldata;
890         }
891         ifp->if_softc = sc;
892         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
893         ifp->if_mtu = ETHERMTU;
894         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
895         ifp->if_ioctl = my_ioctl;
896         ifp->if_start = my_start;
897         ifp->if_init = my_init;
898         ifp->if_baudrate = 10000000;
899         IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen);
900         ifp->if_snd.ifq_drv_maxlen = ifqmaxlen;
901         IFQ_SET_READY(&ifp->if_snd);
902
903         if (sc->my_info->my_did == MTD803ID)
904                 sc->my_pinfo = my_phys;
905         else {
906                 if (bootverbose)
907                         device_printf(dev, "probing for a PHY\n");
908                 MY_LOCK(sc);
909                 for (i = MY_PHYADDR_MIN; i < MY_PHYADDR_MAX + 1; i++) {
910                         if (bootverbose)
911                                 device_printf(dev, "checking address: %d\n", i);
912                         sc->my_phy_addr = i;
913                         phy_sts = my_phy_readreg(sc, PHY_BMSR);
914                         if ((phy_sts != 0) && (phy_sts != 0xffff))
915                                 break;
916                         else
917                                 phy_sts = 0;
918                 }
919                 if (phy_sts) {
920                         phy_vid = my_phy_readreg(sc, PHY_VENID);
921                         phy_did = my_phy_readreg(sc, PHY_DEVID);
922                         if (bootverbose) {
923                                 device_printf(dev, "found PHY at address %d, ",
924                                     sc->my_phy_addr);
925                                 printf("vendor id: %x device id: %x\n",
926                                     phy_vid, phy_did);
927                         }
928                         p = my_phys;
929                         while (p->my_vid) {
930                                 if (phy_vid == p->my_vid) {
931                                         sc->my_pinfo = p;
932                                         break;
933                                 }
934                                 p++;
935                         }
936                         if (sc->my_pinfo == NULL)
937                                 sc->my_pinfo = &my_phys[PHY_UNKNOWN];
938                         if (bootverbose)
939                                 device_printf(dev, "PHY type: %s\n",
940                                        sc->my_pinfo->my_name);
941                 } else {
942                         MY_UNLOCK(sc);
943                         device_printf(dev, "MII without any phy!\n");
944                         error = ENXIO;
945                         goto free_if;
946                 }
947                 MY_UNLOCK(sc);
948         }
949
950         /* Do ifmedia setup. */
951         ifmedia_init(&sc->ifmedia, 0, my_ifmedia_upd, my_ifmedia_sts);
952         MY_LOCK(sc);
953         my_getmode_mii(sc);
954         my_autoneg_mii(sc, MY_FLAG_FORCEDELAY, 1);
955         media = sc->ifmedia.ifm_media;
956         my_stop(sc);
957         MY_UNLOCK(sc);
958         ifmedia_set(&sc->ifmedia, media);
959
960         ether_ifattach(ifp, eaddr);
961
962         error = bus_setup_intr(dev, sc->my_irq, INTR_TYPE_NET | INTR_MPSAFE,
963                                NULL, my_intr, sc, &sc->my_intrhand);
964
965         if (error) {
966                 device_printf(dev, "couldn't set up irq\n");
967                 goto detach_if;
968         }
969          
970         return (0);
971
972 detach_if:
973         ether_ifdetach(ifp);
974 free_if:
975         if_free(ifp);
976 free_ldata:
977         free(sc->my_ldata_ptr, M_DEVBUF);
978 release_irq:
979         bus_release_resource(dev, SYS_RES_IRQ, 0, sc->my_irq);
980 release_io:
981         bus_release_resource(dev, MY_RES, MY_RID, sc->my_res);
982 destroy_mutex:
983         mtx_destroy(&sc->my_mtx);
984         return (error);
985 }
986
987 static int
988 my_detach(device_t dev)
989 {
990         struct my_softc *sc;
991         struct ifnet   *ifp;
992
993         sc = device_get_softc(dev);
994         ifp = sc->my_ifp;
995         ether_ifdetach(ifp);
996         MY_LOCK(sc);
997         my_stop(sc);
998         MY_UNLOCK(sc);
999         bus_teardown_intr(dev, sc->my_irq, sc->my_intrhand);
1000         callout_drain(&sc->my_watchdog);
1001         callout_drain(&sc->my_autoneg_timer);
1002
1003         if_free(ifp);
1004         free(sc->my_ldata_ptr, M_DEVBUF);
1005
1006         bus_release_resource(dev, SYS_RES_IRQ, 0, sc->my_irq);
1007         bus_release_resource(dev, MY_RES, MY_RID, sc->my_res);
1008         mtx_destroy(&sc->my_mtx);
1009         return (0);
1010 }
1011
1012
1013 /*
1014  * Initialize the transmit descriptors.
1015  */
1016 static int
1017 my_list_tx_init(struct my_softc * sc)
1018 {
1019         struct my_chain_data *cd;
1020         struct my_list_data *ld;
1021         int             i;
1022
1023         MY_LOCK_ASSERT(sc);
1024         cd = &sc->my_cdata;
1025         ld = sc->my_ldata;
1026         for (i = 0; i < MY_TX_LIST_CNT; i++) {
1027                 cd->my_tx_chain[i].my_ptr = &ld->my_tx_list[i];
1028                 if (i == (MY_TX_LIST_CNT - 1))
1029                         cd->my_tx_chain[i].my_nextdesc = &cd->my_tx_chain[0];
1030                 else
1031                         cd->my_tx_chain[i].my_nextdesc =
1032                             &cd->my_tx_chain[i + 1];
1033         }
1034         cd->my_tx_free = &cd->my_tx_chain[0];
1035         cd->my_tx_tail = cd->my_tx_head = NULL;
1036         return (0);
1037 }
1038
1039 /*
1040  * Initialize the RX descriptors and allocate mbufs for them. Note that we
1041  * arrange the descriptors in a closed ring, so that the last descriptor
1042  * points back to the first.
1043  */
1044 static int
1045 my_list_rx_init(struct my_softc * sc)
1046 {
1047         struct my_chain_data *cd;
1048         struct my_list_data *ld;
1049         int             i;
1050
1051         MY_LOCK_ASSERT(sc);
1052         cd = &sc->my_cdata;
1053         ld = sc->my_ldata;
1054         for (i = 0; i < MY_RX_LIST_CNT; i++) {
1055                 cd->my_rx_chain[i].my_ptr =
1056                     (struct my_desc *) & ld->my_rx_list[i];
1057                 if (my_newbuf(sc, &cd->my_rx_chain[i]) == ENOBUFS) {
1058                         MY_UNLOCK(sc);
1059                         return (ENOBUFS);
1060                 }
1061                 if (i == (MY_RX_LIST_CNT - 1)) {
1062                         cd->my_rx_chain[i].my_nextdesc = &cd->my_rx_chain[0];
1063                         ld->my_rx_list[i].my_next = vtophys(&ld->my_rx_list[0]);
1064                 } else {
1065                         cd->my_rx_chain[i].my_nextdesc =
1066                             &cd->my_rx_chain[i + 1];
1067                         ld->my_rx_list[i].my_next =
1068                             vtophys(&ld->my_rx_list[i + 1]);
1069                 }
1070         }
1071         cd->my_rx_head = &cd->my_rx_chain[0];
1072         return (0);
1073 }
1074
1075 /*
1076  * Initialize an RX descriptor and attach an MBUF cluster.
1077  */
1078 static int
1079 my_newbuf(struct my_softc * sc, struct my_chain_onefrag * c)
1080 {
1081         struct mbuf    *m_new = NULL;
1082
1083         MY_LOCK_ASSERT(sc);
1084         MGETHDR(m_new, M_NOWAIT, MT_DATA);
1085         if (m_new == NULL) {
1086                 device_printf(sc->my_dev,
1087                     "no memory for rx list -- packet dropped!\n");
1088                 return (ENOBUFS);
1089         }
1090         MCLGET(m_new, M_NOWAIT);
1091         if (!(m_new->m_flags & M_EXT)) {
1092                 device_printf(sc->my_dev,
1093                     "no memory for rx list -- packet dropped!\n");
1094                 m_freem(m_new);
1095                 return (ENOBUFS);
1096         }
1097         c->my_mbuf = m_new;
1098         c->my_ptr->my_data = vtophys(mtod(m_new, caddr_t));
1099         c->my_ptr->my_ctl = (MCLBYTES - 1) << MY_RBSShift;
1100         c->my_ptr->my_status = MY_OWNByNIC;
1101         return (0);
1102 }
1103
1104 /*
1105  * A frame has been uploaded: pass the resulting mbuf chain up to the higher
1106  * level protocols.
1107  */
1108 static void
1109 my_rxeof(struct my_softc * sc)
1110 {
1111         struct ether_header *eh;
1112         struct mbuf    *m;
1113         struct ifnet   *ifp;
1114         struct my_chain_onefrag *cur_rx;
1115         int             total_len = 0;
1116         u_int32_t       rxstat;
1117
1118         MY_LOCK_ASSERT(sc);
1119         ifp = sc->my_ifp;
1120         while (!((rxstat = sc->my_cdata.my_rx_head->my_ptr->my_status)
1121             & MY_OWNByNIC)) {
1122                 cur_rx = sc->my_cdata.my_rx_head;
1123                 sc->my_cdata.my_rx_head = cur_rx->my_nextdesc;
1124
1125                 if (rxstat & MY_ES) {   /* error summary: give up this rx pkt */
1126                         ifp->if_ierrors++;
1127                         cur_rx->my_ptr->my_status = MY_OWNByNIC;
1128                         continue;
1129                 }
1130                 /* No errors; receive the packet. */
1131                 total_len = (rxstat & MY_FLNGMASK) >> MY_FLNGShift;
1132                 total_len -= ETHER_CRC_LEN;
1133
1134                 if (total_len < MINCLSIZE) {
1135                         m = m_devget(mtod(cur_rx->my_mbuf, char *),
1136                             total_len, 0, ifp, NULL);
1137                         cur_rx->my_ptr->my_status = MY_OWNByNIC;
1138                         if (m == NULL) {
1139                                 ifp->if_ierrors++;
1140                                 continue;
1141                         }
1142                 } else {
1143                         m = cur_rx->my_mbuf;
1144                         /*
1145                          * Try to conjure up a new mbuf cluster. If that
1146                          * fails, it means we have an out of memory condition
1147                          * and should leave the buffer in place and continue.
1148                          * This will result in a lost packet, but there's
1149                          * little else we can do in this situation.
1150                          */
1151                         if (my_newbuf(sc, cur_rx) == ENOBUFS) {
1152                                 ifp->if_ierrors++;
1153                                 cur_rx->my_ptr->my_status = MY_OWNByNIC;
1154                                 continue;
1155                         }
1156                         m->m_pkthdr.rcvif = ifp;
1157                         m->m_pkthdr.len = m->m_len = total_len;
1158                 }
1159                 ifp->if_ipackets++;
1160                 eh = mtod(m, struct ether_header *);
1161 #if NBPFILTER > 0
1162                 /*
1163                  * Handle BPF listeners. Let the BPF user see the packet, but
1164                  * don't pass it up to the ether_input() layer unless it's a
1165                  * broadcast packet, multicast packet, matches our ethernet
1166                  * address or the interface is in promiscuous mode.
1167                  */
1168                 if (bpf_peers_present(ifp->if_bpf)) {
1169                         bpf_mtap(ifp->if_bpf, m);
1170                         if (ifp->if_flags & IFF_PROMISC &&
1171                             (bcmp(eh->ether_dhost, IF_LLADDR(sc->my_ifp),
1172                                 ETHER_ADDR_LEN) &&
1173                              (eh->ether_dhost[0] & 1) == 0)) {
1174                                 m_freem(m);
1175                                 continue;
1176                         }
1177                 }
1178 #endif
1179                 MY_UNLOCK(sc);
1180                 (*ifp->if_input)(ifp, m);
1181                 MY_LOCK(sc);
1182         }
1183         return;
1184 }
1185
1186
1187 /*
1188  * A frame was downloaded to the chip. It's safe for us to clean up the list
1189  * buffers.
1190  */
1191 static void
1192 my_txeof(struct my_softc * sc)
1193 {
1194         struct my_chain *cur_tx;
1195         struct ifnet   *ifp;
1196
1197         MY_LOCK_ASSERT(sc);
1198         ifp = sc->my_ifp;
1199         /* Clear the timeout timer. */
1200         sc->my_timer = 0;
1201         if (sc->my_cdata.my_tx_head == NULL) {
1202                 return;
1203         }
1204         /*
1205          * Go through our tx list and free mbufs for those frames that have
1206          * been transmitted.
1207          */
1208         while (sc->my_cdata.my_tx_head->my_mbuf != NULL) {
1209                 u_int32_t       txstat;
1210
1211                 cur_tx = sc->my_cdata.my_tx_head;
1212                 txstat = MY_TXSTATUS(cur_tx);
1213                 if ((txstat & MY_OWNByNIC) || txstat == MY_UNSENT)
1214                         break;
1215                 if (!(CSR_READ_4(sc, MY_TCRRCR) & MY_Enhanced)) {
1216                         if (txstat & MY_TXERR) {
1217                                 ifp->if_oerrors++;
1218                                 if (txstat & MY_EC) /* excessive collision */
1219                                         ifp->if_collisions++;
1220                                 if (txstat & MY_LC)     /* late collision */
1221                                         ifp->if_collisions++;
1222                         }
1223                         ifp->if_collisions += (txstat & MY_NCRMASK) >>
1224                             MY_NCRShift;
1225                 }
1226                 ifp->if_opackets++;
1227                 m_freem(cur_tx->my_mbuf);
1228                 cur_tx->my_mbuf = NULL;
1229                 if (sc->my_cdata.my_tx_head == sc->my_cdata.my_tx_tail) {
1230                         sc->my_cdata.my_tx_head = NULL;
1231                         sc->my_cdata.my_tx_tail = NULL;
1232                         break;
1233                 }
1234                 sc->my_cdata.my_tx_head = cur_tx->my_nextdesc;
1235         }
1236         if (CSR_READ_4(sc, MY_TCRRCR) & MY_Enhanced) {
1237                 ifp->if_collisions += (CSR_READ_4(sc, MY_TSR) & MY_NCRMask);
1238         }
1239         return;
1240 }
1241
1242 /*
1243  * TX 'end of channel' interrupt handler.
1244  */
1245 static void
1246 my_txeoc(struct my_softc * sc)
1247 {
1248         struct ifnet   *ifp;
1249
1250         MY_LOCK_ASSERT(sc);
1251         ifp = sc->my_ifp;
1252         sc->my_timer = 0;
1253         if (sc->my_cdata.my_tx_head == NULL) {
1254                 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1255                 sc->my_cdata.my_tx_tail = NULL;
1256                 if (sc->my_want_auto)
1257                         my_autoneg_mii(sc, MY_FLAG_SCHEDDELAY, 1);
1258         } else {
1259                 if (MY_TXOWN(sc->my_cdata.my_tx_head) == MY_UNSENT) {
1260                         MY_TXOWN(sc->my_cdata.my_tx_head) = MY_OWNByNIC;
1261                         sc->my_timer = 5;
1262                         CSR_WRITE_4(sc, MY_TXPDR, 0xFFFFFFFF);
1263                 }
1264         }
1265         return;
1266 }
1267
1268 static void
1269 my_intr(void *arg)
1270 {
1271         struct my_softc *sc;
1272         struct ifnet   *ifp;
1273         u_int32_t       status;
1274
1275         sc = arg;
1276         MY_LOCK(sc);
1277         ifp = sc->my_ifp;
1278         if (!(ifp->if_flags & IFF_UP)) {
1279                 MY_UNLOCK(sc);
1280                 return;
1281         }
1282         /* Disable interrupts. */
1283         CSR_WRITE_4(sc, MY_IMR, 0x00000000);
1284
1285         for (;;) {
1286                 status = CSR_READ_4(sc, MY_ISR);
1287                 status &= MY_INTRS;
1288                 if (status)
1289                         CSR_WRITE_4(sc, MY_ISR, status);
1290                 else
1291                         break;
1292
1293                 if (status & MY_RI)     /* receive interrupt */
1294                         my_rxeof(sc);
1295
1296                 if ((status & MY_RBU) || (status & MY_RxErr)) {
1297                         /* rx buffer unavailable or rx error */
1298                         ifp->if_ierrors++;
1299 #ifdef foo
1300                         my_stop(sc);
1301                         my_reset(sc);
1302                         my_init_locked(sc);
1303 #endif
1304                 }
1305                 if (status & MY_TI)     /* tx interrupt */
1306                         my_txeof(sc);
1307                 if (status & MY_ETI)    /* tx early interrupt */
1308                         my_txeof(sc);
1309                 if (status & MY_TBU)    /* tx buffer unavailable */
1310                         my_txeoc(sc);
1311
1312 #if 0                           /* 90/1/18 delete */
1313                 if (status & MY_FBE) {
1314                         my_reset(sc);
1315                         my_init_locked(sc);
1316                 }
1317 #endif
1318
1319         }
1320
1321         /* Re-enable interrupts. */
1322         CSR_WRITE_4(sc, MY_IMR, MY_INTRS);
1323         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1324                 my_start_locked(ifp);
1325         MY_UNLOCK(sc);
1326         return;
1327 }
1328
1329 /*
1330  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1331  * pointers to the fragment pointers.
1332  */
1333 static int
1334 my_encap(struct my_softc * sc, struct my_chain * c, struct mbuf * m_head)
1335 {
1336         struct my_desc *f = NULL;
1337         int             total_len;
1338         struct mbuf    *m, *m_new = NULL;
1339
1340         MY_LOCK_ASSERT(sc);
1341         /* calculate the total tx pkt length */
1342         total_len = 0;
1343         for (m = m_head; m != NULL; m = m->m_next)
1344                 total_len += m->m_len;
1345         /*
1346          * Start packing the mbufs in this chain into the fragment pointers.
1347          * Stop when we run out of fragments or hit the end of the mbuf
1348          * chain.
1349          */
1350         m = m_head;
1351         MGETHDR(m_new, M_NOWAIT, MT_DATA);
1352         if (m_new == NULL) {
1353                 device_printf(sc->my_dev, "no memory for tx list");
1354                 return (1);
1355         }
1356         if (m_head->m_pkthdr.len > MHLEN) {
1357                 MCLGET(m_new, M_NOWAIT);
1358                 if (!(m_new->m_flags & M_EXT)) {
1359                         m_freem(m_new);
1360                         device_printf(sc->my_dev, "no memory for tx list");
1361                         return (1);
1362                 }
1363         }
1364         m_copydata(m_head, 0, m_head->m_pkthdr.len, mtod(m_new, caddr_t));
1365         m_new->m_pkthdr.len = m_new->m_len = m_head->m_pkthdr.len;
1366         m_freem(m_head);
1367         m_head = m_new;
1368         f = &c->my_ptr->my_frag[0];
1369         f->my_status = 0;
1370         f->my_data = vtophys(mtod(m_new, caddr_t));
1371         total_len = m_new->m_len;
1372         f->my_ctl = MY_TXFD | MY_TXLD | MY_CRCEnable | MY_PADEnable;
1373         f->my_ctl |= total_len << MY_PKTShift;  /* pkt size */
1374         f->my_ctl |= total_len; /* buffer size */
1375         /* 89/12/29 add, for mtd891 *//* [ 89? ] */
1376         if (sc->my_info->my_did == MTD891ID)
1377                 f->my_ctl |= MY_ETIControl | MY_RetryTxLC;
1378         c->my_mbuf = m_head;
1379         c->my_lastdesc = 0;
1380         MY_TXNEXT(c) = vtophys(&c->my_nextdesc->my_ptr->my_frag[0]);
1381         return (0);
1382 }
1383
1384 /*
1385  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
1386  * to the mbuf data regions directly in the transmit lists. We also save a
1387  * copy of the pointers since the transmit list fragment pointers are
1388  * physical addresses.
1389  */
1390 static void
1391 my_start(struct ifnet * ifp)
1392 {
1393         struct my_softc *sc;
1394
1395         sc = ifp->if_softc;
1396         MY_LOCK(sc);
1397         my_start_locked(ifp);
1398         MY_UNLOCK(sc);
1399 }
1400
1401 static void
1402 my_start_locked(struct ifnet * ifp)
1403 {
1404         struct my_softc *sc;
1405         struct mbuf    *m_head = NULL;
1406         struct my_chain *cur_tx = NULL, *start_tx;
1407
1408         sc = ifp->if_softc;
1409         MY_LOCK_ASSERT(sc);
1410         if (sc->my_autoneg) {
1411                 sc->my_tx_pend = 1;
1412                 return;
1413         }
1414         /*
1415          * Check for an available queue slot. If there are none, punt.
1416          */
1417         if (sc->my_cdata.my_tx_free->my_mbuf != NULL) {
1418                 ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1419                 return;
1420         }
1421         start_tx = sc->my_cdata.my_tx_free;
1422         while (sc->my_cdata.my_tx_free->my_mbuf == NULL) {
1423                 IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
1424                 if (m_head == NULL)
1425                         break;
1426
1427                 /* Pick a descriptor off the free list. */
1428                 cur_tx = sc->my_cdata.my_tx_free;
1429                 sc->my_cdata.my_tx_free = cur_tx->my_nextdesc;
1430
1431                 /* Pack the data into the descriptor. */
1432                 my_encap(sc, cur_tx, m_head);
1433
1434                 if (cur_tx != start_tx)
1435                         MY_TXOWN(cur_tx) = MY_OWNByNIC;
1436 #if NBPFILTER > 0
1437                 /*
1438                  * If there's a BPF listener, bounce a copy of this frame to
1439                  * him.
1440                  */
1441                 BPF_MTAP(ifp, cur_tx->my_mbuf);
1442 #endif
1443         }
1444         /*
1445          * If there are no packets queued, bail.
1446          */
1447         if (cur_tx == NULL) {
1448                 return;
1449         }
1450         /*
1451          * Place the request for the upload interrupt in the last descriptor
1452          * in the chain. This way, if we're chaining several packets at once,
1453          * we'll only get an interrupt once for the whole chain rather than
1454          * once for each packet.
1455          */
1456         MY_TXCTL(cur_tx) |= MY_TXIC;
1457         cur_tx->my_ptr->my_frag[0].my_ctl |= MY_TXIC;
1458         sc->my_cdata.my_tx_tail = cur_tx;
1459         if (sc->my_cdata.my_tx_head == NULL)
1460                 sc->my_cdata.my_tx_head = start_tx;
1461         MY_TXOWN(start_tx) = MY_OWNByNIC;
1462         CSR_WRITE_4(sc, MY_TXPDR, 0xFFFFFFFF);  /* tx polling demand */
1463
1464         /*
1465          * Set a timeout in case the chip goes out to lunch.
1466          */
1467         sc->my_timer = 5;
1468         return;
1469 }
1470
1471 static void
1472 my_init(void *xsc)
1473 {
1474         struct my_softc *sc = xsc;
1475
1476         MY_LOCK(sc);
1477         my_init_locked(sc);
1478         MY_UNLOCK(sc);
1479 }
1480
1481 static void
1482 my_init_locked(struct my_softc *sc)
1483 {
1484         struct ifnet   *ifp = sc->my_ifp;
1485         u_int16_t       phy_bmcr = 0;
1486
1487         MY_LOCK_ASSERT(sc);
1488         if (sc->my_autoneg) {
1489                 return;
1490         }
1491         if (sc->my_pinfo != NULL)
1492                 phy_bmcr = my_phy_readreg(sc, PHY_BMCR);
1493         /*
1494          * Cancel pending I/O and free all RX/TX buffers.
1495          */
1496         my_stop(sc);
1497         my_reset(sc);
1498
1499         /*
1500          * Set cache alignment and burst length.
1501          */
1502 #if 0                           /* 89/9/1 modify,  */
1503         CSR_WRITE_4(sc, MY_BCR, MY_RPBLE512);
1504         CSR_WRITE_4(sc, MY_TCRRCR, MY_TFTSF);
1505 #endif
1506         CSR_WRITE_4(sc, MY_BCR, MY_PBL8);
1507         CSR_WRITE_4(sc, MY_TCRRCR, MY_TFTSF | MY_RBLEN | MY_RPBLE512);
1508         /*
1509          * 89/12/29 add, for mtd891,
1510          */
1511         if (sc->my_info->my_did == MTD891ID) {
1512                 MY_SETBIT(sc, MY_BCR, MY_PROG);
1513                 MY_SETBIT(sc, MY_TCRRCR, MY_Enhanced);
1514         }
1515         my_setcfg(sc, phy_bmcr);
1516         /* Init circular RX list. */
1517         if (my_list_rx_init(sc) == ENOBUFS) {
1518                 device_printf(sc->my_dev, "init failed: no memory for rx buffers\n");
1519                 my_stop(sc);
1520                 return;
1521         }
1522         /* Init TX descriptors. */
1523         my_list_tx_init(sc);
1524
1525         /* If we want promiscuous mode, set the allframes bit. */
1526         if (ifp->if_flags & IFF_PROMISC)
1527                 MY_SETBIT(sc, MY_TCRRCR, MY_PROM);
1528         else
1529                 MY_CLRBIT(sc, MY_TCRRCR, MY_PROM);
1530
1531         /*
1532          * Set capture broadcast bit to capture broadcast frames.
1533          */
1534         if (ifp->if_flags & IFF_BROADCAST)
1535                 MY_SETBIT(sc, MY_TCRRCR, MY_AB);
1536         else
1537                 MY_CLRBIT(sc, MY_TCRRCR, MY_AB);
1538
1539         /*
1540          * Program the multicast filter, if necessary.
1541          */
1542         my_setmulti(sc);
1543
1544         /*
1545          * Load the address of the RX list.
1546          */
1547         MY_CLRBIT(sc, MY_TCRRCR, MY_RE);
1548         CSR_WRITE_4(sc, MY_RXLBA, vtophys(&sc->my_ldata->my_rx_list[0]));
1549
1550         /*
1551          * Enable interrupts.
1552          */
1553         CSR_WRITE_4(sc, MY_IMR, MY_INTRS);
1554         CSR_WRITE_4(sc, MY_ISR, 0xFFFFFFFF);
1555
1556         /* Enable receiver and transmitter. */
1557         MY_SETBIT(sc, MY_TCRRCR, MY_RE);
1558         MY_CLRBIT(sc, MY_TCRRCR, MY_TE);
1559         CSR_WRITE_4(sc, MY_TXLBA, vtophys(&sc->my_ldata->my_tx_list[0]));
1560         MY_SETBIT(sc, MY_TCRRCR, MY_TE);
1561
1562         /* Restore state of BMCR */
1563         if (sc->my_pinfo != NULL)
1564                 my_phy_writereg(sc, PHY_BMCR, phy_bmcr);
1565         ifp->if_drv_flags |= IFF_DRV_RUNNING;
1566         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1567
1568         callout_reset(&sc->my_watchdog, hz, my_watchdog, sc);
1569         return;
1570 }
1571
1572 /*
1573  * Set media options.
1574  */
1575
1576 static int
1577 my_ifmedia_upd(struct ifnet * ifp)
1578 {
1579         struct my_softc *sc;
1580         struct ifmedia *ifm;
1581
1582         sc = ifp->if_softc;
1583         MY_LOCK(sc);
1584         ifm = &sc->ifmedia;
1585         if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER) {
1586                 MY_UNLOCK(sc);
1587                 return (EINVAL);
1588         }
1589         if (IFM_SUBTYPE(ifm->ifm_media) == IFM_AUTO)
1590                 my_autoneg_mii(sc, MY_FLAG_SCHEDDELAY, 1);
1591         else
1592                 my_setmode_mii(sc, ifm->ifm_media);
1593         MY_UNLOCK(sc);
1594         return (0);
1595 }
1596
1597 /*
1598  * Report current media status.
1599  */
1600
1601 static void
1602 my_ifmedia_sts(struct ifnet * ifp, struct ifmediareq * ifmr)
1603 {
1604         struct my_softc *sc;
1605         u_int16_t advert = 0, ability = 0;
1606
1607         sc = ifp->if_softc;
1608         MY_LOCK(sc);
1609         ifmr->ifm_active = IFM_ETHER;
1610         if (!(my_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_AUTONEGENBL)) {
1611 #if 0                           /* this version did not support 1000M, */
1612                 if (my_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_1000)
1613                         ifmr->ifm_active = IFM_ETHER | IFM_1000TX;
1614 #endif
1615                 if (my_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_SPEEDSEL)
1616                         ifmr->ifm_active = IFM_ETHER | IFM_100_TX;
1617                 else
1618                         ifmr->ifm_active = IFM_ETHER | IFM_10_T;
1619                 if (my_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_DUPLEX)
1620                         ifmr->ifm_active |= IFM_FDX;
1621                 else
1622                         ifmr->ifm_active |= IFM_HDX;
1623
1624                 MY_UNLOCK(sc);
1625                 return;
1626         }
1627         ability = my_phy_readreg(sc, PHY_LPAR);
1628         advert = my_phy_readreg(sc, PHY_ANAR);
1629
1630 #if 0                           /* this version did not support 1000M, */
1631         if (sc->my_pinfo->my_vid = MarvellPHYID0) {
1632                 ability2 = my_phy_readreg(sc, PHY_1000SR);
1633                 if (ability2 & PHY_1000SR_1000BTXFULL) {
1634                         advert = 0;
1635                         ability = 0;
1636                         ifmr->ifm_active = IFM_ETHER|IFM_1000_T|IFM_FDX;
1637                 } else if (ability & PHY_1000SR_1000BTXHALF) {
1638                         advert = 0;
1639                         ability = 0;
1640                         ifmr->ifm_active = IFM_ETHER|IFM_1000_T|IFM_HDX;
1641                 }
1642         }
1643 #endif
1644         if (advert & PHY_ANAR_100BT4 && ability & PHY_ANAR_100BT4)
1645                 ifmr->ifm_active = IFM_ETHER | IFM_100_T4;
1646         else if (advert & PHY_ANAR_100BTXFULL && ability & PHY_ANAR_100BTXFULL)
1647                 ifmr->ifm_active = IFM_ETHER | IFM_100_TX | IFM_FDX;
1648         else if (advert & PHY_ANAR_100BTXHALF && ability & PHY_ANAR_100BTXHALF)
1649                 ifmr->ifm_active = IFM_ETHER | IFM_100_TX | IFM_HDX;
1650         else if (advert & PHY_ANAR_10BTFULL && ability & PHY_ANAR_10BTFULL)
1651                 ifmr->ifm_active = IFM_ETHER | IFM_10_T | IFM_FDX;
1652         else if (advert & PHY_ANAR_10BTHALF && ability & PHY_ANAR_10BTHALF)
1653                 ifmr->ifm_active = IFM_ETHER | IFM_10_T | IFM_HDX;
1654         MY_UNLOCK(sc);
1655         return;
1656 }
1657
1658 static int
1659 my_ioctl(struct ifnet * ifp, u_long command, caddr_t data)
1660 {
1661         struct my_softc *sc = ifp->if_softc;
1662         struct ifreq   *ifr = (struct ifreq *) data;
1663         int             error;
1664
1665         switch (command) {
1666         case SIOCSIFFLAGS:
1667                 MY_LOCK(sc);
1668                 if (ifp->if_flags & IFF_UP)
1669                         my_init_locked(sc);
1670                 else if (ifp->if_drv_flags & IFF_DRV_RUNNING)
1671                         my_stop(sc);
1672                 MY_UNLOCK(sc);
1673                 error = 0;
1674                 break;
1675         case SIOCADDMULTI:
1676         case SIOCDELMULTI:
1677                 MY_LOCK(sc);
1678                 my_setmulti(sc);
1679                 MY_UNLOCK(sc);
1680                 error = 0;
1681                 break;
1682         case SIOCGIFMEDIA:
1683         case SIOCSIFMEDIA:
1684                 error = ifmedia_ioctl(ifp, ifr, &sc->ifmedia, command);
1685                 break;
1686         default:
1687                 error = ether_ioctl(ifp, command, data);
1688                 break;
1689         }
1690         return (error);
1691 }
1692
1693 static void
1694 my_watchdog(void *arg)
1695 {
1696         struct my_softc *sc;
1697         struct ifnet *ifp;
1698
1699         sc = arg;
1700         MY_LOCK_ASSERT(sc);
1701         callout_reset(&sc->my_watchdog, hz, my_watchdog, sc);
1702         if (sc->my_timer == 0 || --sc->my_timer > 0)
1703                 return;
1704
1705         ifp = sc->my_ifp;
1706         ifp->if_oerrors++;
1707         if_printf(ifp, "watchdog timeout\n");
1708         if (!(my_phy_readreg(sc, PHY_BMSR) & PHY_BMSR_LINKSTAT))
1709                 if_printf(ifp, "no carrier - transceiver cable problem?\n");
1710         my_stop(sc);
1711         my_reset(sc);
1712         my_init_locked(sc);
1713         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1714                 my_start_locked(ifp);
1715 }
1716
1717
1718 /*
1719  * Stop the adapter and free any mbufs allocated to the RX and TX lists.
1720  */
1721 static void
1722 my_stop(struct my_softc * sc)
1723 {
1724         register int    i;
1725         struct ifnet   *ifp;
1726
1727         MY_LOCK_ASSERT(sc);
1728         ifp = sc->my_ifp;
1729
1730         callout_stop(&sc->my_autoneg_timer);
1731         callout_stop(&sc->my_watchdog);
1732
1733         MY_CLRBIT(sc, MY_TCRRCR, (MY_RE | MY_TE));
1734         CSR_WRITE_4(sc, MY_IMR, 0x00000000);
1735         CSR_WRITE_4(sc, MY_TXLBA, 0x00000000);
1736         CSR_WRITE_4(sc, MY_RXLBA, 0x00000000);
1737
1738         /*
1739          * Free data in the RX lists.
1740          */
1741         for (i = 0; i < MY_RX_LIST_CNT; i++) {
1742                 if (sc->my_cdata.my_rx_chain[i].my_mbuf != NULL) {
1743                         m_freem(sc->my_cdata.my_rx_chain[i].my_mbuf);
1744                         sc->my_cdata.my_rx_chain[i].my_mbuf = NULL;
1745                 }
1746         }
1747         bzero((char *)&sc->my_ldata->my_rx_list,
1748             sizeof(sc->my_ldata->my_rx_list));
1749         /*
1750          * Free the TX list buffers.
1751          */
1752         for (i = 0; i < MY_TX_LIST_CNT; i++) {
1753                 if (sc->my_cdata.my_tx_chain[i].my_mbuf != NULL) {
1754                         m_freem(sc->my_cdata.my_tx_chain[i].my_mbuf);
1755                         sc->my_cdata.my_tx_chain[i].my_mbuf = NULL;
1756                 }
1757         }
1758         bzero((char *)&sc->my_ldata->my_tx_list,
1759             sizeof(sc->my_ldata->my_tx_list));
1760         ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
1761         return;
1762 }
1763
1764 /*
1765  * Stop all chip I/O so that the kernel's probe routines don't get confused
1766  * by errant DMAs when rebooting.
1767  */
1768 static int
1769 my_shutdown(device_t dev)
1770 {
1771         struct my_softc *sc;
1772
1773         sc = device_get_softc(dev);
1774         MY_LOCK(sc);
1775         my_stop(sc);
1776         MY_UNLOCK(sc);
1777         return 0;
1778 }