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