]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/dev/ti/if_ti.c
MFC r227091-227095,227098-227099:
[FreeBSD/stable/8.git] / sys / dev / 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
33 /*
34  * Alteon Networks Tigon PCI gigabit ethernet driver for FreeBSD.
35  * Manuals, sample driver and firmware source kits are available
36  * from http://www.alteon.com/support/openkits.
37  *
38  * Written by Bill Paul <wpaul@ctr.columbia.edu>
39  * Electrical Engineering Department
40  * Columbia University, New York City
41  */
42
43 /*
44  * The Alteon Networks Tigon chip contains an embedded R4000 CPU,
45  * gigabit MAC, dual DMA channels and a PCI interface unit. NICs
46  * using the Tigon may have anywhere from 512K to 2MB of SRAM. The
47  * Tigon supports hardware IP, TCP and UCP checksumming, multicast
48  * filtering and jumbo (9014 byte) frames. The hardware is largely
49  * controlled by firmware, which must be loaded into the NIC during
50  * initialization.
51  *
52  * The Tigon 2 contains 2 R4000 CPUs and requires a newer firmware
53  * revision, which supports new features such as extended commands,
54  * extended jumbo receive ring desciptors and a mini receive ring.
55  *
56  * Alteon Networks is to be commended for releasing such a vast amount
57  * of development material for the Tigon NIC without requiring an NDA
58  * (although they really should have done it a long time ago). With
59  * any luck, the other vendors will finally wise up and follow Alteon's
60  * stellar example.
61  *
62  * The firmware for the Tigon 1 and 2 NICs is compiled directly into
63  * this driver by #including it as a C header file. This bloats the
64  * driver somewhat, but it's the easiest method considering that the
65  * driver code and firmware code need to be kept in sync. The source
66  * for the firmware is not provided with the FreeBSD distribution since
67  * compiling it requires a GNU toolchain targeted for mips-sgi-irix5.3.
68  *
69  * The following people deserve special thanks:
70  * - Terry Murphy of 3Com, for providing a 3c985 Tigon 1 board
71  *   for testing
72  * - Raymond Lee of Netgear, for providing a pair of Netgear
73  *   GA620 Tigon 2 boards for testing
74  * - Ulf Zimmermann, for bringing the GA260 to my attention and
75  *   convincing me to write this driver.
76  * - Andrew Gallatin for providing FreeBSD/Alpha support.
77  */
78
79 #include <sys/cdefs.h>
80 __FBSDID("$FreeBSD$");
81
82 #include "opt_ti.h"
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/module.h>
91 #include <sys/socket.h>
92 #include <sys/queue.h>
93 #include <sys/conf.h>
94 #include <sys/sf_buf.h>
95
96 #include <net/if.h>
97 #include <net/if_arp.h>
98 #include <net/ethernet.h>
99 #include <net/if_dl.h>
100 #include <net/if_media.h>
101 #include <net/if_types.h>
102 #include <net/if_vlan_var.h>
103
104 #include <net/bpf.h>
105
106 #include <netinet/in_systm.h>
107 #include <netinet/in.h>
108 #include <netinet/ip.h>
109
110 #include <machine/bus.h>
111 #include <machine/resource.h>
112 #include <sys/bus.h>
113 #include <sys/rman.h>
114
115 /* #define TI_PRIVATE_JUMBOS */
116 #ifndef TI_PRIVATE_JUMBOS
117 #include <vm/vm.h>
118 #include <vm/vm_page.h>
119 #endif
120
121 #include <dev/pci/pcireg.h>
122 #include <dev/pci/pcivar.h>
123
124 #include <sys/tiio.h>
125 #include <dev/ti/if_tireg.h>
126 #include <dev/ti/ti_fw.h>
127 #include <dev/ti/ti_fw2.h>
128
129 #define TI_CSUM_FEATURES        (CSUM_IP | CSUM_TCP | CSUM_UDP | CSUM_IP_FRAGS)
130 /*
131  * We can only turn on header splitting if we're using extended receive
132  * BDs.
133  */
134 #if defined(TI_JUMBO_HDRSPLIT) && defined(TI_PRIVATE_JUMBOS)
135 #error "options TI_JUMBO_HDRSPLIT and TI_PRIVATE_JUMBOS are mutually exclusive"
136 #endif /* TI_JUMBO_HDRSPLIT && TI_JUMBO_HDRSPLIT */
137
138 typedef enum {
139         TI_SWAP_HTON,
140         TI_SWAP_NTOH
141 } ti_swap_type;
142
143 /*
144  * Various supported device vendors/types and their names.
145  */
146
147 static const struct ti_type const ti_devs[] = {
148         { ALT_VENDORID, ALT_DEVICEID_ACENIC,
149                 "Alteon AceNIC 1000baseSX Gigabit Ethernet" },
150         { ALT_VENDORID, ALT_DEVICEID_ACENIC_COPPER,
151                 "Alteon AceNIC 1000baseT Gigabit Ethernet" },
152         { TC_VENDORID,  TC_DEVICEID_3C985,
153                 "3Com 3c985-SX Gigabit Ethernet" },
154         { NG_VENDORID, NG_DEVICEID_GA620,
155                 "Netgear GA620 1000baseSX Gigabit Ethernet" },
156         { NG_VENDORID, NG_DEVICEID_GA620T,
157                 "Netgear GA620 1000baseT Gigabit Ethernet" },
158         { SGI_VENDORID, SGI_DEVICEID_TIGON,
159                 "Silicon Graphics Gigabit Ethernet" },
160         { DEC_VENDORID, DEC_DEVICEID_FARALLON_PN9000SX,
161                 "Farallon PN9000SX Gigabit Ethernet" },
162         { 0, 0, NULL }
163 };
164
165
166 static  d_open_t        ti_open;
167 static  d_close_t       ti_close;
168 static  d_ioctl_t       ti_ioctl2;
169
170 static struct cdevsw ti_cdevsw = {
171         .d_version =    D_VERSION,
172         .d_flags =      0,
173         .d_open =       ti_open,
174         .d_close =      ti_close,
175         .d_ioctl =      ti_ioctl2,
176         .d_name =       "ti",
177 };
178
179 static int ti_probe(device_t);
180 static int ti_attach(device_t);
181 static int ti_detach(device_t);
182 static void ti_txeof(struct ti_softc *);
183 static void ti_rxeof(struct ti_softc *);
184
185 static void ti_stats_update(struct ti_softc *);
186 static int ti_encap(struct ti_softc *, struct mbuf **);
187
188 static void ti_intr(void *);
189 static void ti_start(struct ifnet *);
190 static void ti_start_locked(struct ifnet *);
191 static int ti_ioctl(struct ifnet *, u_long, caddr_t);
192 static void ti_init(void *);
193 static void ti_init_locked(void *);
194 static void ti_init2(struct ti_softc *);
195 static void ti_stop(struct ti_softc *);
196 static void ti_watchdog(void *);
197 static int ti_shutdown(device_t);
198 static int ti_ifmedia_upd(struct ifnet *);
199 static int ti_ifmedia_upd_locked(struct ti_softc *);
200 static void ti_ifmedia_sts(struct ifnet *, struct ifmediareq *);
201
202 static uint32_t ti_eeprom_putbyte(struct ti_softc *, int);
203 static uint8_t  ti_eeprom_getbyte(struct ti_softc *, int, uint8_t *);
204 static int ti_read_eeprom(struct ti_softc *, caddr_t, int, int);
205
206 static void ti_add_mcast(struct ti_softc *, struct ether_addr *);
207 static void ti_del_mcast(struct ti_softc *, struct ether_addr *);
208 static void ti_setmulti(struct ti_softc *);
209
210 static void ti_mem_read(struct ti_softc *, uint32_t, uint32_t, void *);
211 static void ti_mem_write(struct ti_softc *, uint32_t, uint32_t, void *);
212 static void ti_mem_zero(struct ti_softc *, uint32_t, uint32_t);
213 static int ti_copy_mem(struct ti_softc *, uint32_t, uint32_t, caddr_t, int,
214     int);
215 static int ti_copy_scratch(struct ti_softc *, uint32_t, uint32_t, caddr_t,
216     int, int, int);
217 static int ti_bcopy_swap(const void *, void *, size_t, ti_swap_type);
218 static void ti_loadfw(struct ti_softc *);
219 static void ti_cmd(struct ti_softc *, struct ti_cmd_desc *);
220 static void ti_cmd_ext(struct ti_softc *, struct ti_cmd_desc *, caddr_t, int);
221 static void ti_handle_events(struct ti_softc *);
222 static int ti_alloc_dmamaps(struct ti_softc *);
223 static void ti_free_dmamaps(struct ti_softc *);
224 static int ti_alloc_jumbo_mem(struct ti_softc *);
225 #ifdef TI_PRIVATE_JUMBOS
226 static void *ti_jalloc(struct ti_softc *);
227 static void ti_jfree(void *, void *);
228 #endif /* TI_PRIVATE_JUMBOS */
229 static int ti_newbuf_std(struct ti_softc *, int, struct mbuf *);
230 static int ti_newbuf_mini(struct ti_softc *, int, struct mbuf *);
231 static int ti_newbuf_jumbo(struct ti_softc *, int, struct mbuf *);
232 static int ti_init_rx_ring_std(struct ti_softc *);
233 static void ti_free_rx_ring_std(struct ti_softc *);
234 static int ti_init_rx_ring_jumbo(struct ti_softc *);
235 static void ti_free_rx_ring_jumbo(struct ti_softc *);
236 static int ti_init_rx_ring_mini(struct ti_softc *);
237 static void ti_free_rx_ring_mini(struct ti_softc *);
238 static void ti_free_tx_ring(struct ti_softc *);
239 static int ti_init_tx_ring(struct ti_softc *);
240
241 static int ti_64bitslot_war(struct ti_softc *);
242 static int ti_chipinit(struct ti_softc *);
243 static int ti_gibinit(struct ti_softc *);
244
245 #ifdef TI_JUMBO_HDRSPLIT
246 static __inline void ti_hdr_split(struct mbuf *top, int hdr_len, int pkt_len,
247     int idx);
248 #endif /* TI_JUMBO_HDRSPLIT */
249
250 static device_method_t ti_methods[] = {
251         /* Device interface */
252         DEVMETHOD(device_probe,         ti_probe),
253         DEVMETHOD(device_attach,        ti_attach),
254         DEVMETHOD(device_detach,        ti_detach),
255         DEVMETHOD(device_shutdown,      ti_shutdown),
256         { 0, 0 }
257 };
258
259 static driver_t ti_driver = {
260         "ti",
261         ti_methods,
262         sizeof(struct ti_softc)
263 };
264
265 static devclass_t ti_devclass;
266
267 DRIVER_MODULE(ti, pci, ti_driver, ti_devclass, 0, 0);
268 MODULE_DEPEND(ti, pci, 1, 1, 1);
269 MODULE_DEPEND(ti, ether, 1, 1, 1);
270
271 /*
272  * Send an instruction or address to the EEPROM, check for ACK.
273  */
274 static uint32_t
275 ti_eeprom_putbyte(struct ti_softc *sc, int byte)
276 {
277         int i, ack = 0;
278
279         /*
280          * Make sure we're in TX mode.
281          */
282         TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_TXEN);
283
284         /*
285          * Feed in each bit and stobe the clock.
286          */
287         for (i = 0x80; i; i >>= 1) {
288                 if (byte & i) {
289                         TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_DOUT);
290                 } else {
291                         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_DOUT);
292                 }
293                 DELAY(1);
294                 TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
295                 DELAY(1);
296                 TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
297         }
298
299         /*
300          * Turn off TX mode.
301          */
302         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_TXEN);
303
304         /*
305          * Check for ack.
306          */
307         TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
308         ack = CSR_READ_4(sc, TI_MISC_LOCAL_CTL) & TI_MLC_EE_DIN;
309         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
310
311         return (ack);
312 }
313
314 /*
315  * Read a byte of data stored in the EEPROM at address 'addr.'
316  * We have to send two address bytes since the EEPROM can hold
317  * more than 256 bytes of data.
318  */
319 static uint8_t
320 ti_eeprom_getbyte(struct ti_softc *sc, int addr, uint8_t *dest)
321 {
322         int i;
323         uint8_t byte = 0;
324
325         EEPROM_START;
326
327         /*
328          * Send write control code to EEPROM.
329          */
330         if (ti_eeprom_putbyte(sc, EEPROM_CTL_WRITE)) {
331                 device_printf(sc->ti_dev,
332                     "failed to send write command, status: %x\n",
333                     CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
334                 return (1);
335         }
336
337         /*
338          * Send first byte of address of byte we want to read.
339          */
340         if (ti_eeprom_putbyte(sc, (addr >> 8) & 0xFF)) {
341                 device_printf(sc->ti_dev, "failed to send address, status: %x\n",
342                     CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
343                 return (1);
344         }
345         /*
346          * Send second byte address of byte we want to read.
347          */
348         if (ti_eeprom_putbyte(sc, addr & 0xFF)) {
349                 device_printf(sc->ti_dev, "failed to send address, status: %x\n",
350                     CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
351                 return (1);
352         }
353
354         EEPROM_STOP;
355         EEPROM_START;
356         /*
357          * Send read control code to EEPROM.
358          */
359         if (ti_eeprom_putbyte(sc, EEPROM_CTL_READ)) {
360                 device_printf(sc->ti_dev,
361                     "failed to send read command, status: %x\n",
362                     CSR_READ_4(sc, TI_MISC_LOCAL_CTL));
363                 return (1);
364         }
365
366         /*
367          * Start reading bits from EEPROM.
368          */
369         TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_TXEN);
370         for (i = 0x80; i; i >>= 1) {
371                 TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
372                 DELAY(1);
373                 if (CSR_READ_4(sc, TI_MISC_LOCAL_CTL) & TI_MLC_EE_DIN)
374                         byte |= i;
375                 TI_CLRBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_EE_CLK);
376                 DELAY(1);
377         }
378
379         EEPROM_STOP;
380
381         /*
382          * No ACK generated for read, so just return byte.
383          */
384
385         *dest = byte;
386
387         return (0);
388 }
389
390 /*
391  * Read a sequence of bytes from the EEPROM.
392  */
393 static int
394 ti_read_eeprom(struct ti_softc *sc, caddr_t dest, int off, int cnt)
395 {
396         int err = 0, i;
397         uint8_t byte = 0;
398
399         for (i = 0; i < cnt; i++) {
400                 err = ti_eeprom_getbyte(sc, off + i, &byte);
401                 if (err)
402                         break;
403                 *(dest + i) = byte;
404         }
405
406         return (err ? 1 : 0);
407 }
408
409 /*
410  * NIC memory read function.
411  * Can be used to copy data from NIC local memory.
412  */
413 static void
414 ti_mem_read(struct ti_softc *sc, uint32_t addr, uint32_t len, void *buf)
415 {
416         int segptr, segsize, cnt;
417         char *ptr;
418
419         segptr = addr;
420         cnt = len;
421         ptr = buf;
422
423         while (cnt) {
424                 if (cnt < TI_WINLEN)
425                         segsize = cnt;
426                 else
427                         segsize = TI_WINLEN - (segptr % TI_WINLEN);
428                 CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1)));
429                 bus_space_read_region_4(sc->ti_btag, sc->ti_bhandle,
430                     TI_WINDOW + (segptr & (TI_WINLEN - 1)), (uint32_t *)ptr,
431                     segsize / 4);
432                 ptr += segsize;
433                 segptr += segsize;
434                 cnt -= segsize;
435         }
436 }
437
438
439 /*
440  * NIC memory write function.
441  * Can be used to copy data into NIC local memory.
442  */
443 static void
444 ti_mem_write(struct ti_softc *sc, uint32_t addr, uint32_t len, void *buf)
445 {
446         int segptr, segsize, cnt;
447         char *ptr;
448
449         segptr = addr;
450         cnt = len;
451         ptr = buf;
452
453         while (cnt) {
454                 if (cnt < TI_WINLEN)
455                         segsize = cnt;
456                 else
457                         segsize = TI_WINLEN - (segptr % TI_WINLEN);
458                 CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1)));
459                 bus_space_write_region_4(sc->ti_btag, sc->ti_bhandle,
460                     TI_WINDOW + (segptr & (TI_WINLEN - 1)), (uint32_t *)ptr,
461                     segsize / 4);
462                 ptr += segsize;
463                 segptr += segsize;
464                 cnt -= segsize;
465         }
466 }
467
468 /*
469  * NIC memory read function.
470  * Can be used to clear a section of NIC local memory.
471  */
472 static void
473 ti_mem_zero(struct ti_softc *sc, uint32_t addr, uint32_t len)
474 {
475         int segptr, segsize, cnt;
476
477         segptr = addr;
478         cnt = len;
479
480         while (cnt) {
481                 if (cnt < TI_WINLEN)
482                         segsize = cnt;
483                 else
484                         segsize = TI_WINLEN - (segptr % TI_WINLEN);
485                 CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1)));
486                 bus_space_set_region_4(sc->ti_btag, sc->ti_bhandle,
487                     TI_WINDOW + (segptr & (TI_WINLEN - 1)), 0, segsize / 4);
488                 segptr += segsize;
489                 cnt -= segsize;
490         }
491 }
492
493 static int
494 ti_copy_mem(struct ti_softc *sc, uint32_t tigon_addr, uint32_t len,
495     caddr_t buf, int useraddr, int readdata)
496 {
497         int segptr, segsize, cnt;
498         caddr_t ptr;
499         uint32_t origwin;
500         uint8_t tmparray[TI_WINLEN], tmparray2[TI_WINLEN];
501         int resid, segresid;
502         int first_pass;
503
504         TI_LOCK_ASSERT(sc);
505
506         /*
507          * At the moment, we don't handle non-aligned cases, we just bail.
508          * If this proves to be a problem, it will be fixed.
509          */
510         if ((readdata == 0)
511          && (tigon_addr & 0x3)) {
512                 device_printf(sc->ti_dev, "%s: tigon address %#x isn't "
513                     "word-aligned\n", __func__, tigon_addr);
514                 device_printf(sc->ti_dev, "%s: unaligned writes aren't "
515                     "yet supported\n", __func__);
516                 return (EINVAL);
517         }
518
519         segptr = tigon_addr & ~0x3;
520         segresid = tigon_addr - segptr;
521
522         /*
523          * This is the non-aligned amount left over that we'll need to
524          * copy.
525          */
526         resid = len & 0x3;
527
528         /* Add in the left over amount at the front of the buffer */
529         resid += segresid;
530
531         cnt = len & ~0x3;
532         /*
533          * If resid + segresid is >= 4, add multiples of 4 to the count and
534          * decrease the residual by that much.
535          */
536         cnt += resid & ~0x3;
537         resid -= resid & ~0x3;
538
539         ptr = buf;
540
541         first_pass = 1;
542
543         /*
544          * Save the old window base value.
545          */
546         origwin = CSR_READ_4(sc, TI_WINBASE);
547
548         while (cnt) {
549                 bus_size_t ti_offset;
550
551                 if (cnt < TI_WINLEN)
552                         segsize = cnt;
553                 else
554                         segsize = TI_WINLEN - (segptr % TI_WINLEN);
555                 CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1)));
556
557                 ti_offset = TI_WINDOW + (segptr & (TI_WINLEN -1));
558
559                 if (readdata) {
560
561                         bus_space_read_region_4(sc->ti_btag,
562                                                 sc->ti_bhandle, ti_offset,
563                                                 (uint32_t *)tmparray,
564                                                 segsize >> 2);
565                         if (useraddr) {
566                                 /*
567                                  * Yeah, this is a little on the kludgy
568                                  * side, but at least this code is only
569                                  * used for debugging.
570                                  */
571                                 ti_bcopy_swap(tmparray, tmparray2, segsize,
572                                               TI_SWAP_NTOH);
573
574                                 TI_UNLOCK(sc);
575                                 if (first_pass) {
576                                         copyout(&tmparray2[segresid], ptr,
577                                                 segsize - segresid);
578                                         first_pass = 0;
579                                 } else
580                                         copyout(tmparray2, ptr, segsize);
581                                 TI_LOCK(sc);
582                         } else {
583                                 if (first_pass) {
584
585                                         ti_bcopy_swap(tmparray, tmparray2,
586                                                       segsize, TI_SWAP_NTOH);
587                                         TI_UNLOCK(sc);
588                                         bcopy(&tmparray2[segresid], ptr,
589                                               segsize - segresid);
590                                         TI_LOCK(sc);
591                                         first_pass = 0;
592                                 } else
593                                         ti_bcopy_swap(tmparray, ptr, segsize,
594                                                       TI_SWAP_NTOH);
595                         }
596
597                 } else {
598                         if (useraddr) {
599                                 TI_UNLOCK(sc);
600                                 copyin(ptr, tmparray2, segsize);
601                                 TI_LOCK(sc);
602                                 ti_bcopy_swap(tmparray2, tmparray, segsize,
603                                               TI_SWAP_HTON);
604                         } else
605                                 ti_bcopy_swap(ptr, tmparray, segsize,
606                                               TI_SWAP_HTON);
607
608                         bus_space_write_region_4(sc->ti_btag,
609                                                  sc->ti_bhandle, ti_offset,
610                                                  (uint32_t *)tmparray,
611                                                  segsize >> 2);
612                 }
613                 segptr += segsize;
614                 ptr += segsize;
615                 cnt -= segsize;
616         }
617
618         /*
619          * Handle leftover, non-word-aligned bytes.
620          */
621         if (resid != 0) {
622                 uint32_t        tmpval, tmpval2;
623                 bus_size_t      ti_offset;
624
625                 /*
626                  * Set the segment pointer.
627                  */
628                 CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1)));
629
630                 ti_offset = TI_WINDOW + (segptr & (TI_WINLEN - 1));
631
632                 /*
633                  * First, grab whatever is in our source/destination.
634                  * We'll obviously need this for reads, but also for
635                  * writes, since we'll be doing read/modify/write.
636                  */
637                 bus_space_read_region_4(sc->ti_btag, sc->ti_bhandle,
638                                         ti_offset, &tmpval, 1);
639
640                 /*
641                  * Next, translate this from little-endian to big-endian
642                  * (at least on i386 boxes).
643                  */
644                 tmpval2 = ntohl(tmpval);
645
646                 if (readdata) {
647                         /*
648                          * If we're reading, just copy the leftover number
649                          * of bytes from the host byte order buffer to
650                          * the user's buffer.
651                          */
652                         if (useraddr) {
653                                 TI_UNLOCK(sc);
654                                 copyout(&tmpval2, ptr, resid);
655                                 TI_LOCK(sc);
656                         } else
657                                 bcopy(&tmpval2, ptr, resid);
658                 } else {
659                         /*
660                          * If we're writing, first copy the bytes to be
661                          * written into the network byte order buffer,
662                          * leaving the rest of the buffer with whatever was
663                          * originally in there.  Then, swap the bytes
664                          * around into host order and write them out.
665                          *
666                          * XXX KDM the read side of this has been verified
667                          * to work, but the write side of it has not been
668                          * verified.  So user beware.
669                          */
670                         if (useraddr) {
671                                 TI_UNLOCK(sc);
672                                 copyin(ptr, &tmpval2, resid);
673                                 TI_LOCK(sc);
674                         } else
675                                 bcopy(ptr, &tmpval2, resid);
676
677                         tmpval = htonl(tmpval2);
678
679                         bus_space_write_region_4(sc->ti_btag, sc->ti_bhandle,
680                                                  ti_offset, &tmpval, 1);
681                 }
682         }
683
684         CSR_WRITE_4(sc, TI_WINBASE, origwin);
685
686         return (0);
687 }
688
689 static int
690 ti_copy_scratch(struct ti_softc *sc, uint32_t tigon_addr, uint32_t len,
691     caddr_t buf, int useraddr, int readdata, int cpu)
692 {
693         uint32_t segptr;
694         int cnt;
695         uint32_t tmpval, tmpval2;
696         caddr_t ptr;
697
698         TI_LOCK_ASSERT(sc);
699
700         /*
701          * At the moment, we don't handle non-aligned cases, we just bail.
702          * If this proves to be a problem, it will be fixed.
703          */
704         if (tigon_addr & 0x3) {
705                 device_printf(sc->ti_dev, "%s: tigon address %#x "
706                     "isn't word-aligned\n", __func__, tigon_addr);
707                 return (EINVAL);
708         }
709
710         if (len & 0x3) {
711                 device_printf(sc->ti_dev, "%s: transfer length %d "
712                     "isn't word-aligned\n", __func__, len);
713                 return (EINVAL);
714         }
715
716         segptr = tigon_addr;
717         cnt = len;
718         ptr = buf;
719
720         while (cnt) {
721                 CSR_WRITE_4(sc, CPU_REG(TI_SRAM_ADDR, cpu), segptr);
722
723                 if (readdata) {
724                         tmpval2 = CSR_READ_4(sc, CPU_REG(TI_SRAM_DATA, cpu));
725
726                         tmpval = ntohl(tmpval2);
727
728                         /*
729                          * Note:  I've used this debugging interface
730                          * extensively with Alteon's 12.3.15 firmware,
731                          * compiled with GCC 2.7.2.1 and binutils 2.9.1.
732                          *
733                          * When you compile the firmware without
734                          * optimization, which is necessary sometimes in
735                          * order to properly step through it, you sometimes
736                          * read out a bogus value of 0xc0017c instead of
737                          * whatever was supposed to be in that scratchpad
738                          * location.  That value is on the stack somewhere,
739                          * but I've never been able to figure out what was
740                          * causing the problem.
741                          *
742                          * The address seems to pop up in random places,
743                          * often not in the same place on two subsequent
744                          * reads.
745                          *
746                          * In any case, the underlying data doesn't seem
747                          * to be affected, just the value read out.
748                          *
749                          * KDM, 3/7/2000
750                          */
751
752                         if (tmpval2 == 0xc0017c)
753                                 device_printf(sc->ti_dev, "found 0xc0017c at "
754                                     "%#x (tmpval2)\n", segptr);
755
756                         if (tmpval == 0xc0017c)
757                                 device_printf(sc->ti_dev, "found 0xc0017c at "
758                                     "%#x (tmpval)\n", segptr);
759
760                         if (useraddr)
761                                 copyout(&tmpval, ptr, 4);
762                         else
763                                 bcopy(&tmpval, ptr, 4);
764                 } else {
765                         if (useraddr)
766                                 copyin(ptr, &tmpval2, 4);
767                         else
768                                 bcopy(ptr, &tmpval2, 4);
769
770                         tmpval = htonl(tmpval2);
771
772                         CSR_WRITE_4(sc, CPU_REG(TI_SRAM_DATA, cpu), tmpval);
773                 }
774
775                 cnt -= 4;
776                 segptr += 4;
777                 ptr += 4;
778         }
779
780         return (0);
781 }
782
783 static int
784 ti_bcopy_swap(const void *src, void *dst, size_t len, ti_swap_type swap_type)
785 {
786         const uint8_t *tmpsrc;
787         uint8_t *tmpdst;
788         size_t tmplen;
789
790         if (len & 0x3) {
791                 printf("ti_bcopy_swap: length %zd isn't 32-bit aligned\n",
792                        len);
793                 return (-1);
794         }
795
796         tmpsrc = src;
797         tmpdst = dst;
798         tmplen = len;
799
800         while (tmplen) {
801                 if (swap_type == TI_SWAP_NTOH)
802                         *(uint32_t *)tmpdst =
803                                 ntohl(*(const uint32_t *)tmpsrc);
804                 else
805                         *(uint32_t *)tmpdst =
806                                 htonl(*(const uint32_t *)tmpsrc);
807
808                 tmpsrc += 4;
809                 tmpdst += 4;
810                 tmplen -= 4;
811         }
812
813         return (0);
814 }
815
816 /*
817  * Load firmware image into the NIC. Check that the firmware revision
818  * is acceptable and see if we want the firmware for the Tigon 1 or
819  * Tigon 2.
820  */
821 static void
822 ti_loadfw(struct ti_softc *sc)
823 {
824
825         TI_LOCK_ASSERT(sc);
826
827         switch (sc->ti_hwrev) {
828         case TI_HWREV_TIGON:
829                 if (tigonFwReleaseMajor != TI_FIRMWARE_MAJOR ||
830                     tigonFwReleaseMinor != TI_FIRMWARE_MINOR ||
831                     tigonFwReleaseFix != TI_FIRMWARE_FIX) {
832                         device_printf(sc->ti_dev, "firmware revision mismatch; "
833                             "want %d.%d.%d, got %d.%d.%d\n",
834                             TI_FIRMWARE_MAJOR, TI_FIRMWARE_MINOR,
835                             TI_FIRMWARE_FIX, tigonFwReleaseMajor,
836                             tigonFwReleaseMinor, tigonFwReleaseFix);
837                         return;
838                 }
839                 ti_mem_write(sc, tigonFwTextAddr, tigonFwTextLen, tigonFwText);
840                 ti_mem_write(sc, tigonFwDataAddr, tigonFwDataLen, tigonFwData);
841                 ti_mem_write(sc, tigonFwRodataAddr, tigonFwRodataLen,
842                     tigonFwRodata);
843                 ti_mem_zero(sc, tigonFwBssAddr, tigonFwBssLen);
844                 ti_mem_zero(sc, tigonFwSbssAddr, tigonFwSbssLen);
845                 CSR_WRITE_4(sc, TI_CPU_PROGRAM_COUNTER, tigonFwStartAddr);
846                 break;
847         case TI_HWREV_TIGON_II:
848                 if (tigon2FwReleaseMajor != TI_FIRMWARE_MAJOR ||
849                     tigon2FwReleaseMinor != TI_FIRMWARE_MINOR ||
850                     tigon2FwReleaseFix != TI_FIRMWARE_FIX) {
851                         device_printf(sc->ti_dev, "firmware revision mismatch; "
852                             "want %d.%d.%d, got %d.%d.%d\n",
853                             TI_FIRMWARE_MAJOR, TI_FIRMWARE_MINOR,
854                             TI_FIRMWARE_FIX, tigon2FwReleaseMajor,
855                             tigon2FwReleaseMinor, tigon2FwReleaseFix);
856                         return;
857                 }
858                 ti_mem_write(sc, tigon2FwTextAddr, tigon2FwTextLen,
859                     tigon2FwText);
860                 ti_mem_write(sc, tigon2FwDataAddr, tigon2FwDataLen,
861                     tigon2FwData);
862                 ti_mem_write(sc, tigon2FwRodataAddr, tigon2FwRodataLen,
863                     tigon2FwRodata);
864                 ti_mem_zero(sc, tigon2FwBssAddr, tigon2FwBssLen);
865                 ti_mem_zero(sc, tigon2FwSbssAddr, tigon2FwSbssLen);
866                 CSR_WRITE_4(sc, TI_CPU_PROGRAM_COUNTER, tigon2FwStartAddr);
867                 break;
868         default:
869                 device_printf(sc->ti_dev,
870                     "can't load firmware: unknown hardware rev\n");
871                 break;
872         }
873 }
874
875 /*
876  * Send the NIC a command via the command ring.
877  */
878 static void
879 ti_cmd(struct ti_softc *sc, struct ti_cmd_desc *cmd)
880 {
881         int index;
882
883         index = sc->ti_cmd_saved_prodidx;
884         CSR_WRITE_4(sc, TI_GCR_CMDRING + (index * 4), *(uint32_t *)(cmd));
885         TI_INC(index, TI_CMD_RING_CNT);
886         CSR_WRITE_4(sc, TI_MB_CMDPROD_IDX, index);
887         sc->ti_cmd_saved_prodidx = index;
888 }
889
890 /*
891  * Send the NIC an extended command. The 'len' parameter specifies the
892  * number of command slots to include after the initial command.
893  */
894 static void
895 ti_cmd_ext(struct ti_softc *sc, struct ti_cmd_desc *cmd, caddr_t arg, int len)
896 {
897         int index;
898         int i;
899
900         index = sc->ti_cmd_saved_prodidx;
901         CSR_WRITE_4(sc, TI_GCR_CMDRING + (index * 4), *(uint32_t *)(cmd));
902         TI_INC(index, TI_CMD_RING_CNT);
903         for (i = 0; i < len; i++) {
904                 CSR_WRITE_4(sc, TI_GCR_CMDRING + (index * 4),
905                     *(uint32_t *)(&arg[i * 4]));
906                 TI_INC(index, TI_CMD_RING_CNT);
907         }
908         CSR_WRITE_4(sc, TI_MB_CMDPROD_IDX, index);
909         sc->ti_cmd_saved_prodidx = index;
910 }
911
912 /*
913  * Handle events that have triggered interrupts.
914  */
915 static void
916 ti_handle_events(struct ti_softc *sc)
917 {
918         struct ti_event_desc *e;
919
920         if (sc->ti_rdata->ti_event_ring == NULL)
921                 return;
922
923         while (sc->ti_ev_saved_considx != sc->ti_ev_prodidx.ti_idx) {
924                 e = &sc->ti_rdata->ti_event_ring[sc->ti_ev_saved_considx];
925                 switch (TI_EVENT_EVENT(e)) {
926                 case TI_EV_LINKSTAT_CHANGED:
927                         sc->ti_linkstat = TI_EVENT_CODE(e);
928                         if (sc->ti_linkstat == TI_EV_CODE_LINK_UP) {
929                                 if_link_state_change(sc->ti_ifp, LINK_STATE_UP);
930                                 sc->ti_ifp->if_baudrate = IF_Mbps(100);
931                                 if (bootverbose)
932                                         device_printf(sc->ti_dev,
933                                             "10/100 link up\n");
934                         } else if (sc->ti_linkstat == TI_EV_CODE_GIG_LINK_UP) {
935                                 if_link_state_change(sc->ti_ifp, LINK_STATE_UP);
936                                 sc->ti_ifp->if_baudrate = IF_Gbps(1UL);
937                                 if (bootverbose)
938                                         device_printf(sc->ti_dev,
939                                             "gigabit link up\n");
940                         } else if (sc->ti_linkstat == TI_EV_CODE_LINK_DOWN) {
941                                 if_link_state_change(sc->ti_ifp,
942                                     LINK_STATE_DOWN);
943                                 sc->ti_ifp->if_baudrate = 0;
944                                 if (bootverbose)
945                                         device_printf(sc->ti_dev,
946                                             "link down\n");
947                         }
948                         break;
949                 case TI_EV_ERROR:
950                         if (TI_EVENT_CODE(e) == TI_EV_CODE_ERR_INVAL_CMD)
951                                 device_printf(sc->ti_dev, "invalid command\n");
952                         else if (TI_EVENT_CODE(e) == TI_EV_CODE_ERR_UNIMP_CMD)
953                                 device_printf(sc->ti_dev, "unknown command\n");
954                         else if (TI_EVENT_CODE(e) == TI_EV_CODE_ERR_BADCFG)
955                                 device_printf(sc->ti_dev, "bad config data\n");
956                         break;
957                 case TI_EV_FIRMWARE_UP:
958                         ti_init2(sc);
959                         break;
960                 case TI_EV_STATS_UPDATED:
961                         ti_stats_update(sc);
962                         break;
963                 case TI_EV_RESET_JUMBO_RING:
964                 case TI_EV_MCAST_UPDATED:
965                         /* Who cares. */
966                         break;
967                 default:
968                         device_printf(sc->ti_dev, "unknown event: %d\n",
969                             TI_EVENT_EVENT(e));
970                         break;
971                 }
972                 /* Advance the consumer index. */
973                 TI_INC(sc->ti_ev_saved_considx, TI_EVENT_RING_CNT);
974                 CSR_WRITE_4(sc, TI_GCR_EVENTCONS_IDX, sc->ti_ev_saved_considx);
975         }
976 }
977
978 static int
979 ti_alloc_dmamaps(struct ti_softc *sc)
980 {
981         int i;
982
983         for (i = 0; i < TI_TX_RING_CNT; i++) {
984                 sc->ti_cdata.ti_txdesc[i].tx_m = NULL;
985                 sc->ti_cdata.ti_txdesc[i].tx_dmamap = 0;
986                 if (bus_dmamap_create(sc->ti_mbuftx_dmat, 0,
987                                       &sc->ti_cdata.ti_txdesc[i].tx_dmamap))
988                         return (ENOBUFS);
989         }
990         for (i = 0; i < TI_STD_RX_RING_CNT; i++) {
991                 if (bus_dmamap_create(sc->ti_mbufrx_dmat, 0,
992                                       &sc->ti_cdata.ti_rx_std_maps[i]))
993                         return (ENOBUFS);
994         }
995
996         for (i = 0; i < TI_JUMBO_RX_RING_CNT; i++) {
997                 if (bus_dmamap_create(sc->ti_jumbo_dmat, 0,
998                                       &sc->ti_cdata.ti_rx_jumbo_maps[i]))
999                         return (ENOBUFS);
1000         }
1001         for (i = 0; i < TI_MINI_RX_RING_CNT; i++) {
1002                 if (bus_dmamap_create(sc->ti_mbufrx_dmat, 0,
1003                                       &sc->ti_cdata.ti_rx_mini_maps[i]))
1004                         return (ENOBUFS);
1005         }
1006
1007         return (0);
1008 }
1009
1010 static void
1011 ti_free_dmamaps(struct ti_softc *sc)
1012 {
1013         int i;
1014
1015         if (sc->ti_mbuftx_dmat)
1016                 for (i = 0; i < TI_TX_RING_CNT; i++)
1017                         if (sc->ti_cdata.ti_txdesc[i].tx_dmamap) {
1018                                 bus_dmamap_destroy(sc->ti_mbuftx_dmat,
1019                                     sc->ti_cdata.ti_txdesc[i].tx_dmamap);
1020                                 sc->ti_cdata.ti_txdesc[i].tx_dmamap = 0;
1021                         }
1022
1023         if (sc->ti_mbufrx_dmat)
1024                 for (i = 0; i < TI_STD_RX_RING_CNT; i++)
1025                         if (sc->ti_cdata.ti_rx_std_maps[i]) {
1026                                 bus_dmamap_destroy(sc->ti_mbufrx_dmat,
1027                                     sc->ti_cdata.ti_rx_std_maps[i]);
1028                                 sc->ti_cdata.ti_rx_std_maps[i] = 0;
1029                         }
1030
1031         if (sc->ti_jumbo_dmat)
1032                 for (i = 0; i < TI_JUMBO_RX_RING_CNT; i++)
1033                         if (sc->ti_cdata.ti_rx_jumbo_maps[i]) {
1034                                 bus_dmamap_destroy(sc->ti_jumbo_dmat,
1035                                     sc->ti_cdata.ti_rx_jumbo_maps[i]);
1036                                 sc->ti_cdata.ti_rx_jumbo_maps[i] = 0;
1037                         }
1038         if (sc->ti_mbufrx_dmat)
1039                 for (i = 0; i < TI_MINI_RX_RING_CNT; i++)
1040                         if (sc->ti_cdata.ti_rx_mini_maps[i]) {
1041                                 bus_dmamap_destroy(sc->ti_mbufrx_dmat,
1042                                     sc->ti_cdata.ti_rx_mini_maps[i]);
1043                                 sc->ti_cdata.ti_rx_mini_maps[i] = 0;
1044                         }
1045 }
1046
1047 #ifdef TI_PRIVATE_JUMBOS
1048
1049 /*
1050  * Memory management for the jumbo receive ring is a pain in the
1051  * butt. We need to allocate at least 9018 bytes of space per frame,
1052  * _and_ it has to be contiguous (unless you use the extended
1053  * jumbo descriptor format). Using malloc() all the time won't
1054  * work: malloc() allocates memory in powers of two, which means we
1055  * would end up wasting a considerable amount of space by allocating
1056  * 9K chunks. We don't have a jumbo mbuf cluster pool. Thus, we have
1057  * to do our own memory management.
1058  *
1059  * The driver needs to allocate a contiguous chunk of memory at boot
1060  * time. We then chop this up ourselves into 9K pieces and use them
1061  * as external mbuf storage.
1062  *
1063  * One issue here is how much memory to allocate. The jumbo ring has
1064  * 256 slots in it, but at 9K per slot than can consume over 2MB of
1065  * RAM. This is a bit much, especially considering we also need
1066  * RAM for the standard ring and mini ring (on the Tigon 2). To
1067  * save space, we only actually allocate enough memory for 64 slots
1068  * by default, which works out to between 500 and 600K. This can
1069  * be tuned by changing a #define in if_tireg.h.
1070  */
1071
1072 static int
1073 ti_alloc_jumbo_mem(struct ti_softc *sc)
1074 {
1075         struct ti_jpool_entry *entry;
1076         caddr_t ptr;
1077         int i;
1078
1079         /*
1080          * Grab a big chunk o' storage.  Since we are chopping this pool up
1081          * into ~9k chunks, there doesn't appear to be a need to use page
1082          * alignment.
1083          */
1084         if (bus_dma_tag_create(sc->ti_parent_dmat,      /* parent */
1085                                 1, 0,                   /* algnmnt, boundary */
1086                                 BUS_SPACE_MAXADDR,      /* lowaddr */
1087                                 BUS_SPACE_MAXADDR,      /* highaddr */
1088                                 NULL, NULL,             /* filter, filterarg */
1089                                 TI_JMEM,                /* maxsize */
1090                                 1,                      /* nsegments */
1091                                 TI_JMEM,                /* maxsegsize */
1092                                 0,                      /* flags */
1093                                 NULL, NULL,             /* lockfunc, lockarg */
1094                                 &sc->ti_jumbo_dmat) != 0) {
1095                 device_printf(sc->ti_dev, "Failed to allocate jumbo dmat\n");
1096                 return (ENOBUFS);
1097         }
1098
1099         if (bus_dmamem_alloc(sc->ti_jumbo_dmat,
1100                              (void**)&sc->ti_cdata.ti_jumbo_buf,
1101                              BUS_DMA_NOWAIT | BUS_DMA_COHERENT,
1102                              &sc->ti_jumbo_dmamap) != 0) {
1103                 device_printf(sc->ti_dev, "Failed to allocate jumbo memory\n");
1104                 return (ENOBUFS);
1105         }
1106
1107         SLIST_INIT(&sc->ti_jfree_listhead);
1108         SLIST_INIT(&sc->ti_jinuse_listhead);
1109
1110         /*
1111          * Now divide it up into 9K pieces and save the addresses
1112          * in an array.
1113          */
1114         ptr = sc->ti_cdata.ti_jumbo_buf;
1115         for (i = 0; i < TI_JSLOTS; i++) {
1116                 sc->ti_cdata.ti_jslots[i] = ptr;
1117                 ptr += TI_JLEN;
1118                 entry = malloc(sizeof(struct ti_jpool_entry),
1119                                M_DEVBUF, M_NOWAIT);
1120                 if (entry == NULL) {
1121                         device_printf(sc->ti_dev, "no memory for jumbo "
1122                             "buffer queue!\n");
1123                         return (ENOBUFS);
1124                 }
1125                 entry->slot = i;
1126                 SLIST_INSERT_HEAD(&sc->ti_jfree_listhead, entry, jpool_entries);
1127         }
1128
1129         return (0);
1130 }
1131
1132 /*
1133  * Allocate a jumbo buffer.
1134  */
1135 static void *ti_jalloc(struct ti_softc *sc)
1136 {
1137         struct ti_jpool_entry *entry;
1138
1139         entry = SLIST_FIRST(&sc->ti_jfree_listhead);
1140
1141         if (entry == NULL) {
1142                 device_printf(sc->ti_dev, "no free jumbo buffers\n");
1143                 return (NULL);
1144         }
1145
1146         SLIST_REMOVE_HEAD(&sc->ti_jfree_listhead, jpool_entries);
1147         SLIST_INSERT_HEAD(&sc->ti_jinuse_listhead, entry, jpool_entries);
1148         return (sc->ti_cdata.ti_jslots[entry->slot]);
1149 }
1150
1151 /*
1152  * Release a jumbo buffer.
1153  */
1154 static void
1155 ti_jfree(void *buf, void *args)
1156 {
1157         struct ti_softc *sc;
1158         int i;
1159         struct ti_jpool_entry *entry;
1160
1161         /* Extract the softc struct pointer. */
1162         sc = (struct ti_softc *)args;
1163
1164         if (sc == NULL)
1165                 panic("ti_jfree: didn't get softc pointer!");
1166
1167         /* calculate the slot this buffer belongs to */
1168         i = ((vm_offset_t)buf
1169              - (vm_offset_t)sc->ti_cdata.ti_jumbo_buf) / TI_JLEN;
1170
1171         if ((i < 0) || (i >= TI_JSLOTS))
1172                 panic("ti_jfree: asked to free buffer that we don't manage!");
1173
1174         entry = SLIST_FIRST(&sc->ti_jinuse_listhead);
1175         if (entry == NULL)
1176                 panic("ti_jfree: buffer not in use!");
1177         entry->slot = i;
1178         SLIST_REMOVE_HEAD(&sc->ti_jinuse_listhead, jpool_entries);
1179         SLIST_INSERT_HEAD(&sc->ti_jfree_listhead, entry, jpool_entries);
1180 }
1181
1182 #else
1183
1184 static int
1185 ti_alloc_jumbo_mem(struct ti_softc *sc)
1186 {
1187
1188         /*
1189          * The VM system will take care of providing aligned pages.  Alignment
1190          * is set to 1 here so that busdma resources won't be wasted.
1191          */
1192         if (bus_dma_tag_create(sc->ti_parent_dmat,      /* parent */
1193                                 1, 0,                   /* algnmnt, boundary */
1194                                 BUS_SPACE_MAXADDR,      /* lowaddr */
1195                                 BUS_SPACE_MAXADDR,      /* highaddr */
1196                                 NULL, NULL,             /* filter, filterarg */
1197                                 PAGE_SIZE * 4 /*XXX*/,  /* maxsize */
1198                                 4,                      /* nsegments */
1199                                 PAGE_SIZE,              /* maxsegsize */
1200                                 0,                      /* flags */
1201                                 NULL, NULL,             /* lockfunc, lockarg */
1202                                 &sc->ti_jumbo_dmat) != 0) {
1203                 device_printf(sc->ti_dev, "Failed to allocate jumbo dmat\n");
1204                 return (ENOBUFS);
1205         }
1206
1207         return (0);
1208 }
1209
1210 #endif /* TI_PRIVATE_JUMBOS */
1211
1212 /*
1213  * Intialize a standard receive ring descriptor.
1214  */
1215 static int
1216 ti_newbuf_std(struct ti_softc *sc, int i, struct mbuf *m)
1217 {
1218         bus_dmamap_t map;
1219         bus_dma_segment_t segs;
1220         struct mbuf *m_new = NULL;
1221         struct ti_rx_desc *r;
1222         int nsegs;
1223
1224         nsegs = 0;
1225         if (m == NULL) {
1226                 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1227                 if (m_new == NULL)
1228                         return (ENOBUFS);
1229
1230                 MCLGET(m_new, M_DONTWAIT);
1231                 if (!(m_new->m_flags & M_EXT)) {
1232                         m_freem(m_new);
1233                         return (ENOBUFS);
1234                 }
1235                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1236         } else {
1237                 m_new = m;
1238                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1239                 m_new->m_data = m_new->m_ext.ext_buf;
1240         }
1241
1242         m_adj(m_new, ETHER_ALIGN);
1243         sc->ti_cdata.ti_rx_std_chain[i] = m_new;
1244         r = &sc->ti_rdata->ti_rx_std_ring[i];
1245         map = sc->ti_cdata.ti_rx_std_maps[i];
1246         if (bus_dmamap_load_mbuf_sg(sc->ti_mbufrx_dmat, map, m_new, &segs,
1247                                     &nsegs, 0))
1248                 return (ENOBUFS);
1249         if (nsegs != 1)
1250                 return (ENOBUFS);
1251         ti_hostaddr64(&r->ti_addr, segs.ds_addr);
1252         r->ti_len = segs.ds_len;
1253         r->ti_type = TI_BDTYPE_RECV_BD;
1254         r->ti_flags = 0;
1255         if (sc->ti_ifp->if_capenable & IFCAP_RXCSUM)
1256                 r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM | TI_BDFLAG_IP_CKSUM;
1257         r->ti_idx = i;
1258
1259         bus_dmamap_sync(sc->ti_mbufrx_dmat, map, BUS_DMASYNC_PREREAD);
1260         return (0);
1261 }
1262
1263 /*
1264  * Intialize a mini receive ring descriptor. This only applies to
1265  * the Tigon 2.
1266  */
1267 static int
1268 ti_newbuf_mini(struct ti_softc *sc, int i, struct mbuf *m)
1269 {
1270         bus_dma_segment_t segs;
1271         bus_dmamap_t map;
1272         struct mbuf *m_new = NULL;
1273         struct ti_rx_desc *r;
1274         int nsegs;
1275
1276         nsegs = 0;
1277         if (m == NULL) {
1278                 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1279                 if (m_new == NULL) {
1280                         return (ENOBUFS);
1281                 }
1282                 m_new->m_len = m_new->m_pkthdr.len = MHLEN;
1283         } else {
1284                 m_new = m;
1285                 m_new->m_data = m_new->m_pktdat;
1286                 m_new->m_len = m_new->m_pkthdr.len = MHLEN;
1287         }
1288
1289         m_adj(m_new, ETHER_ALIGN);
1290         r = &sc->ti_rdata->ti_rx_mini_ring[i];
1291         sc->ti_cdata.ti_rx_mini_chain[i] = m_new;
1292         map = sc->ti_cdata.ti_rx_mini_maps[i];
1293         if (bus_dmamap_load_mbuf_sg(sc->ti_mbufrx_dmat, map, m_new, &segs,
1294                                     &nsegs, 0))
1295                 return (ENOBUFS);
1296         if (nsegs != 1)
1297                 return (ENOBUFS);
1298         ti_hostaddr64(&r->ti_addr, segs.ds_addr);
1299         r->ti_len = segs.ds_len;
1300         r->ti_type = TI_BDTYPE_RECV_BD;
1301         r->ti_flags = TI_BDFLAG_MINI_RING;
1302         if (sc->ti_ifp->if_capenable & IFCAP_RXCSUM)
1303                 r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM | TI_BDFLAG_IP_CKSUM;
1304         r->ti_idx = i;
1305
1306         bus_dmamap_sync(sc->ti_mbufrx_dmat, map, BUS_DMASYNC_PREREAD);
1307         return (0);
1308 }
1309
1310 #ifdef TI_PRIVATE_JUMBOS
1311
1312 /*
1313  * Initialize a jumbo receive ring descriptor. This allocates
1314  * a jumbo buffer from the pool managed internally by the driver.
1315  */
1316 static int
1317 ti_newbuf_jumbo(struct ti_softc *sc, int i, struct mbuf *m)
1318 {
1319         bus_dmamap_t map;
1320         struct mbuf *m_new = NULL;
1321         struct ti_rx_desc *r;
1322         int nsegs;
1323         bus_dma_segment_t segs;
1324
1325         if (m == NULL) {
1326                 caddr_t *buf = NULL;
1327
1328                 /* Allocate the mbuf. */
1329                 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1330                 if (m_new == NULL) {
1331                         return (ENOBUFS);
1332                 }
1333
1334                 /* Allocate the jumbo buffer */
1335                 buf = ti_jalloc(sc);
1336                 if (buf == NULL) {
1337                         m_freem(m_new);
1338                         device_printf(sc->ti_dev, "jumbo allocation failed "
1339                             "-- packet dropped!\n");
1340                         return (ENOBUFS);
1341                 }
1342
1343                 /* Attach the buffer to the mbuf. */
1344                 m_new->m_data = (void *) buf;
1345                 m_new->m_len = m_new->m_pkthdr.len = TI_JUMBO_FRAMELEN;
1346                 MEXTADD(m_new, buf, TI_JUMBO_FRAMELEN, ti_jfree, buf,
1347                     (struct ti_softc *)sc, 0, EXT_NET_DRV);
1348         } else {
1349                 m_new = m;
1350                 m_new->m_data = m_new->m_ext.ext_buf;
1351                 m_new->m_ext.ext_size = TI_JUMBO_FRAMELEN;
1352         }
1353
1354         m_adj(m_new, ETHER_ALIGN);
1355         /* Set up the descriptor. */
1356         r = &sc->ti_rdata->ti_rx_jumbo_ring[i];
1357         sc->ti_cdata.ti_rx_jumbo_chain[i] = m_new;
1358         map = sc->ti_cdata.ti_rx_jumbo_maps[i];
1359         if (bus_dmamap_load_mbuf_sg(sc->ti_jumbo_dmat, map, m_new, &segs,
1360                                     &nsegs, 0))
1361                 return (ENOBUFS);
1362         if (nsegs != 1)
1363                 return (ENOBUFS);
1364         ti_hostaddr64(&r->ti_addr, segs.ds_addr);
1365         r->ti_len = segs.ds_len;
1366         r->ti_type = TI_BDTYPE_RECV_JUMBO_BD;
1367         r->ti_flags = TI_BDFLAG_JUMBO_RING;
1368         if (sc->ti_ifp->if_capenable & IFCAP_RXCSUM)
1369                 r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM | TI_BDFLAG_IP_CKSUM;
1370         r->ti_idx = i;
1371
1372         bus_dmamap_sync(sc->ti_jumbo_dmat, map, BUS_DMASYNC_PREREAD);
1373         return (0);
1374 }
1375
1376 #else
1377
1378 #if (PAGE_SIZE == 4096)
1379 #define NPAYLOAD 2
1380 #else
1381 #define NPAYLOAD 1
1382 #endif
1383
1384 #define TCP_HDR_LEN (52 + sizeof(struct ether_header))
1385 #define UDP_HDR_LEN (28 + sizeof(struct ether_header))
1386 #define NFS_HDR_LEN (UDP_HDR_LEN)
1387 static int HDR_LEN = TCP_HDR_LEN;
1388
1389 /*
1390  * Initialize a jumbo receive ring descriptor. This allocates
1391  * a jumbo buffer from the pool managed internally by the driver.
1392  */
1393 static int
1394 ti_newbuf_jumbo(struct ti_softc *sc, int idx, struct mbuf *m_old)
1395 {
1396         bus_dmamap_t map;
1397         struct mbuf *cur, *m_new = NULL;
1398         struct mbuf *m[3] = {NULL, NULL, NULL};
1399         struct ti_rx_desc_ext *r;
1400         vm_page_t frame;
1401         static int color;
1402         /* 1 extra buf to make nobufs easy*/
1403         struct sf_buf *sf[3] = {NULL, NULL, NULL};
1404         int i;
1405         bus_dma_segment_t segs[4];
1406         int nsegs;
1407
1408         if (m_old != NULL) {
1409                 m_new = m_old;
1410                 cur = m_old->m_next;
1411                 for (i = 0; i <= NPAYLOAD; i++){
1412                         m[i] = cur;
1413                         cur = cur->m_next;
1414                 }
1415         } else {
1416                 /* Allocate the mbufs. */
1417                 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1418                 if (m_new == NULL) {
1419                         device_printf(sc->ti_dev, "mbuf allocation failed "
1420                             "-- packet dropped!\n");
1421                         goto nobufs;
1422                 }
1423                 MGET(m[NPAYLOAD], M_DONTWAIT, MT_DATA);
1424                 if (m[NPAYLOAD] == NULL) {
1425                         device_printf(sc->ti_dev, "cluster mbuf allocation "
1426                             "failed -- packet dropped!\n");
1427                         goto nobufs;
1428                 }
1429                 MCLGET(m[NPAYLOAD], M_DONTWAIT);
1430                 if ((m[NPAYLOAD]->m_flags & M_EXT) == 0) {
1431                         device_printf(sc->ti_dev, "mbuf allocation failed "
1432                             "-- packet dropped!\n");
1433                         goto nobufs;
1434                 }
1435                 m[NPAYLOAD]->m_len = MCLBYTES;
1436
1437                 for (i = 0; i < NPAYLOAD; i++){
1438                         MGET(m[i], M_DONTWAIT, MT_DATA);
1439                         if (m[i] == NULL) {
1440                                 device_printf(sc->ti_dev, "mbuf allocation "
1441                                     "failed -- packet dropped!\n");
1442                                 goto nobufs;
1443                         }
1444                         frame = vm_page_alloc(NULL, color++,
1445                             VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ |
1446                             VM_ALLOC_WIRED);
1447                         if (frame == NULL) {
1448                                 device_printf(sc->ti_dev, "buffer allocation "
1449                                     "failed -- packet dropped!\n");
1450                                 printf("      index %d page %d\n", idx, i);
1451                                 goto nobufs;
1452                         }
1453                         sf[i] = sf_buf_alloc(frame, SFB_NOWAIT);
1454                         if (sf[i] == NULL) {
1455                                 vm_page_lock_queues();
1456                                 vm_page_unwire(frame, 0);
1457                                 vm_page_free(frame);
1458                                 vm_page_unlock_queues();
1459                                 device_printf(sc->ti_dev, "buffer allocation "
1460                                     "failed -- packet dropped!\n");
1461                                 printf("      index %d page %d\n", idx, i);
1462                                 goto nobufs;
1463                         }
1464                 }
1465                 for (i = 0; i < NPAYLOAD; i++){
1466                 /* Attach the buffer to the mbuf. */
1467                         m[i]->m_data = (void *)sf_buf_kva(sf[i]);
1468                         m[i]->m_len = PAGE_SIZE;
1469                         MEXTADD(m[i], sf_buf_kva(sf[i]), PAGE_SIZE,
1470                             sf_buf_mext, (void*)sf_buf_kva(sf[i]), sf[i],
1471                             0, EXT_DISPOSABLE);
1472                         m[i]->m_next = m[i+1];
1473                 }
1474                 /* link the buffers to the header */
1475                 m_new->m_next = m[0];
1476                 m_new->m_data += ETHER_ALIGN;
1477                 if (sc->ti_hdrsplit)
1478                         m_new->m_len = MHLEN - ETHER_ALIGN;
1479                 else
1480                         m_new->m_len = HDR_LEN;
1481                 m_new->m_pkthdr.len = NPAYLOAD * PAGE_SIZE + m_new->m_len;
1482         }
1483
1484         /* Set up the descriptor. */
1485         r = &sc->ti_rdata->ti_rx_jumbo_ring[idx];
1486         sc->ti_cdata.ti_rx_jumbo_chain[idx] = m_new;
1487         map = sc->ti_cdata.ti_rx_jumbo_maps[i];
1488         if (bus_dmamap_load_mbuf_sg(sc->ti_jumbo_dmat, map, m_new, segs,
1489                                     &nsegs, 0))
1490                 return (ENOBUFS);
1491         if ((nsegs < 1) || (nsegs > 4))
1492                 return (ENOBUFS);
1493         ti_hostaddr64(&r->ti_addr0, segs[0].ds_addr);
1494         r->ti_len0 = m_new->m_len;
1495
1496         ti_hostaddr64(&r->ti_addr1, segs[1].ds_addr);
1497         r->ti_len1 = PAGE_SIZE;
1498
1499         ti_hostaddr64(&r->ti_addr2, segs[2].ds_addr);
1500         r->ti_len2 = m[1]->m_ext.ext_size; /* could be PAGE_SIZE or MCLBYTES */
1501
1502         if (PAGE_SIZE == 4096) {
1503                 ti_hostaddr64(&r->ti_addr3, segs[3].ds_addr);
1504                 r->ti_len3 = MCLBYTES;
1505         } else {
1506                 r->ti_len3 = 0;
1507         }
1508         r->ti_type = TI_BDTYPE_RECV_JUMBO_BD;
1509
1510         r->ti_flags = TI_BDFLAG_JUMBO_RING|TI_RCB_FLAG_USE_EXT_RX_BD;
1511
1512         if (sc->ti_ifp->if_capenable & IFCAP_RXCSUM)
1513                 r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM|TI_BDFLAG_IP_CKSUM;
1514
1515         r->ti_idx = idx;
1516
1517         bus_dmamap_sync(sc->ti_jumbo_dmat, map, BUS_DMASYNC_PREREAD);
1518         return (0);
1519
1520 nobufs:
1521
1522         /*
1523          * Warning! :
1524          * This can only be called before the mbufs are strung together.
1525          * If the mbufs are strung together, m_freem() will free the chain,
1526          * so that the later mbufs will be freed multiple times.
1527          */
1528         if (m_new)
1529                 m_freem(m_new);
1530
1531         for (i = 0; i < 3; i++) {
1532                 if (m[i])
1533                         m_freem(m[i]);
1534                 if (sf[i])
1535                         sf_buf_mext((void *)sf_buf_kva(sf[i]), sf[i]);
1536         }
1537         return (ENOBUFS);
1538 }
1539 #endif
1540
1541 /*
1542  * The standard receive ring has 512 entries in it. At 2K per mbuf cluster,
1543  * that's 1MB or memory, which is a lot. For now, we fill only the first
1544  * 256 ring entries and hope that our CPU is fast enough to keep up with
1545  * the NIC.
1546  */
1547 static int
1548 ti_init_rx_ring_std(struct ti_softc *sc)
1549 {
1550         int i;
1551         struct ti_cmd_desc cmd;
1552
1553         for (i = 0; i < TI_SSLOTS; i++) {
1554                 if (ti_newbuf_std(sc, i, NULL) == ENOBUFS)
1555                         return (ENOBUFS);
1556         };
1557
1558         TI_UPDATE_STDPROD(sc, i - 1);
1559         sc->ti_std = i - 1;
1560
1561         return (0);
1562 }
1563
1564 static void
1565 ti_free_rx_ring_std(struct ti_softc *sc)
1566 {
1567         bus_dmamap_t map;
1568         int i;
1569
1570         for (i = 0; i < TI_STD_RX_RING_CNT; i++) {
1571                 if (sc->ti_cdata.ti_rx_std_chain[i] != NULL) {
1572                         map = sc->ti_cdata.ti_rx_std_maps[i];
1573                         bus_dmamap_sync(sc->ti_mbufrx_dmat, map,
1574                             BUS_DMASYNC_POSTREAD);
1575                         bus_dmamap_unload(sc->ti_mbufrx_dmat, map);
1576                         m_freem(sc->ti_cdata.ti_rx_std_chain[i]);
1577                         sc->ti_cdata.ti_rx_std_chain[i] = NULL;
1578                 }
1579                 bzero((char *)&sc->ti_rdata->ti_rx_std_ring[i],
1580                     sizeof(struct ti_rx_desc));
1581         }
1582 }
1583
1584 static int
1585 ti_init_rx_ring_jumbo(struct ti_softc *sc)
1586 {
1587         struct ti_cmd_desc cmd;
1588         int i;
1589
1590         for (i = 0; i < TI_JUMBO_RX_RING_CNT; i++) {
1591                 if (ti_newbuf_jumbo(sc, i, NULL) == ENOBUFS)
1592                         return (ENOBUFS);
1593         };
1594
1595         TI_UPDATE_JUMBOPROD(sc, i - 1);
1596         sc->ti_jumbo = i - 1;
1597
1598         return (0);
1599 }
1600
1601 static void
1602 ti_free_rx_ring_jumbo(struct ti_softc *sc)
1603 {
1604         bus_dmamap_t map;
1605         int i;
1606
1607         for (i = 0; i < TI_JUMBO_RX_RING_CNT; i++) {
1608                 if (sc->ti_cdata.ti_rx_jumbo_chain[i] != NULL) {
1609                         map = sc->ti_cdata.ti_rx_jumbo_maps[i];
1610                         bus_dmamap_sync(sc->ti_jumbo_dmat, map,
1611                             BUS_DMASYNC_POSTREAD);
1612                         bus_dmamap_unload(sc->ti_jumbo_dmat, map);
1613                         m_freem(sc->ti_cdata.ti_rx_jumbo_chain[i]);
1614                         sc->ti_cdata.ti_rx_jumbo_chain[i] = NULL;
1615                 }
1616                 bzero((char *)&sc->ti_rdata->ti_rx_jumbo_ring[i],
1617                     sizeof(struct ti_rx_desc));
1618         }
1619 }
1620
1621 static int
1622 ti_init_rx_ring_mini(struct ti_softc *sc)
1623 {
1624         int i;
1625
1626         for (i = 0; i < TI_MSLOTS; i++) {
1627                 if (ti_newbuf_mini(sc, i, NULL) == ENOBUFS)
1628                         return (ENOBUFS);
1629         };
1630
1631         TI_UPDATE_MINIPROD(sc, i - 1);
1632         sc->ti_mini = i - 1;
1633
1634         return (0);
1635 }
1636
1637 static void
1638 ti_free_rx_ring_mini(struct ti_softc *sc)
1639 {
1640         bus_dmamap_t map;
1641         int i;
1642
1643         for (i = 0; i < TI_MINI_RX_RING_CNT; i++) {
1644                 if (sc->ti_cdata.ti_rx_mini_chain[i] != NULL) {
1645                         map = sc->ti_cdata.ti_rx_mini_maps[i];
1646                         bus_dmamap_sync(sc->ti_mbufrx_dmat, map,
1647                             BUS_DMASYNC_POSTREAD);
1648                         bus_dmamap_unload(sc->ti_mbufrx_dmat, map);
1649                         m_freem(sc->ti_cdata.ti_rx_mini_chain[i]);
1650                         sc->ti_cdata.ti_rx_mini_chain[i] = NULL;
1651                 }
1652                 bzero((char *)&sc->ti_rdata->ti_rx_mini_ring[i],
1653                     sizeof(struct ti_rx_desc));
1654         }
1655 }
1656
1657 static void
1658 ti_free_tx_ring(struct ti_softc *sc)
1659 {
1660         struct ti_txdesc *txd;
1661         int i;
1662
1663         if (sc->ti_rdata->ti_tx_ring == NULL)
1664                 return;
1665
1666         for (i = 0; i < TI_TX_RING_CNT; i++) {
1667                 txd = &sc->ti_cdata.ti_txdesc[i];
1668                 if (txd->tx_m != NULL) {
1669                         bus_dmamap_sync(sc->ti_mbuftx_dmat, txd->tx_dmamap,
1670                             BUS_DMASYNC_POSTWRITE);
1671                         bus_dmamap_unload(sc->ti_mbuftx_dmat, txd->tx_dmamap);
1672                         m_freem(txd->tx_m);
1673                         txd->tx_m = NULL;
1674                 }
1675                 bzero((char *)&sc->ti_rdata->ti_tx_ring[i],
1676                     sizeof(struct ti_tx_desc));
1677         }
1678 }
1679
1680 static int
1681 ti_init_tx_ring(struct ti_softc *sc)
1682 {
1683         struct ti_txdesc *txd;
1684         int i;
1685
1686         STAILQ_INIT(&sc->ti_cdata.ti_txfreeq);
1687         STAILQ_INIT(&sc->ti_cdata.ti_txbusyq);
1688         for (i = 0; i < TI_TX_RING_CNT; i++) {
1689                 txd = &sc->ti_cdata.ti_txdesc[i];
1690                 STAILQ_INSERT_TAIL(&sc->ti_cdata.ti_txfreeq, txd, tx_q);
1691         }
1692         sc->ti_txcnt = 0;
1693         sc->ti_tx_saved_considx = 0;
1694         sc->ti_tx_saved_prodidx = 0;
1695         CSR_WRITE_4(sc, TI_MB_SENDPROD_IDX, 0);
1696         return (0);
1697 }
1698
1699 /*
1700  * The Tigon 2 firmware has a new way to add/delete multicast addresses,
1701  * but we have to support the old way too so that Tigon 1 cards will
1702  * work.
1703  */
1704 static void
1705 ti_add_mcast(struct ti_softc *sc, struct ether_addr *addr)
1706 {
1707         struct ti_cmd_desc cmd;
1708         uint16_t *m;
1709         uint32_t ext[2] = {0, 0};
1710
1711         m = (uint16_t *)&addr->octet[0];
1712
1713         switch (sc->ti_hwrev) {
1714         case TI_HWREV_TIGON:
1715                 CSR_WRITE_4(sc, TI_GCR_MAR0, htons(m[0]));
1716                 CSR_WRITE_4(sc, TI_GCR_MAR1, (htons(m[1]) << 16) | htons(m[2]));
1717                 TI_DO_CMD(TI_CMD_ADD_MCAST_ADDR, 0, 0);
1718                 break;
1719         case TI_HWREV_TIGON_II:
1720                 ext[0] = htons(m[0]);
1721                 ext[1] = (htons(m[1]) << 16) | htons(m[2]);
1722                 TI_DO_CMD_EXT(TI_CMD_EXT_ADD_MCAST, 0, 0, (caddr_t)&ext, 2);
1723                 break;
1724         default:
1725                 device_printf(sc->ti_dev, "unknown hwrev\n");
1726                 break;
1727         }
1728 }
1729
1730 static void
1731 ti_del_mcast(struct ti_softc *sc, struct ether_addr *addr)
1732 {
1733         struct ti_cmd_desc cmd;
1734         uint16_t *m;
1735         uint32_t ext[2] = {0, 0};
1736
1737         m = (uint16_t *)&addr->octet[0];
1738
1739         switch (sc->ti_hwrev) {
1740         case TI_HWREV_TIGON:
1741                 CSR_WRITE_4(sc, TI_GCR_MAR0, htons(m[0]));
1742                 CSR_WRITE_4(sc, TI_GCR_MAR1, (htons(m[1]) << 16) | htons(m[2]));
1743                 TI_DO_CMD(TI_CMD_DEL_MCAST_ADDR, 0, 0);
1744                 break;
1745         case TI_HWREV_TIGON_II:
1746                 ext[0] = htons(m[0]);
1747                 ext[1] = (htons(m[1]) << 16) | htons(m[2]);
1748                 TI_DO_CMD_EXT(TI_CMD_EXT_DEL_MCAST, 0, 0, (caddr_t)&ext, 2);
1749                 break;
1750         default:
1751                 device_printf(sc->ti_dev, "unknown hwrev\n");
1752                 break;
1753         }
1754 }
1755
1756 /*
1757  * Configure the Tigon's multicast address filter.
1758  *
1759  * The actual multicast table management is a bit of a pain, thanks to
1760  * slight brain damage on the part of both Alteon and us. With our
1761  * multicast code, we are only alerted when the multicast address table
1762  * changes and at that point we only have the current list of addresses:
1763  * we only know the current state, not the previous state, so we don't
1764  * actually know what addresses were removed or added. The firmware has
1765  * state, but we can't get our grubby mits on it, and there is no 'delete
1766  * all multicast addresses' command. Hence, we have to maintain our own
1767  * state so we know what addresses have been programmed into the NIC at
1768  * any given time.
1769  */
1770 static void
1771 ti_setmulti(struct ti_softc *sc)
1772 {
1773         struct ifnet *ifp;
1774         struct ifmultiaddr *ifma;
1775         struct ti_cmd_desc cmd;
1776         struct ti_mc_entry *mc;
1777         uint32_t intrs;
1778
1779         TI_LOCK_ASSERT(sc);
1780
1781         ifp = sc->ti_ifp;
1782
1783         if (ifp->if_flags & IFF_ALLMULTI) {
1784                 TI_DO_CMD(TI_CMD_SET_ALLMULTI, TI_CMD_CODE_ALLMULTI_ENB, 0);
1785                 return;
1786         } else {
1787                 TI_DO_CMD(TI_CMD_SET_ALLMULTI, TI_CMD_CODE_ALLMULTI_DIS, 0);
1788         }
1789
1790         /* Disable interrupts. */
1791         intrs = CSR_READ_4(sc, TI_MB_HOSTINTR);
1792         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
1793
1794         /* First, zot all the existing filters. */
1795         while (SLIST_FIRST(&sc->ti_mc_listhead) != NULL) {
1796                 mc = SLIST_FIRST(&sc->ti_mc_listhead);
1797                 ti_del_mcast(sc, &mc->mc_addr);
1798                 SLIST_REMOVE_HEAD(&sc->ti_mc_listhead, mc_entries);
1799                 free(mc, M_DEVBUF);
1800         }
1801
1802         /* Now program new ones. */
1803         if_maddr_rlock(ifp);
1804         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
1805                 if (ifma->ifma_addr->sa_family != AF_LINK)
1806                         continue;
1807                 mc = malloc(sizeof(struct ti_mc_entry), M_DEVBUF, M_NOWAIT);
1808                 if (mc == NULL) {
1809                         device_printf(sc->ti_dev,
1810                             "no memory for mcast filter entry\n");
1811                         continue;
1812                 }
1813                 bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
1814                     (char *)&mc->mc_addr, ETHER_ADDR_LEN);
1815                 SLIST_INSERT_HEAD(&sc->ti_mc_listhead, mc, mc_entries);
1816                 ti_add_mcast(sc, &mc->mc_addr);
1817         }
1818         if_maddr_runlock(ifp);
1819
1820         /* Re-enable interrupts. */
1821         CSR_WRITE_4(sc, TI_MB_HOSTINTR, intrs);
1822 }
1823
1824 /*
1825  * Check to see if the BIOS has configured us for a 64 bit slot when
1826  * we aren't actually in one. If we detect this condition, we can work
1827  * around it on the Tigon 2 by setting a bit in the PCI state register,
1828  * but for the Tigon 1 we must give up and abort the interface attach.
1829  */
1830 static int ti_64bitslot_war(struct ti_softc *sc)
1831 {
1832
1833         if (!(CSR_READ_4(sc, TI_PCI_STATE) & TI_PCISTATE_32BIT_BUS)) {
1834                 CSR_WRITE_4(sc, 0x600, 0);
1835                 CSR_WRITE_4(sc, 0x604, 0);
1836                 CSR_WRITE_4(sc, 0x600, 0x5555AAAA);
1837                 if (CSR_READ_4(sc, 0x604) == 0x5555AAAA) {
1838                         if (sc->ti_hwrev == TI_HWREV_TIGON)
1839                                 return (EINVAL);
1840                         else {
1841                                 TI_SETBIT(sc, TI_PCI_STATE,
1842                                     TI_PCISTATE_32BIT_BUS);
1843                                 return (0);
1844                         }
1845                 }
1846         }
1847
1848         return (0);
1849 }
1850
1851 /*
1852  * Do endian, PCI and DMA initialization. Also check the on-board ROM
1853  * self-test results.
1854  */
1855 static int
1856 ti_chipinit(struct ti_softc *sc)
1857 {
1858         uint32_t cacheline;
1859         uint32_t pci_writemax = 0;
1860         uint32_t hdrsplit;
1861
1862         /* Initialize link to down state. */
1863         sc->ti_linkstat = TI_EV_CODE_LINK_DOWN;
1864
1865         /* Set endianness before we access any non-PCI registers. */
1866 #if 0 && BYTE_ORDER == BIG_ENDIAN
1867         CSR_WRITE_4(sc, TI_MISC_HOST_CTL,
1868             TI_MHC_BIGENDIAN_INIT | (TI_MHC_BIGENDIAN_INIT << 24));
1869 #else
1870         CSR_WRITE_4(sc, TI_MISC_HOST_CTL,
1871             TI_MHC_LITTLEENDIAN_INIT | (TI_MHC_LITTLEENDIAN_INIT << 24));
1872 #endif
1873
1874         /* Check the ROM failed bit to see if self-tests passed. */
1875         if (CSR_READ_4(sc, TI_CPU_STATE) & TI_CPUSTATE_ROMFAIL) {
1876                 device_printf(sc->ti_dev, "board self-diagnostics failed!\n");
1877                 return (ENODEV);
1878         }
1879
1880         /* Halt the CPU. */
1881         TI_SETBIT(sc, TI_CPU_STATE, TI_CPUSTATE_HALT);
1882
1883         /* Figure out the hardware revision. */
1884         switch (CSR_READ_4(sc, TI_MISC_HOST_CTL) & TI_MHC_CHIP_REV_MASK) {
1885         case TI_REV_TIGON_I:
1886                 sc->ti_hwrev = TI_HWREV_TIGON;
1887                 break;
1888         case TI_REV_TIGON_II:
1889                 sc->ti_hwrev = TI_HWREV_TIGON_II;
1890                 break;
1891         default:
1892                 device_printf(sc->ti_dev, "unsupported chip revision\n");
1893                 return (ENODEV);
1894         }
1895
1896         /* Do special setup for Tigon 2. */
1897         if (sc->ti_hwrev == TI_HWREV_TIGON_II) {
1898                 TI_SETBIT(sc, TI_CPU_CTL_B, TI_CPUSTATE_HALT);
1899                 TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_SRAM_BANK_512K);
1900                 TI_SETBIT(sc, TI_MISC_CONF, TI_MCR_SRAM_SYNCHRONOUS);
1901         }
1902
1903         /*
1904          * We don't have firmware source for the Tigon 1, so Tigon 1 boards
1905          * can't do header splitting.
1906          */
1907 #ifdef TI_JUMBO_HDRSPLIT
1908         if (sc->ti_hwrev != TI_HWREV_TIGON)
1909                 sc->ti_hdrsplit = 1;
1910         else
1911                 device_printf(sc->ti_dev,
1912                     "can't do header splitting on a Tigon I board\n");
1913 #endif /* TI_JUMBO_HDRSPLIT */
1914
1915         /* Set up the PCI state register. */
1916         CSR_WRITE_4(sc, TI_PCI_STATE, TI_PCI_READ_CMD|TI_PCI_WRITE_CMD);
1917         if (sc->ti_hwrev == TI_HWREV_TIGON_II) {
1918                 TI_SETBIT(sc, TI_PCI_STATE, TI_PCISTATE_USE_MEM_RD_MULT);
1919         }
1920
1921         /* Clear the read/write max DMA parameters. */
1922         TI_CLRBIT(sc, TI_PCI_STATE, (TI_PCISTATE_WRITE_MAXDMA|
1923             TI_PCISTATE_READ_MAXDMA));
1924
1925         /* Get cache line size. */
1926         cacheline = CSR_READ_4(sc, TI_PCI_BIST) & 0xFF;
1927
1928         /*
1929          * If the system has set enabled the PCI memory write
1930          * and invalidate command in the command register, set
1931          * the write max parameter accordingly. This is necessary
1932          * to use MWI with the Tigon 2.
1933          */
1934         if (CSR_READ_4(sc, TI_PCI_CMDSTAT) & PCIM_CMD_MWIEN) {
1935                 switch (cacheline) {
1936                 case 1:
1937                 case 4:
1938                 case 8:
1939                 case 16:
1940                 case 32:
1941                 case 64:
1942                         break;
1943                 default:
1944                 /* Disable PCI memory write and invalidate. */
1945                         if (bootverbose)
1946                                 device_printf(sc->ti_dev, "cache line size %d"
1947                                     " not supported; disabling PCI MWI\n",
1948                                     cacheline);
1949                         CSR_WRITE_4(sc, TI_PCI_CMDSTAT, CSR_READ_4(sc,
1950                             TI_PCI_CMDSTAT) & ~PCIM_CMD_MWIEN);
1951                         break;
1952                 }
1953         }
1954
1955         TI_SETBIT(sc, TI_PCI_STATE, pci_writemax);
1956
1957         /* This sets the min dma param all the way up (0xff). */
1958         TI_SETBIT(sc, TI_PCI_STATE, TI_PCISTATE_MINDMA);
1959
1960         if (sc->ti_hdrsplit)
1961                 hdrsplit = TI_OPMODE_JUMBO_HDRSPLIT;
1962         else
1963                 hdrsplit = 0;
1964
1965         /* Configure DMA variables. */
1966 #if BYTE_ORDER == BIG_ENDIAN
1967         CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_BD |
1968             TI_OPMODE_BYTESWAP_DATA | TI_OPMODE_WORDSWAP_BD |
1969             TI_OPMODE_WARN_ENB | TI_OPMODE_FATAL_ENB |
1970             TI_OPMODE_DONT_FRAG_JUMBO | hdrsplit);
1971 #else /* BYTE_ORDER */
1972         CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_DATA|
1973             TI_OPMODE_WORDSWAP_BD|TI_OPMODE_DONT_FRAG_JUMBO|
1974             TI_OPMODE_WARN_ENB|TI_OPMODE_FATAL_ENB | hdrsplit);
1975 #endif /* BYTE_ORDER */
1976
1977         /*
1978          * Only allow 1 DMA channel to be active at a time.
1979          * I don't think this is a good idea, but without it
1980          * the firmware racks up lots of nicDmaReadRingFull
1981          * errors.  This is not compatible with hardware checksums.
1982          */
1983         if ((sc->ti_ifp->if_capenable & (IFCAP_TXCSUM | IFCAP_RXCSUM)) == 0)
1984                 TI_SETBIT(sc, TI_GCR_OPMODE, TI_OPMODE_1_DMA_ACTIVE);
1985
1986         /* Recommended settings from Tigon manual. */
1987         CSR_WRITE_4(sc, TI_GCR_DMA_WRITECFG, TI_DMA_STATE_THRESH_8W);
1988         CSR_WRITE_4(sc, TI_GCR_DMA_READCFG, TI_DMA_STATE_THRESH_8W);
1989
1990         if (ti_64bitslot_war(sc)) {
1991                 device_printf(sc->ti_dev, "bios thinks we're in a 64 bit slot, "
1992                     "but we aren't");
1993                 return (EINVAL);
1994         }
1995
1996         return (0);
1997 }
1998
1999 /*
2000  * Initialize the general information block and firmware, and
2001  * start the CPU(s) running.
2002  */
2003 static int
2004 ti_gibinit(struct ti_softc *sc)
2005 {
2006         struct ifnet *ifp;
2007         struct ti_rcb *rcb;
2008         uint32_t rdphys;
2009         int i;
2010
2011         TI_LOCK_ASSERT(sc);
2012
2013         ifp = sc->ti_ifp;
2014         rdphys = sc->ti_rdata_phys;
2015
2016         /* Disable interrupts for now. */
2017         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
2018
2019         /*
2020          * Tell the chip where to find the general information block.
2021          * While this struct could go into >4GB memory, we allocate it in a
2022          * single slab with the other descriptors, and those don't seem to
2023          * support being located in a 64-bit region.
2024          */
2025         CSR_WRITE_4(sc, TI_GCR_GENINFO_HI, 0);
2026         CSR_WRITE_4(sc, TI_GCR_GENINFO_LO, rdphys + TI_RD_OFF(ti_info));
2027
2028         /* Load the firmware into SRAM. */
2029         ti_loadfw(sc);
2030
2031         /* Set up the contents of the general info and ring control blocks. */
2032
2033         /* Set up the event ring and producer pointer. */
2034         rcb = &sc->ti_rdata->ti_info.ti_ev_rcb;
2035
2036         TI_HOSTADDR(rcb->ti_hostaddr) = rdphys + TI_RD_OFF(ti_event_ring);
2037         rcb->ti_flags = 0;
2038         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_ev_prodidx_ptr) =
2039             rdphys + TI_RD_OFF(ti_ev_prodidx_r);
2040         sc->ti_ev_prodidx.ti_idx = 0;
2041         CSR_WRITE_4(sc, TI_GCR_EVENTCONS_IDX, 0);
2042         sc->ti_ev_saved_considx = 0;
2043
2044         /* Set up the command ring and producer mailbox. */
2045         rcb = &sc->ti_rdata->ti_info.ti_cmd_rcb;
2046
2047         TI_HOSTADDR(rcb->ti_hostaddr) = TI_GCR_NIC_ADDR(TI_GCR_CMDRING);
2048         rcb->ti_flags = 0;
2049         rcb->ti_max_len = 0;
2050         for (i = 0; i < TI_CMD_RING_CNT; i++) {
2051                 CSR_WRITE_4(sc, TI_GCR_CMDRING + (i * 4), 0);
2052         }
2053         CSR_WRITE_4(sc, TI_GCR_CMDCONS_IDX, 0);
2054         CSR_WRITE_4(sc, TI_MB_CMDPROD_IDX, 0);
2055         sc->ti_cmd_saved_prodidx = 0;
2056
2057         /*
2058          * Assign the address of the stats refresh buffer.
2059          * We re-use the current stats buffer for this to
2060          * conserve memory.
2061          */
2062         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_refresh_stats_ptr) =
2063             rdphys + TI_RD_OFF(ti_info.ti_stats);
2064
2065         /* Set up the standard receive ring. */
2066         rcb = &sc->ti_rdata->ti_info.ti_std_rx_rcb;
2067         TI_HOSTADDR(rcb->ti_hostaddr) = rdphys + TI_RD_OFF(ti_rx_std_ring);
2068         rcb->ti_max_len = TI_FRAMELEN;
2069         rcb->ti_flags = 0;
2070         if (sc->ti_ifp->if_capenable & IFCAP_RXCSUM)
2071                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
2072                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
2073         if (sc->ti_ifp->if_capenable & IFCAP_VLAN_HWTAGGING)
2074                 rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
2075
2076         /* Set up the jumbo receive ring. */
2077         rcb = &sc->ti_rdata->ti_info.ti_jumbo_rx_rcb;
2078         TI_HOSTADDR(rcb->ti_hostaddr) = rdphys + TI_RD_OFF(ti_rx_jumbo_ring);
2079
2080 #ifdef TI_PRIVATE_JUMBOS
2081         rcb->ti_max_len = TI_JUMBO_FRAMELEN;
2082         rcb->ti_flags = 0;
2083 #else
2084         rcb->ti_max_len = PAGE_SIZE;
2085         rcb->ti_flags = TI_RCB_FLAG_USE_EXT_RX_BD;
2086 #endif
2087         if (sc->ti_ifp->if_capenable & IFCAP_RXCSUM)
2088                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
2089                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
2090         if (sc->ti_ifp->if_capenable & IFCAP_VLAN_HWTAGGING)
2091                 rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
2092
2093         /*
2094          * Set up the mini ring. Only activated on the
2095          * Tigon 2 but the slot in the config block is
2096          * still there on the Tigon 1.
2097          */
2098         rcb = &sc->ti_rdata->ti_info.ti_mini_rx_rcb;
2099         TI_HOSTADDR(rcb->ti_hostaddr) = rdphys + TI_RD_OFF(ti_rx_mini_ring);
2100         rcb->ti_max_len = MHLEN - ETHER_ALIGN;
2101         if (sc->ti_hwrev == TI_HWREV_TIGON)
2102                 rcb->ti_flags = TI_RCB_FLAG_RING_DISABLED;
2103         else
2104                 rcb->ti_flags = 0;
2105         if (sc->ti_ifp->if_capenable & IFCAP_RXCSUM)
2106                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
2107                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
2108         if (sc->ti_ifp->if_capenable & IFCAP_VLAN_HWTAGGING)
2109                 rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
2110
2111         /*
2112          * Set up the receive return ring.
2113          */
2114         rcb = &sc->ti_rdata->ti_info.ti_return_rcb;
2115         TI_HOSTADDR(rcb->ti_hostaddr) = rdphys + TI_RD_OFF(ti_rx_return_ring);
2116         rcb->ti_flags = 0;
2117         rcb->ti_max_len = TI_RETURN_RING_CNT;
2118         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_return_prodidx_ptr) =
2119             rdphys + TI_RD_OFF(ti_return_prodidx_r);
2120
2121         /*
2122          * Set up the tx ring. Note: for the Tigon 2, we have the option
2123          * of putting the transmit ring in the host's address space and
2124          * letting the chip DMA it instead of leaving the ring in the NIC's
2125          * memory and accessing it through the shared memory region. We
2126          * do this for the Tigon 2, but it doesn't work on the Tigon 1,
2127          * so we have to revert to the shared memory scheme if we detect
2128          * a Tigon 1 chip.
2129          */
2130         CSR_WRITE_4(sc, TI_WINBASE, TI_TX_RING_BASE);
2131         bzero((char *)sc->ti_rdata->ti_tx_ring,
2132             TI_TX_RING_CNT * sizeof(struct ti_tx_desc));
2133         rcb = &sc->ti_rdata->ti_info.ti_tx_rcb;
2134         if (sc->ti_hwrev == TI_HWREV_TIGON)
2135                 rcb->ti_flags = 0;
2136         else
2137                 rcb->ti_flags = TI_RCB_FLAG_HOST_RING;
2138         if (sc->ti_ifp->if_capenable & IFCAP_VLAN_HWTAGGING)
2139                 rcb->ti_flags |= TI_RCB_FLAG_VLAN_ASSIST;
2140         if (sc->ti_ifp->if_capenable & IFCAP_TXCSUM)
2141                 rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM |
2142                      TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM;
2143         rcb->ti_max_len = TI_TX_RING_CNT;
2144         if (sc->ti_hwrev == TI_HWREV_TIGON)
2145                 TI_HOSTADDR(rcb->ti_hostaddr) = TI_TX_RING_BASE;
2146         else
2147                 TI_HOSTADDR(rcb->ti_hostaddr) = rdphys + TI_RD_OFF(ti_tx_ring);
2148         TI_HOSTADDR(sc->ti_rdata->ti_info.ti_tx_considx_ptr) =
2149             rdphys + TI_RD_OFF(ti_tx_considx_r);
2150
2151         bus_dmamap_sync(sc->ti_rdata_dmat, sc->ti_rdata_dmamap,
2152             BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
2153
2154         /* Set up tuneables */
2155 #if 0
2156         if (ifp->if_mtu > (ETHERMTU + ETHER_HDR_LEN + ETHER_CRC_LEN))
2157                 CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS,
2158                     (sc->ti_rx_coal_ticks / 10));
2159         else
2160 #endif
2161                 CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS, sc->ti_rx_coal_ticks);
2162         CSR_WRITE_4(sc, TI_GCR_TX_COAL_TICKS, sc->ti_tx_coal_ticks);
2163         CSR_WRITE_4(sc, TI_GCR_STAT_TICKS, sc->ti_stat_ticks);
2164         CSR_WRITE_4(sc, TI_GCR_RX_MAX_COAL_BD, sc->ti_rx_max_coal_bds);
2165         CSR_WRITE_4(sc, TI_GCR_TX_MAX_COAL_BD, sc->ti_tx_max_coal_bds);
2166         CSR_WRITE_4(sc, TI_GCR_TX_BUFFER_RATIO, sc->ti_tx_buf_ratio);
2167
2168         /* Turn interrupts on. */
2169         CSR_WRITE_4(sc, TI_GCR_MASK_INTRS, 0);
2170         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 0);
2171
2172         /* Start CPU. */
2173         TI_CLRBIT(sc, TI_CPU_STATE, (TI_CPUSTATE_HALT|TI_CPUSTATE_STEP));
2174
2175         return (0);
2176 }
2177
2178 static void
2179 ti_rdata_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
2180 {
2181         struct ti_softc *sc;
2182
2183         sc = arg;
2184         if (error || nseg != 1)
2185                 return;
2186
2187         /*
2188          * All of the Tigon data structures need to live at <4GB.  This
2189          * cast is fine since busdma was told about this constraint.
2190          */
2191         sc->ti_rdata_phys = segs[0].ds_addr;
2192         return;
2193 }
2194
2195 /*
2196  * Probe for a Tigon chip. Check the PCI vendor and device IDs
2197  * against our list and return its name if we find a match.
2198  */
2199 static int
2200 ti_probe(device_t dev)
2201 {
2202         const struct ti_type *t;
2203
2204         t = ti_devs;
2205
2206         while (t->ti_name != NULL) {
2207                 if ((pci_get_vendor(dev) == t->ti_vid) &&
2208                     (pci_get_device(dev) == t->ti_did)) {
2209                         device_set_desc(dev, t->ti_name);
2210                         return (BUS_PROBE_DEFAULT);
2211                 }
2212                 t++;
2213         }
2214
2215         return (ENXIO);
2216 }
2217
2218 static int
2219 ti_attach(device_t dev)
2220 {
2221         struct ifnet *ifp;
2222         struct ti_softc *sc;
2223         int error = 0, rid;
2224         u_char eaddr[6];
2225
2226         sc = device_get_softc(dev);
2227         sc->ti_unit = device_get_unit(dev);
2228         sc->ti_dev = dev;
2229
2230         mtx_init(&sc->ti_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
2231             MTX_DEF);
2232         callout_init_mtx(&sc->ti_watchdog, &sc->ti_mtx, 0);
2233         ifmedia_init(&sc->ifmedia, IFM_IMASK, ti_ifmedia_upd, ti_ifmedia_sts);
2234         ifp = sc->ti_ifp = if_alloc(IFT_ETHER);
2235         if (ifp == NULL) {
2236                 device_printf(dev, "can not if_alloc()\n");
2237                 error = ENOSPC;
2238                 goto fail;
2239         }
2240         sc->ti_ifp->if_hwassist = TI_CSUM_FEATURES;
2241         sc->ti_ifp->if_capabilities = IFCAP_TXCSUM | IFCAP_RXCSUM;
2242         sc->ti_ifp->if_capenable = sc->ti_ifp->if_capabilities;
2243
2244         /*
2245          * Map control/status registers.
2246          */
2247         pci_enable_busmaster(dev);
2248
2249         rid = TI_PCI_LOMEM;
2250         sc->ti_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
2251             RF_ACTIVE);
2252
2253         if (sc->ti_res == NULL) {
2254                 device_printf(dev, "couldn't map memory\n");
2255                 error = ENXIO;
2256                 goto fail;
2257         }
2258
2259         sc->ti_btag = rman_get_bustag(sc->ti_res);
2260         sc->ti_bhandle = rman_get_bushandle(sc->ti_res);
2261
2262         /* Allocate interrupt */
2263         rid = 0;
2264
2265         sc->ti_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
2266             RF_SHAREABLE | RF_ACTIVE);
2267
2268         if (sc->ti_irq == NULL) {
2269                 device_printf(dev, "couldn't map interrupt\n");
2270                 error = ENXIO;
2271                 goto fail;
2272         }
2273
2274         if (ti_chipinit(sc)) {
2275                 device_printf(dev, "chip initialization failed\n");
2276                 error = ENXIO;
2277                 goto fail;
2278         }
2279
2280         /* Zero out the NIC's on-board SRAM. */
2281         ti_mem_zero(sc, 0x2000, 0x100000 - 0x2000);
2282
2283         /* Init again -- zeroing memory may have clobbered some registers. */
2284         if (ti_chipinit(sc)) {
2285                 device_printf(dev, "chip initialization failed\n");
2286                 error = ENXIO;
2287                 goto fail;
2288         }
2289
2290         /*
2291          * Get station address from the EEPROM. Note: the manual states
2292          * that the MAC address is at offset 0x8c, however the data is
2293          * stored as two longwords (since that's how it's loaded into
2294          * the NIC). This means the MAC address is actually preceded
2295          * by two zero bytes. We need to skip over those.
2296          */
2297         if (ti_read_eeprom(sc, eaddr,
2298                                 TI_EE_MAC_OFFSET + 2, ETHER_ADDR_LEN)) {
2299                 device_printf(dev, "failed to read station address\n");
2300                 error = ENXIO;
2301                 goto fail;
2302         }
2303
2304         /* Allocate the general information block and ring buffers. */
2305         if (bus_dma_tag_create(bus_get_dma_tag(dev),    /* parent */
2306                                 1, 0,                   /* algnmnt, boundary */
2307                                 BUS_SPACE_MAXADDR,      /* lowaddr */
2308                                 BUS_SPACE_MAXADDR,      /* highaddr */
2309                                 NULL, NULL,             /* filter, filterarg */
2310                                 BUS_SPACE_MAXSIZE_32BIT,/* maxsize */
2311                                 0,                      /* nsegments */
2312                                 BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
2313                                 0,                      /* flags */
2314                                 NULL, NULL,             /* lockfunc, lockarg */
2315                                 &sc->ti_parent_dmat) != 0) {
2316                 device_printf(dev, "Failed to allocate parent dmat\n");
2317                 error = ENOMEM;
2318                 goto fail;
2319         }
2320
2321         if (bus_dma_tag_create(sc->ti_parent_dmat,      /* parent */
2322                                 PAGE_SIZE, 0,           /* algnmnt, boundary */
2323                                 BUS_SPACE_MAXADDR_32BIT,/* lowaddr */
2324                                 BUS_SPACE_MAXADDR,      /* highaddr */
2325                                 NULL, NULL,             /* filter, filterarg */
2326                                 sizeof(struct ti_ring_data),    /* maxsize */
2327                                 1,                      /* nsegments */
2328                                 sizeof(struct ti_ring_data),    /* maxsegsize */
2329                                 0,                      /* flags */
2330                                 NULL, NULL,             /* lockfunc, lockarg */
2331                                 &sc->ti_rdata_dmat) != 0) {
2332                 device_printf(dev, "Failed to allocate rdata dmat\n");
2333                 error = ENOMEM;
2334                 goto fail;
2335         }
2336
2337         if (bus_dmamem_alloc(sc->ti_rdata_dmat, (void**)&sc->ti_rdata,
2338                              BUS_DMA_NOWAIT | BUS_DMA_COHERENT,
2339                              &sc->ti_rdata_dmamap) != 0) {
2340                 device_printf(dev, "Failed to allocate rdata memory\n");
2341                 error = ENOMEM;
2342                 goto fail;
2343         }
2344
2345         if (bus_dmamap_load(sc->ti_rdata_dmat, sc->ti_rdata_dmamap,
2346                             sc->ti_rdata, sizeof(struct ti_ring_data),
2347                             ti_rdata_cb, sc, BUS_DMA_NOWAIT) != 0) {
2348                 device_printf(dev, "Failed to load rdata segments\n");
2349                 error = ENOMEM;
2350                 goto fail;
2351         }
2352
2353         bzero(sc->ti_rdata, sizeof(struct ti_ring_data));
2354
2355         /* Try to allocate memory for jumbo buffers. */
2356         if (ti_alloc_jumbo_mem(sc)) {
2357                 device_printf(dev, "jumbo buffer allocation failed\n");
2358                 error = ENXIO;
2359                 goto fail;
2360         }
2361
2362         if (bus_dma_tag_create(sc->ti_parent_dmat,      /* parent */
2363                                 1, 0,                   /* algnmnt, boundary */
2364                                 BUS_SPACE_MAXADDR,      /* lowaddr */
2365                                 BUS_SPACE_MAXADDR,      /* highaddr */
2366                                 NULL, NULL,             /* filter, filterarg */
2367                                 MCLBYTES * TI_MAXTXSEGS,/* maxsize */
2368                                 TI_MAXTXSEGS,           /* nsegments */
2369                                 MCLBYTES,               /* maxsegsize */
2370                                 0,                      /* flags */
2371                                 NULL, NULL,             /* lockfunc, lockarg */
2372                                 &sc->ti_mbuftx_dmat) != 0) {
2373                 device_printf(dev, "Failed to allocate rdata dmat\n");
2374                 error = ENOMEM;
2375                 goto fail;
2376         }
2377
2378         if (bus_dma_tag_create(sc->ti_parent_dmat,      /* parent */
2379                                 1, 0,                   /* algnmnt, boundary */
2380                                 BUS_SPACE_MAXADDR,      /* lowaddr */
2381                                 BUS_SPACE_MAXADDR,      /* highaddr */
2382                                 NULL, NULL,             /* filter, filterarg */
2383                                 MCLBYTES,               /* maxsize */
2384                                 1,                      /* nsegments */
2385                                 MCLBYTES,               /* maxsegsize */
2386                                 0,                      /* flags */
2387                                 NULL, NULL,             /* lockfunc, lockarg */
2388                                 &sc->ti_mbufrx_dmat) != 0) {
2389                 device_printf(dev, "Failed to allocate rdata dmat\n");
2390                 error = ENOMEM;
2391                 goto fail;
2392         }
2393
2394         if (ti_alloc_dmamaps(sc)) {
2395                 device_printf(dev, "dma map creation failed\n");
2396                 error = ENXIO;
2397                 goto fail;
2398         }
2399
2400         /*
2401          * We really need a better way to tell a 1000baseTX card
2402          * from a 1000baseSX one, since in theory there could be
2403          * OEMed 1000baseTX cards from lame vendors who aren't
2404          * clever enough to change the PCI ID. For the moment
2405          * though, the AceNIC is the only copper card available.
2406          */
2407         if (pci_get_vendor(dev) == ALT_VENDORID &&
2408             pci_get_device(dev) == ALT_DEVICEID_ACENIC_COPPER)
2409                 sc->ti_copper = 1;
2410         /* Ok, it's not the only copper card available. */
2411         if (pci_get_vendor(dev) == NG_VENDORID &&
2412             pci_get_device(dev) == NG_DEVICEID_GA620T)
2413                 sc->ti_copper = 1;
2414
2415         /* Set default tuneable values. */
2416         sc->ti_stat_ticks = 2 * TI_TICKS_PER_SEC;
2417 #if 0
2418         sc->ti_rx_coal_ticks = TI_TICKS_PER_SEC / 5000;
2419 #endif
2420         sc->ti_rx_coal_ticks = 170;
2421         sc->ti_tx_coal_ticks = TI_TICKS_PER_SEC / 500;
2422         sc->ti_rx_max_coal_bds = 64;
2423 #if 0
2424         sc->ti_tx_max_coal_bds = 128;
2425 #endif
2426         sc->ti_tx_max_coal_bds = 32;
2427         sc->ti_tx_buf_ratio = 21;
2428
2429         /* Set up ifnet structure */
2430         ifp->if_softc = sc;
2431         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
2432         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
2433         ifp->if_ioctl = ti_ioctl;
2434         ifp->if_start = ti_start;
2435         ifp->if_init = ti_init;
2436         ifp->if_baudrate = IF_Gbps(1UL);
2437         ifp->if_snd.ifq_drv_maxlen = TI_TX_RING_CNT - 1;
2438         IFQ_SET_MAXLEN(&ifp->if_snd, ifp->if_snd.ifq_drv_maxlen);
2439         IFQ_SET_READY(&ifp->if_snd);
2440
2441         /* Set up ifmedia support. */
2442         if (sc->ti_copper) {
2443                 /*
2444                  * Copper cards allow manual 10/100 mode selection,
2445                  * but not manual 1000baseTX mode selection. Why?
2446                  * Becuase currently there's no way to specify the
2447                  * master/slave setting through the firmware interface,
2448                  * so Alteon decided to just bag it and handle it
2449                  * via autonegotiation.
2450                  */
2451                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T, 0, NULL);
2452                 ifmedia_add(&sc->ifmedia,
2453                     IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
2454                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_100_TX, 0, NULL);
2455                 ifmedia_add(&sc->ifmedia,
2456                     IFM_ETHER|IFM_100_TX|IFM_FDX, 0, NULL);
2457                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_1000_T, 0, NULL);
2458                 ifmedia_add(&sc->ifmedia,
2459                     IFM_ETHER|IFM_1000_T|IFM_FDX, 0, NULL);
2460         } else {
2461                 /* Fiber cards don't support 10/100 modes. */
2462                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_1000_SX, 0, NULL);
2463                 ifmedia_add(&sc->ifmedia,
2464                     IFM_ETHER|IFM_1000_SX|IFM_FDX, 0, NULL);
2465         }
2466         ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_AUTO, 0, NULL);
2467         ifmedia_set(&sc->ifmedia, IFM_ETHER|IFM_AUTO);
2468
2469         /*
2470          * We're assuming here that card initialization is a sequential
2471          * thing.  If it isn't, multiple cards probing at the same time
2472          * could stomp on the list of softcs here.
2473          */
2474
2475         /* Register the device */
2476         sc->dev = make_dev(&ti_cdevsw, sc->ti_unit, UID_ROOT, GID_OPERATOR,
2477                            0600, "ti%d", sc->ti_unit);
2478         sc->dev->si_drv1 = sc;
2479
2480         /*
2481          * Call MI attach routine.
2482          */
2483         ether_ifattach(ifp, eaddr);
2484
2485         /* VLAN capability setup. */
2486         ifp->if_capabilities |= IFCAP_VLAN_MTU | IFCAP_VLAN_HWCSUM |
2487             IFCAP_VLAN_HWTAGGING;
2488         ifp->if_capenable = ifp->if_capabilities;
2489         /* Tell the upper layer we support VLAN over-sized frames. */
2490         ifp->if_hdrlen = sizeof(struct ether_vlan_header);
2491
2492         /* Driver supports link state tracking. */
2493         ifp->if_capabilities |= IFCAP_LINKSTATE;
2494         ifp->if_capenable |= IFCAP_LINKSTATE;
2495
2496         /* Hook interrupt last to avoid having to lock softc */
2497         error = bus_setup_intr(dev, sc->ti_irq, INTR_TYPE_NET|INTR_MPSAFE,
2498            NULL, ti_intr, sc, &sc->ti_intrhand);
2499
2500         if (error) {
2501                 device_printf(dev, "couldn't set up irq\n");
2502                 goto fail;
2503         }
2504
2505 fail:
2506         if (error)
2507                 ti_detach(dev);
2508
2509         return (error);
2510 }
2511
2512 /*
2513  * Shutdown hardware and free up resources. This can be called any
2514  * time after the mutex has been initialized. It is called in both
2515  * the error case in attach and the normal detach case so it needs
2516  * to be careful about only freeing resources that have actually been
2517  * allocated.
2518  */
2519 static int
2520 ti_detach(device_t dev)
2521 {
2522         struct ti_softc *sc;
2523         struct ifnet *ifp;
2524
2525         sc = device_get_softc(dev);
2526         if (sc->dev)
2527                 destroy_dev(sc->dev);
2528         KASSERT(mtx_initialized(&sc->ti_mtx), ("ti mutex not initialized"));
2529         ifp = sc->ti_ifp;
2530         if (device_is_attached(dev)) {
2531                 ether_ifdetach(ifp);
2532                 TI_LOCK(sc);
2533                 ti_stop(sc);
2534                 TI_UNLOCK(sc);
2535         }
2536
2537         /* These should only be active if attach succeeded */
2538         callout_drain(&sc->ti_watchdog);
2539         bus_generic_detach(dev);
2540         ti_free_dmamaps(sc);
2541         ifmedia_removeall(&sc->ifmedia);
2542
2543 #ifdef TI_PRIVATE_JUMBOS
2544         if (sc->ti_cdata.ti_jumbo_buf)
2545                 bus_dmamem_free(sc->ti_jumbo_dmat, sc->ti_cdata.ti_jumbo_buf,
2546                     sc->ti_jumbo_dmamap);
2547 #endif
2548         if (sc->ti_jumbo_dmat)
2549                 bus_dma_tag_destroy(sc->ti_jumbo_dmat);
2550         if (sc->ti_mbuftx_dmat)
2551                 bus_dma_tag_destroy(sc->ti_mbuftx_dmat);
2552         if (sc->ti_mbufrx_dmat)
2553                 bus_dma_tag_destroy(sc->ti_mbufrx_dmat);
2554         if (sc->ti_rdata && sc->ti_rdata_dmamap)
2555                 bus_dmamap_unload(sc->ti_rdata_dmat, sc->ti_rdata_dmamap);
2556         if (sc->ti_rdata)
2557                 bus_dmamem_free(sc->ti_rdata_dmat, sc->ti_rdata,
2558                                 sc->ti_rdata_dmamap);
2559         if (sc->ti_rdata_dmat)
2560                 bus_dma_tag_destroy(sc->ti_rdata_dmat);
2561         if (sc->ti_parent_dmat)
2562                 bus_dma_tag_destroy(sc->ti_parent_dmat);
2563         if (sc->ti_intrhand)
2564                 bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand);
2565         if (sc->ti_irq)
2566                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq);
2567         if (sc->ti_res) {
2568                 bus_release_resource(dev, SYS_RES_MEMORY, TI_PCI_LOMEM,
2569                     sc->ti_res);
2570         }
2571         if (ifp)
2572                 if_free(ifp);
2573
2574         mtx_destroy(&sc->ti_mtx);
2575
2576         return (0);
2577 }
2578
2579 #ifdef TI_JUMBO_HDRSPLIT
2580 /*
2581  * If hdr_len is 0, that means that header splitting wasn't done on
2582  * this packet for some reason.  The two most likely reasons are that
2583  * the protocol isn't a supported protocol for splitting, or this
2584  * packet had a fragment offset that wasn't 0.
2585  *
2586  * The header length, if it is non-zero, will always be the length of
2587  * the headers on the packet, but that length could be longer than the
2588  * first mbuf.  So we take the minimum of the two as the actual
2589  * length.
2590  */
2591 static __inline void
2592 ti_hdr_split(struct mbuf *top, int hdr_len, int pkt_len, int idx)
2593 {
2594         int i = 0;
2595         int lengths[4] = {0, 0, 0, 0};
2596         struct mbuf *m, *mp;
2597
2598         if (hdr_len != 0)
2599                 top->m_len = min(hdr_len, top->m_len);
2600         pkt_len -= top->m_len;
2601         lengths[i++] = top->m_len;
2602
2603         mp = top;
2604         for (m = top->m_next; m && pkt_len; m = m->m_next) {
2605                 m->m_len = m->m_ext.ext_size = min(m->m_len, pkt_len);
2606                 pkt_len -= m->m_len;
2607                 lengths[i++] = m->m_len;
2608                 mp = m;
2609         }
2610
2611 #if 0
2612         if (hdr_len != 0)
2613                 printf("got split packet: ");
2614         else
2615                 printf("got non-split packet: ");
2616
2617         printf("%d,%d,%d,%d = %d\n", lengths[0],
2618             lengths[1], lengths[2], lengths[3],
2619             lengths[0] + lengths[1] + lengths[2] +
2620             lengths[3]);
2621 #endif
2622
2623         if (pkt_len)
2624                 panic("header splitting didn't");
2625
2626         if (m) {
2627                 m_freem(m);
2628                 mp->m_next = NULL;
2629
2630         }
2631         if (mp->m_next != NULL)
2632                 panic("ti_hdr_split: last mbuf in chain should be null");
2633 }
2634 #endif /* TI_JUMBO_HDRSPLIT */
2635
2636 /*
2637  * Frame reception handling. This is called if there's a frame
2638  * on the receive return list.
2639  *
2640  * Note: we have to be able to handle three possibilities here:
2641  * 1) the frame is from the mini receive ring (can only happen)
2642  *    on Tigon 2 boards)
2643  * 2) the frame is from the jumbo recieve ring
2644  * 3) the frame is from the standard receive ring
2645  */
2646
2647 static void
2648 ti_rxeof(struct ti_softc *sc)
2649 {
2650         struct ifnet *ifp;
2651         bus_dmamap_t map;
2652         struct ti_cmd_desc cmd;
2653
2654         TI_LOCK_ASSERT(sc);
2655
2656         ifp = sc->ti_ifp;
2657
2658         while (sc->ti_rx_saved_considx != sc->ti_return_prodidx.ti_idx) {
2659                 struct ti_rx_desc *cur_rx;
2660                 struct mbuf *m = NULL;
2661                 uint32_t rxidx;
2662                 uint16_t vlan_tag = 0;
2663                 int have_tag = 0;
2664
2665                 cur_rx =
2666                     &sc->ti_rdata->ti_rx_return_ring[sc->ti_rx_saved_considx];
2667                 rxidx = cur_rx->ti_idx;
2668                 TI_INC(sc->ti_rx_saved_considx, TI_RETURN_RING_CNT);
2669
2670                 if (cur_rx->ti_flags & TI_BDFLAG_VLAN_TAG) {
2671                         have_tag = 1;
2672                         vlan_tag = cur_rx->ti_vlan_tag;
2673                 }
2674
2675                 if (cur_rx->ti_flags & TI_BDFLAG_JUMBO_RING) {
2676
2677                         TI_INC(sc->ti_jumbo, TI_JUMBO_RX_RING_CNT);
2678                         m = sc->ti_cdata.ti_rx_jumbo_chain[rxidx];
2679                         sc->ti_cdata.ti_rx_jumbo_chain[rxidx] = NULL;
2680                         map = sc->ti_cdata.ti_rx_jumbo_maps[rxidx];
2681                         bus_dmamap_sync(sc->ti_jumbo_dmat, map,
2682                             BUS_DMASYNC_POSTREAD);
2683                         bus_dmamap_unload(sc->ti_jumbo_dmat, map);
2684                         if (cur_rx->ti_flags & TI_BDFLAG_ERROR) {
2685                                 ifp->if_ierrors++;
2686                                 ti_newbuf_jumbo(sc, sc->ti_jumbo, m);
2687                                 continue;
2688                         }
2689                         if (ti_newbuf_jumbo(sc, sc->ti_jumbo, NULL) == ENOBUFS) {
2690                                 ifp->if_ierrors++;
2691                                 ti_newbuf_jumbo(sc, sc->ti_jumbo, m);
2692                                 continue;
2693                         }
2694 #ifdef TI_PRIVATE_JUMBOS
2695                         m->m_len = cur_rx->ti_len;
2696 #else /* TI_PRIVATE_JUMBOS */
2697 #ifdef TI_JUMBO_HDRSPLIT
2698                         if (sc->ti_hdrsplit)
2699                                 ti_hdr_split(m, TI_HOSTADDR(cur_rx->ti_addr),
2700                                              cur_rx->ti_len, rxidx);
2701                         else
2702 #endif /* TI_JUMBO_HDRSPLIT */
2703                         m_adj(m, cur_rx->ti_len - m->m_pkthdr.len);
2704 #endif /* TI_PRIVATE_JUMBOS */
2705                 } else if (cur_rx->ti_flags & TI_BDFLAG_MINI_RING) {
2706                         TI_INC(sc->ti_mini, TI_MINI_RX_RING_CNT);
2707                         m = sc->ti_cdata.ti_rx_mini_chain[rxidx];
2708                         sc->ti_cdata.ti_rx_mini_chain[rxidx] = NULL;
2709                         map = sc->ti_cdata.ti_rx_mini_maps[rxidx];
2710                         bus_dmamap_sync(sc->ti_mbufrx_dmat, map,
2711                             BUS_DMASYNC_POSTREAD);
2712                         bus_dmamap_unload(sc->ti_mbufrx_dmat, map);
2713                         if (cur_rx->ti_flags & TI_BDFLAG_ERROR) {
2714                                 ifp->if_ierrors++;
2715                                 ti_newbuf_mini(sc, sc->ti_mini, m);
2716                                 continue;
2717                         }
2718                         if (ti_newbuf_mini(sc, sc->ti_mini, NULL) == ENOBUFS) {
2719                                 ifp->if_ierrors++;
2720                                 ti_newbuf_mini(sc, sc->ti_mini, m);
2721                                 continue;
2722                         }
2723                         m->m_len = cur_rx->ti_len;
2724                 } else {
2725                         TI_INC(sc->ti_std, TI_STD_RX_RING_CNT);
2726                         m = sc->ti_cdata.ti_rx_std_chain[rxidx];
2727                         sc->ti_cdata.ti_rx_std_chain[rxidx] = NULL;
2728                         map = sc->ti_cdata.ti_rx_std_maps[rxidx];
2729                         bus_dmamap_sync(sc->ti_mbufrx_dmat, map,
2730                             BUS_DMASYNC_POSTREAD);
2731                         bus_dmamap_unload(sc->ti_mbufrx_dmat, map);
2732                         if (cur_rx->ti_flags & TI_BDFLAG_ERROR) {
2733                                 ifp->if_ierrors++;
2734                                 ti_newbuf_std(sc, sc->ti_std, m);
2735                                 continue;
2736                         }
2737                         if (ti_newbuf_std(sc, sc->ti_std, NULL) == ENOBUFS) {
2738                                 ifp->if_ierrors++;
2739                                 ti_newbuf_std(sc, sc->ti_std, m);
2740                                 continue;
2741                         }
2742                         m->m_len = cur_rx->ti_len;
2743                 }
2744
2745                 m->m_pkthdr.len = cur_rx->ti_len;
2746                 ifp->if_ipackets++;
2747                 m->m_pkthdr.rcvif = ifp;
2748
2749                 if (ifp->if_capenable & IFCAP_RXCSUM) {
2750                         if (cur_rx->ti_flags & TI_BDFLAG_IP_CKSUM) {
2751                                 m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
2752                                 if ((cur_rx->ti_ip_cksum ^ 0xffff) == 0)
2753                                         m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
2754                         }
2755                         if (cur_rx->ti_flags & TI_BDFLAG_TCP_UDP_CKSUM) {
2756                                 m->m_pkthdr.csum_data =
2757                                     cur_rx->ti_tcp_udp_cksum;
2758                                 m->m_pkthdr.csum_flags |= CSUM_DATA_VALID;
2759                         }
2760                 }
2761
2762                 /*
2763                  * If we received a packet with a vlan tag,
2764                  * tag it before passing the packet upward.
2765                  */
2766                 if (have_tag) {
2767                         m->m_pkthdr.ether_vtag = vlan_tag;
2768                         m->m_flags |= M_VLANTAG;
2769                 }
2770                 TI_UNLOCK(sc);
2771                 (*ifp->if_input)(ifp, m);
2772                 TI_LOCK(sc);
2773         }
2774
2775         /* Only necessary on the Tigon 1. */
2776         if (sc->ti_hwrev == TI_HWREV_TIGON)
2777                 CSR_WRITE_4(sc, TI_GCR_RXRETURNCONS_IDX,
2778                     sc->ti_rx_saved_considx);
2779
2780         TI_UPDATE_STDPROD(sc, sc->ti_std);
2781         TI_UPDATE_MINIPROD(sc, sc->ti_mini);
2782         TI_UPDATE_JUMBOPROD(sc, sc->ti_jumbo);
2783 }
2784
2785 static void
2786 ti_txeof(struct ti_softc *sc)
2787 {
2788         struct ti_txdesc *txd;
2789         struct ti_tx_desc txdesc;
2790         struct ti_tx_desc *cur_tx = NULL;
2791         struct ifnet *ifp;
2792         int idx;
2793
2794         ifp = sc->ti_ifp;
2795
2796         txd = STAILQ_FIRST(&sc->ti_cdata.ti_txbusyq);
2797         if (txd == NULL)
2798                 return;
2799         /*
2800          * Go through our tx ring and free mbufs for those
2801          * frames that have been sent.
2802          */
2803         for (idx = sc->ti_tx_saved_considx; idx != sc->ti_tx_considx.ti_idx;
2804             TI_INC(idx, TI_TX_RING_CNT)) {
2805                 if (sc->ti_hwrev == TI_HWREV_TIGON) {
2806                         ti_mem_read(sc, TI_TX_RING_BASE + idx * sizeof(txdesc),
2807                             sizeof(txdesc), &txdesc);
2808                         cur_tx = &txdesc;
2809                 } else
2810                         cur_tx = &sc->ti_rdata->ti_tx_ring[idx];
2811                 sc->ti_txcnt--;
2812                 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
2813                 if ((cur_tx->ti_flags & TI_BDFLAG_END) == 0)
2814                         continue;
2815                 bus_dmamap_sync(sc->ti_mbuftx_dmat, txd->tx_dmamap,
2816                     BUS_DMASYNC_POSTWRITE);
2817                 bus_dmamap_unload(sc->ti_mbuftx_dmat, txd->tx_dmamap);
2818
2819                 ifp->if_opackets++;
2820                 m_freem(txd->tx_m);
2821                 txd->tx_m = NULL;
2822                 STAILQ_REMOVE_HEAD(&sc->ti_cdata.ti_txbusyq, tx_q);
2823                 STAILQ_INSERT_TAIL(&sc->ti_cdata.ti_txfreeq, txd, tx_q);
2824                 txd = STAILQ_FIRST(&sc->ti_cdata.ti_txbusyq);
2825         }
2826         sc->ti_tx_saved_considx = idx;
2827
2828         sc->ti_timer = sc->ti_txcnt > 0 ? 5 : 0;
2829 }
2830
2831 static void
2832 ti_intr(void *xsc)
2833 {
2834         struct ti_softc *sc;
2835         struct ifnet *ifp;
2836
2837         sc = xsc;
2838         TI_LOCK(sc);
2839         ifp = sc->ti_ifp;
2840
2841 /*#ifdef notdef*/
2842         /* Avoid this for now -- checking this register is expensive. */
2843         /* Make sure this is really our interrupt. */
2844         if (!(CSR_READ_4(sc, TI_MISC_HOST_CTL) & TI_MHC_INTSTATE)) {
2845                 TI_UNLOCK(sc);
2846                 return;
2847         }
2848 /*#endif*/
2849
2850         /* Ack interrupt and stop others from occuring. */
2851         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
2852
2853         if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
2854                 /* Check RX return ring producer/consumer */
2855                 ti_rxeof(sc);
2856
2857                 /* Check TX ring producer/consumer */
2858                 ti_txeof(sc);
2859         }
2860
2861         ti_handle_events(sc);
2862
2863         if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
2864                 /* Re-enable interrupts. */
2865                 CSR_WRITE_4(sc, TI_MB_HOSTINTR, 0);
2866                 if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2867                         ti_start_locked(ifp);
2868         }
2869
2870         TI_UNLOCK(sc);
2871 }
2872
2873 static void
2874 ti_stats_update(struct ti_softc *sc)
2875 {
2876         struct ifnet *ifp;
2877
2878         ifp = sc->ti_ifp;
2879
2880         bus_dmamap_sync(sc->ti_rdata_dmat, sc->ti_rdata_dmamap,
2881             BUS_DMASYNC_POSTREAD);
2882
2883         ifp->if_collisions +=
2884            (sc->ti_rdata->ti_info.ti_stats.dot3StatsSingleCollisionFrames +
2885            sc->ti_rdata->ti_info.ti_stats.dot3StatsMultipleCollisionFrames +
2886            sc->ti_rdata->ti_info.ti_stats.dot3StatsExcessiveCollisions +
2887            sc->ti_rdata->ti_info.ti_stats.dot3StatsLateCollisions) -
2888            ifp->if_collisions;
2889
2890         bus_dmamap_sync(sc->ti_rdata_dmat, sc->ti_rdata_dmamap,
2891             BUS_DMASYNC_PREREAD);
2892 }
2893
2894 /*
2895  * Encapsulate an mbuf chain in the tx ring  by coupling the mbuf data
2896  * pointers to descriptors.
2897  */
2898 static int
2899 ti_encap(struct ti_softc *sc, struct mbuf **m_head)
2900 {
2901         struct ti_txdesc *txd;
2902         struct ti_tx_desc *f;
2903         struct ti_tx_desc txdesc;
2904         struct mbuf *m;
2905         bus_dma_segment_t txsegs[TI_MAXTXSEGS];
2906         uint16_t csum_flags;
2907         int error, frag, i, nseg;
2908
2909         if ((txd = STAILQ_FIRST(&sc->ti_cdata.ti_txfreeq)) == NULL)
2910                 return (ENOBUFS);
2911
2912         error = bus_dmamap_load_mbuf_sg(sc->ti_mbuftx_dmat, txd->tx_dmamap,
2913             *m_head, txsegs, &nseg, 0);
2914         if (error == EFBIG) {
2915                 m = m_defrag(*m_head, M_DONTWAIT);
2916                 if (m == NULL) {
2917                         m_freem(*m_head);
2918                         *m_head = NULL;
2919                         return (ENOMEM);
2920                 }
2921                 *m_head = m;
2922                 error = bus_dmamap_load_mbuf_sg(sc->ti_mbuftx_dmat,
2923                     txd->tx_dmamap, *m_head, txsegs, &nseg, 0);
2924                 if (error) {
2925                         m_freem(*m_head);
2926                         *m_head = NULL;
2927                         return (error);
2928                 }
2929         } else if (error != 0)
2930                 return (error);
2931         if (nseg == 0) {
2932                 m_freem(*m_head);
2933                 *m_head = NULL;
2934                 return (EIO);
2935         }
2936
2937         if (sc->ti_txcnt + nseg >= TI_TX_RING_CNT) {
2938                 bus_dmamap_unload(sc->ti_mbuftx_dmat, txd->tx_dmamap);
2939                 return (ENOBUFS);
2940         }
2941
2942         m = *m_head;
2943         csum_flags = 0;
2944         if (m->m_pkthdr.csum_flags) {
2945                 if (m->m_pkthdr.csum_flags & CSUM_IP)
2946                         csum_flags |= TI_BDFLAG_IP_CKSUM;
2947                 if (m->m_pkthdr.csum_flags & (CSUM_TCP | CSUM_UDP))
2948                         csum_flags |= TI_BDFLAG_TCP_UDP_CKSUM;
2949                 if (m->m_flags & M_LASTFRAG)
2950                         csum_flags |= TI_BDFLAG_IP_FRAG_END;
2951                 else if (m->m_flags & M_FRAG)
2952                         csum_flags |= TI_BDFLAG_IP_FRAG;
2953         }
2954
2955         bus_dmamap_sync(sc->ti_mbuftx_dmat, txd->tx_dmamap,
2956             BUS_DMASYNC_PREWRITE);
2957         bus_dmamap_sync(sc->ti_rdata_dmat, sc->ti_rdata_dmamap,
2958             BUS_DMASYNC_PREWRITE);
2959
2960         frag = sc->ti_tx_saved_prodidx;
2961         for (i = 0; i < nseg; i++) {
2962                 if (sc->ti_hwrev == TI_HWREV_TIGON) {
2963                         bzero(&txdesc, sizeof(txdesc));
2964                         f = &txdesc;
2965                 } else
2966                         f = &sc->ti_rdata->ti_tx_ring[frag];
2967                 ti_hostaddr64(&f->ti_addr, txsegs[i].ds_addr);
2968                 f->ti_len = txsegs[i].ds_len;
2969                 f->ti_flags = csum_flags;
2970                 if (m->m_flags & M_VLANTAG) {
2971                         f->ti_flags |= TI_BDFLAG_VLAN_TAG;
2972                         f->ti_vlan_tag = m->m_pkthdr.ether_vtag;
2973                 } else {
2974                         f->ti_vlan_tag = 0;
2975                 }
2976
2977                 if (sc->ti_hwrev == TI_HWREV_TIGON)
2978                         ti_mem_write(sc, TI_TX_RING_BASE + frag *
2979                             sizeof(txdesc), sizeof(txdesc), &txdesc);
2980                 TI_INC(frag, TI_TX_RING_CNT);
2981         }
2982
2983         sc->ti_tx_saved_prodidx = frag;
2984         /* set TI_BDFLAG_END on the last descriptor */
2985         frag = (frag + TI_TX_RING_CNT - 1) % TI_TX_RING_CNT;
2986         if (sc->ti_hwrev == TI_HWREV_TIGON) {
2987                 txdesc.ti_flags |= TI_BDFLAG_END;
2988                 ti_mem_write(sc, TI_TX_RING_BASE + frag * sizeof(txdesc),
2989                     sizeof(txdesc), &txdesc);
2990         } else
2991                 sc->ti_rdata->ti_tx_ring[frag].ti_flags |= TI_BDFLAG_END;
2992
2993         STAILQ_REMOVE_HEAD(&sc->ti_cdata.ti_txfreeq, tx_q);
2994         STAILQ_INSERT_TAIL(&sc->ti_cdata.ti_txbusyq, txd, tx_q);
2995         txd->tx_m = m;
2996         sc->ti_txcnt += nseg;
2997
2998         return (0);
2999 }
3000
3001 static void
3002 ti_start(struct ifnet *ifp)
3003 {
3004         struct ti_softc *sc;
3005
3006         sc = ifp->if_softc;
3007         TI_LOCK(sc);
3008         ti_start_locked(ifp);
3009         TI_UNLOCK(sc);
3010 }
3011
3012 /*
3013  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
3014  * to the mbuf data regions directly in the transmit descriptors.
3015  */
3016 static void
3017 ti_start_locked(struct ifnet *ifp)
3018 {
3019         struct ti_softc *sc;
3020         struct mbuf *m_head = NULL;
3021         int enq = 0;
3022
3023         sc = ifp->if_softc;
3024
3025         for (; !IFQ_DRV_IS_EMPTY(&ifp->if_snd) &&
3026             sc->ti_txcnt < (TI_TX_RING_CNT - 16);) {
3027                 IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
3028                 if (m_head == NULL)
3029                         break;
3030
3031                 /*
3032                  * XXX
3033                  * safety overkill.  If this is a fragmented packet chain
3034                  * with delayed TCP/UDP checksums, then only encapsulate
3035                  * it if we have enough descriptors to handle the entire
3036                  * chain at once.
3037                  * (paranoia -- may not actually be needed)
3038                  */
3039                 if (m_head->m_flags & M_FIRSTFRAG &&
3040                     m_head->m_pkthdr.csum_flags & (CSUM_DELAY_DATA)) {
3041                         if ((TI_TX_RING_CNT - sc->ti_txcnt) <
3042                             m_head->m_pkthdr.csum_data + 16) {
3043                                 IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
3044                                 ifp->if_drv_flags |= IFF_DRV_OACTIVE;
3045                                 break;
3046                         }
3047                 }
3048
3049                 /*
3050                  * Pack the data into the transmit ring. If we
3051                  * don't have room, set the OACTIVE flag and wait
3052                  * for the NIC to drain the ring.
3053                  */
3054                 if (ti_encap(sc, &m_head)) {
3055                         if (m_head == NULL)
3056                                 break;
3057                         IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
3058                         ifp->if_drv_flags |= IFF_DRV_OACTIVE;
3059                         break;
3060                 }
3061
3062                 enq++;
3063                 /*
3064                  * If there's a BPF listener, bounce a copy of this frame
3065                  * to him.
3066                  */
3067                 ETHER_BPF_MTAP(ifp, m_head);
3068         }
3069
3070         if (enq > 0) {
3071                 /* Transmit */
3072                 CSR_WRITE_4(sc, TI_MB_SENDPROD_IDX, sc->ti_tx_saved_prodidx);
3073
3074                 /*
3075                  * Set a timeout in case the chip goes out to lunch.
3076                  */
3077                 sc->ti_timer = 5;
3078         }
3079 }
3080
3081 static void
3082 ti_init(void *xsc)
3083 {
3084         struct ti_softc *sc;
3085
3086         sc = xsc;
3087         TI_LOCK(sc);
3088         ti_init_locked(sc);
3089         TI_UNLOCK(sc);
3090 }
3091
3092 static void
3093 ti_init_locked(void *xsc)
3094 {
3095         struct ti_softc *sc = xsc;
3096
3097         /* Cancel pending I/O and flush buffers. */
3098         ti_stop(sc);
3099
3100         /* Init the gen info block, ring control blocks and firmware. */
3101         if (ti_gibinit(sc)) {
3102                 device_printf(sc->ti_dev, "initialization failure\n");
3103                 return;
3104         }
3105 }
3106
3107 static void ti_init2(struct ti_softc *sc)
3108 {
3109         struct ti_cmd_desc cmd;
3110         struct ifnet *ifp;
3111         uint8_t *ea;
3112         struct ifmedia *ifm;
3113         int tmp;
3114
3115         TI_LOCK_ASSERT(sc);
3116
3117         ifp = sc->ti_ifp;
3118
3119         /* Specify MTU and interface index. */
3120         CSR_WRITE_4(sc, TI_GCR_IFINDEX, sc->ti_unit);
3121         CSR_WRITE_4(sc, TI_GCR_IFMTU, ifp->if_mtu +
3122             ETHER_HDR_LEN + ETHER_CRC_LEN + ETHER_VLAN_ENCAP_LEN);
3123         TI_DO_CMD(TI_CMD_UPDATE_GENCOM, 0, 0);
3124
3125         /* Load our MAC address. */
3126         ea = IF_LLADDR(sc->ti_ifp);
3127         CSR_WRITE_4(sc, TI_GCR_PAR0, (ea[0] << 8) | ea[1]);
3128         CSR_WRITE_4(sc, TI_GCR_PAR1,
3129             (ea[2] << 24) | (ea[3] << 16) | (ea[4] << 8) | ea[5]);
3130         TI_DO_CMD(TI_CMD_SET_MAC_ADDR, 0, 0);
3131
3132         /* Enable or disable promiscuous mode as needed. */
3133         if (ifp->if_flags & IFF_PROMISC) {
3134                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE, TI_CMD_CODE_PROMISC_ENB, 0);
3135         } else {
3136                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE, TI_CMD_CODE_PROMISC_DIS, 0);
3137         }
3138
3139         /* Program multicast filter. */
3140         ti_setmulti(sc);
3141
3142         /*
3143          * If this is a Tigon 1, we should tell the
3144          * firmware to use software packet filtering.
3145          */
3146         if (sc->ti_hwrev == TI_HWREV_TIGON) {
3147                 TI_DO_CMD(TI_CMD_FDR_FILTERING, TI_CMD_CODE_FILT_ENB, 0);
3148         }
3149
3150         /* Init RX ring. */
3151         ti_init_rx_ring_std(sc);
3152
3153         /* Init jumbo RX ring. */
3154         if (ifp->if_mtu > (ETHERMTU + ETHER_HDR_LEN + ETHER_CRC_LEN))
3155                 ti_init_rx_ring_jumbo(sc);
3156
3157         /*
3158          * If this is a Tigon 2, we can also configure the
3159          * mini ring.
3160          */
3161         if (sc->ti_hwrev == TI_HWREV_TIGON_II)
3162                 ti_init_rx_ring_mini(sc);
3163
3164         CSR_WRITE_4(sc, TI_GCR_RXRETURNCONS_IDX, 0);
3165         sc->ti_rx_saved_considx = 0;
3166
3167         /* Init TX ring. */
3168         ti_init_tx_ring(sc);
3169
3170         /* Tell firmware we're alive. */
3171         TI_DO_CMD(TI_CMD_HOST_STATE, TI_CMD_CODE_STACK_UP, 0);
3172
3173         /* Enable host interrupts. */
3174         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 0);
3175
3176         ifp->if_drv_flags |= IFF_DRV_RUNNING;
3177         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
3178         callout_reset(&sc->ti_watchdog, hz, ti_watchdog, sc);
3179
3180         /*
3181          * Make sure to set media properly. We have to do this
3182          * here since we have to issue commands in order to set
3183          * the link negotiation and we can't issue commands until
3184          * the firmware is running.
3185          */
3186         ifm = &sc->ifmedia;
3187         tmp = ifm->ifm_media;
3188         ifm->ifm_media = ifm->ifm_cur->ifm_media;
3189         ti_ifmedia_upd_locked(sc);
3190         ifm->ifm_media = tmp;
3191 }
3192
3193 /*
3194  * Set media options.
3195  */
3196 static int
3197 ti_ifmedia_upd(struct ifnet *ifp)
3198 {
3199         struct ti_softc *sc;
3200         int error;
3201
3202         sc = ifp->if_softc;
3203         TI_LOCK(sc);
3204         error = ti_ifmedia_upd(ifp);
3205         TI_UNLOCK(sc);
3206
3207         return (error);
3208 }
3209
3210 static int
3211 ti_ifmedia_upd_locked(struct ti_softc *sc)
3212 {
3213         struct ifmedia *ifm;
3214         struct ti_cmd_desc cmd;
3215         uint32_t flowctl;
3216
3217         ifm = &sc->ifmedia;
3218
3219         if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
3220                 return (EINVAL);
3221
3222         flowctl = 0;
3223
3224         switch (IFM_SUBTYPE(ifm->ifm_media)) {
3225         case IFM_AUTO:
3226                 /*
3227                  * Transmit flow control doesn't work on the Tigon 1.
3228                  */
3229                 flowctl = TI_GLNK_RX_FLOWCTL_Y;
3230
3231                 /*
3232                  * Transmit flow control can also cause problems on the
3233                  * Tigon 2, apparantly with both the copper and fiber
3234                  * boards.  The symptom is that the interface will just
3235                  * hang.  This was reproduced with Alteon 180 switches.
3236                  */
3237 #if 0
3238                 if (sc->ti_hwrev != TI_HWREV_TIGON)
3239                         flowctl |= TI_GLNK_TX_FLOWCTL_Y;
3240 #endif
3241
3242                 CSR_WRITE_4(sc, TI_GCR_GLINK, TI_GLNK_PREF|TI_GLNK_1000MB|
3243                     TI_GLNK_FULL_DUPLEX| flowctl |
3244                     TI_GLNK_AUTONEGENB|TI_GLNK_ENB);
3245
3246                 flowctl = TI_LNK_RX_FLOWCTL_Y;
3247 #if 0
3248                 if (sc->ti_hwrev != TI_HWREV_TIGON)
3249                         flowctl |= TI_LNK_TX_FLOWCTL_Y;
3250 #endif
3251
3252                 CSR_WRITE_4(sc, TI_GCR_LINK, TI_LNK_100MB|TI_LNK_10MB|
3253                     TI_LNK_FULL_DUPLEX|TI_LNK_HALF_DUPLEX| flowctl |
3254                     TI_LNK_AUTONEGENB|TI_LNK_ENB);
3255                 TI_DO_CMD(TI_CMD_LINK_NEGOTIATION,
3256                     TI_CMD_CODE_NEGOTIATE_BOTH, 0);
3257                 break;
3258         case IFM_1000_SX:
3259         case IFM_1000_T:
3260                 flowctl = TI_GLNK_RX_FLOWCTL_Y;
3261 #if 0
3262                 if (sc->ti_hwrev != TI_HWREV_TIGON)
3263                         flowctl |= TI_GLNK_TX_FLOWCTL_Y;
3264 #endif
3265
3266                 CSR_WRITE_4(sc, TI_GCR_GLINK, TI_GLNK_PREF|TI_GLNK_1000MB|
3267                     flowctl |TI_GLNK_ENB);
3268                 CSR_WRITE_4(sc, TI_GCR_LINK, 0);
3269                 if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX) {
3270                         TI_SETBIT(sc, TI_GCR_GLINK, TI_GLNK_FULL_DUPLEX);
3271                 }
3272                 TI_DO_CMD(TI_CMD_LINK_NEGOTIATION,
3273                     TI_CMD_CODE_NEGOTIATE_GIGABIT, 0);
3274                 break;
3275         case IFM_100_FX:
3276         case IFM_10_FL:
3277         case IFM_100_TX:
3278         case IFM_10_T:
3279                 flowctl = TI_LNK_RX_FLOWCTL_Y;
3280 #if 0
3281                 if (sc->ti_hwrev != TI_HWREV_TIGON)
3282                         flowctl |= TI_LNK_TX_FLOWCTL_Y;
3283 #endif
3284
3285                 CSR_WRITE_4(sc, TI_GCR_GLINK, 0);
3286                 CSR_WRITE_4(sc, TI_GCR_LINK, TI_LNK_ENB|TI_LNK_PREF|flowctl);
3287                 if (IFM_SUBTYPE(ifm->ifm_media) == IFM_100_FX ||
3288                     IFM_SUBTYPE(ifm->ifm_media) == IFM_100_TX) {
3289                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_100MB);
3290                 } else {
3291                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_10MB);
3292                 }
3293                 if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX) {
3294                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_FULL_DUPLEX);
3295                 } else {
3296                         TI_SETBIT(sc, TI_GCR_LINK, TI_LNK_HALF_DUPLEX);
3297                 }
3298                 TI_DO_CMD(TI_CMD_LINK_NEGOTIATION,
3299                     TI_CMD_CODE_NEGOTIATE_10_100, 0);
3300                 break;
3301         }
3302
3303         return (0);
3304 }
3305
3306 /*
3307  * Report current media status.
3308  */
3309 static void
3310 ti_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
3311 {
3312         struct ti_softc *sc;
3313         uint32_t media = 0;
3314
3315         sc = ifp->if_softc;
3316
3317         TI_LOCK(sc);
3318
3319         ifmr->ifm_status = IFM_AVALID;
3320         ifmr->ifm_active = IFM_ETHER;
3321
3322         if (sc->ti_linkstat == TI_EV_CODE_LINK_DOWN) {
3323                 TI_UNLOCK(sc);
3324                 return;
3325         }
3326
3327         ifmr->ifm_status |= IFM_ACTIVE;
3328
3329         if (sc->ti_linkstat == TI_EV_CODE_GIG_LINK_UP) {
3330                 media = CSR_READ_4(sc, TI_GCR_GLINK_STAT);
3331                 if (sc->ti_copper)
3332                         ifmr->ifm_active |= IFM_1000_T;
3333                 else
3334                         ifmr->ifm_active |= IFM_1000_SX;
3335                 if (media & TI_GLNK_FULL_DUPLEX)
3336                         ifmr->ifm_active |= IFM_FDX;
3337                 else
3338                         ifmr->ifm_active |= IFM_HDX;
3339         } else if (sc->ti_linkstat == TI_EV_CODE_LINK_UP) {
3340                 media = CSR_READ_4(sc, TI_GCR_LINK_STAT);
3341                 if (sc->ti_copper) {
3342                         if (media & TI_LNK_100MB)
3343                                 ifmr->ifm_active |= IFM_100_TX;
3344                         if (media & TI_LNK_10MB)
3345                                 ifmr->ifm_active |= IFM_10_T;
3346                 } else {
3347                         if (media & TI_LNK_100MB)
3348                                 ifmr->ifm_active |= IFM_100_FX;
3349                         if (media & TI_LNK_10MB)
3350                                 ifmr->ifm_active |= IFM_10_FL;
3351                 }
3352                 if (media & TI_LNK_FULL_DUPLEX)
3353                         ifmr->ifm_active |= IFM_FDX;
3354                 if (media & TI_LNK_HALF_DUPLEX)
3355                         ifmr->ifm_active |= IFM_HDX;
3356         }
3357         TI_UNLOCK(sc);
3358 }
3359
3360 static int
3361 ti_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
3362 {
3363         struct ti_softc *sc = ifp->if_softc;
3364         struct ifreq *ifr = (struct ifreq *) data;
3365         struct ti_cmd_desc cmd;
3366         int mask, error = 0;
3367
3368         switch (command) {
3369         case SIOCSIFMTU:
3370                 TI_LOCK(sc);
3371                 if (ifr->ifr_mtu > TI_JUMBO_MTU)
3372                         error = EINVAL;
3373                 else {
3374                         ifp->if_mtu = ifr->ifr_mtu;
3375                         ti_init_locked(sc);
3376                 }
3377                 TI_UNLOCK(sc);
3378                 break;
3379         case SIOCSIFFLAGS:
3380                 TI_LOCK(sc);
3381                 if (ifp->if_flags & IFF_UP) {
3382                         /*
3383                          * If only the state of the PROMISC flag changed,
3384                          * then just use the 'set promisc mode' command
3385                          * instead of reinitializing the entire NIC. Doing
3386                          * a full re-init means reloading the firmware and
3387                          * waiting for it to start up, which may take a
3388                          * second or two.
3389                          */
3390                         if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
3391                             ifp->if_flags & IFF_PROMISC &&
3392                             !(sc->ti_if_flags & IFF_PROMISC)) {
3393                                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE,
3394                                     TI_CMD_CODE_PROMISC_ENB, 0);
3395                         } else if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
3396                             !(ifp->if_flags & IFF_PROMISC) &&
3397                             sc->ti_if_flags & IFF_PROMISC) {
3398                                 TI_DO_CMD(TI_CMD_SET_PROMISC_MODE,
3399                                     TI_CMD_CODE_PROMISC_DIS, 0);
3400                         } else
3401                                 ti_init_locked(sc);
3402                 } else {
3403                         if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
3404                                 ti_stop(sc);
3405                         }
3406                 }
3407                 sc->ti_if_flags = ifp->if_flags;
3408                 TI_UNLOCK(sc);
3409                 break;
3410         case SIOCADDMULTI:
3411         case SIOCDELMULTI:
3412                 TI_LOCK(sc);
3413                 if (ifp->if_drv_flags & IFF_DRV_RUNNING)
3414                         ti_setmulti(sc);
3415                 TI_UNLOCK(sc);
3416                 break;
3417         case SIOCSIFMEDIA:
3418         case SIOCGIFMEDIA:
3419                 error = ifmedia_ioctl(ifp, ifr, &sc->ifmedia, command);
3420                 break;
3421         case SIOCSIFCAP:
3422                 TI_LOCK(sc);
3423                 mask = ifr->ifr_reqcap ^ ifp->if_capenable;
3424                 if ((mask & IFCAP_TXCSUM) != 0 &&
3425                     (ifp->if_capabilities & IFCAP_TXCSUM) != 0) {
3426                         ifp->if_capenable ^= IFCAP_TXCSUM;
3427                         if ((ifp->if_capenable & IFCAP_TXCSUM) != 0)
3428                                 ifp->if_hwassist |= TI_CSUM_FEATURES;
3429                         else
3430                                 ifp->if_hwassist &= ~TI_CSUM_FEATURES;
3431                 }
3432                 if ((mask & IFCAP_RXCSUM) != 0 &&
3433                     (ifp->if_capabilities & IFCAP_RXCSUM) != 0)
3434                         ifp->if_capenable ^= IFCAP_RXCSUM;
3435                 if ((mask & IFCAP_VLAN_HWTAGGING) != 0 &&
3436                     (ifp->if_capabilities & IFCAP_VLAN_HWTAGGING) != 0)
3437                         ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING;
3438                 if ((mask & IFCAP_VLAN_HWCSUM) != 0 &&
3439                     (ifp->if_capabilities & IFCAP_VLAN_HWCSUM) != 0)
3440                         ifp->if_capenable ^= IFCAP_VLAN_HWCSUM;
3441                 if ((mask & (IFCAP_TXCSUM | IFCAP_RXCSUM |
3442                     IFCAP_VLAN_HWTAGGING)) != 0) {
3443                         if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
3444                                 ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
3445                                 ti_init_locked(sc);
3446                         }
3447                 }
3448                 TI_UNLOCK(sc);
3449                 VLAN_CAPABILITIES(ifp);
3450                 break;
3451         default:
3452                 error = ether_ioctl(ifp, command, data);
3453                 break;
3454         }
3455
3456         return (error);
3457 }
3458
3459 static int
3460 ti_open(struct cdev *dev, int flags, int fmt, struct thread *td)
3461 {
3462         struct ti_softc *sc;
3463
3464         sc = dev->si_drv1;
3465         if (sc == NULL)
3466                 return (ENODEV);
3467
3468         TI_LOCK(sc);
3469         sc->ti_flags |= TI_FLAG_DEBUGING;
3470         TI_UNLOCK(sc);
3471
3472         return (0);
3473 }
3474
3475 static int
3476 ti_close(struct cdev *dev, int flag, int fmt, struct thread *td)
3477 {
3478         struct ti_softc *sc;
3479
3480         sc = dev->si_drv1;
3481         if (sc == NULL)
3482                 return (ENODEV);
3483
3484         TI_LOCK(sc);
3485         sc->ti_flags &= ~TI_FLAG_DEBUGING;
3486         TI_UNLOCK(sc);
3487
3488         return (0);
3489 }
3490
3491 /*
3492  * This ioctl routine goes along with the Tigon character device.
3493  */
3494 static int
3495 ti_ioctl2(struct cdev *dev, u_long cmd, caddr_t addr, int flag,
3496     struct thread *td)
3497 {
3498         struct ti_softc *sc;
3499         int error;
3500
3501         sc = dev->si_drv1;
3502         if (sc == NULL)
3503                 return (ENODEV);
3504
3505         error = 0;
3506
3507         switch (cmd) {
3508         case TIIOCGETSTATS:
3509         {
3510                 struct ti_stats *outstats;
3511
3512                 outstats = (struct ti_stats *)addr;
3513
3514                 TI_LOCK(sc);
3515                 bcopy(&sc->ti_rdata->ti_info.ti_stats, outstats,
3516                       sizeof(struct ti_stats));
3517                 TI_UNLOCK(sc);
3518                 break;
3519         }
3520         case TIIOCGETPARAMS:
3521         {
3522                 struct ti_params *params;
3523
3524                 params = (struct ti_params *)addr;
3525
3526                 TI_LOCK(sc);
3527                 params->ti_stat_ticks = sc->ti_stat_ticks;
3528                 params->ti_rx_coal_ticks = sc->ti_rx_coal_ticks;
3529                 params->ti_tx_coal_ticks = sc->ti_tx_coal_ticks;
3530                 params->ti_rx_max_coal_bds = sc->ti_rx_max_coal_bds;
3531                 params->ti_tx_max_coal_bds = sc->ti_tx_max_coal_bds;
3532                 params->ti_tx_buf_ratio = sc->ti_tx_buf_ratio;
3533                 params->param_mask = TI_PARAM_ALL;
3534                 TI_UNLOCK(sc);
3535
3536                 error = 0;
3537
3538                 break;
3539         }
3540         case TIIOCSETPARAMS:
3541         {
3542                 struct ti_params *params;
3543
3544                 params = (struct ti_params *)addr;
3545
3546                 TI_LOCK(sc);
3547                 if (params->param_mask & TI_PARAM_STAT_TICKS) {
3548                         sc->ti_stat_ticks = params->ti_stat_ticks;
3549                         CSR_WRITE_4(sc, TI_GCR_STAT_TICKS, sc->ti_stat_ticks);
3550                 }
3551
3552                 if (params->param_mask & TI_PARAM_RX_COAL_TICKS) {
3553                         sc->ti_rx_coal_ticks = params->ti_rx_coal_ticks;
3554                         CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS,
3555                                     sc->ti_rx_coal_ticks);
3556                 }
3557
3558                 if (params->param_mask & TI_PARAM_TX_COAL_TICKS) {
3559                         sc->ti_tx_coal_ticks = params->ti_tx_coal_ticks;
3560                         CSR_WRITE_4(sc, TI_GCR_TX_COAL_TICKS,
3561                                     sc->ti_tx_coal_ticks);
3562                 }
3563
3564                 if (params->param_mask & TI_PARAM_RX_COAL_BDS) {
3565                         sc->ti_rx_max_coal_bds = params->ti_rx_max_coal_bds;
3566                         CSR_WRITE_4(sc, TI_GCR_RX_MAX_COAL_BD,
3567                                     sc->ti_rx_max_coal_bds);
3568                 }
3569
3570                 if (params->param_mask & TI_PARAM_TX_COAL_BDS) {
3571                         sc->ti_tx_max_coal_bds = params->ti_tx_max_coal_bds;
3572                         CSR_WRITE_4(sc, TI_GCR_TX_MAX_COAL_BD,
3573                                     sc->ti_tx_max_coal_bds);
3574                 }
3575
3576                 if (params->param_mask & TI_PARAM_TX_BUF_RATIO) {
3577                         sc->ti_tx_buf_ratio = params->ti_tx_buf_ratio;
3578                         CSR_WRITE_4(sc, TI_GCR_TX_BUFFER_RATIO,
3579                                     sc->ti_tx_buf_ratio);
3580                 }
3581                 TI_UNLOCK(sc);
3582
3583                 error = 0;
3584
3585                 break;
3586         }
3587         case TIIOCSETTRACE: {
3588                 ti_trace_type   trace_type;
3589
3590                 trace_type = *(ti_trace_type *)addr;
3591
3592                 /*
3593                  * Set tracing to whatever the user asked for.  Setting
3594                  * this register to 0 should have the effect of disabling
3595                  * tracing.
3596                  */
3597                 CSR_WRITE_4(sc, TI_GCR_NIC_TRACING, trace_type);
3598
3599                 error = 0;
3600
3601                 break;
3602         }
3603         case TIIOCGETTRACE: {
3604                 struct ti_trace_buf *trace_buf;
3605                 uint32_t trace_start, cur_trace_ptr, trace_len;
3606
3607                 trace_buf = (struct ti_trace_buf *)addr;
3608
3609                 TI_LOCK(sc);
3610                 trace_start = CSR_READ_4(sc, TI_GCR_NICTRACE_START);
3611                 cur_trace_ptr = CSR_READ_4(sc, TI_GCR_NICTRACE_PTR);
3612                 trace_len = CSR_READ_4(sc, TI_GCR_NICTRACE_LEN);
3613
3614 #if 0
3615                 if_printf(sc->ti_ifp, "trace_start = %#x, cur_trace_ptr = %#x, "
3616                        "trace_len = %d\n", trace_start,
3617                        cur_trace_ptr, trace_len);
3618                 if_printf(sc->ti_ifp, "trace_buf->buf_len = %d\n",
3619                        trace_buf->buf_len);
3620 #endif
3621
3622                 error = ti_copy_mem(sc, trace_start, min(trace_len,
3623                                     trace_buf->buf_len),
3624                                     (caddr_t)trace_buf->buf, 1, 1);
3625
3626                 if (error == 0) {
3627                         trace_buf->fill_len = min(trace_len,
3628                                                   trace_buf->buf_len);
3629                         if (cur_trace_ptr < trace_start)
3630                                 trace_buf->cur_trace_ptr =
3631                                         trace_start - cur_trace_ptr;
3632                         else
3633                                 trace_buf->cur_trace_ptr =
3634                                         cur_trace_ptr - trace_start;
3635                 } else
3636                         trace_buf->fill_len = 0;
3637                 TI_UNLOCK(sc);
3638
3639                 break;
3640         }
3641
3642         /*
3643          * For debugging, five ioctls are needed:
3644          * ALT_ATTACH
3645          * ALT_READ_TG_REG
3646          * ALT_WRITE_TG_REG
3647          * ALT_READ_TG_MEM
3648          * ALT_WRITE_TG_MEM
3649          */
3650         case ALT_ATTACH:
3651                 /*
3652                  * From what I can tell, Alteon's Solaris Tigon driver
3653                  * only has one character device, so you have to attach
3654                  * to the Tigon board you're interested in.  This seems
3655                  * like a not-so-good way to do things, since unless you
3656                  * subsequently specify the unit number of the device
3657                  * you're interested in every ioctl, you'll only be
3658                  * able to debug one board at a time.
3659                  */
3660                 error = 0;
3661                 break;
3662         case ALT_READ_TG_MEM:
3663         case ALT_WRITE_TG_MEM:
3664         {
3665                 struct tg_mem *mem_param;
3666                 uint32_t sram_end, scratch_end;
3667
3668                 mem_param = (struct tg_mem *)addr;
3669
3670                 if (sc->ti_hwrev == TI_HWREV_TIGON) {
3671                         sram_end = TI_END_SRAM_I;
3672                         scratch_end = TI_END_SCRATCH_I;
3673                 } else {
3674                         sram_end = TI_END_SRAM_II;
3675                         scratch_end = TI_END_SCRATCH_II;
3676                 }
3677
3678                 /*
3679                  * For now, we'll only handle accessing regular SRAM,
3680                  * nothing else.
3681                  */
3682                 TI_LOCK(sc);
3683                 if ((mem_param->tgAddr >= TI_BEG_SRAM)
3684                  && ((mem_param->tgAddr + mem_param->len) <= sram_end)) {
3685                         /*
3686                          * In this instance, we always copy to/from user
3687                          * space, so the user space argument is set to 1.
3688                          */
3689                         error = ti_copy_mem(sc, mem_param->tgAddr,
3690                                             mem_param->len,
3691                                             mem_param->userAddr, 1,
3692                                             (cmd == ALT_READ_TG_MEM) ? 1 : 0);
3693                 } else if ((mem_param->tgAddr >= TI_BEG_SCRATCH)
3694                         && (mem_param->tgAddr <= scratch_end)) {
3695                         error = ti_copy_scratch(sc, mem_param->tgAddr,
3696                                                 mem_param->len,
3697                                                 mem_param->userAddr, 1,
3698                                                 (cmd == ALT_READ_TG_MEM) ?
3699                                                 1 : 0, TI_PROCESSOR_A);
3700                 } else if ((mem_param->tgAddr >= TI_BEG_SCRATCH_B_DEBUG)
3701                         && (mem_param->tgAddr <= TI_BEG_SCRATCH_B_DEBUG)) {
3702                         if (sc->ti_hwrev == TI_HWREV_TIGON) {
3703                                 if_printf(sc->ti_ifp,
3704                                     "invalid memory range for Tigon I\n");
3705                                 error = EINVAL;
3706                                 break;
3707                         }
3708                         error = ti_copy_scratch(sc, mem_param->tgAddr -
3709                                                 TI_SCRATCH_DEBUG_OFF,
3710                                                 mem_param->len,
3711                                                 mem_param->userAddr, 1,
3712                                                 (cmd == ALT_READ_TG_MEM) ?
3713                                                 1 : 0, TI_PROCESSOR_B);
3714                 } else {
3715                         if_printf(sc->ti_ifp, "memory address %#x len %d is "
3716                                 "out of supported range\n",
3717                                 mem_param->tgAddr, mem_param->len);
3718                         error = EINVAL;
3719                 }
3720                 TI_UNLOCK(sc);
3721
3722                 break;
3723         }
3724         case ALT_READ_TG_REG:
3725         case ALT_WRITE_TG_REG:
3726         {
3727                 struct tg_reg   *regs;
3728                 uint32_t        tmpval;
3729
3730                 regs = (struct tg_reg *)addr;
3731
3732                 /*
3733                  * Make sure the address in question isn't out of range.
3734                  */
3735                 if (regs->addr > TI_REG_MAX) {
3736                         error = EINVAL;
3737                         break;
3738                 }
3739                 TI_LOCK(sc);
3740                 if (cmd == ALT_READ_TG_REG) {
3741                         bus_space_read_region_4(sc->ti_btag, sc->ti_bhandle,
3742                                                 regs->addr, &tmpval, 1);
3743                         regs->data = ntohl(tmpval);
3744 #if 0
3745                         if ((regs->addr == TI_CPU_STATE)
3746                          || (regs->addr == TI_CPU_CTL_B)) {
3747                                 if_printf(sc->ti_ifp, "register %#x = %#x\n",
3748                                        regs->addr, tmpval);
3749                         }
3750 #endif
3751                 } else {
3752                         tmpval = htonl(regs->data);
3753                         bus_space_write_region_4(sc->ti_btag, sc->ti_bhandle,
3754                                                  regs->addr, &tmpval, 1);
3755                 }
3756                 TI_UNLOCK(sc);
3757
3758                 break;
3759         }
3760         default:
3761                 error = ENOTTY;
3762                 break;
3763         }
3764         return (error);
3765 }
3766
3767 static void
3768 ti_watchdog(void *arg)
3769 {
3770         struct ti_softc *sc;
3771         struct ifnet *ifp;
3772
3773         sc = arg;
3774         TI_LOCK_ASSERT(sc);
3775         callout_reset(&sc->ti_watchdog, hz, ti_watchdog, sc);
3776         if (sc->ti_timer == 0 || --sc->ti_timer > 0)
3777                 return;
3778
3779         /*
3780          * When we're debugging, the chip is often stopped for long periods
3781          * of time, and that would normally cause the watchdog timer to fire.
3782          * Since that impedes debugging, we don't want to do that.
3783          */
3784         if (sc->ti_flags & TI_FLAG_DEBUGING)
3785                 return;
3786
3787         ifp = sc->ti_ifp;
3788         if_printf(ifp, "watchdog timeout -- resetting\n");
3789         ti_stop(sc);
3790         ti_init_locked(sc);
3791
3792         ifp->if_oerrors++;
3793 }
3794
3795 /*
3796  * Stop the adapter and free any mbufs allocated to the
3797  * RX and TX lists.
3798  */
3799 static void
3800 ti_stop(struct ti_softc *sc)
3801 {
3802         struct ifnet *ifp;
3803         struct ti_cmd_desc cmd;
3804
3805         TI_LOCK_ASSERT(sc);
3806
3807         ifp = sc->ti_ifp;
3808
3809         /* Disable host interrupts. */
3810         CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1);
3811         /*
3812          * Tell firmware we're shutting down.
3813          */
3814         TI_DO_CMD(TI_CMD_HOST_STATE, TI_CMD_CODE_STACK_DOWN, 0);
3815
3816         /* Halt and reinitialize. */
3817         if (ti_chipinit(sc) != 0)
3818                 return;
3819         ti_mem_zero(sc, 0x2000, 0x100000 - 0x2000);
3820         if (ti_chipinit(sc) != 0)
3821                 return;
3822
3823         /* Free the RX lists. */
3824         ti_free_rx_ring_std(sc);
3825
3826         /* Free jumbo RX list. */
3827         ti_free_rx_ring_jumbo(sc);
3828
3829         /* Free mini RX list. */
3830         ti_free_rx_ring_mini(sc);
3831
3832         /* Free TX buffers. */
3833         ti_free_tx_ring(sc);
3834
3835         sc->ti_ev_prodidx.ti_idx = 0;
3836         sc->ti_return_prodidx.ti_idx = 0;
3837         sc->ti_tx_considx.ti_idx = 0;
3838         sc->ti_tx_saved_considx = TI_TXCONS_UNSET;
3839
3840         ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
3841         callout_stop(&sc->ti_watchdog);
3842 }
3843
3844 /*
3845  * Stop all chip I/O so that the kernel's probe routines don't
3846  * get confused by errant DMAs when rebooting.
3847  */
3848 static int
3849 ti_shutdown(device_t dev)
3850 {
3851         struct ti_softc *sc;
3852
3853         sc = device_get_softc(dev);
3854         TI_LOCK(sc);
3855         ti_chipinit(sc);
3856         TI_UNLOCK(sc);
3857
3858         return (0);
3859 }