ALTQ support.
[dragonfly.git] / sys / dev / netif / ti / if_ti.c
1 /*
2  * Copyright (c) 1997, 1998, 1999
3  *      Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by Bill Paul.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * $FreeBSD: src/sys/pci/if_ti.c,v 1.25.2.14 2002/02/15 04:20:20 silby Exp $
33  * $DragonFly: src/sys/dev/netif/ti/if_ti.c,v 1.17 2005/02/20 05:45:38 joerg Exp $
34  *
35  * $FreeBSD: src/sys/pci/if_ti.c,v 1.25.2.14 2002/02/15 04:20:20 silby Exp $
36  */
37
38 /*
39  * Alteon Networks Tigon PCI gigabit ethernet driver for FreeBSD.
40  * Manuals, sample driver and firmware source kits are available
41  * from http://www.alteon.com/support/openkits.
42  * 
43  * Written by Bill Paul <wpaul@ctr.columbia.edu>
44  * Electrical Engineering Department
45  * Columbia University, New York City
46  */
47
48 /*
49  * The Alteon Networks Tigon chip contains an embedded R4000 CPU,
50  * gigabit MAC, dual DMA channels and a PCI interface unit. NICs
51  * using the Tigon may have anywhere from 512K to 2MB of SRAM. The
52  * Tigon supports hardware IP, TCP and UCP checksumming, multicast
53  * filtering and jumbo (9014 byte) frames. The hardware is largely
54  * controlled by firmware, which must be loaded into the NIC during
55  * initialization.
56  *
57  * The Tigon 2 contains 2 R4000 CPUs and requires a newer firmware
58  * revision, which supports new features such as extended commands,
59  * extended jumbo receive ring desciptors and a mini receive ring.
60  *
61  * Alteon Networks is to be commended for releasing such a vast amount
62  * of development material for the Tigon NIC without requiring an NDA
63  * (although they really should have done it a long time ago). With
64  * any luck, the other vendors will finally wise up and follow Alteon's
65  * stellar example.
66  *
67  * The firmware for the Tigon 1 and 2 NICs is compiled directly into
68  * this driver by #including it as a C header file. This bloats the
69  * driver somewhat, but it's the easiest method considering that the
70  * driver code and firmware code need to be kept in sync. The source
71  * for the firmware is not provided with the FreeBSD distribution since
72  * compiling it requires a GNU toolchain targeted for mips-sgi-irix5.3.
73  *
74  * The following people deserve special thanks:
75  * - Terry Murphy of 3Com, for providing a 3c985 Tigon 1 board
76  *   for testing
77  * - Raymond Lee of Netgear, for providing a pair of Netgear
78  *   GA620 Tigon 2 boards for testing
79  * - Ulf Zimmermann, for bringing the GA260 to my attention and
80  *   convincing me to write this driver.
81  * - Andrew Gallatin for providing FreeBSD/Alpha support.
82  */
83
84 #include <sys/param.h>
85 #include <sys/systm.h>
86 #include <sys/sockio.h>
87 #include <sys/mbuf.h>
88 #include <sys/malloc.h>
89 #include <sys/kernel.h>
90 #include <sys/socket.h>
91 #include <sys/queue.h>
92
93 #include <net/if.h>
94 #include <net/ifq_var.h>
95 #include <net/if_arp.h>
96 #include <net/ethernet.h>
97 #include <net/if_dl.h>
98 #include <net/if_media.h>
99 #include <net/if_types.h>
100 #include <net/vlan/if_vlan_var.h>
101
102 #include <net/bpf.h>
103
104 #include <netinet/in_systm.h>
105 #include <netinet/in.h>
106 #include <netinet/ip.h>
107
108 #include <vm/vm.h>              /* for vtophys */
109 #include <vm/pmap.h>            /* for vtophys */
110 #include <machine/clock.h>      /* for DELAY */
111 #include <machine/bus_memio.h>
112 #include <machine/bus.h>
113 #include <machine/resource.h>
114 #include <sys/bus.h>
115 #include <sys/rman.h>
116
117 #include <bus/pci/pcireg.h>
118 #include <bus/pci/pcivar.h>
119
120 #include "if_tireg.h"
121 #include "ti_fw.h"
122 #include "ti_fw2.h"
123
124 /*
125  * Temporarily disable the checksum offload support for now.
126  * Tests with ftp.freesoftware.com show that after about 12 hours,
127  * the firmware will begin calculating completely bogus TX checksums
128  * and refuse to stop until the interface is reset. Unfortunately,
129  * there isn't enough time to fully debug this before the 4.1
130  * release, so this will need to stay off for now.
131  */
132 #ifdef notdef
133 #define TI_CSUM_FEATURES        (CSUM_IP | CSUM_TCP | CSUM_UDP | CSUM_IP_FRAGS)
134 #else
135 #define TI_CSUM_FEATURES        0
136 #endif
137
138 /*
139  * Various supported device vendors/types and their names.
140  */
141
142 static struct ti_type ti_devs[] = {
143         { ALT_VENDORID, ALT_DEVICEID_ACENIC,
144                 "Alteon AceNIC 1000baseSX Gigabit Ethernet" },
145         { ALT_VENDORID, ALT_DEVICEID_ACENIC_COPPER,
146                 "Alteon AceNIC 1000baseT Gigabit Ethernet" },
147         { TC_VENDORID,  TC_DEVICEID_3C985,
148                 "3Com 3c985-SX Gigabit Ethernet" },
149         { NG_VENDORID, NG_DEVICEID_GA620,
150                 "Netgear GA620 1000baseSX Gigabit Ethernet" },
151         { NG_VENDORID, NG_DEVICEID_GA620T,
152                 "Netgear GA620 1000baseT Gigabit Ethernet" },
153         { SGI_VENDORID, SGI_DEVICEID_TIGON,
154                 "Silicon Graphics Gigabit Ethernet" },
155         { DEC_VENDORID, DEC_DEVICEID_FARALLON_PN9000SX,
156                 "Farallon PN9000SX Gigabit Ethernet" },
157         { 0, 0, NULL }
158 };
159
160 static int ti_probe             (device_t);
161 static int ti_attach            (device_t);
162 static int ti_detach            (device_t);
163 static void ti_txeof            (struct ti_softc *);
164 static void ti_rxeof            (struct ti_softc *);
165
166 static void ti_stats_update     (struct ti_softc *);
167 static int ti_encap             (struct ti_softc *, struct mbuf *,
168                                         u_int32_t *);
169
170 static void ti_intr             (void *);
171 static void ti_start            (struct ifnet *);
172 static int ti_ioctl             (struct ifnet *, u_long, caddr_t,
173                                         struct ucred *);
174 static void ti_init             (void *);
175 static void ti_init2            (struct ti_softc *);
176 static void ti_stop             (struct ti_softc *);
177 static void ti_watchdog         (struct ifnet *);
178 static void ti_shutdown         (device_t);
179 static int ti_ifmedia_upd       (struct ifnet *);
180 static void ti_ifmedia_sts      (struct ifnet *, struct ifmediareq *);
181
182 static u_int32_t ti_eeprom_putbyte      (struct ti_softc *, int);
183 static u_int8_t ti_eeprom_getbyte       (struct ti_softc *,
184                                                 int, u_int8_t *);
185 static int ti_read_eeprom       (struct ti_softc *, caddr_t, int, int);
186
187 static void ti_add_mcast        (struct ti_softc *, struct ether_addr *);
188 static void ti_del_mcast        (struct ti_softc *, struct ether_addr *);
189 static void ti_setmulti         (struct ti_softc *);
190
191 static void ti_mem              (struct ti_softc *, u_int32_t,
192                                         u_int32_t, caddr_t);
193 static void ti_loadfw           (struct ti_softc *);
194 static void ti_cmd              (struct ti_softc *, struct ti_cmd_desc *);
195 static void ti_cmd_ext          (struct ti_softc *, struct ti_cmd_desc *,
196                                         caddr_t, int);
197 static void ti_handle_events    (struct ti_softc *);
198 static int ti_alloc_jumbo_mem   (struct ti_softc *);
199 static void *ti_jalloc          (struct ti_softc *);
200 static void ti_jfree            (caddr_t, u_int);
201 static void ti_jref             (caddr_t, u_int);
202 static int ti_newbuf_std        (struct ti_softc *, int, struct mbuf *);
203 static int ti_newbuf_mini       (struct ti_softc *, int, struct mbuf *);
204 static int ti_newbuf_jumbo      (struct ti_softc *, int, struct mbuf *);
205 static int ti_init_rx_ring_std  (struct ti_softc *);
206 static void ti_free_rx_ring_std (struct ti_softc *);
207 static int ti_init_rx_ring_jumbo        (struct ti_softc *);
208 static void ti_free_rx_ring_jumbo       (struct ti_softc *);
209 static int ti_init_rx_ring_mini (struct ti_softc *);
210 static void ti_free_rx_ring_mini        (struct ti_softc *);
211 static void ti_free_tx_ring     (struct ti_softc *);
212 static int ti_init_tx_ring      (struct ti_softc *);
213
214 static int ti_64bitslot_war     (struct ti_softc *);
215 static int ti_chipinit          (struct ti_softc *);
216 static int ti_gibinit           (struct ti_softc *);
217
218 static device_method_t ti_methods[] = {
219         /* Device interface */
220         DEVMETHOD(device_probe,         ti_probe),
221         DEVMETHOD(device_attach,        ti_attach),
222         DEVMETHOD(device_detach,        ti_detach),
223         DEVMETHOD(device_shutdown,      ti_shutdown),
224         { 0, 0 }
225 };
226
227 static driver_t ti_driver = {
228         "ti",
229         ti_methods,
230         sizeof(struct ti_softc)
231 };
232
233 static devclass_t ti_devclass;
234
235 DECLARE_DUMMY_MODULE(if_ti);
236 DRIVER_MODULE(if_ti, pci, ti_driver, ti_devclass, 0, 0);
237
238 /*
239  * Send an instruction or address to the EEPROM, check for ACK.
240  */
241 static u_int32_t ti_eeprom_putbyte(sc, byte)
242         struct ti_softc         *sc;
243         int                     byte;
244 {
245         int             i, ack = 0;
246
247         /*
248          * Make sure we're in TX mode.
249          */
250         TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_TXEN);
251
252         /*
253          * Feed in each bit and stobe the clock.
254          */
255         for (i = 0x80; i; i >>= 1) {
256                 if (byte & i) {
257                         TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_DOUT);
258                 } else {
259                         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_DOUT);
260                 }
261                 DELAY(1);
262                 TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
263                 DELAY(1);
264                 TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
265         }
266
267         /*
268          * Turn off TX mode.
269          */
270         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_TXEN);
271
272         /*
273          * Check for ack.
274          */
275         TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
276         ack = CSR_READ_4(sc, TI_MISC_LOCAL_CTL) & TI_MLC_EE_DIN;
277         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
278
279         return(ack);
280 }
281
282 /*
283  * Read a byte of data stored in the EEPROM at address 'addr.'
284  * We have to send two address bytes since the EEPROM can hold
285  * more than 256 bytes of data.
286  */
287 static u_int8_t ti_eeprom_getbyte(sc, addr, dest)
288         struct ti_softc         *sc;
289         int                     addr;
290         u_int8_t                *dest;
291 {
292         int             i;
293         u_int8_t                byte = 0;
294
295         EEPROM_START;
296
297         /*
298          * Send write control code to EEPROM.
299          */
300         if (ti_eeprom_putbyte(sc, EEPROM_CTL_WRITE)) {
301                 printf("ti%d: failed to send write command, status: %x\n",
302                     sc->ti_unit, CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
303                 return(1);
304         }
305
306         /*
307          * Send first byte of address of byte we want to read.
308          */
309         if (ti_eeprom_putbyte(sc, (addr >> 8) & 0xFF)) {
310                 printf("ti%d: failed to send address, status: %x\n",
311                     sc->ti_unit, CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
312                 return(1);
313         }
314         /*
315          * Send second byte address of byte we want to read.
316          */
317         if (ti_eeprom_putbyte(sc, addr & 0xFF)) {
318                 printf("ti%d: failed to send address, status: %x\n",
319                     sc->ti_unit, CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
320                 return(1);
321         }
322
323         EEPROM_STOP;
324         EEPROM_START;
325         /*
326          * Send read control code to EEPROM.
327          */
328         if (ti_eeprom_putbyte(sc, EEPROM_CTL_READ)) {
329                 printf("ti%d: failed to send read command, status: %x\n",
330                     sc->ti_unit, CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
331                 return(1);
332         }
333
334         /*
335          * Start reading bits from EEPROM.
336          */
337         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_TXEN);
338         for (i = 0x80; i; i >>= 1) {
339                 TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
340                 DELAY(1);
341                 if (CSR_READ_4(sc, TI_MISC_LOCAL_CTL) & TI_MLC_EE_DIN)
342                         byte |= i;
343                 TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
344                 DELAY(1);
345         }
346
347         EEPROM_STOP;
348
349         /*
350          * No ACK generated for read, so just return byte.
351          */
352
353         *dest = byte;
354
355         return(0);
356 }
357
358 /*
359  * Read a sequence of bytes from the EEPROM.
360  */
361 static int ti_read_eeprom(sc, dest, off, cnt)
362         struct ti_softc         *sc;
363         caddr_t                 dest;
364         int                     off;
365         int                     cnt;
366 {
367         int                     err = 0, i;
368         u_int8_t                byte = 0;
369
370         for (i = 0; i < cnt; i++) {
371                 err = ti_eeprom_getbyte(sc, off + i, &byte);
372                 if (err)
373                         break;
374                 *(dest + i) = byte;
375         }
376
377         return(err ? 1 : 0);
378 }
379
380 /*
381  * NIC memory access function. Can be used to either clear a section
382  * of NIC local memory or (if buf is non-NULL) copy data into it.
383  */
384 static void ti_mem(sc, addr, len, buf)
385         struct ti_softc         *sc;
386         u_int32_t               addr, len;
387         caddr_t                 buf;
388 {
389         int                     segptr, segsize, cnt;
390         caddr_t                 ti_winbase, ptr;
391
392         segptr = addr;
393         cnt = len;
394         ti_winbase = (caddr_t)(sc->ti_vhandle + TI_WINDOW);
395         ptr = buf;
396
397         while(cnt) {
398                 if (cnt < TI_WINLEN)
399                         segsize = cnt;
400                 else
401                         segsize = TI_WINLEN - (segptr % TI_WINLEN);
402                 CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1)));
403                 if (buf == NULL)
404                         bzero((char *)ti_winbase + (segptr &
405                             (TI_WINLEN - 1)), segsize);
406                 else {
407                         bcopy((char *)ptr, (char *)ti_winbase +
408                             (segptr & (TI_WINLEN - 1)), segsize);
409                         ptr += segsize;
410                 }
411                 segptr += segsize;
412                 cnt -= segsize;
413         }
414
415         return;
416 }
417
418 /*
419  * Load firmware image into the NIC. Check that the firmware revision
420  * is acceptable and see if we want the firmware for the Tigon 1 or
421  * Tigon 2.
422  */
423 static void ti_loadfw(sc)
424         struct ti_softc         *sc;
425 {
426         switch(sc->ti_hwrev) {
427         case TI_HWREV_TIGON:
428                 if (tigonFwReleaseMajor != TI_FIRMWARE_MAJOR ||
429                     tigonFwReleaseMinor != TI_FIRMWARE_MINOR ||
430                     tigonFwReleaseFix != TI_FIRMWARE_FIX) {
431                         printf("ti%d: firmware revision mismatch; want "
432                             "%d.%d.%d, got %d.%d.%d\n", sc->ti_unit,
433                             TI_FIRMWARE_MAJOR, TI_FIRMWARE_MINOR,
434                             TI_FIRMWARE_FIX, tigonFwReleaseMajor,
435                             tigonFwReleaseMinor, tigonFwReleaseFix);
436                         return;
437                 }
438                 ti_mem(sc, tigonFwTextAddr, tigonFwTextLen,
439                     (caddr_t)tigonFwText);
440                 ti_mem(sc, tigonFwDataAddr, tigonFwDataLen,
441                     (caddr_t)tigonFwData);
442                 ti_mem(sc, tigonFwRodataAddr, tigonFwRodataLen,
443                     (caddr_t)tigonFwRodata);
444                 ti_mem(sc, tigonFwBssAddr, tigonFwBssLen, NULL);
445                 ti_mem(sc, tigonFwSbssAddr, tigonFwSbssLen, NULL);
446                 CSR_WRITE_4(sc, TI_CPU_PROGRAM_COUNTER, tigonFwStartAddr);
447                 break;
448         case TI_HWREV_TIGON_II:
449                 if (tigon2FwReleaseMajor != TI_FIRMWARE_MAJOR ||
450                     tigon2FwReleaseMinor != TI_FIRMWARE_MINOR ||
451                     tigon2FwReleaseFix != TI_FIRMWARE_FIX) {
452                         printf("ti%d: firmware revision mismatch; want "
453                             "%d.%d.%d, got %d.%d.%d\n", sc->ti_unit,
454                             TI_FIRMWARE_MAJOR, TI_FIRMWARE_MINOR,
455                             TI_FIRMWARE_FIX, tigon2FwReleaseMajor,
456                             tigon2FwReleaseMinor, tigon2FwReleaseFix);
457                         return;
458                 }
459                 ti_mem(sc, tigon2FwTextAddr, tigon2FwTextLen,
460                     (caddr_t)tigon2FwText);
461                 ti_mem(sc, tigon2FwDataAddr, tigon2FwDataLen,
462                     (caddr_t)tigon2FwData);
463                 ti_mem(sc, tigon2FwRodataAddr, tigon2FwRodataLen,
464                     (caddr_t)tigon2FwRodata);
465                 ti_mem(sc, tigon2FwBssAddr, tigon2FwBssLen, NULL);
466                 ti_mem(sc, tigon2FwSbssAddr, tigon2FwSbssLen, NULL);
467                 CSR_WRITE_4(sc, TI_CPU_PROGRAM_COUNTER, tigon2FwStartAddr);
468                 break;
469         default:
470                 printf("ti%d: can't load firmware: unknown hardware rev\n",
471                     sc->ti_unit);
472                 break;
473         }
474
475         return;
476 }
477
478 /*
479  * Send the NIC a command via the command ring.
480  */
481 static void ti_cmd(sc, cmd)
482         struct ti_softc         *sc;
483         struct ti_cmd_desc      *cmd;
484 {
485         u_int32_t               index;
486
487         if (sc->ti_rdata->ti_cmd_ring == NULL)
488                 return;
489
490         index = sc->ti_cmd_saved_prodidx;
491         CSR_WRITE_4(sc, TI_GCR_CMDRING + (index * 4), *(u_int32_t *)(cmd));
492         TI_INC(index, TI_CMD_RING_CNT);
493         CSR_WRITE_4(sc, TI_MB_CMDPROD_IDX, index);
494         sc->ti_cmd_saved_prodidx = index;
495
496         return;
497 }
498
499 /*
500  * Send the NIC an extended command. The 'len' parameter specifies the
501  * number of command slots to include after the initial command.
502  */
503 static void ti_cmd_ext(sc, cmd, arg, len)
504         struct ti_softc         *sc;
505         struct ti_cmd_desc      *cmd;
506         caddr_t                 arg;
507         int                     len;
508 {
509         u_int32_t               index;
510         int             i;
511
512         if (sc->ti_rdata->ti_cmd_ring == NULL)
513                 return;
514
515         index = sc->ti_cmd_saved_prodidx;
516         CSR_WRITE_4(sc, TI_GCR_CMDRING + (index * 4), *(u_int32_t *)(cmd));
517         TI_INC(index, TI_CMD_RING_CNT);
518         for (i = 0; i < len; i++) {
519                 CSR_WRITE_4(sc, TI_GCR_CMDRING + (index * 4),
520                     *(u_int32_t *)(&arg[i * 4]));
521                 TI_INC(index, TI_CMD_RING_CNT);
522         }
523         CSR_WRITE_4(sc, TI_MB_CMDPROD_IDX, index);
524         sc->ti_cmd_saved_prodidx = index;
525
526         return;
527 }
528
529 /*
530  * Handle events that have triggered interrupts.
531  */
532 static void ti_handle_events(sc)
533         struct ti_softc         *sc;
534 {
535         struct ti_event_desc    *e;
536
537         if (sc->ti_rdata->ti_event_ring == NULL)
538                 return;
539
540         while (sc->ti_ev_saved_considx != sc->ti_ev_prodidx.ti_idx) {
541                 e = &sc->ti_rdata->ti_event_ring[sc->ti_ev_saved_considx];
542                 switch(e->ti_event) {
543                 case TI_EV_LINKSTAT_CHANGED:
544                         sc->ti_linkstat = e->ti_code;
545                         if (e->ti_code == TI_EV_CODE_LINK_UP)
546                                 printf("ti%d: 10/100 link up\n", sc->ti_unit);
547                         else if (e->ti_code == TI_EV_CODE_GIG_LINK_UP)
548                                 printf("ti%d: gigabit link up\n", sc->ti_unit);
549                         else if (e->ti_code == TI_EV_CODE_LINK_DOWN)
550                                 printf("ti%d: link down\n", sc->ti_unit);
551                         break;
552                 case TI_EV_ERROR:
553                         if (e->ti_code == TI_EV_CODE_ERR_INVAL_CMD)
554                                 printf("ti%d: invalid command\n", sc->ti_unit);
555                         else if (e->ti_code == TI_EV_CODE_ERR_UNIMP_CMD)
556                                 printf("ti%d: unknown command\n", sc->ti_unit);
557                         else if (e->ti_code == TI_EV_CODE_ERR_BADCFG)
558                                 printf("ti%d: bad config data\n", sc->ti_unit);
559                         break;
560                 case TI_EV_FIRMWARE_UP:
561                         ti_init2(sc);
562                         break;
563                 case TI_EV_STATS_UPDATED:
564                         ti_stats_update(sc);
565                         break;
566                 case TI_EV_RESET_JUMBO_RING:
567                 case TI_EV_MCAST_UPDATED:
568                         /* Who cares. */
569                         break;
570                 default:
571                         printf("ti%d: unknown event: %d\n",
572                             sc->ti_unit, e->ti_event);
573                         break;
574                 }
575                 /* Advance the consumer index. */
576                 TI_INC(sc->ti_ev_saved_considx, TI_EVENT_RING_CNT);
577                 CSR_WRITE_4(sc, TI_GCR_EVENTCONS_IDX, sc->ti_ev_saved_considx);
578         }
579
580         return;
581 }
582
583 /*
584  * Memory management for the jumbo receive ring is a pain in the
585  * butt. We need to allocate at least 9018 bytes of space per frame,
586  * _and_ it has to be contiguous (unless you use the extended
587  * jumbo descriptor format). Using malloc() all the time won't
588  * work: malloc() allocates memory in powers of two, which means we
589  * would end up wasting a considerable amount of space by allocating
590  * 9K chunks. We don't have a jumbo mbuf cluster pool. Thus, we have
591  * to do our own memory management.
592  *
593  * The driver needs to allocate a contiguous chunk of memory at boot
594  * time. We then chop this up ourselves into 9K pieces and use them
595  * as external mbuf storage.
596  *
597  * One issue here is how much memory to allocate. The jumbo ring has
598  * 256 slots in it, but at 9K per slot than can consume over 2MB of
599  * RAM. This is a bit much, especially considering we also need
600  * RAM for the standard ring and mini ring (on the Tigon 2). To
601  * save space, we only actually allocate enough memory for 64 slots
602  * by default, which works out to between 500 and 600K. This can
603  * be tuned by changing a #define in if_tireg.h.
604  */
605
606 static int ti_alloc_jumbo_mem(sc)
607         struct ti_softc         *sc;
608 {
609         caddr_t                 ptr;
610         int             i;
611         struct ti_jpool_entry   *entry;
612
613         /* Grab a big chunk o' storage. */
614         sc->ti_cdata.ti_jumbo_buf = contigmalloc(TI_JMEM, M_DEVBUF,
615                 M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
616
617         if (sc->ti_cdata.ti_jumbo_buf == NULL) {
618                 printf("ti%d: no memory for jumbo buffers!\n", sc->ti_unit);
619                 return(ENOBUFS);
620         }
621
622         SLIST_INIT(&sc->ti_jfree_listhead);
623         SLIST_INIT(&sc->ti_jinuse_listhead);
624
625         /*
626          * Now divide it up into 9K pieces and save the addresses
627          * in an array. Note that we play an evil trick here by using
628          * the first few bytes in the buffer to hold the the address
629          * of the softc structure for this interface. This is because
630          * ti_jfree() needs it, but it is called by the mbuf management
631          * code which will not pass it to us explicitly.
632          */
633         ptr = sc->ti_cdata.ti_jumbo_buf;
634         for (i = 0; i < TI_JSLOTS; i++) {
635                 u_int64_t               **aptr;
636                 aptr = (u_int64_t **)ptr;
637                 aptr[0] = (u_int64_t *)sc;
638                 ptr += sizeof(u_int64_t);
639                 sc->ti_cdata.ti_jslots[i].ti_buf = ptr;
640                 sc->ti_cdata.ti_jslots[i].ti_inuse = 0;
641                 ptr += (TI_JLEN - sizeof(u_int64_t));
642                 entry = malloc(sizeof(struct ti_jpool_entry), 
643                                M_DEVBUF, M_WAITOK);
644                 if (entry == NULL) {
645                         contigfree(sc->ti_cdata.ti_jumbo_buf, TI_JMEM,
646                                    M_DEVBUF);
647                         sc->ti_cdata.ti_jumbo_buf = NULL;
648                         printf("ti%d: no memory for jumbo "
649                             "buffer queue!\n", sc->ti_unit);
650                         return(ENOBUFS);
651                 }
652                 entry->slot = i;
653                 SLIST_INSERT_HEAD(&sc->ti_jfree_listhead, entry, jpool_entries);
654         }
655
656         return(0);
657 }
658
659 /*
660  * Allocate a jumbo buffer.
661  */
662 static void *ti_jalloc(sc)
663         struct ti_softc         *sc;
664 {
665         struct ti_jpool_entry   *entry;
666         
667         entry = SLIST_FIRST(&sc->ti_jfree_listhead);
668         
669         if (entry == NULL) {
670                 printf("ti%d: no free jumbo buffers\n", sc->ti_unit);
671                 return(NULL);
672         }
673
674         SLIST_REMOVE_HEAD(&sc->ti_jfree_listhead, jpool_entries);
675         SLIST_INSERT_HEAD(&sc->ti_jinuse_listhead, entry, jpool_entries);
676         sc->ti_cdata.ti_jslots[entry->slot].ti_inuse = 1;
677         return(sc->ti_cdata.ti_jslots[entry->slot].ti_buf);
678 }
679
680 /*
681  * Adjust usage count on a jumbo buffer. In general this doesn't
682  * get used much because our jumbo buffers don't get passed around
683  * too much, but it's implemented for correctness.
684  */
685 static void ti_jref(buf, size)
686         caddr_t                 buf;
687         u_int                   size;
688 {
689         struct ti_softc         *sc;
690         u_int64_t               **aptr;
691         int             i;
692
693         /* Extract the softc struct pointer. */
694         aptr = (u_int64_t **)(buf - sizeof(u_int64_t));
695         sc = (struct ti_softc *)(aptr[0]);
696
697         if (sc == NULL)
698                 panic("ti_jref: can't find softc pointer!");
699
700         if (size != TI_JUMBO_FRAMELEN)
701                 panic("ti_jref: adjusting refcount of buf of wrong size!");
702
703         /* calculate the slot this buffer belongs to */
704
705         i = ((vm_offset_t)aptr 
706              - (vm_offset_t)sc->ti_cdata.ti_jumbo_buf) / TI_JLEN;
707
708         if ((i < 0) || (i >= TI_JSLOTS))
709                 panic("ti_jref: asked to reference buffer "
710                     "that we don't manage!");
711         else if (sc->ti_cdata.ti_jslots[i].ti_inuse == 0)
712                 panic("ti_jref: buffer already free!");
713         else
714                 sc->ti_cdata.ti_jslots[i].ti_inuse++;
715
716         return;
717 }
718
719 /*
720  * Release a jumbo buffer.
721  */
722 static void ti_jfree(buf, size)
723         caddr_t                 buf;
724         u_int                   size;
725 {
726         struct ti_softc         *sc;
727         u_int64_t               **aptr;
728         int                     i;
729         struct ti_jpool_entry   *entry;
730
731         /* Extract the softc struct pointer. */
732         aptr = (u_int64_t **)(buf - sizeof(u_int64_t));
733         sc = (struct ti_softc *)(aptr[0]);
734
735         if (sc == NULL)
736                 panic("ti_jfree: can't find softc pointer!");
737
738         if (size != TI_JUMBO_FRAMELEN)
739                 panic("ti_jfree: freeing buffer of wrong size!");
740
741         /* calculate the slot this buffer belongs to */
742
743         i = ((vm_offset_t)aptr 
744              - (vm_offset_t)sc->ti_cdata.ti_jumbo_buf) / TI_JLEN;
745
746         if ((i < 0) || (i >= TI_JSLOTS))
747                 panic("ti_jfree: asked to free buffer that we don't manage!");
748         else if (sc->ti_cdata.ti_jslots[i].ti_inuse == 0)
749                 panic("ti_jfree: buffer already free!");
750         else {
751                 sc->ti_cdata.ti_jslots[i].ti_inuse--;
752                 if(sc->ti_cdata.ti_jslots[i].ti_inuse == 0) {
753                         entry = SLIST_FIRST(&sc->ti_jinuse_listhead);
754                         if (entry == NULL)
755                                 panic("ti_jfree: buffer not in use!");
756                         entry->slot = i;
757                         SLIST_REMOVE_HEAD(&sc->ti_jinuse_listhead, 
758                                           jpool_entries);
759                         SLIST_INSERT_HEAD(&sc->ti_jfree_listhead, 
760                                           entry, jpool_entries);
761                 }
762         }
763
764         return;
765 }
766
767
768 /*
769  * Intialize a standard receive ring descriptor.
770  */
771 static int ti_newbuf_std(sc, i, m)
772         struct ti_softc         *sc;
773         int                     i;
774         struct mbuf             *m;
775 {
776         struct mbuf             *m_new = NULL;
777         struct ti_rx_desc       *r;
778
779         if (m == NULL) {
780                 MGETHDR(m_new, MB_DONTWAIT, MT_DATA);
781                 if (m_new == NULL)
782                         return(ENOBUFS);
783
784                 MCLGET(m_new, MB_DONTWAIT);
785                 if (!(m_new->m_flags & M_EXT)) {
786                         m_freem(m_new);
787                         return(ENOBUFS);
788                 }
789                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
790         } else {
791                 m_new = m;
792                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
793                 m_new->m_data = m_new->m_ext.ext_buf;
794         }
795
796         m_adj(m_new, ETHER_ALIGN);
797         sc->ti_cdata.ti_rx_std_chain[i] = m_new;
798         r = &sc->ti_rdata->ti_rx_std_ring[i];
799         TI_HOSTADDR(r->ti_addr) = vtophys(mtod(m_new, caddr_t));
800         r->ti_type = TI_BDTYPE_RECV_BD;
801         r->ti_flags = 0;
802         if (sc->arpcom.ac_if.if_hwassist)
803                 r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM | TI_BDFLAG_IP_CKSUM;
804         r->ti_len = m_new->m_len;
805         r->ti_idx = i;
806
807         return(0);
808 }
809
810 /*
811  * Intialize a mini receive ring descriptor. This only applies to
812  * the Tigon 2.
813  */
814 static int ti_newbuf_mini(sc, i, m)
815         struct ti_softc         *sc;
816         int                     i;
817         struct mbuf             *m;
818 {
819         struct mbuf             *m_new = NULL;
820         struct ti_rx_desc       *r;
821
822         if (m == NULL) {
823                 MGETHDR(m_new, MB_DONTWAIT, MT_DATA);
824                 if (m_new == NULL) {
825                         return(ENOBUFS);
826                 }
827                 m_new->m_len = m_new->m_pkthdr.len = MHLEN;
828         } else {
829                 m_new = m;
830                 m_new->m_data = m_new->m_pktdat;
831                 m_new->m_len = m_new->m_pkthdr.len = MHLEN;
832         }
833
834         m_adj(m_new, ETHER_ALIGN);
835         r = &sc->ti_rdata->ti_rx_mini_ring[i];
836         sc->ti_cdata.ti_rx_mini_chain[i] = m_new;
837         TI_HOSTADDR(r->ti_addr) = vtophys(mtod(m_new, caddr_t));
838         r->ti_type = TI_BDTYPE_RECV_BD;
839         r->ti_flags = TI_BDFLAG_MINI_RING;
840         if (sc->arpcom.ac_if.if_hwassist)
841                 r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM | TI_BDFLAG_IP_CKSUM;
842         r->ti_len = m_new->m_len;
843         r->ti_idx = i;
844
845         return(0);
846 }
847
848 /*
849  * Initialize a jumbo receive ring descriptor. This allocates
850  * a jumbo buffer from the pool managed internally by the driver.
851  */
852 static int ti_newbuf_jumbo(sc, i, m)
853         struct ti_softc         *sc;
854         int                     i;
855         struct mbuf             *m;
856 {
857         struct mbuf             *m_new = NULL;
858         struct ti_rx_desc       *r;
859
860         if (m == NULL) {
861                 caddr_t                 *buf = NULL;
862
863                 /* Allocate the mbuf. */
864                 MGETHDR(m_new, MB_DONTWAIT, MT_DATA);
865                 if (m_new == NULL) {
866                         return(ENOBUFS);
867                 }
868
869                 /* Allocate the jumbo buffer */
870                 buf = ti_jalloc(sc);
871                 if (buf == NULL) {
872                         m_freem(m_new);
873                         printf("ti%d: jumbo allocation failed "
874                             "-- packet dropped!\n", sc->ti_unit);
875                         return(ENOBUFS);
876                 }
877
878                 /* Attach the buffer to the mbuf. */
879                 m_new->m_data = m_new->m_ext.ext_buf = (void *)buf;
880                 m_new->m_flags |= M_EXT | M_EXT_OLD;
881                 m_new->m_len = m_new->m_pkthdr.len =
882                     m_new->m_ext.ext_size = TI_JUMBO_FRAMELEN;
883                 m_new->m_ext.ext_nfree.old = ti_jfree;
884                 m_new->m_ext.ext_nref.old = ti_jref;
885         } else {
886                 m_new = m;
887                 m_new->m_data = m_new->m_ext.ext_buf;
888                 m_new->m_ext.ext_size = TI_JUMBO_FRAMELEN;
889         }
890
891         m_adj(m_new, ETHER_ALIGN);
892         /* Set up the descriptor. */
893         r = &sc->ti_rdata->ti_rx_jumbo_ring[i];
894         sc->ti_cdata.ti_rx_jumbo_chain[i] = m_new;
895         TI_HOSTADDR(r->ti_addr) = vtophys(mtod(m_new, caddr_t));
896         r->ti_type = TI_BDTYPE_RECV_JUMBO_BD;
897         r->ti_flags = TI_BDFLAG_JUMBO_RING;
898         if (sc->arpcom.ac_if.if_hwassist)
899                 r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM | TI_BDFLAG_IP_CKSUM;
900         r->ti_len = m_new->m_len;
901         r->ti_idx = i;
902
903         return(0);
904 }
905
906 /*
907  * The standard receive ring has 512 entries in it. At 2K per mbuf cluster,
908  * that's 1MB or memory, which is a lot. For now, we fill only the first
909  * 256 ring entries and hope that our CPU is fast enough to keep up with
910  * the NIC.
911  */
912 static int ti_init_rx_ring_std(sc)
913         struct ti_softc         *sc;
914 {
915         int             i;
916         struct ti_cmd_desc      cmd;
917
918         for (i = 0; i < TI_SSLOTS; i++) {
919                 if (ti_newbuf_std(sc, i, NULL) == ENOBUFS)
920                         return(ENOBUFS);
921         };
922
923         TI_UPDATE_STDPROD(sc, i - 1);
924         sc->ti_std = i - 1;
925
926         return(0);
927 }
928
929 static void ti_free_rx_ring_std(sc)
930         struct ti_softc         *sc;
931 {
932         int             i;
933
934         for (i = 0; i < TI_STD_RX_RING_CNT; i++) {
935                 if (sc->ti_cdata.ti_rx_std_chain[i] != NULL) {
936                         m_freem(sc->ti_cdata.ti_rx_std_chain[i]);
937                         sc->ti_cdata.ti_rx_std_chain[i] = NULL;
938                 }
939                 bzero((char *)&sc->ti_rdata->ti_rx_std_ring[i],
940                     sizeof(struct ti_rx_desc));
941         }
942
943         return;
944 }
945
946 static int ti_init_rx_ring_jumbo(sc)
947         struct ti_softc         *sc;
948 {
949         int             i;
950         struct ti_cmd_desc      cmd;
951
952         for (i = 0; i < TI_JUMBO_RX_RING_CNT; i++) {
953                 if (ti_newbuf_jumbo(sc, i, NULL) == ENOBUFS)
954                         return(ENOBUFS);
955         };
956
957         TI_UPDATE_JUMBOPROD(sc, i - 1);
958         sc->ti_jumbo = i - 1;
959
960         return(0);
961 }
962
963 static void ti_free_rx_ring_jumbo(sc)
964         struct ti_softc         *sc;
965 {
966         int             i;
967
968         for (i = 0; i < TI_JUMBO_RX_RING_CNT; i++) {
969                 if (sc->ti_cdata.ti_rx_jumbo_chain[i] != NULL) {
970                         m_freem(sc->ti_cdata.ti_rx_jumbo_chain[i]);
971                         sc->ti_cdata.ti_rx_jumbo_chain[i] = NULL;
972                 }
973                 bzero((char *)&sc->ti_rdata->ti_rx_jumbo_ring[i],
974                     sizeof(struct ti_rx_desc));
975         }
976
977         return;
978 }
979
980 static int ti_init_rx_ring_mini(sc)
981         struct ti_softc         *sc;
982 {
983         int             i;
984
985         for (i = 0; i < TI_MSLOTS; i++) {
986                 if (ti_newbuf_mini(sc, i, NULL) == ENOBUFS)
987                         return(ENOBUFS);
988         };
989
990         TI_UPDATE_MINIPROD(sc, i - 1);
991         sc->ti_mini = i - 1;
992
993         return(0);
994 }
995
996 static void ti_free_rx_ring_mini(sc)
997         struct ti_softc         *sc;
998 {
999         int             i;
1000
1001         for (i = 0; i < TI_MINI_RX_RING_CNT; i++) {
1002                 if (sc->ti_cdata.ti_rx_mini_chain[i] != NULL) {
1003                         m_freem(sc->ti_cdata.ti_rx_mini_chain[i]);
1004                         sc->ti_cdata.ti_rx_mini_chain[i] = NULL;
1005                 }
1006                 bzero((char *)&sc->ti_rdata->ti_rx_mini_ring[i],
1007                     sizeof(struct ti_rx_desc));
1008         }
1009
1010         return;
1011 }
1012
1013 static void ti_free_tx_ring(sc)
1014         struct ti_softc         *sc;
1015 {
1016         int             i;
1017
1018         if (sc->ti_rdata->ti_tx_ring == NULL)
1019                 return;
1020
1021         for (i = 0; i < TI_TX_RING_CNT; i++) {
1022                 if (sc->ti_cdata.ti_tx_chain[i] != NULL) {
1023                         m_freem(sc->ti_cdata.ti_tx_chain[i]);
1024                         sc->ti_cdata.ti_tx_chain[i] = NULL;
1025                 }
1026                 bzero((char *)&sc->ti_rdata->ti_tx_ring[i],
1027                     sizeof(struct ti_tx_desc));
1028         }
1029
1030         return;
1031 }
1032
1033 static int ti_init_tx_ring(sc)
1034         struct ti_softc         *sc;
1035 {
1036         sc->ti_txcnt = 0;
1037         sc->ti_tx_saved_considx = 0;
1038         CSR_WRITE_4(sc, TI_MB_SENDPROD_IDX, 0);
1039         return(0);
1040 }
1041
1042 /*
1043  * The Tigon 2 firmware has a new way to add/delete multicast addresses,
1044  * but we have to support the old way too so that Tigon 1 cards will
1045  * work.
1046  */
1047 void ti_add_mcast(sc, addr)
1048         struct ti_softc         *sc;
1049         struct ether_addr       *addr;
1050 {
1051         struct ti_cmd_desc      cmd;
1052         u_int16_t               *m;
1053         u_int32_t               ext[2] = {0, 0};
1054
1055         m = (u_int16_t *)&addr->octet[0];
1056
1057         switch(sc->ti_hwrev) {
1058         case TI_HWREV_TIGON:
1059                 CSR_WRITE_4(sc, TI_GCR_MAR0, htons(m[0]));
1060                 CSR_WRITE_4(sc, TI_GCR_MAR1, (htons(m[1]) << 16) | htons(m[2]));
1061                 TI_DO_CMD(TI_CMD_ADD_MCAST_ADDR, 0, 0);
1062                 break;
1063         case TI_HWREV_TIGON_II:
1064                 ext[0] = htons(m[0]);
1065                 ext[1] = (htons(m[1]) << 16) | htons(m[2]);
1066                 TI_DO_CMD_EXT(TI_CMD_EXT_ADD_MCAST, 0, 0, (caddr_t)&ext, 2);
1067                 break;
1068         default:
1069                 printf("ti%d: unknown hwrev\n", sc->ti_unit);
1070                 break;
1071         }
1072
1073         return;
1074 }
1075
1076 void ti_del_mcast(sc, addr)
1077         struct ti_softc         *sc;
1078         struct ether_addr       *addr;
1079 {
1080         struct ti_cmd_desc      cmd;
1081         u_int16_t               *m;
1082         u_int32_t               ext[2] = {0, 0};
1083
1084         m = (u_int16_t *)&addr->octet[0];
1085
1086         switch(sc->ti_hwrev) {
1087         case TI_HWREV_TIGON:
1088                 CSR_WRITE_4(sc, TI_GCR_MAR0, htons(m[0]));
1089                 CSR_WRITE_4(sc, TI_GCR_MAR1, (htons(m[1]) << 16) | htons(m[2]));
1090                 TI_DO_CMD(TI_CMD_DEL_MCAST_ADDR, 0, 0);
1091                 break;
1092         case TI_HWREV_TIGON_II:
1093                 ext[0] = htons(m[0]);
1094                 ext[1] = (htons(m[1]) << 16) | htons(m[2]);
1095                 TI_DO_CMD_EXT(TI_CMD_EXT_DEL_MCAST, 0, 0, (caddr_t)&ext, 2);
1096                 break;
1097         default:
1098                 printf("ti%d: unknown hwrev\n", sc->ti_unit);
1099                 break;
1100         }
1101
1102         return;
1103 }
1104
1105 /*
1106  * Configure the Tigon's multicast address filter.
1107  *
1108  * The actual multicast table management is a bit of a pain, thanks to
1109  * slight brain damage on the part of both Alteon and us. With our
1110  * multicast code, we are only alerted when the multicast address table
1111  * changes and at that point we only have the current list of addresses:
1112  * we only know the current state, not the previous state, so we don't
1113  * actually know what addresses were removed or added. The firmware has
1114  * state, but we can't get our grubby mits on it, and there is no 'delete
1115  * all multicast addresses' command. Hence, we have to maintain our own
1116  * state so we know what addresses have been programmed into the NIC at
1117  * any given time.
1118  */
1119 static void ti_setmulti(sc)
1120         struct ti_softc         *sc;
1121 {
1122         struct ifnet            *ifp;
1123         struct ifmultiaddr      *ifma;
1124         struct ti_cmd_desc      cmd;
1125         struct ti_mc_entry      *mc;
1126         u_int32_t               intrs;
1127
1128         ifp = &sc->arpcom.ac_if;
1129
1130         if (ifp->if_flags & IFF_ALLMULTI) {
1131                 TI_DO_CMD(TI_CMD_SET_ALLMULTI, TI_CMD_CODE_ALLMULTI_ENB, 0);
1132                 return;
1133         } else {
1134                 TI_DO_CMD(TI_CMD_SET_ALLMULTI, TI_CMD_CODE_ALLMULTI_DIS, 0);
1135         }
1136
1137         /* Disable interrupts. */
1138         intrs = CSR_READ_4(sc, TI_MB_HOSTINTR);
1139         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
1140
1141         /* First, zot all the existing filters. */
1142         while (sc->ti_mc_listhead.slh_first != NULL) {
1143                 mc = sc->ti_mc_listhead.slh_first;
1144                 ti_del_mcast(sc, &mc->mc_addr);
1145                 SLIST_REMOVE_HEAD(&sc->ti_mc_listhead, mc_entries);
1146                 free(mc, M_DEVBUF);
1147         }
1148
1149         /* Now program new ones. */
1150         for (ifma = ifp->if_multiaddrs.lh_first;
1151             ifma != NULL; ifma = ifma->ifma_link.le_next) {
1152                 if (ifma->ifma_addr->sa_family != AF_LINK)
1153                         continue;
1154                 mc = malloc(sizeof(struct ti_mc_entry), M_DEVBUF, M_INTWAIT);
1155                 bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
1156                     (char *)&mc->mc_addr, ETHER_ADDR_LEN);
1157                 SLIST_INSERT_HEAD(&sc->ti_mc_listhead, mc, mc_entries);
1158                 ti_add_mcast(sc, &mc->mc_addr);
1159         }
1160
1161         /* Re-enable interrupts. */
1162         CSR_WRITE_4(sc, TI_MB_HOSTINTR, intrs);
1163
1164         return;
1165 }
1166
1167 /*
1168  * Check to see if the BIOS has configured us for a 64 bit slot when
1169  * we aren't actually in one. If we detect this condition, we can work
1170  * around it on the Tigon 2 by setting a bit in the PCI state register,
1171  * but for the Tigon 1 we must give up and abort the interface attach.
1172  */
1173 static int ti_64bitslot_war(sc)
1174         struct ti_softc         *sc;
1175 {
1176         if (!(CSR_READ_4(sc, TI_PCI_STATE) & TI_PCISTATE_32BIT_BUS)) {
1177                 CSR_WRITE_4(sc, 0x600, 0);
1178                 CSR_WRITE_4(sc, 0x604, 0);
1179                 CSR_WRITE_4(sc, 0x600, 0x5555AAAA);
1180                 if (CSR_READ_4(sc, 0x604) == 0x5555AAAA) {
1181                         if (sc->ti_hwrev == TI_HWREV_TIGON)
1182                                 return(EINVAL);
1183                         else {
1184                                 TI_SETBIT(sc, TI_PCI_STATE,
1185                                     TI_PCISTATE_32BIT_BUS);
1186                                 return(0);
1187                         }
1188                 }
1189         }
1190
1191         return(0);
1192 }
1193
1194 /*
1195  * Do endian, PCI and DMA initialization. Also check the on-board ROM
1196  * self-test results.
1197  */
1198 static int ti_chipinit(sc)
1199         struct ti_softc         *sc;
1200 {
1201         u_int32_t               cacheline;
1202         u_int32_t               pci_writemax = 0;
1203
1204         /* Initialize link to down state. */
1205         sc->ti_linkstat = TI_EV_CODE_LINK_DOWN;
1206
1207         if (sc->arpcom.ac_if.if_capenable & IFCAP_HWCSUM)
1208                 sc->arpcom.ac_if.if_hwassist = TI_CSUM_FEATURES;
1209         else
1210                 sc->arpcom.ac_if.if_hwassist = 0;
1211
1212         /* Set endianness before we access any non-PCI registers. */
1213 #if BYTE_ORDER == BIG_ENDIAN
1214         CSR_WRITE_4(sc, TI_MISC_HOST_CTL,
1215             TI_MHC_BIGENDIAN_INIT | (TI_MHC_BIGENDIAN_INIT << 24));
1216 #else
1217         CSR_WRITE_4(sc, TI_MISC_HOST_CTL,
1218             TI_MHC_LITTLEENDIAN_INIT | (TI_MHC_LITTLEENDIAN_INIT << 24));
1219 #endif
1220
1221         /* Check the ROM failed bit to see if self-tests passed. */
1222         if (CSR_READ_4(sc, TI_CPU_STATE) & TI_CPUSTATE_ROMFAIL) {
1223                 printf("ti%d: board self-diagnostics failed!\n", sc->ti_unit);
1224                 return(ENODEV);
1225         }
1226
1227         /* Halt the CPU. */
1228         TI_SETBIT(sc, TI_CPU_STATE, TI_CPUSTATE_HALT);
1229
1230         /* Figure out the hardware revision. */
1231         switch(CSR_READ_4(sc, TI_MISC_HOST_CTL) & TI_MHC_CHIP_REV_MASK) {
1232         case TI_REV_TIGON_I:
1233                 sc->ti_hwrev = TI_HWREV_TIGON;
1234                 break;
1235         case TI_REV_TIGON_II:
1236                 sc->ti_hwrev = TI_HWREV_TIGON_II;
1237                 break;
1238         default:
1239                 printf("ti%d: unsupported chip revision\n", sc->ti_unit);
1240                 return(ENODEV);
1241         }
1242
1243         /* Do special setup for Tigon 2. */
1244         if (sc->ti_hwrev == TI_HWREV_TIGON_II) {
1245                 TI_SETBIT(sc, TI_CPU_CTL_B, TI_CPUSTATE_HALT);
1246                 TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_SRAM_BANK_512K);
1247                 TI_SETBIT(sc, TI_MISC_CONF, TI_MCR_SRAM_SYNCHRONOUS);
1248         }
1249
1250         /* Set up the PCI state register. */
1251         CSR_WRITE_4(sc, TI_PCI_STATE, TI_PCI_READ_CMD|TI_PCI_WRITE_CMD);
1252         if (sc->ti_hwrev == TI_HWREV_TIGON_II) {
1253                 TI_SETBIT(sc, TI_PCI_STATE, TI_PCISTATE_USE_MEM_RD_MULT);
1254         }
1255
1256         /* Clear the read/write max DMA parameters. */
1257         TI_CLRBIT(sc, TI_PCI_STATE, (TI_PCISTATE_WRITE_MAXDMA|
1258             TI_PCISTATE_READ_MAXDMA));
1259
1260         /* Get cache line size. */
1261         cacheline = CSR_READ_4(sc, TI_PCI_BIST) & 0xFF;
1262
1263         /*
1264          * If the system has set enabled the PCI memory write
1265          * and invalidate command in the command register, set
1266          * the write max parameter accordingly. This is necessary
1267          * to use MWI with the Tigon 2.
1268          */
1269         if (CSR_READ_4(sc, TI_PCI_CMDSTAT) & PCIM_CMD_MWIEN) {
1270                 switch(cacheline) {
1271                 case 1:
1272                 case 4:
1273                 case 8:
1274                 case 16:
1275                 case 32:
1276                 case 64:
1277                         break;
1278                 default:
1279                 /* Disable PCI memory write and invalidate. */
1280                         if (bootverbose)
1281                                 printf("ti%d: cache line size %d not "
1282                                     "supported; disabling PCI MWI\n",
1283                                     sc->ti_unit, cacheline);
1284                         CSR_WRITE_4(sc, TI_PCI_CMDSTAT, CSR_READ_4(sc,
1285                             TI_PCI_CMDSTAT) & ~PCIM_CMD_MWIEN);
1286                         break;
1287                 }
1288         }
1289
1290 #ifdef __brokenalpha__
1291         /*
1292          * From the Alteon sample driver:
1293          * Must insure that we do not cross an 8K (bytes) boundary
1294          * for DMA reads.  Our highest limit is 1K bytes.  This is a 
1295          * restriction on some ALPHA platforms with early revision 
1296          * 21174 PCI chipsets, such as the AlphaPC 164lx 
1297          */
1298         TI_SETBIT(sc, TI_PCI_STATE, pci_writemax|TI_PCI_READMAX_1024);
1299 #else
1300         TI_SETBIT(sc, TI_PCI_STATE, pci_writemax);
1301 #endif
1302
1303         /* This sets the min dma param all the way up (0xff). */
1304         TI_SETBIT(sc, TI_PCI_STATE, TI_PCISTATE_MINDMA);
1305
1306         /* Configure DMA variables. */
1307 #if BYTE_ORDER == BIG_ENDIAN
1308         CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_BD |
1309             TI_OPMODE_BYTESWAP_DATA | TI_OPMODE_WORDSWAP_BD |
1310             TI_OPMODE_WARN_ENB | TI_OPMODE_FATAL_ENB |
1311             TI_OPMODE_DONT_FRAG_JUMBO);
1312 #else
1313         CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_DATA|
1314             TI_OPMODE_WORDSWAP_BD|TI_OPMODE_DONT_FRAG_JUMBO|
1315             TI_OPMODE_WARN_ENB|TI_OPMODE_FATAL_ENB);
1316 #endif
1317
1318         /*
1319          * Only allow 1 DMA channel to be active at a time.
1320          * I don't think this is a good idea, but without it
1321          * the firmware racks up lots of nicDmaReadRingFull
1322          * errors.  This is not compatible with hardware checksums.
1323          */
1324         if (sc->arpcom.ac_if.if_hwassist == 0)
1325                 TI_SETBIT(sc, TI_GCR_OPMODE, TI_OPMODE_1_DMA_ACTIVE);
1326
1327         /* Recommended settings from Tigon manual. */
1328         CSR_WRITE_4(sc, TI_GCR_DMA_WRITECFG, TI_DMA_STATE_THRESH_8W);
1329         CSR_WRITE_4(sc, TI_GCR_DMA_READCFG, TI_DMA_STATE_THRESH_8W);
1330
1331         if (ti_64bitslot_war(sc)) {
1332                 printf("ti%d: bios thinks we're in a 64 bit slot, "
1333                     "but we aren't", sc->ti_unit);
1334                 return(EINVAL);
1335         }
1336
1337         return(0);
1338 }
1339
1340 /*
1341  * Initialize the general information block and firmware, and
1342  * start the CPU(s) running.
1343  */
1344 static int ti_gibinit(sc)
1345         struct ti_softc         *sc;
1346 {
1347         struct ti_rcb           *rcb;
1348         int                     i;
1349         struct ifnet            *ifp;
1350
1351         ifp = &sc->arpcom.ac_if;
1352
1353         /* Disable interrupts for now. */
1354         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
1355
1356         /* Tell the chip where to find the general information block. */
1357         CSR_WRITE_4(sc, TI_GCR_GENINFO_HI, 0);
1358         CSR_WRITE_4(sc, TI_GCR_GENINFO_LO, vtophys(&sc->ti_rdata->ti_info));
1359
1360         /* Load the firmware into SRAM. */
1361         ti_loadfw(sc);
1362
1363         /* Set up the contents of the general info and ring control blocks. */
1364
1365         /* Set up the event ring and producer pointer. */
1366         rcb = &sc->ti_rdata->ti_info.ti_ev_rcb;
1367
1368         TI_HOSTADDR(rcb->ti_hostaddr) = vtophys(&sc->ti_rdata->ti_event_ring);
1369         rcb->ti_flags = 0;
1370         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_ev_prodidx_ptr) =
1371             vtophys(&sc->ti_ev_prodidx);
1372         sc->ti_ev_prodidx.ti_idx = 0;
1373         CSR_WRITE_4(sc, TI_GCR_EVENTCONS_IDX, 0);
1374         sc->ti_ev_saved_considx = 0;
1375
1376         /* Set up the command ring and producer mailbox. */
1377         rcb = &sc->ti_rdata->ti_info.ti_cmd_rcb;
1378
1379         sc->ti_rdata->ti_cmd_ring =
1380             (struct ti_cmd_desc *)(sc->ti_vhandle + TI_GCR_CMDRING);
1381         TI_HOSTADDR(rcb->ti_hostaddr) = TI_GCR_NIC_ADDR(TI_GCR_CMDRING);
1382         rcb->ti_flags = 0;
1383         rcb->ti_max_len = 0;
1384         for (i = 0; i < TI_CMD_RING_CNT; i++) {
1385                 CSR_WRITE_4(sc, TI_GCR_CMDRING + (i * 4), 0);
1386         }
1387         CSR_WRITE_4(sc, TI_GCR_CMDCONS_IDX, 0);
1388         CSR_WRITE_4(sc, TI_MB_CMDPROD_IDX, 0);
1389         sc->ti_cmd_saved_prodidx = 0;
1390
1391         /*
1392          * Assign the address of the stats refresh buffer.
1393          * We re-use the current stats buffer for this to
1394          * conserve memory.
1395          */
1396         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_refresh_stats_ptr) =
1397             vtophys(&sc->ti_rdata->ti_info.ti_stats);
1398
1399         /* Set up the standard receive ring. */
1400         rcb = &sc->ti_rdata->ti_info.ti_std_rx_rcb;
1401         TI_HOSTADDR(rcb->ti_hostaddr) = vtophys(&sc->ti_rdata->ti_rx_std_ring);
1402         rcb->ti_max_len = TI_FRAMELEN;
1403         rcb->ti_flags = 0;
1404         if (sc->arpcom.ac_if.if_hwassist)
1405                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
1406                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
1407         rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
1408
1409         /* Set up the jumbo receive ring. */
1410         rcb = &sc->ti_rdata->ti_info.ti_jumbo_rx_rcb;
1411         TI_HOSTADDR(rcb->ti_hostaddr) =
1412             vtophys(&sc->ti_rdata->ti_rx_jumbo_ring);
1413         rcb->ti_max_len = TI_JUMBO_FRAMELEN;
1414         rcb->ti_flags = 0;
1415         if (sc->arpcom.ac_if.if_hwassist)
1416                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
1417                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
1418         rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
1419
1420         /*
1421          * Set up the mini ring. Only activated on the
1422          * Tigon 2 but the slot in the config block is
1423          * still there on the Tigon 1.
1424          */
1425         rcb = &sc->ti_rdata->ti_info.ti_mini_rx_rcb;
1426         TI_HOSTADDR(rcb->ti_hostaddr) =
1427             vtophys(&sc->ti_rdata->ti_rx_mini_ring);
1428         rcb->ti_max_len = MHLEN - ETHER_ALIGN;
1429         if (sc->ti_hwrev == TI_HWREV_TIGON)
1430                 rcb->ti_flags = TI_RCB_FLAG_RING_DISABLED;
1431         else
1432                 rcb->ti_flags = 0;
1433         if (sc->arpcom.ac_if.if_hwassist)
1434                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
1435                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
1436         rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
1437
1438         /*
1439          * Set up the receive return ring.
1440          */
1441         rcb = &sc->ti_rdata->ti_info.ti_return_rcb;
1442         TI_HOSTADDR(rcb->ti_hostaddr) =
1443             vtophys(&sc->ti_rdata->ti_rx_return_ring);
1444         rcb->ti_flags = 0;
1445         rcb->ti_max_len = TI_RETURN_RING_CNT;
1446         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_return_prodidx_ptr) =
1447             vtophys(&sc->ti_return_prodidx);
1448
1449         /*
1450          * Set up the tx ring. Note: for the Tigon 2, we have the option
1451          * of putting the transmit ring in the host's address space and
1452          * letting the chip DMA it instead of leaving the ring in the NIC's
1453          * memory and accessing it through the shared memory region. We
1454          * do this for the Tigon 2, but it doesn't work on the Tigon 1,
1455          * so we have to revert to the shared memory scheme if we detect
1456          * a Tigon 1 chip.
1457          */
1458         CSR_WRITE_4(sc, TI_WINBASE, TI_TX_RING_BASE);
1459         if (sc->ti_hwrev == TI_HWREV_TIGON) {
1460                 sc->ti_rdata->ti_tx_ring_nic =
1461                     (struct ti_tx_desc *)(sc->ti_vhandle + TI_WINDOW);
1462         }
1463         bzero((char *)sc->ti_rdata->ti_tx_ring,
1464             TI_TX_RING_CNT * sizeof(struct ti_tx_desc));
1465         rcb = &sc->ti_rdata->ti_info.ti_tx_rcb;
1466         if (sc->ti_hwrev == TI_HWREV_TIGON)
1467                 rcb->ti_flags = 0;
1468         else
1469                 rcb->ti_flags = TI_RCB_FLAG_HOST_RING;
1470         rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
1471         if (sc->arpcom.ac_if.if_hwassist)
1472                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
1473                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
1474         rcb->ti_max_len = TI_TX_RING_CNT;
1475         if (sc->ti_hwrev == TI_HWREV_TIGON)
1476                 TI_HOSTADDR(rcb->ti_hostaddr) = TI_TX_RING_BASE;
1477         else
1478                 TI_HOSTADDR(rcb->ti_hostaddr) =
1479                     vtophys(&sc->ti_rdata->ti_tx_ring);
1480         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_tx_considx_ptr) =
1481             vtophys(&sc->ti_tx_considx);
1482
1483         /* Set up tuneables */
1484         if (ifp->if_mtu > (ETHERMTU + ETHER_HDR_LEN + ETHER_CRC_LEN))
1485                 CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS,
1486                     (sc->ti_rx_coal_ticks / 10));
1487         else
1488                 CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS, sc->ti_rx_coal_ticks);
1489         CSR_WRITE_4(sc, TI_GCR_TX_COAL_TICKS, sc->ti_tx_coal_ticks);
1490         CSR_WRITE_4(sc, TI_GCR_STAT_TICKS, sc->ti_stat_ticks);
1491         CSR_WRITE_4(sc, TI_GCR_RX_MAX_COAL_BD, sc->ti_rx_max_coal_bds);
1492         CSR_WRITE_4(sc, TI_GCR_TX_MAX_COAL_BD, sc->ti_tx_max_coal_bds);
1493         CSR_WRITE_4(sc, TI_GCR_TX_BUFFER_RATIO, sc->ti_tx_buf_ratio);
1494
1495         /* Turn interrupts on. */
1496         CSR_WRITE_4(sc, TI_GCR_MASK_INTRS, 0);
1497         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 0);
1498
1499         /* Start CPU. */
1500         TI_CLRBIT(sc, TI_CPU_STATE, (TI_CPUSTATE_HALT|TI_CPUSTATE_STEP));
1501
1502         return(0);
1503 }
1504
1505 /*
1506  * Probe for a Tigon chip. Check the PCI vendor and device IDs
1507  * against our list and return its name if we find a match.
1508  */
1509 static int ti_probe(dev)
1510         device_t                dev;
1511 {
1512         struct ti_type          *t;
1513
1514         t = ti_devs;
1515
1516         while(t->ti_name != NULL) {
1517                 if ((pci_get_vendor(dev) == t->ti_vid) &&
1518                     (pci_get_device(dev) == t->ti_did)) {
1519                         device_set_desc(dev, t->ti_name);
1520                         return(0);
1521                 }
1522                 t++;
1523         }
1524
1525         return(ENXIO);
1526 }
1527
1528 static int ti_attach(dev)
1529         device_t                dev;
1530 {
1531         int                     s;
1532         u_int32_t               command;
1533         struct ifnet            *ifp;
1534         struct ti_softc         *sc;
1535         int                     unit, error = 0, rid;
1536
1537         s = splimp();
1538
1539         sc = device_get_softc(dev);
1540         unit = device_get_unit(dev);
1541         bzero(sc, sizeof(struct ti_softc));
1542         sc->arpcom.ac_if.if_capabilities = IFCAP_HWCSUM;
1543         sc->arpcom.ac_if.if_capenable = sc->arpcom.ac_if.if_capabilities;
1544
1545         /*
1546          * Map control/status registers.
1547          */
1548         command = pci_read_config(dev, PCIR_COMMAND, 4);
1549         command |= (PCIM_CMD_MEMEN|PCIM_CMD_BUSMASTEREN);
1550         pci_write_config(dev, PCIR_COMMAND, command, 4);
1551         command = pci_read_config(dev, PCIR_COMMAND, 4);
1552
1553         if (!(command & PCIM_CMD_MEMEN)) {
1554                 printf("ti%d: failed to enable memory mapping!\n", unit);
1555                 error = ENXIO;
1556                 goto fail;
1557         }
1558
1559         rid = TI_PCI_LOMEM;
1560         sc->ti_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
1561             0, ~0, 1, RF_ACTIVE);
1562
1563         if (sc->ti_res == NULL) {
1564                 printf ("ti%d: couldn't map memory\n", unit);
1565                 error = ENXIO;
1566                 goto fail;
1567         }
1568
1569         sc->ti_btag = rman_get_bustag(sc->ti_res);
1570         sc->ti_bhandle = rman_get_bushandle(sc->ti_res);
1571         sc->ti_vhandle = (vm_offset_t)rman_get_virtual(sc->ti_res);
1572
1573         /*
1574          * XXX FIXME: rman_get_virtual() on the alpha is currently
1575          * broken and returns a physical address instead of a kernel
1576          * virtual address. Consequently, we need to do a little
1577          * extra mangling of the vhandle on the alpha. This should
1578          * eventually be fixed! The whole idea here is to get rid
1579          * of platform dependencies.
1580          */
1581 #ifdef __alpha__
1582         if (pci_cvt_to_bwx(sc->ti_vhandle))
1583                 sc->ti_vhandle = pci_cvt_to_bwx(sc->ti_vhandle);
1584         else
1585                 sc->ti_vhandle = pci_cvt_to_dense(sc->ti_vhandle);
1586         sc->ti_vhandle = ALPHA_PHYS_TO_K0SEG(sc->ti_vhandle);
1587 #endif
1588
1589         /* Allocate interrupt */
1590         rid = 0;
1591         
1592         sc->ti_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
1593             RF_SHAREABLE | RF_ACTIVE);
1594
1595         if (sc->ti_irq == NULL) {
1596                 printf("ti%d: couldn't map interrupt\n", unit);
1597                 error = ENXIO;
1598                 goto fail;
1599         }
1600
1601         error = bus_setup_intr(dev, sc->ti_irq, INTR_TYPE_NET,
1602            ti_intr, sc, &sc->ti_intrhand);
1603
1604         if (error) {
1605                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
1606                 bus_release_resource(dev, SYS_RES_MEMORY,
1607                     TI_PCI_LOMEM, sc->ti_res);
1608                 printf("ti%d: couldn't set up irq\n", unit);
1609                 goto fail;
1610         }
1611
1612         sc->ti_unit = unit;
1613
1614         if (ti_chipinit(sc)) {
1615                 printf("ti%d: chip initialization failed\n", sc->ti_unit);
1616                 bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand);
1617                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
1618                 bus_release_resource(dev, SYS_RES_MEMORY,
1619                     TI_PCI_LOMEM, sc->ti_res);
1620                 error = ENXIO;
1621                 goto fail;
1622         }
1623
1624         /* Zero out the NIC's on-board SRAM. */
1625         ti_mem(sc, 0x2000, 0x100000 - 0x2000,  NULL);
1626
1627         /* Init again -- zeroing memory may have clobbered some registers. */
1628         if (ti_chipinit(sc)) {
1629                 printf("ti%d: chip initialization failed\n", sc->ti_unit);
1630                 bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand);
1631                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
1632                 bus_release_resource(dev, SYS_RES_MEMORY,
1633                     TI_PCI_LOMEM, sc->ti_res);
1634                 error = ENXIO;
1635                 goto fail;
1636         }
1637
1638         /*
1639          * Get station address from the EEPROM. Note: the manual states
1640          * that the MAC address is at offset 0x8c, however the data is
1641          * stored as two longwords (since that's how it's loaded into
1642          * the NIC). This means the MAC address is actually preceeded
1643          * by two zero bytes. We need to skip over those.
1644          */
1645         if (ti_read_eeprom(sc, (caddr_t)&sc->arpcom.ac_enaddr,
1646                                 TI_EE_MAC_OFFSET + 2, ETHER_ADDR_LEN)) {
1647                 printf("ti%d: failed to read station address\n", unit);
1648                 bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand);
1649                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
1650                 bus_release_resource(dev, SYS_RES_MEMORY,
1651                     TI_PCI_LOMEM, sc->ti_res);
1652                 error = ENXIO;
1653                 goto fail;
1654         }
1655
1656         /* Allocate the general information block and ring buffers. */
1657         sc->ti_rdata = contigmalloc(sizeof(struct ti_ring_data), M_DEVBUF,
1658             M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
1659
1660         if (sc->ti_rdata == NULL) {
1661                 bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand);
1662                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
1663                 bus_release_resource(dev, SYS_RES_MEMORY,
1664                     TI_PCI_LOMEM, sc->ti_res);
1665                 error = ENXIO;
1666                 printf("ti%d: no memory for list buffers!\n", sc->ti_unit);
1667                 goto fail;
1668         }
1669
1670         bzero(sc->ti_rdata, sizeof(struct ti_ring_data));
1671
1672         /* Try to allocate memory for jumbo buffers. */
1673         if (ti_alloc_jumbo_mem(sc)) {
1674                 printf("ti%d: jumbo buffer allocation failed\n", sc->ti_unit);
1675                 bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand);
1676                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
1677                 bus_release_resource(dev, SYS_RES_MEMORY,
1678                     TI_PCI_LOMEM, sc->ti_res);
1679                 contigfree(sc->ti_rdata, sizeof(struct ti_ring_data),
1680                     M_DEVBUF);
1681                 error = ENXIO;
1682                 goto fail;
1683         }
1684
1685         /*
1686          * We really need a better way to tell a 1000baseTX card
1687          * from a 1000baseSX one, since in theory there could be
1688          * OEMed 1000baseTX cards from lame vendors who aren't
1689          * clever enough to change the PCI ID. For the moment
1690          * though, the AceNIC is the only copper card available.
1691          */
1692         if (pci_get_vendor(dev) == ALT_VENDORID &&
1693             pci_get_device(dev) == ALT_DEVICEID_ACENIC_COPPER)
1694                 sc->ti_copper = 1;
1695         /* Ok, it's not the only copper card available. */
1696         if (pci_get_vendor(dev) == NG_VENDORID &&
1697             pci_get_device(dev) == NG_DEVICEID_GA620T)
1698                 sc->ti_copper = 1;
1699
1700         /* Set default tuneable values. */
1701         sc->ti_stat_ticks = 2 * TI_TICKS_PER_SEC;
1702         sc->ti_rx_coal_ticks = TI_TICKS_PER_SEC / 5000;
1703         sc->ti_tx_coal_ticks = TI_TICKS_PER_SEC / 500;
1704         sc->ti_rx_max_coal_bds = 64;
1705         sc->ti_tx_max_coal_bds = 128;
1706         sc->ti_tx_buf_ratio = 21;
1707
1708         /* Set up ifnet structure */
1709         ifp = &sc->arpcom.ac_if;
1710         ifp->if_softc = sc;
1711         if_initname(ifp, "ti", sc->ti_unit);
1712         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1713         ifp->if_ioctl = ti_ioctl;
1714         ifp->if_start = ti_start;
1715         ifp->if_watchdog = ti_watchdog;
1716         ifp->if_init = ti_init;
1717         ifp->if_mtu = ETHERMTU;
1718         ifq_set_maxlen(&ifp->if_snd, TI_TX_RING_CNT - 1);
1719         ifq_set_ready(&ifp->if_snd);
1720
1721         /* Set up ifmedia support. */
1722         ifmedia_init(&sc->ifmedia, IFM_IMASK, ti_ifmedia_upd, ti_ifmedia_sts);
1723         if (sc->ti_copper) {
1724                 /*
1725                  * Copper cards allow manual 10/100 mode selection,
1726                  * but not manual 1000baseTX mode selection. Why?
1727                  * Becuase currently there's no way to specify the
1728                  * master/slave setting through the firmware interface,
1729                  * so Alteon decided to just bag it and handle it
1730                  * via autonegotiation.
1731                  */
1732                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T, 0, NULL);
1733                 ifmedia_add(&sc->ifmedia,
1734                     IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
1735                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_100_TX, 0, NULL);
1736                 ifmedia_add(&sc->ifmedia,
1737                     IFM_ETHER|IFM_100_TX|IFM_FDX, 0, NULL);
1738                 ifmedia_add(&sc->ifmedia, IFM_ETHER | IFM_1000_T, 0, NULL);
1739                 ifmedia_add(&sc->ifmedia,
1740                     IFM_ETHER|IFM_1000_T | IFM_FDX, 0, NULL);
1741         } else {
1742                 /* Fiber cards don't support 10/100 modes. */
1743                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_1000_SX, 0, NULL);
1744                 ifmedia_add(&sc->ifmedia,
1745                     IFM_ETHER|IFM_1000_SX|IFM_FDX, 0, NULL);
1746         }
1747         ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_AUTO, 0, NULL);
1748         ifmedia_set(&sc->ifmedia, IFM_ETHER|IFM_AUTO);
1749
1750         /*
1751          * Call MI attach routine.
1752          */
1753         ether_ifattach(ifp, sc->arpcom.ac_enaddr);
1754
1755 fail:
1756         splx(s);
1757
1758         return(error);
1759 }
1760
1761 static int ti_detach(dev)
1762         device_t                dev;
1763 {
1764         struct ti_softc         *sc;
1765         struct ifnet            *ifp;
1766         int                     s;
1767
1768         s = splimp();
1769
1770         sc = device_get_softc(dev);
1771         ifp = &sc->arpcom.ac_if;
1772
1773         ether_ifdetach(ifp);
1774         ti_stop(sc);
1775
1776         bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand);
1777         bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
1778         bus_release_resource(dev, SYS_RES_MEMORY, TI_PCI_LOMEM, sc->ti_res);
1779
1780         contigfree(sc->ti_cdata.ti_jumbo_buf, TI_JMEM, M_DEVBUF);
1781         contigfree(sc->ti_rdata, sizeof(struct ti_ring_data), M_DEVBUF);
1782         ifmedia_removeall(&sc->ifmedia);
1783
1784         splx(s);
1785
1786         return(0);
1787 }
1788
1789 /*
1790  * Frame reception handling. This is called if there's a frame
1791  * on the receive return list.
1792  *
1793  * Note: we have to be able to handle three possibilities here:
1794  * 1) the frame is from the mini receive ring (can only happen)
1795  *    on Tigon 2 boards)
1796  * 2) the frame is from the jumbo recieve ring
1797  * 3) the frame is from the standard receive ring
1798  */
1799
1800 static void ti_rxeof(sc)
1801         struct ti_softc         *sc;
1802 {
1803         struct ifnet            *ifp;
1804         struct ti_cmd_desc      cmd;
1805
1806         ifp = &sc->arpcom.ac_if;
1807
1808         while(sc->ti_rx_saved_considx != sc->ti_return_prodidx.ti_idx) {
1809                 struct ti_rx_desc       *cur_rx;
1810                 u_int32_t               rxidx;
1811                 struct mbuf             *m = NULL;
1812                 u_int16_t               vlan_tag = 0;
1813                 int                     have_tag = 0;
1814
1815                 cur_rx =
1816                     &sc->ti_rdata->ti_rx_return_ring[sc->ti_rx_saved_considx];
1817                 rxidx = cur_rx->ti_idx;
1818                 TI_INC(sc->ti_rx_saved_considx, TI_RETURN_RING_CNT);
1819
1820                 if (cur_rx->ti_flags & TI_BDFLAG_VLAN_TAG) {
1821                         have_tag = 1;
1822                         vlan_tag = cur_rx->ti_vlan_tag & 0xfff;
1823                 }
1824
1825                 if (cur_rx->ti_flags & TI_BDFLAG_JUMBO_RING) {
1826                         TI_INC(sc->ti_jumbo, TI_JUMBO_RX_RING_CNT);
1827                         m = sc->ti_cdata.ti_rx_jumbo_chain[rxidx];
1828                         sc->ti_cdata.ti_rx_jumbo_chain[rxidx] = NULL;
1829                         if (cur_rx->ti_flags & TI_BDFLAG_ERROR) {
1830                                 ifp->if_ierrors++;
1831                                 ti_newbuf_jumbo(sc, sc->ti_jumbo, m);
1832                                 continue;
1833                         }
1834                         if (ti_newbuf_jumbo(sc, sc->ti_jumbo, NULL) == ENOBUFS) {
1835                                 ifp->if_ierrors++;
1836                                 ti_newbuf_jumbo(sc, sc->ti_jumbo, m);
1837                                 continue;
1838                         }
1839                 } else if (cur_rx->ti_flags & TI_BDFLAG_MINI_RING) {
1840                         TI_INC(sc->ti_mini, TI_MINI_RX_RING_CNT);
1841                         m = sc->ti_cdata.ti_rx_mini_chain[rxidx];
1842                         sc->ti_cdata.ti_rx_mini_chain[rxidx] = NULL;
1843                         if (cur_rx->ti_flags & TI_BDFLAG_ERROR) {
1844                                 ifp->if_ierrors++;
1845                                 ti_newbuf_mini(sc, sc->ti_mini, m);
1846                                 continue;
1847                         }
1848                         if (ti_newbuf_mini(sc, sc->ti_mini, NULL) == ENOBUFS) {
1849                                 ifp->if_ierrors++;
1850                                 ti_newbuf_mini(sc, sc->ti_mini, m);
1851                                 continue;
1852                         }
1853                 } else {
1854                         TI_INC(sc->ti_std, TI_STD_RX_RING_CNT);
1855                         m = sc->ti_cdata.ti_rx_std_chain[rxidx];
1856                         sc->ti_cdata.ti_rx_std_chain[rxidx] = NULL;
1857                         if (cur_rx->ti_flags & TI_BDFLAG_ERROR) {
1858                                 ifp->if_ierrors++;
1859                                 ti_newbuf_std(sc, sc->ti_std, m);
1860                                 continue;
1861                         }
1862                         if (ti_newbuf_std(sc, sc->ti_std, NULL) == ENOBUFS) {
1863                                 ifp->if_ierrors++;
1864                                 ti_newbuf_std(sc, sc->ti_std, m);
1865                                 continue;
1866                         }
1867                 }
1868
1869                 m->m_pkthdr.len = m->m_len = cur_rx->ti_len;
1870                 ifp->if_ipackets++;
1871                 m->m_pkthdr.rcvif = ifp;
1872
1873                 if (ifp->if_hwassist) {
1874                         m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED |
1875                             CSUM_DATA_VALID;
1876                         if ((cur_rx->ti_ip_cksum ^ 0xffff) == 0)
1877                                 m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
1878                         m->m_pkthdr.csum_data = cur_rx->ti_tcp_udp_cksum;
1879                 }
1880
1881                 /*
1882                  * If we received a packet with a vlan tag, pass it
1883                  * to vlan_input() instead of ether_input().
1884                  */
1885                 if (have_tag) {
1886                         VLAN_INPUT_TAG(m, vlan_tag);
1887                         have_tag = vlan_tag = 0;
1888                 } else {
1889                         (*ifp->if_input)(ifp, m);
1890                 }
1891         }
1892
1893         /* Only necessary on the Tigon 1. */
1894         if (sc->ti_hwrev == TI_HWREV_TIGON)
1895                 CSR_WRITE_4(sc, TI_GCR_RXRETURNCONS_IDX,
1896                     sc->ti_rx_saved_considx);
1897
1898         TI_UPDATE_STDPROD(sc, sc->ti_std);
1899         TI_UPDATE_MINIPROD(sc, sc->ti_mini);
1900         TI_UPDATE_JUMBOPROD(sc, sc->ti_jumbo);
1901
1902         return;
1903 }
1904
1905 static void ti_txeof(sc)
1906         struct ti_softc         *sc;
1907 {
1908         struct ti_tx_desc       *cur_tx = NULL;
1909         struct ifnet            *ifp;
1910
1911         ifp = &sc->arpcom.ac_if;
1912
1913         /*
1914          * Go through our tx ring and free mbufs for those
1915          * frames that have been sent.
1916          */
1917         while (sc->ti_tx_saved_considx != sc->ti_tx_considx.ti_idx) {
1918                 u_int32_t               idx = 0;
1919
1920                 idx = sc->ti_tx_saved_considx;
1921                 if (sc->ti_hwrev == TI_HWREV_TIGON) {
1922                         if (idx > 383)
1923                                 CSR_WRITE_4(sc, TI_WINBASE,
1924                                     TI_TX_RING_BASE + 6144);
1925                         else if (idx > 255)
1926                                 CSR_WRITE_4(sc, TI_WINBASE,
1927                                     TI_TX_RING_BASE + 4096);
1928                         else if (idx > 127)
1929                                 CSR_WRITE_4(sc, TI_WINBASE,
1930                                     TI_TX_RING_BASE + 2048);
1931                         else
1932                                 CSR_WRITE_4(sc, TI_WINBASE,
1933                                     TI_TX_RING_BASE);
1934                         cur_tx = &sc->ti_rdata->ti_tx_ring_nic[idx % 128];
1935                 } else
1936                         cur_tx = &sc->ti_rdata->ti_tx_ring[idx];
1937                 if (cur_tx->ti_flags & TI_BDFLAG_END)
1938                         ifp->if_opackets++;
1939                 if (sc->ti_cdata.ti_tx_chain[idx] != NULL) {
1940                         m_freem(sc->ti_cdata.ti_tx_chain[idx]);
1941                         sc->ti_cdata.ti_tx_chain[idx] = NULL;
1942                 }
1943                 sc->ti_txcnt--;
1944                 TI_INC(sc->ti_tx_saved_considx, TI_TX_RING_CNT);
1945                 ifp->if_timer = 0;
1946         }
1947
1948         if (cur_tx != NULL)
1949                 ifp->if_flags &= ~IFF_OACTIVE;
1950
1951         return;
1952 }
1953
1954 static void ti_intr(xsc)
1955         void                    *xsc;
1956 {
1957         struct ti_softc         *sc;
1958         struct ifnet            *ifp;
1959
1960         sc = xsc;
1961         ifp = &sc->arpcom.ac_if;
1962
1963 #ifdef notdef
1964         /* Avoid this for now -- checking this register is expensive. */
1965         /* Make sure this is really our interrupt. */
1966         if (!(CSR_READ_4(sc, TI_MISC_HOST_CTL) & TI_MHC_INTSTATE))
1967                 return;
1968 #endif
1969
1970         /* Ack interrupt and stop others from occuring. */
1971         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
1972
1973         if (ifp->if_flags & IFF_RUNNING) {
1974                 /* Check RX return ring producer/consumer */
1975                 ti_rxeof(sc);
1976
1977                 /* Check TX ring producer/consumer */
1978                 ti_txeof(sc);
1979         }
1980
1981         ti_handle_events(sc);
1982
1983         /* Re-enable interrupts. */
1984         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 0);
1985
1986         if ((ifp->if_flags & IFF_RUNNING) && !ifq_is_empty(&ifp->if_snd))
1987                 ti_start(ifp);
1988
1989         return;
1990 }
1991
1992 static void ti_stats_update(sc)
1993         struct ti_softc         *sc;
1994 {
1995         struct ifnet            *ifp;
1996
1997         ifp = &sc->arpcom.ac_if;
1998
1999         ifp->if_collisions +=
2000            (sc->ti_rdata->ti_info.ti_stats.dot3StatsSingleCollisionFrames +
2001            sc->ti_rdata->ti_info.ti_stats.dot3StatsMultipleCollisionFrames +
2002            sc->ti_rdata->ti_info.ti_stats.dot3StatsExcessiveCollisions +
2003            sc->ti_rdata->ti_info.ti_stats.dot3StatsLateCollisions) -
2004            ifp->if_collisions;
2005
2006         return;
2007 }
2008
2009 /*
2010  * Encapsulate an mbuf chain in the tx ring  by coupling the mbuf data
2011  * pointers to descriptors.
2012  */
2013 static int ti_encap(sc, m_head, txidx)
2014         struct ti_softc         *sc;
2015         struct mbuf             *m_head;
2016         u_int32_t               *txidx;
2017 {
2018         struct ti_tx_desc       *f = NULL;
2019         struct mbuf             *m;
2020         u_int32_t               frag, cur, cnt = 0;
2021         u_int16_t               csum_flags = 0;
2022         struct ifvlan           *ifv = NULL;
2023
2024         if ((m_head->m_flags & (M_PROTO1|M_PKTHDR)) == (M_PROTO1|M_PKTHDR) &&
2025             m_head->m_pkthdr.rcvif != NULL &&
2026             m_head->m_pkthdr.rcvif->if_type == IFT_L2VLAN)
2027                 ifv = m_head->m_pkthdr.rcvif->if_softc;
2028
2029         m = m_head;
2030         cur = frag = *txidx;
2031
2032         if (m_head->m_pkthdr.csum_flags) {
2033                 if (m_head->m_pkthdr.csum_flags & CSUM_IP)
2034                         csum_flags |= TI_BDFLAG_IP_CKSUM;
2035                 if (m_head->m_pkthdr.csum_flags & (CSUM_TCP | CSUM_UDP))
2036                         csum_flags |= TI_BDFLAG_TCP_UDP_CKSUM;
2037                 if (m_head->m_flags & M_LASTFRAG)
2038                         csum_flags |= TI_BDFLAG_IP_FRAG_END;
2039                 else if (m_head->m_flags & M_FRAG)
2040                         csum_flags |= TI_BDFLAG_IP_FRAG;
2041         }
2042         /*
2043          * Start packing the mbufs in this chain into
2044          * the fragment pointers. Stop when we run out
2045          * of fragments or hit the end of the mbuf chain.
2046          */
2047         for (m = m_head; m != NULL; m = m->m_next) {
2048                 if (m->m_len != 0) {
2049                         if (sc->ti_hwrev == TI_HWREV_TIGON) {
2050                                 if (frag > 383)
2051                                         CSR_WRITE_4(sc, TI_WINBASE,
2052                                             TI_TX_RING_BASE + 6144);
2053                                 else if (frag > 255)
2054                                         CSR_WRITE_4(sc, TI_WINBASE,
2055                                             TI_TX_RING_BASE + 4096);
2056                                 else if (frag > 127)
2057                                         CSR_WRITE_4(sc, TI_WINBASE,
2058                                             TI_TX_RING_BASE + 2048);
2059                                 else
2060                                         CSR_WRITE_4(sc, TI_WINBASE,
2061                                             TI_TX_RING_BASE);
2062                                 f = &sc->ti_rdata->ti_tx_ring_nic[frag % 128];
2063                         } else
2064                                 f = &sc->ti_rdata->ti_tx_ring[frag];
2065                         if (sc->ti_cdata.ti_tx_chain[frag] != NULL)
2066                                 break;
2067                         TI_HOSTADDR(f->ti_addr) = vtophys(mtod(m, vm_offset_t));
2068                         f->ti_len = m->m_len;
2069                         f->ti_flags = csum_flags;
2070
2071                         if (ifv != NULL) {
2072                                 f->ti_flags |= TI_BDFLAG_VLAN_TAG;
2073                                 f->ti_vlan_tag = ifv->ifv_tag & 0xfff;
2074                         } else {
2075                                 f->ti_vlan_tag = 0;
2076                         }
2077
2078                         /*
2079                          * Sanity check: avoid coming within 16 descriptors
2080                          * of the end of the ring.
2081                          */
2082                         if ((TI_TX_RING_CNT - (sc->ti_txcnt + cnt)) < 16)
2083                                 return(ENOBUFS);
2084                         cur = frag;
2085                         TI_INC(frag, TI_TX_RING_CNT);
2086                         cnt++;
2087                 }
2088         }
2089
2090         if (m != NULL)
2091                 return(ENOBUFS);
2092
2093         if (frag == sc->ti_tx_saved_considx)
2094                 return(ENOBUFS);
2095
2096         if (sc->ti_hwrev == TI_HWREV_TIGON)
2097                 sc->ti_rdata->ti_tx_ring_nic[cur % 128].ti_flags |=
2098                     TI_BDFLAG_END;
2099         else
2100                 sc->ti_rdata->ti_tx_ring[cur].ti_flags |= TI_BDFLAG_END;
2101         sc->ti_cdata.ti_tx_chain[cur] = m_head;
2102         sc->ti_txcnt += cnt;
2103
2104         *txidx = frag;
2105
2106         return(0);
2107 }
2108
2109 /*
2110  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
2111  * to the mbuf data regions directly in the transmit descriptors.
2112  */
2113 static void ti_start(ifp)
2114         struct ifnet            *ifp;
2115 {
2116         struct ti_softc         *sc;
2117         struct mbuf             *m_head = NULL;
2118         u_int32_t               prodidx = 0;
2119
2120         sc = ifp->if_softc;
2121
2122         prodidx = CSR_READ_4(sc, TI_MB_SENDPROD_IDX);
2123
2124         while(sc->ti_cdata.ti_tx_chain[prodidx] == NULL) {
2125                 m_head = ifq_poll(&ifp->if_snd);
2126                 if (m_head == NULL)
2127                         break;
2128
2129                 /*
2130                  * XXX
2131                  * safety overkill.  If this is a fragmented packet chain
2132                  * with delayed TCP/UDP checksums, then only encapsulate
2133                  * it if we have enough descriptors to handle the entire
2134                  * chain at once.
2135                  * (paranoia -- may not actually be needed)
2136                  */
2137                 if (m_head->m_flags & M_FIRSTFRAG &&
2138                     m_head->m_pkthdr.csum_flags & (CSUM_DELAY_DATA)) {
2139                         if ((TI_TX_RING_CNT - sc->ti_txcnt) <
2140                             m_head->m_pkthdr.csum_data + 16) {
2141                                 ifp->if_flags |= IFF_OACTIVE;
2142                                 break;
2143                         }
2144                 }
2145
2146                 /*
2147                  * Pack the data into the transmit ring. If we
2148                  * don't have room, set the OACTIVE flag and wait
2149                  * for the NIC to drain the ring.
2150                  */
2151                 if (ti_encap(sc, m_head, &prodidx)) {
2152                         ifp->if_flags |= IFF_OACTIVE;
2153                         break;
2154                 }
2155
2156                 m_head = ifq_dequeue(&ifp->if_snd);
2157                 BPF_MTAP(ifp, m_head);
2158         }
2159
2160         /* Transmit */
2161         CSR_WRITE_4(sc, TI_MB_SENDPROD_IDX, prodidx);
2162
2163         /*
2164          * Set a timeout in case the chip goes out to lunch.
2165          */
2166         ifp->if_timer = 5;
2167
2168         return;
2169 }
2170
2171 static void ti_init(xsc)
2172         void                    *xsc;
2173 {
2174         struct ti_softc         *sc = xsc;
2175         int                     s;
2176
2177         s = splimp();
2178
2179         /* Cancel pending I/O and flush buffers. */
2180         ti_stop(sc);
2181
2182         /* Init the gen info block, ring control blocks and firmware. */
2183         if (ti_gibinit(sc)) {
2184                 printf("ti%d: initialization failure\n", sc->ti_unit);
2185                 splx(s);
2186                 return;
2187         }
2188
2189         splx(s);
2190
2191         return;
2192 }
2193
2194 static void ti_init2(sc)
2195         struct ti_softc         *sc;
2196 {
2197         struct ti_cmd_desc      cmd;
2198         struct ifnet            *ifp;
2199         u_int16_t               *m;
2200         struct ifmedia          *ifm;
2201         int                     tmp;
2202
2203         ifp = &sc->arpcom.ac_if;
2204
2205         /* Specify MTU and interface index. */
2206         CSR_WRITE_4(sc, TI_GCR_IFINDEX, ifp->if_dunit);
2207         CSR_WRITE_4(sc, TI_GCR_IFMTU, ifp->if_mtu +
2208             ETHER_HDR_LEN + ETHER_CRC_LEN);
2209         TI_DO_CMD(TI_CMD_UPDATE_GENCOM, 0, 0);
2210
2211         /* Load our MAC address. */
2212         m = (u_int16_t *)&sc->arpcom.ac_enaddr[0];
2213         CSR_WRITE_4(sc, TI_GCR_PAR0, htons(m[0]));
2214         CSR_WRITE_4(sc, TI_GCR_PAR1, (htons(m[1]) << 16) | htons(m[2]));
2215         TI_DO_CMD(TI_CMD_SET_MAC_ADDR, 0, 0);
2216
2217         /* Enable or disable promiscuous mode as needed. */
2218         if (ifp->if_flags & IFF_PROMISC) {
2219                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE, TI_CMD_CODE_PROMISC_ENB, 0);
2220         } else {
2221                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE, TI_CMD_CODE_PROMISC_DIS, 0);
2222         }
2223
2224         /* Program multicast filter. */
2225         ti_setmulti(sc);
2226
2227         /*
2228          * If this is a Tigon 1, we should tell the
2229          * firmware to use software packet filtering.
2230          */
2231         if (sc->ti_hwrev == TI_HWREV_TIGON) {
2232                 TI_DO_CMD(TI_CMD_FDR_FILTERING, TI_CMD_CODE_FILT_ENB, 0);
2233         }
2234
2235         /* Init RX ring. */
2236         ti_init_rx_ring_std(sc);
2237
2238         /* Init jumbo RX ring. */
2239         if (ifp->if_mtu > (ETHERMTU + ETHER_HDR_LEN + ETHER_CRC_LEN))
2240                 ti_init_rx_ring_jumbo(sc);
2241
2242         /*
2243          * If this is a Tigon 2, we can also configure the
2244          * mini ring.
2245          */
2246         if (sc->ti_hwrev == TI_HWREV_TIGON_II)
2247                 ti_init_rx_ring_mini(sc);
2248
2249         CSR_WRITE_4(sc, TI_GCR_RXRETURNCONS_IDX, 0);
2250         sc->ti_rx_saved_considx = 0;
2251
2252         /* Init TX ring. */
2253         ti_init_tx_ring(sc);
2254
2255         /* Tell firmware we're alive. */
2256         TI_DO_CMD(TI_CMD_HOST_STATE, TI_CMD_CODE_STACK_UP, 0);
2257
2258         /* Enable host interrupts. */
2259         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 0);
2260
2261         ifp->if_flags |= IFF_RUNNING;
2262         ifp->if_flags &= ~IFF_OACTIVE;
2263
2264         /*
2265          * Make sure to set media properly. We have to do this
2266          * here since we have to issue commands in order to set
2267          * the link negotiation and we can't issue commands until
2268          * the firmware is running.
2269          */
2270         ifm = &sc->ifmedia;
2271         tmp = ifm->ifm_media;
2272         ifm->ifm_media = ifm->ifm_cur->ifm_media;
2273         ti_ifmedia_upd(ifp);
2274         ifm->ifm_media = tmp;
2275
2276         return;
2277 }
2278
2279 /*
2280  * Set media options.
2281  */
2282 static int ti_ifmedia_upd(ifp)
2283         struct ifnet            *ifp;
2284 {
2285         struct ti_softc         *sc;
2286         struct ifmedia          *ifm;
2287         struct ti_cmd_desc      cmd;
2288
2289         sc = ifp->if_softc;
2290         ifm = &sc->ifmedia;
2291
2292         if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
2293                 return(EINVAL);
2294
2295         switch(IFM_SUBTYPE(ifm->ifm_media)) {
2296         case IFM_AUTO:
2297                 CSR_WRITE_4(sc, TI_GCR_GLINK, TI_GLNK_PREF|TI_GLNK_1000MB|
2298                     TI_GLNK_FULL_DUPLEX|TI_GLNK_RX_FLOWCTL_Y|
2299                     TI_GLNK_AUTONEGENB|TI_GLNK_ENB);
2300                 CSR_WRITE_4(sc, TI_GCR_LINK, TI_LNK_100MB|TI_LNK_10MB|
2301                     TI_LNK_FULL_DUPLEX|TI_LNK_HALF_DUPLEX|
2302                     TI_LNK_AUTONEGENB|TI_LNK_ENB);
2303                 TI_DO_CMD(TI_CMD_LINK_NEGOTIATION,
2304                     TI_CMD_CODE_NEGOTIATE_BOTH, 0);
2305                 break;
2306         case IFM_1000_SX:
2307         case IFM_1000_T:
2308                 CSR_WRITE_4(sc, TI_GCR_GLINK, TI_GLNK_PREF|TI_GLNK_1000MB|
2309                     TI_GLNK_RX_FLOWCTL_Y|TI_GLNK_ENB);
2310                 CSR_WRITE_4(sc, TI_GCR_LINK, 0);
2311                 if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX) {
2312                         TI_SETBIT(sc, TI_GCR_GLINK, TI_GLNK_FULL_DUPLEX);
2313                 }
2314                 TI_DO_CMD(TI_CMD_LINK_NEGOTIATION,
2315                     TI_CMD_CODE_NEGOTIATE_GIGABIT, 0);
2316                 break;
2317         case IFM_100_FX:
2318         case IFM_10_FL:
2319         case IFM_100_TX:
2320         case IFM_10_T:
2321                 CSR_WRITE_4(sc, TI_GCR_GLINK, 0);
2322                 CSR_WRITE_4(sc, TI_GCR_LINK, TI_LNK_ENB|TI_LNK_PREF);
2323                 if (IFM_SUBTYPE(ifm->ifm_media) == IFM_100_FX ||
2324                     IFM_SUBTYPE(ifm->ifm_media) == IFM_100_TX) {
2325                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_100MB);
2326                 } else {
2327                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_10MB);
2328                 }
2329                 if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX) {
2330                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_FULL_DUPLEX);
2331                 } else {
2332                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_HALF_DUPLEX);
2333                 }
2334                 TI_DO_CMD(TI_CMD_LINK_NEGOTIATION,
2335                     TI_CMD_CODE_NEGOTIATE_10_100, 0);
2336                 break;
2337         }
2338
2339         return(0);
2340 }
2341
2342 /*
2343  * Report current media status.
2344  */
2345 static void ti_ifmedia_sts(ifp, ifmr)
2346         struct ifnet            *ifp;
2347         struct ifmediareq       *ifmr;
2348 {
2349         struct ti_softc         *sc;
2350         u_int32_t               media = 0;
2351
2352         sc = ifp->if_softc;
2353
2354         ifmr->ifm_status = IFM_AVALID;
2355         ifmr->ifm_active = IFM_ETHER;
2356
2357         if (sc->ti_linkstat == TI_EV_CODE_LINK_DOWN)
2358                 return;
2359
2360         ifmr->ifm_status |= IFM_ACTIVE;
2361
2362         if (sc->ti_linkstat == TI_EV_CODE_GIG_LINK_UP) {
2363                 media = CSR_READ_4(sc, TI_GCR_GLINK_STAT);
2364                 if (sc->ti_copper)
2365                         ifmr->ifm_active |= IFM_1000_T;
2366                 else
2367                         ifmr->ifm_active |= IFM_1000_SX;
2368                 if (media & TI_GLNK_FULL_DUPLEX)
2369                         ifmr->ifm_active |= IFM_FDX;
2370                 else
2371                         ifmr->ifm_active |= IFM_HDX;
2372         } else if (sc->ti_linkstat == TI_EV_CODE_LINK_UP) {
2373                 media = CSR_READ_4(sc, TI_GCR_LINK_STAT);
2374                 if (sc->ti_copper) {
2375                         if (media & TI_LNK_100MB)
2376                                 ifmr->ifm_active |= IFM_100_TX;
2377                         if (media & TI_LNK_10MB)
2378                                 ifmr->ifm_active |= IFM_10_T;
2379                 } else {
2380                         if (media & TI_LNK_100MB)
2381                                 ifmr->ifm_active |= IFM_100_FX;
2382                         if (media & TI_LNK_10MB)
2383                                 ifmr->ifm_active |= IFM_10_FL;
2384                 }
2385                 if (media & TI_LNK_FULL_DUPLEX)
2386                         ifmr->ifm_active |= IFM_FDX;
2387                 if (media & TI_LNK_HALF_DUPLEX)
2388                         ifmr->ifm_active |= IFM_HDX;
2389         }
2390         
2391         return;
2392 }
2393
2394 static int ti_ioctl(ifp, command, data, cr)
2395         struct ifnet            *ifp;
2396         u_long                  command;
2397         caddr_t                 data;
2398         struct ucred            *cr;
2399 {
2400         struct ti_softc         *sc = ifp->if_softc;
2401         struct ifreq            *ifr = (struct ifreq *) data;
2402         int                     s, mask, error = 0;
2403         struct ti_cmd_desc      cmd;
2404
2405         s = splimp();
2406
2407         switch(command) {
2408         case SIOCSIFADDR:
2409         case SIOCGIFADDR:
2410                 error = ether_ioctl(ifp, command, data);
2411                 break;
2412         case SIOCSIFMTU:
2413                 if (ifr->ifr_mtu > TI_JUMBO_MTU)
2414                         error = EINVAL;
2415                 else {
2416                         ifp->if_mtu = ifr->ifr_mtu;
2417                         ti_init(sc);
2418                 }
2419                 break;
2420         case SIOCSIFFLAGS:
2421                 if (ifp->if_flags & IFF_UP) {
2422                         /*
2423                          * If only the state of the PROMISC flag changed,
2424                          * then just use the 'set promisc mode' command
2425                          * instead of reinitializing the entire NIC. Doing
2426                          * a full re-init means reloading the firmware and
2427                          * waiting for it to start up, which may take a
2428                          * second or two.
2429                          */
2430                         if (ifp->if_flags & IFF_RUNNING &&
2431                             ifp->if_flags & IFF_PROMISC &&
2432                             !(sc->ti_if_flags & IFF_PROMISC)) {
2433                                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE,
2434                                     TI_CMD_CODE_PROMISC_ENB, 0);
2435                         } else if (ifp->if_flags & IFF_RUNNING &&
2436                             !(ifp->if_flags & IFF_PROMISC) &&
2437                             sc->ti_if_flags & IFF_PROMISC) {
2438                                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE,
2439                                     TI_CMD_CODE_PROMISC_DIS, 0);
2440                         } else
2441                                 ti_init(sc);
2442                 } else {
2443                         if (ifp->if_flags & IFF_RUNNING) {
2444                                 ti_stop(sc);
2445                         }
2446                 }
2447                 sc->ti_if_flags = ifp->if_flags;
2448                 error = 0;
2449                 break;
2450         case SIOCADDMULTI:
2451         case SIOCDELMULTI:
2452                 if (ifp->if_flags & IFF_RUNNING) {
2453                         ti_setmulti(sc);
2454                         error = 0;
2455                 }
2456                 break;
2457         case SIOCSIFMEDIA:
2458         case SIOCGIFMEDIA:
2459                 error = ifmedia_ioctl(ifp, ifr, &sc->ifmedia, command);
2460                 break;
2461         case SIOCSIFCAP:
2462                 mask = ifr->ifr_reqcap ^ ifp->if_capenable;
2463                 if (mask & IFCAP_HWCSUM) {
2464                         if (IFCAP_HWCSUM & ifp->if_capenable)
2465                                 ifp->if_capenable &= ~IFCAP_HWCSUM;
2466                         else
2467                                 ifp->if_capenable |= IFCAP_HWCSUM;
2468                         if (ifp->if_flags & IFF_RUNNING)
2469                                 ti_init(sc);
2470                 }
2471                 error = 0;
2472                 break;
2473         default:
2474                 error = EINVAL;
2475                 break;
2476         }
2477
2478         (void)splx(s);
2479
2480         return(error);
2481 }
2482
2483 static void ti_watchdog(ifp)
2484         struct ifnet            *ifp;
2485 {
2486         struct ti_softc         *sc;
2487
2488         sc = ifp->if_softc;
2489
2490         printf("ti%d: watchdog timeout -- resetting\n", sc->ti_unit);
2491         ti_stop(sc);
2492         ti_init(sc);
2493
2494         ifp->if_oerrors++;
2495
2496         return;
2497 }
2498
2499 /*
2500  * Stop the adapter and free any mbufs allocated to the
2501  * RX and TX lists.
2502  */
2503 static void ti_stop(sc)
2504         struct ti_softc         *sc;
2505 {
2506         struct ifnet            *ifp;
2507         struct ti_cmd_desc      cmd;
2508
2509         ifp = &sc->arpcom.ac_if;
2510
2511         /* Disable host interrupts. */
2512         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
2513         /*
2514          * Tell firmware we're shutting down.
2515          */
2516         TI_DO_CMD(TI_CMD_HOST_STATE, TI_CMD_CODE_STACK_DOWN, 0);
2517
2518         /* Halt and reinitialize. */
2519         ti_chipinit(sc);
2520         ti_mem(sc, 0x2000, 0x100000 - 0x2000, NULL);
2521         ti_chipinit(sc);
2522
2523         /* Free the RX lists. */
2524         ti_free_rx_ring_std(sc);
2525
2526         /* Free jumbo RX list. */
2527         ti_free_rx_ring_jumbo(sc);
2528
2529         /* Free mini RX list. */
2530         ti_free_rx_ring_mini(sc);
2531
2532         /* Free TX buffers. */
2533         ti_free_tx_ring(sc);
2534
2535         sc->ti_ev_prodidx.ti_idx = 0;
2536         sc->ti_return_prodidx.ti_idx = 0;
2537         sc->ti_tx_considx.ti_idx = 0;
2538         sc->ti_tx_saved_considx = TI_TXCONS_UNSET;
2539
2540         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
2541
2542         return;
2543 }
2544
2545 /*
2546  * Stop all chip I/O so that the kernel's probe routines don't
2547  * get confused by errant DMAs when rebooting.
2548  */
2549 static void ti_shutdown(dev)
2550         device_t                dev;
2551 {
2552         struct ti_softc         *sc;
2553
2554         sc = device_get_softc(dev);
2555
2556         ti_chipinit(sc);
2557
2558         return;
2559 }