Move the callout_reset into the critical section.
[dragonfly.git] / sys / dev / netif / txp / if_txp.c
1 /*      $OpenBSD: if_txp.c,v 1.48 2001/06/27 06:34:50 kjc Exp $ */
2 /*      $FreeBSD: src/sys/dev/txp/if_txp.c,v 1.4.2.4 2001/12/14 19:50:43 jlemon Exp $ */
3 /*      $DragonFly: src/sys/dev/netif/txp/if_txp.c,v 1.22 2005/06/10 16:10:42 joerg Exp $ */
4
5 /*
6  * Copyright (c) 2001
7  *      Jason L. Wright <jason@thought.net>, Theo de Raadt, and
8  *      Aaron Campbell <aaron@monkey.org>.  All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by Jason L. Wright,
21  *      Theo de Raadt and Aaron Campbell.
22  * 4. Neither the name of the author nor the names of any co-contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
27  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
36  * THE POSSIBILITY OF SUCH DAMAGE.
37  */
38
39 /*
40  * Driver for 3c990 (Typhoon) Ethernet ASIC
41  */
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/sockio.h>
46 #include <sys/mbuf.h>
47 #include <sys/malloc.h>
48 #include <sys/kernel.h>
49 #include <sys/socket.h>
50 #include <sys/thread2.h>
51
52 #include <net/if.h>
53 #include <net/ifq_var.h>
54 #include <net/if_arp.h>
55 #include <net/ethernet.h>
56 #include <net/if_dl.h>
57 #include <net/if_types.h>
58 #include <net/vlan/if_vlan_var.h>
59
60 #include <netinet/in.h>
61 #include <netinet/in_systm.h>
62 #include <netinet/in_var.h>
63 #include <netinet/ip.h>
64 #include <netinet/if_ether.h>
65 #include <sys/in_cksum.h>
66
67 #include <net/if_media.h>
68
69 #include <net/bpf.h>
70
71 #include <vm/vm.h>              /* for vtophys */
72 #include <vm/pmap.h>            /* for vtophys */
73 #include <machine/clock.h>      /* for DELAY */
74 #include <machine/bus_pio.h>
75 #include <machine/bus_memio.h>
76 #include <machine/bus.h>
77 #include <machine/resource.h>
78 #include <sys/bus.h>
79 #include <sys/rman.h>
80
81 #include "../mii_layer/mii.h"
82 #include "../mii_layer/miivar.h"
83 #include <bus/pci/pcireg.h>
84 #include <bus/pci/pcivar.h>
85
86 #define TXP_USEIOSPACE
87 #define __STRICT_ALIGNMENT
88
89 #include "if_txpreg.h"
90 #include "3c990img.h"
91
92 /*
93  * Various supported device vendors/types and their names.
94  */
95 static struct txp_type txp_devs[] = {
96         { TXP_VENDORID_3COM, TXP_DEVICEID_3CR990_TX_95,
97             "3Com 3cR990-TX-95 Etherlink with 3XP Processor" },
98         { TXP_VENDORID_3COM, TXP_DEVICEID_3CR990_TX_97,
99             "3Com 3cR990-TX-97 Etherlink with 3XP Processor" },
100         { TXP_VENDORID_3COM, TXP_DEVICEID_3CR990B_TXM,
101             "3Com 3cR990B-TXM Etherlink with 3XP Processor" },
102         { TXP_VENDORID_3COM, TXP_DEVICEID_3CR990_SRV_95,
103             "3Com 3cR990-SRV-95 Etherlink Server with 3XP Processor" },
104         { TXP_VENDORID_3COM, TXP_DEVICEID_3CR990_SRV_97,
105             "3Com 3cR990-SRV-97 Etherlink Server with 3XP Processor" },
106         { TXP_VENDORID_3COM, TXP_DEVICEID_3CR990B_SRV,
107             "3Com 3cR990B-SRV Etherlink Server with 3XP Processor" },
108         { 0, 0, NULL }
109 };
110
111 static int txp_probe    (device_t);
112 static int txp_attach   (device_t);
113 static int txp_detach   (device_t);
114 static void txp_intr    (void *);
115 static void txp_tick    (void *);
116 static int txp_shutdown (device_t);
117 static int txp_ioctl    (struct ifnet *, u_long, caddr_t, struct ucred *);
118 static void txp_start   (struct ifnet *);
119 static void txp_stop    (struct txp_softc *);
120 static void txp_init    (void *);
121 static void txp_watchdog        (struct ifnet *);
122
123 static void txp_release_resources (struct txp_softc *);
124 static int txp_chip_init (struct txp_softc *);
125 static int txp_reset_adapter (struct txp_softc *);
126 static int txp_download_fw (struct txp_softc *);
127 static int txp_download_fw_wait (struct txp_softc *);
128 static int txp_download_fw_section (struct txp_softc *,
129     struct txp_fw_section_header *, int);
130 static int txp_alloc_rings (struct txp_softc *);
131 static int txp_rxring_fill (struct txp_softc *);
132 static void txp_rxring_empty (struct txp_softc *);
133 static void txp_set_filter (struct txp_softc *);
134
135 static int txp_cmd_desc_numfree (struct txp_softc *);
136 static int txp_command (struct txp_softc *, u_int16_t, u_int16_t, u_int32_t,
137     u_int32_t, u_int16_t *, u_int32_t *, u_int32_t *, int);
138 static int txp_command2 (struct txp_softc *, u_int16_t, u_int16_t,
139     u_int32_t, u_int32_t, struct txp_ext_desc *, u_int8_t,
140     struct txp_rsp_desc **, int);
141 static int txp_response (struct txp_softc *, u_int32_t, u_int16_t, u_int16_t,
142     struct txp_rsp_desc **);
143 static void txp_rsp_fixup (struct txp_softc *, struct txp_rsp_desc *,
144     struct txp_rsp_desc *);
145 static void txp_capabilities (struct txp_softc *);
146
147 static void txp_ifmedia_sts (struct ifnet *, struct ifmediareq *);
148 static int txp_ifmedia_upd (struct ifnet *);
149 #ifdef TXP_DEBUG
150 static void txp_show_descriptor (void *);
151 #endif
152 static void txp_tx_reclaim (struct txp_softc *, struct txp_tx_ring *);
153 static void txp_rxbuf_reclaim (struct txp_softc *);
154 static void txp_rx_reclaim (struct txp_softc *, struct txp_rx_ring *);
155
156 #ifdef TXP_USEIOSPACE
157 #define TXP_RES                 SYS_RES_IOPORT
158 #define TXP_RID                 TXP_PCI_LOIO
159 #else
160 #define TXP_RES                 SYS_RES_MEMORY
161 #define TXP_RID                 TXP_PCI_LOMEM
162 #endif
163
164 static device_method_t txp_methods[] = {
165         /* Device interface */
166         DEVMETHOD(device_probe,         txp_probe),
167         DEVMETHOD(device_attach,        txp_attach),
168         DEVMETHOD(device_detach,        txp_detach),
169         DEVMETHOD(device_shutdown,      txp_shutdown),
170         { 0, 0 }
171 };
172
173 static driver_t txp_driver = {
174         "txp",
175         txp_methods,
176         sizeof(struct txp_softc)
177 };
178
179 static devclass_t txp_devclass;
180
181 DECLARE_DUMMY_MODULE(if_txp);
182 DRIVER_MODULE(if_txp, pci, txp_driver, txp_devclass, 0, 0);
183
184 static int
185 txp_probe(dev)
186         device_t dev;
187 {
188         struct txp_type *t;
189
190         t = txp_devs;
191
192         while(t->txp_name != NULL) {
193                 if ((pci_get_vendor(dev) == t->txp_vid) &&
194                     (pci_get_device(dev) == t->txp_did)) {
195                         device_set_desc(dev, t->txp_name);
196                         return(0);
197                 }
198                 t++;
199         }
200
201         return(ENXIO);
202 }
203
204 static int
205 txp_attach(dev)
206         device_t dev;
207 {
208         struct txp_softc *sc;
209         struct ifnet *ifp;
210         u_int32_t command;
211         u_int16_t p1;
212         u_int32_t p2;
213         int unit, error = 0, rid;
214
215         sc = device_get_softc(dev);
216         unit = device_get_unit(dev);
217         sc->sc_dev = dev;
218         sc->sc_cold = 1;
219         callout_init(&sc->txp_stat_timer);
220
221         /*
222          * Map control/status registers.
223          */
224         command = pci_read_config(dev, PCIR_COMMAND, 4);
225         command |= (PCIM_CMD_PORTEN|PCIM_CMD_MEMEN|PCIM_CMD_BUSMASTEREN);
226         pci_write_config(dev, PCIR_COMMAND, command, 4);
227         command = pci_read_config(dev, PCIR_COMMAND, 4);
228
229 #ifdef TXP_USEIOSPACE
230         if (!(command & PCIM_CMD_PORTEN)) {
231                 device_printf(dev, "failed to enable I/O ports!\n");
232                 error = ENXIO;;
233                 goto fail;
234         }
235 #else
236         if (!(command & PCIM_CMD_MEMEN)) {
237                 device_printf(dev, "failed to enable memory mapping!\n");
238                 error = ENXIO;;
239                 goto fail;
240         }
241 #endif
242
243         rid = TXP_RID;
244         sc->sc_res = bus_alloc_resource_any(dev, TXP_RES, &rid, RF_ACTIVE);
245
246         if (sc->sc_res == NULL) {
247                 device_printf(dev, "couldn't map ports/memory\n");
248                 error = ENXIO;
249                 goto fail;
250         }
251
252         sc->sc_bt = rman_get_bustag(sc->sc_res);
253         sc->sc_bh = rman_get_bushandle(sc->sc_res);
254
255         /* Allocate interrupt */
256         rid = 0;
257         sc->sc_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
258             RF_SHAREABLE | RF_ACTIVE);
259
260         if (sc->sc_irq == NULL) {
261                 device_printf(dev, "couldn't map interrupt\n");
262                 txp_release_resources(sc);
263                 error = ENXIO;
264                 goto fail;
265         }
266
267         error = bus_setup_intr(dev, sc->sc_irq, INTR_TYPE_NET,
268                                txp_intr, sc, &sc->sc_intrhand, NULL);
269
270         if (error) {
271                 txp_release_resources(sc);
272                 device_printf(dev, "couldn't set up irq\n");
273                 goto fail;
274         }
275
276         if (txp_chip_init(sc)) {
277                 txp_release_resources(sc);
278                 goto fail;
279         }
280
281         sc->sc_fwbuf = contigmalloc(32768, M_DEVBUF,
282             M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
283         error = txp_download_fw(sc);
284         contigfree(sc->sc_fwbuf, 32768, M_DEVBUF);
285         sc->sc_fwbuf = NULL;
286
287         if (error) {
288                 txp_release_resources(sc);
289                 goto fail;
290         }
291
292         sc->sc_ldata = contigmalloc(sizeof(struct txp_ldata), M_DEVBUF,
293             M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
294         bzero(sc->sc_ldata, sizeof(struct txp_ldata));
295
296         if (txp_alloc_rings(sc)) {
297                 txp_release_resources(sc);
298                 goto fail;
299         }
300
301         if (txp_command(sc, TXP_CMD_MAX_PKT_SIZE_WRITE, TXP_MAX_PKTLEN, 0, 0,
302             NULL, NULL, NULL, 1)) {
303                 txp_release_resources(sc);
304                 goto fail;
305         }
306
307         if (txp_command(sc, TXP_CMD_STATION_ADDRESS_READ, 0, 0, 0,
308             &p1, &p2, NULL, 1)) {
309                 txp_release_resources(sc);
310                 goto fail;
311         }
312
313         txp_set_filter(sc);
314
315         sc->sc_arpcom.ac_enaddr[0] = ((uint8_t *)&p1)[1];
316         sc->sc_arpcom.ac_enaddr[1] = ((uint8_t *)&p1)[0];
317         sc->sc_arpcom.ac_enaddr[2] = ((uint8_t *)&p2)[3];
318         sc->sc_arpcom.ac_enaddr[3] = ((uint8_t *)&p2)[2];
319         sc->sc_arpcom.ac_enaddr[4] = ((uint8_t *)&p2)[1];
320         sc->sc_arpcom.ac_enaddr[5] = ((uint8_t *)&p2)[0];
321
322         sc->sc_cold = 0;
323
324         ifmedia_init(&sc->sc_ifmedia, 0, txp_ifmedia_upd, txp_ifmedia_sts);
325         ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_10_T, 0, NULL);
326         ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_10_T|IFM_HDX, 0, NULL);
327         ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
328         ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_100_TX, 0, NULL);
329         ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_100_TX|IFM_HDX, 0, NULL);
330         ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_100_TX|IFM_FDX, 0, NULL);
331         ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_AUTO, 0, NULL);
332
333         sc->sc_xcvr = TXP_XCVR_AUTO;
334         txp_command(sc, TXP_CMD_XCVR_SELECT, TXP_XCVR_AUTO, 0, 0,
335             NULL, NULL, NULL, 0);
336         ifmedia_set(&sc->sc_ifmedia, IFM_ETHER|IFM_AUTO);
337
338         ifp = &sc->sc_arpcom.ac_if;
339         ifp->if_softc = sc;
340         if_initname(ifp, "txp", unit);
341         ifp->if_mtu = ETHERMTU;
342         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
343         ifp->if_ioctl = txp_ioctl;
344         ifp->if_start = txp_start;
345         ifp->if_watchdog = txp_watchdog;
346         ifp->if_init = txp_init;
347         ifp->if_baudrate = 100000000;
348         ifq_set_maxlen(&ifp->if_snd, TX_ENTRIES);
349         ifq_set_ready(&ifp->if_snd);
350         ifp->if_hwassist = 0;
351         txp_capabilities(sc);
352
353         /*
354          * Attach us everywhere
355          */
356         ether_ifattach(ifp, sc->sc_arpcom.ac_enaddr);
357         return(0);
358
359 fail:
360         txp_release_resources(sc);
361         return(error);
362 }
363
364 static int
365 txp_detach(dev)
366         device_t dev;
367 {
368         struct txp_softc *sc;
369         struct ifnet *ifp;
370         int i;
371
372         sc = device_get_softc(dev);
373         ifp = &sc->sc_arpcom.ac_if;
374
375         txp_stop(sc);
376         txp_shutdown(dev);
377
378         ifmedia_removeall(&sc->sc_ifmedia);
379         ether_ifdetach(ifp);
380
381         for (i = 0; i < RXBUF_ENTRIES; i++)
382                 free(sc->sc_rxbufs[i].rb_sd, M_DEVBUF);
383
384         txp_release_resources(sc);
385
386         return(0);
387 }
388
389 static void
390 txp_release_resources(sc)
391         struct txp_softc *sc;
392 {
393         device_t dev;
394
395         dev = sc->sc_dev;
396
397         if (sc->sc_intrhand != NULL)
398                 bus_teardown_intr(dev, sc->sc_irq, sc->sc_intrhand);
399
400         if (sc->sc_irq != NULL)
401                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq);
402
403         if (sc->sc_res != NULL)
404                 bus_release_resource(dev, TXP_RES, TXP_RID, sc->sc_res);
405
406         if (sc->sc_ldata != NULL)
407                 contigfree(sc->sc_ldata, sizeof(struct txp_ldata), M_DEVBUF);
408
409         return;
410 }
411
412 static int
413 txp_chip_init(sc)
414         struct txp_softc *sc;
415 {
416         /* disable interrupts */
417         WRITE_REG(sc, TXP_IER, 0);
418         WRITE_REG(sc, TXP_IMR,
419             TXP_INT_SELF | TXP_INT_PCI_TABORT | TXP_INT_PCI_MABORT |
420             TXP_INT_DMA3 | TXP_INT_DMA2 | TXP_INT_DMA1 | TXP_INT_DMA0 |
421             TXP_INT_LATCH);
422
423         /* ack all interrupts */
424         WRITE_REG(sc, TXP_ISR, TXP_INT_RESERVED | TXP_INT_LATCH |
425             TXP_INT_A2H_7 | TXP_INT_A2H_6 | TXP_INT_A2H_5 | TXP_INT_A2H_4 |
426             TXP_INT_SELF | TXP_INT_PCI_TABORT | TXP_INT_PCI_MABORT |
427             TXP_INT_DMA3 | TXP_INT_DMA2 | TXP_INT_DMA1 | TXP_INT_DMA0 |
428             TXP_INT_A2H_3 | TXP_INT_A2H_2 | TXP_INT_A2H_1 | TXP_INT_A2H_0);
429
430         if (txp_reset_adapter(sc))
431                 return (-1);
432
433         /* disable interrupts */
434         WRITE_REG(sc, TXP_IER, 0);
435         WRITE_REG(sc, TXP_IMR,
436             TXP_INT_SELF | TXP_INT_PCI_TABORT | TXP_INT_PCI_MABORT |
437             TXP_INT_DMA3 | TXP_INT_DMA2 | TXP_INT_DMA1 | TXP_INT_DMA0 |
438             TXP_INT_LATCH);
439
440         /* ack all interrupts */
441         WRITE_REG(sc, TXP_ISR, TXP_INT_RESERVED | TXP_INT_LATCH |
442             TXP_INT_A2H_7 | TXP_INT_A2H_6 | TXP_INT_A2H_5 | TXP_INT_A2H_4 |
443             TXP_INT_SELF | TXP_INT_PCI_TABORT | TXP_INT_PCI_MABORT |
444             TXP_INT_DMA3 | TXP_INT_DMA2 | TXP_INT_DMA1 | TXP_INT_DMA0 |
445             TXP_INT_A2H_3 | TXP_INT_A2H_2 | TXP_INT_A2H_1 | TXP_INT_A2H_0);
446
447         return (0);
448 }
449
450 static int
451 txp_reset_adapter(sc)
452         struct txp_softc *sc;
453 {
454         u_int32_t r;
455         int i;
456
457         WRITE_REG(sc, TXP_SRR, TXP_SRR_ALL);
458         DELAY(1000);
459         WRITE_REG(sc, TXP_SRR, 0);
460
461         /* Should wait max 6 seconds */
462         for (i = 0; i < 6000; i++) {
463                 r = READ_REG(sc, TXP_A2H_0);
464                 if (r == STAT_WAITING_FOR_HOST_REQUEST)
465                         break;
466                 DELAY(1000);
467         }
468
469         if (r != STAT_WAITING_FOR_HOST_REQUEST) {
470                 device_printf(sc->sc_dev, "reset hung\n");
471                 return (-1);
472         }
473
474         return (0);
475 }
476
477 static int
478 txp_download_fw(sc)
479         struct txp_softc *sc;
480 {
481         struct txp_fw_file_header *fileheader;
482         struct txp_fw_section_header *secthead;
483         int sect;
484         u_int32_t r, i, ier, imr;
485
486         ier = READ_REG(sc, TXP_IER);
487         WRITE_REG(sc, TXP_IER, ier | TXP_INT_A2H_0);
488
489         imr = READ_REG(sc, TXP_IMR);
490         WRITE_REG(sc, TXP_IMR, imr | TXP_INT_A2H_0);
491
492         for (i = 0; i < 10000; i++) {
493                 r = READ_REG(sc, TXP_A2H_0);
494                 if (r == STAT_WAITING_FOR_HOST_REQUEST)
495                         break;
496                 DELAY(50);
497         }
498         if (r != STAT_WAITING_FOR_HOST_REQUEST) {
499                 device_printf(sc->sc_dev, "not waiting for host request\n");
500                 return (-1);
501         }
502
503         /* Ack the status */
504         WRITE_REG(sc, TXP_ISR, TXP_INT_A2H_0);
505
506         fileheader = (struct txp_fw_file_header *)tc990image;
507         if (bcmp("TYPHOON", fileheader->magicid, sizeof(fileheader->magicid))) {
508                 device_printf(sc->sc_dev, "fw invalid magic\n");
509                 return (-1);
510         }
511
512         /* Tell boot firmware to get ready for image */
513         WRITE_REG(sc, TXP_H2A_1, fileheader->addr);
514         WRITE_REG(sc, TXP_H2A_0, TXP_BOOTCMD_RUNTIME_IMAGE);
515
516         if (txp_download_fw_wait(sc)) {
517                 device_printf(sc->sc_dev, "fw wait failed, initial\n");
518                 return (-1);
519         }
520
521         secthead = (struct txp_fw_section_header *)(((u_int8_t *)tc990image) +
522             sizeof(struct txp_fw_file_header));
523
524         for (sect = 0; sect < fileheader->nsections; sect++) {
525                 if (txp_download_fw_section(sc, secthead, sect))
526                         return (-1);
527                 secthead = (struct txp_fw_section_header *)
528                     (((u_int8_t *)secthead) + secthead->nbytes +
529                     sizeof(*secthead));
530         }
531
532         WRITE_REG(sc, TXP_H2A_0, TXP_BOOTCMD_DOWNLOAD_COMPLETE);
533
534         for (i = 0; i < 10000; i++) {
535                 r = READ_REG(sc, TXP_A2H_0);
536                 if (r == STAT_WAITING_FOR_BOOT)
537                         break;
538                 DELAY(50);
539         }
540         if (r != STAT_WAITING_FOR_BOOT) {
541                 device_printf(sc->sc_dev, "not waiting for boot\n");
542                 return (-1);
543         }
544
545         WRITE_REG(sc, TXP_IER, ier);
546         WRITE_REG(sc, TXP_IMR, imr);
547
548         return (0);
549 }
550
551 static int
552 txp_download_fw_wait(sc)
553         struct txp_softc *sc;
554 {
555         u_int32_t i, r;
556
557         for (i = 0; i < 10000; i++) {
558                 r = READ_REG(sc, TXP_ISR);
559                 if (r & TXP_INT_A2H_0)
560                         break;
561                 DELAY(50);
562         }
563
564         if (!(r & TXP_INT_A2H_0)) {
565                 device_printf(sc->sc_dev, "fw wait failed comm0\n");
566                 return (-1);
567         }
568
569         WRITE_REG(sc, TXP_ISR, TXP_INT_A2H_0);
570
571         r = READ_REG(sc, TXP_A2H_0);
572         if (r != STAT_WAITING_FOR_SEGMENT) {
573                 device_printf(sc->sc_dev, "fw not waiting for segment\n");
574                 return (-1);
575         }
576         return (0);
577 }
578
579 static int
580 txp_download_fw_section(sc, sect, sectnum)
581         struct txp_softc *sc;
582         struct txp_fw_section_header *sect;
583         int sectnum;
584 {
585         vm_offset_t dma;
586         int rseg, err = 0;
587         struct mbuf m;
588         u_int16_t csum;
589
590         /* Skip zero length sections */
591         if (sect->nbytes == 0)
592                 return (0);
593
594         /* Make sure we aren't past the end of the image */
595         rseg = ((u_int8_t *)sect) - ((u_int8_t *)tc990image);
596         if (rseg >= sizeof(tc990image)) {
597                 device_printf(sc->sc_dev, "fw invalid section address, "
598                     "section %d\n", sectnum);
599                 return (-1);
600         }
601
602         /* Make sure this section doesn't go past the end */
603         rseg += sect->nbytes;
604         if (rseg >= sizeof(tc990image)) {
605                 device_printf(sc->sc_dev, "fw truncated section %d\n",
606                     sectnum);
607                 return (-1);
608         }
609
610         bcopy(((u_int8_t *)sect) + sizeof(*sect), sc->sc_fwbuf, sect->nbytes);
611         dma = vtophys(sc->sc_fwbuf);
612
613         /*
614          * dummy up mbuf and verify section checksum
615          */
616         m.m_type = MT_DATA;
617         m.m_next = m.m_nextpkt = NULL;
618         m.m_len = sect->nbytes;
619         m.m_data = sc->sc_fwbuf;
620         m.m_flags = 0;
621         csum = in_cksum(&m, sect->nbytes);
622         if (csum != sect->cksum) {
623                 device_printf(sc->sc_dev, "fw section %d, bad "
624                     "cksum (expected 0x%x got 0x%x)\n",
625                     sectnum, sect->cksum, csum);
626                 err = -1;
627                 goto bail;
628         }
629
630         WRITE_REG(sc, TXP_H2A_1, sect->nbytes);
631         WRITE_REG(sc, TXP_H2A_2, sect->cksum);
632         WRITE_REG(sc, TXP_H2A_3, sect->addr);
633         WRITE_REG(sc, TXP_H2A_4, 0);
634         WRITE_REG(sc, TXP_H2A_5, dma & 0xffffffff);
635         WRITE_REG(sc, TXP_H2A_0, TXP_BOOTCMD_SEGMENT_AVAILABLE);
636
637         if (txp_download_fw_wait(sc)) {
638                 device_printf(sc->sc_dev, "fw wait failed, "
639                     "section %d\n", sectnum);
640                 err = -1;
641         }
642
643 bail:
644         return (err);
645 }
646
647 static void 
648 txp_intr(vsc)
649         void *vsc;
650 {
651         struct txp_softc *sc = vsc;
652         struct txp_hostvar *hv = sc->sc_hostvar;
653         u_int32_t isr;
654
655         /* mask all interrupts */
656         WRITE_REG(sc, TXP_IMR, TXP_INT_RESERVED | TXP_INT_SELF |
657             TXP_INT_A2H_7 | TXP_INT_A2H_6 | TXP_INT_A2H_5 | TXP_INT_A2H_4 |
658             TXP_INT_A2H_2 | TXP_INT_A2H_1 | TXP_INT_A2H_0 |
659             TXP_INT_DMA3 | TXP_INT_DMA2 | TXP_INT_DMA1 | TXP_INT_DMA0 |
660             TXP_INT_PCI_TABORT | TXP_INT_PCI_MABORT |  TXP_INT_LATCH);
661
662         isr = READ_REG(sc, TXP_ISR);
663         while (isr) {
664                 WRITE_REG(sc, TXP_ISR, isr);
665
666                 if ((*sc->sc_rxhir.r_roff) != (*sc->sc_rxhir.r_woff))
667                         txp_rx_reclaim(sc, &sc->sc_rxhir);
668                 if ((*sc->sc_rxlor.r_roff) != (*sc->sc_rxlor.r_woff))
669                         txp_rx_reclaim(sc, &sc->sc_rxlor);
670
671                 if (hv->hv_rx_buf_write_idx == hv->hv_rx_buf_read_idx)
672                         txp_rxbuf_reclaim(sc);
673
674                 if (sc->sc_txhir.r_cnt && (sc->sc_txhir.r_cons !=
675                     TXP_OFFSET2IDX(*(sc->sc_txhir.r_off))))
676                         txp_tx_reclaim(sc, &sc->sc_txhir);
677
678                 if (sc->sc_txlor.r_cnt && (sc->sc_txlor.r_cons !=
679                     TXP_OFFSET2IDX(*(sc->sc_txlor.r_off))))
680                         txp_tx_reclaim(sc, &sc->sc_txlor);
681
682                 isr = READ_REG(sc, TXP_ISR);
683         }
684
685         /* unmask all interrupts */
686         WRITE_REG(sc, TXP_IMR, TXP_INT_A2H_3);
687
688         txp_start(&sc->sc_arpcom.ac_if);
689
690         return;
691 }
692
693 static void
694 txp_rx_reclaim(sc, r)
695         struct txp_softc *sc;
696         struct txp_rx_ring *r;
697 {
698         struct ifnet *ifp = &sc->sc_arpcom.ac_if;
699         struct txp_rx_desc *rxd;
700         struct mbuf *m;
701         struct txp_swdesc *sd = NULL;
702         u_int32_t roff, woff;
703
704         roff = *r->r_roff;
705         woff = *r->r_woff;
706         rxd = r->r_desc + (roff / sizeof(struct txp_rx_desc));
707
708         while (roff != woff) {
709
710                 if (rxd->rx_flags & RX_FLAGS_ERROR) {
711                         device_printf(sc->sc_dev, "error 0x%x\n",
712                             rxd->rx_stat);
713                         ifp->if_ierrors++;
714                         goto next;
715                 }
716
717                 /* retrieve stashed pointer */
718                 sd = rxd->rx_sd;
719
720                 m = sd->sd_mbuf;
721                 sd->sd_mbuf = NULL;
722
723                 m->m_pkthdr.len = m->m_len = rxd->rx_len;
724
725 #ifdef __STRICT_ALIGNMENT
726                 {
727                         /*
728                          * XXX Nice chip, except it won't accept "off by 2"
729                          * buffers, so we're force to copy.  Supposedly
730                          * this will be fixed in a newer firmware rev
731                          * and this will be temporary.
732                          */
733                         struct mbuf *mnew;
734
735                         MGETHDR(mnew, MB_DONTWAIT, MT_DATA);
736                         if (mnew == NULL) {
737                                 m_freem(m);
738                                 goto next;
739                         }
740                         if (m->m_len > (MHLEN - 2)) {
741                                 MCLGET(mnew, MB_DONTWAIT);
742                                 if (!(mnew->m_flags & M_EXT)) {
743                                         m_freem(mnew);
744                                         m_freem(m);
745                                         goto next;
746                                 }
747                         }
748                         mnew->m_pkthdr.rcvif = ifp;
749                         m_adj(mnew, 2);
750                         mnew->m_pkthdr.len = mnew->m_len = m->m_len;
751                         m_copydata(m, 0, m->m_pkthdr.len, mtod(mnew, caddr_t));
752                         m_freem(m);
753                         m = mnew;
754                 }
755 #endif
756
757                 if (rxd->rx_stat & RX_STAT_IPCKSUMBAD)
758                         m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
759                 else if (rxd->rx_stat & RX_STAT_IPCKSUMGOOD)
760                         m->m_pkthdr.csum_flags |=
761                             CSUM_IP_CHECKED|CSUM_IP_VALID;
762
763                 if ((rxd->rx_stat & RX_STAT_TCPCKSUMGOOD) ||
764                     (rxd->rx_stat & RX_STAT_UDPCKSUMGOOD)) {
765                         m->m_pkthdr.csum_flags |=
766                             CSUM_DATA_VALID|CSUM_PSEUDO_HDR;
767                         m->m_pkthdr.csum_data = 0xffff;
768                 }
769
770                 if (rxd->rx_stat & RX_STAT_VLAN)
771                         VLAN_INPUT_TAG(m, htons(rxd->rx_vlan >> 16));
772                 else
773                         (*ifp->if_input)(ifp, m);
774
775 next:
776
777                 roff += sizeof(struct txp_rx_desc);
778                 if (roff == (RX_ENTRIES * sizeof(struct txp_rx_desc))) {
779                         roff = 0;
780                         rxd = r->r_desc;
781                 } else
782                         rxd++;
783                 woff = *r->r_woff;
784         }
785
786         *r->r_roff = woff;
787
788         return;
789 }
790
791 static void
792 txp_rxbuf_reclaim(sc)
793         struct txp_softc *sc;
794 {
795         struct ifnet *ifp = &sc->sc_arpcom.ac_if;
796         struct txp_hostvar *hv = sc->sc_hostvar;
797         struct txp_rxbuf_desc *rbd;
798         struct txp_swdesc *sd;
799         u_int32_t i;
800
801         if (!(ifp->if_flags & IFF_RUNNING))
802                 return;
803
804         i = sc->sc_rxbufprod;
805         rbd = sc->sc_rxbufs + i;
806
807         while (1) {
808                 sd = rbd->rb_sd;
809                 if (sd->sd_mbuf != NULL)
810                         break;
811
812                 MGETHDR(sd->sd_mbuf, MB_DONTWAIT, MT_DATA);
813                 if (sd->sd_mbuf == NULL)
814                         goto err_sd;
815
816                 MCLGET(sd->sd_mbuf, MB_DONTWAIT);
817                 if ((sd->sd_mbuf->m_flags & M_EXT) == 0)
818                         goto err_mbuf;
819                 sd->sd_mbuf->m_pkthdr.rcvif = ifp;
820                 sd->sd_mbuf->m_pkthdr.len = sd->sd_mbuf->m_len = MCLBYTES;
821
822                 rbd->rb_paddrlo = vtophys(mtod(sd->sd_mbuf, vm_offset_t))
823                     & 0xffffffff;
824                 rbd->rb_paddrhi = 0;
825
826                 hv->hv_rx_buf_write_idx = TXP_IDX2OFFSET(i);
827
828                 if (++i == RXBUF_ENTRIES) {
829                         i = 0;
830                         rbd = sc->sc_rxbufs;
831                 } else
832                         rbd++;
833         }
834
835         sc->sc_rxbufprod = i;
836
837         return;
838
839 err_mbuf:
840         m_freem(sd->sd_mbuf);
841 err_sd:
842         free(sd, M_DEVBUF);
843 }
844
845 /*
846  * Reclaim mbufs and entries from a transmit ring.
847  */
848 static void
849 txp_tx_reclaim(sc, r)
850         struct txp_softc *sc;
851         struct txp_tx_ring *r;
852 {
853         struct ifnet *ifp = &sc->sc_arpcom.ac_if;
854         u_int32_t idx = TXP_OFFSET2IDX(*(r->r_off));
855         u_int32_t cons = r->r_cons, cnt = r->r_cnt;
856         struct txp_tx_desc *txd = r->r_desc + cons;
857         struct txp_swdesc *sd = sc->sc_txd + cons;
858         struct mbuf *m;
859
860         while (cons != idx) {
861                 if (cnt == 0)
862                         break;
863
864                 if ((txd->tx_flags & TX_FLAGS_TYPE_M) ==
865                     TX_FLAGS_TYPE_DATA) {
866                         m = sd->sd_mbuf;
867                         if (m != NULL) {
868                                 m_freem(m);
869                                 txd->tx_addrlo = 0;
870                                 txd->tx_addrhi = 0;
871                                 ifp->if_opackets++;
872                         }
873                 }
874                 ifp->if_flags &= ~IFF_OACTIVE;
875
876                 if (++cons == TX_ENTRIES) {
877                         txd = r->r_desc;
878                         cons = 0;
879                         sd = sc->sc_txd;
880                 } else {
881                         txd++;
882                         sd++;
883                 }
884
885                 cnt--;
886         }
887
888         r->r_cons = cons;
889         r->r_cnt = cnt;
890         if (cnt == 0)
891                 ifp->if_timer = 0;
892 }
893
894 static int
895 txp_shutdown(dev)
896         device_t dev;
897 {
898         struct txp_softc *sc;
899
900         sc = device_get_softc(dev);
901
902         /* mask all interrupts */
903         WRITE_REG(sc, TXP_IMR,
904             TXP_INT_SELF | TXP_INT_PCI_TABORT | TXP_INT_PCI_MABORT |
905             TXP_INT_DMA3 | TXP_INT_DMA2 | TXP_INT_DMA1 | TXP_INT_DMA0 |
906             TXP_INT_LATCH);
907
908         txp_command(sc, TXP_CMD_TX_DISABLE, 0, 0, 0, NULL, NULL, NULL, 0);
909         txp_command(sc, TXP_CMD_RX_DISABLE, 0, 0, 0, NULL, NULL, NULL, 0);
910         txp_command(sc, TXP_CMD_HALT, 0, 0, 0, NULL, NULL, NULL, 0);
911
912         return(0);
913 }
914
915 static int
916 txp_alloc_rings(sc)
917         struct txp_softc *sc;
918 {
919         struct txp_boot_record *boot;
920         struct txp_ldata *ld;
921         u_int32_t r;
922         int i;
923
924         ld = sc->sc_ldata;
925         boot = &ld->txp_boot;
926
927         /* boot record */
928         sc->sc_boot = boot;
929
930         /* host variables */
931         bzero(&ld->txp_hostvar, sizeof(struct txp_hostvar));
932         boot->br_hostvar_lo = vtophys(&ld->txp_hostvar);
933         boot->br_hostvar_hi = 0;
934         sc->sc_hostvar = (struct txp_hostvar *)&ld->txp_hostvar;
935
936         /* hi priority tx ring */
937         boot->br_txhipri_lo = vtophys(&ld->txp_txhiring);;
938         boot->br_txhipri_hi = 0;
939         boot->br_txhipri_siz = TX_ENTRIES * sizeof(struct txp_tx_desc);
940         sc->sc_txhir.r_reg = TXP_H2A_1;
941         sc->sc_txhir.r_desc = (struct txp_tx_desc *)&ld->txp_txhiring;
942         sc->sc_txhir.r_cons = sc->sc_txhir.r_prod = sc->sc_txhir.r_cnt = 0;
943         sc->sc_txhir.r_off = &sc->sc_hostvar->hv_tx_hi_desc_read_idx;
944
945         /* lo priority tx ring */
946         boot->br_txlopri_lo = vtophys(&ld->txp_txloring);
947         boot->br_txlopri_hi = 0;
948         boot->br_txlopri_siz = TX_ENTRIES * sizeof(struct txp_tx_desc);
949         sc->sc_txlor.r_reg = TXP_H2A_3;
950         sc->sc_txlor.r_desc = (struct txp_tx_desc *)&ld->txp_txloring;
951         sc->sc_txlor.r_cons = sc->sc_txlor.r_prod = sc->sc_txlor.r_cnt = 0;
952         sc->sc_txlor.r_off = &sc->sc_hostvar->hv_tx_lo_desc_read_idx;
953
954         /* high priority rx ring */
955         boot->br_rxhipri_lo = vtophys(&ld->txp_rxhiring);
956         boot->br_rxhipri_hi = 0;
957         boot->br_rxhipri_siz = RX_ENTRIES * sizeof(struct txp_rx_desc);
958         sc->sc_rxhir.r_desc = (struct txp_rx_desc *)&ld->txp_rxhiring;
959         sc->sc_rxhir.r_roff = &sc->sc_hostvar->hv_rx_hi_read_idx;
960         sc->sc_rxhir.r_woff = &sc->sc_hostvar->hv_rx_hi_write_idx;
961
962         /* low priority rx ring */
963         boot->br_rxlopri_lo = vtophys(&ld->txp_rxloring);
964         boot->br_rxlopri_hi = 0;
965         boot->br_rxlopri_siz = RX_ENTRIES * sizeof(struct txp_rx_desc);
966         sc->sc_rxlor.r_desc = (struct txp_rx_desc *)&ld->txp_rxloring;
967         sc->sc_rxlor.r_roff = &sc->sc_hostvar->hv_rx_lo_read_idx;
968         sc->sc_rxlor.r_woff = &sc->sc_hostvar->hv_rx_lo_write_idx;
969
970         /* command ring */
971         bzero(&ld->txp_cmdring, sizeof(struct txp_cmd_desc) * CMD_ENTRIES);
972         boot->br_cmd_lo = vtophys(&ld->txp_cmdring);
973         boot->br_cmd_hi = 0;
974         boot->br_cmd_siz = CMD_ENTRIES * sizeof(struct txp_cmd_desc);
975         sc->sc_cmdring.base = (struct txp_cmd_desc *)&ld->txp_cmdring;
976         sc->sc_cmdring.size = CMD_ENTRIES * sizeof(struct txp_cmd_desc);
977         sc->sc_cmdring.lastwrite = 0;
978
979         /* response ring */
980         bzero(&ld->txp_rspring, sizeof(struct txp_rsp_desc) * RSP_ENTRIES);
981         boot->br_resp_lo = vtophys(&ld->txp_rspring);
982         boot->br_resp_hi = 0;
983         boot->br_resp_siz = CMD_ENTRIES * sizeof(struct txp_rsp_desc);
984         sc->sc_rspring.base = (struct txp_rsp_desc *)&ld->txp_rspring;
985         sc->sc_rspring.size = RSP_ENTRIES * sizeof(struct txp_rsp_desc);
986         sc->sc_rspring.lastwrite = 0;
987
988         /* receive buffer ring */
989         boot->br_rxbuf_lo = vtophys(&ld->txp_rxbufs);
990         boot->br_rxbuf_hi = 0;
991         boot->br_rxbuf_siz = RXBUF_ENTRIES * sizeof(struct txp_rxbuf_desc);
992         sc->sc_rxbufs = (struct txp_rxbuf_desc *)&ld->txp_rxbufs;
993
994         for (i = 0; i < RXBUF_ENTRIES; i++) {
995                 struct txp_swdesc *sd;
996                 if (sc->sc_rxbufs[i].rb_sd != NULL)
997                         continue;
998                 sc->sc_rxbufs[i].rb_sd = malloc(sizeof(struct txp_swdesc),
999                     M_DEVBUF, M_WAITOK);
1000                 if (sc->sc_rxbufs[i].rb_sd == NULL)
1001                         return(ENOBUFS);
1002                 sd = sc->sc_rxbufs[i].rb_sd;
1003                 sd->sd_mbuf = NULL;
1004         }
1005         sc->sc_rxbufprod = 0;
1006
1007         /* zero dma */
1008         bzero(&ld->txp_zero, sizeof(u_int32_t));
1009         boot->br_zero_lo = vtophys(&ld->txp_zero);
1010         boot->br_zero_hi = 0;
1011
1012         /* See if it's waiting for boot, and try to boot it */
1013         for (i = 0; i < 10000; i++) {
1014                 r = READ_REG(sc, TXP_A2H_0);
1015                 if (r == STAT_WAITING_FOR_BOOT)
1016                         break;
1017                 DELAY(50);
1018         }
1019
1020         if (r != STAT_WAITING_FOR_BOOT) {
1021                 device_printf(sc->sc_dev, "not waiting for boot\n");
1022                 return(ENXIO);
1023         }
1024
1025         WRITE_REG(sc, TXP_H2A_2, 0);
1026         WRITE_REG(sc, TXP_H2A_1, vtophys(sc->sc_boot));
1027         WRITE_REG(sc, TXP_H2A_0, TXP_BOOTCMD_REGISTER_BOOT_RECORD);
1028
1029         /* See if it booted */
1030         for (i = 0; i < 10000; i++) {
1031                 r = READ_REG(sc, TXP_A2H_0);
1032                 if (r == STAT_RUNNING)
1033                         break;
1034                 DELAY(50);
1035         }
1036         if (r != STAT_RUNNING) {
1037                 device_printf(sc->sc_dev, "fw not running\n");
1038                 return(ENXIO);
1039         }
1040
1041         /* Clear TX and CMD ring write registers */
1042         WRITE_REG(sc, TXP_H2A_1, TXP_BOOTCMD_NULL);
1043         WRITE_REG(sc, TXP_H2A_2, TXP_BOOTCMD_NULL);
1044         WRITE_REG(sc, TXP_H2A_3, TXP_BOOTCMD_NULL);
1045         WRITE_REG(sc, TXP_H2A_0, TXP_BOOTCMD_NULL);
1046
1047         return (0);
1048 }
1049
1050 static int
1051 txp_ioctl(ifp, command, data, cr)
1052         struct ifnet *ifp;
1053         u_long command;
1054         caddr_t data;
1055         struct ucred *cr;
1056 {
1057         struct txp_softc *sc = ifp->if_softc;
1058         struct ifreq *ifr = (struct ifreq *)data;
1059         int error = 0;
1060
1061         crit_enter();
1062
1063         switch(command) {
1064         case SIOCSIFFLAGS:
1065                 if (ifp->if_flags & IFF_UP) {
1066                         txp_init(sc);
1067                 } else {
1068                         if (ifp->if_flags & IFF_RUNNING)
1069                                 txp_stop(sc);
1070                 }
1071                 break;
1072         case SIOCADDMULTI:
1073         case SIOCDELMULTI:
1074                 /*
1075                  * Multicast list has changed; set the hardware
1076                  * filter accordingly.
1077                  */
1078                 txp_set_filter(sc);
1079                 error = 0;
1080                 break;
1081         case SIOCGIFMEDIA:
1082         case SIOCSIFMEDIA:
1083                 error = ifmedia_ioctl(ifp, ifr, &sc->sc_ifmedia, command);
1084                 break;
1085         default:
1086                 error = ether_ioctl(ifp, command, data);
1087                 break;
1088         }
1089
1090         crit_exit();
1091
1092         return(error);
1093 }
1094
1095 static int
1096 txp_rxring_fill(sc)
1097         struct txp_softc *sc;
1098 {
1099         int i;
1100         struct ifnet *ifp;
1101         struct txp_swdesc *sd;
1102
1103         ifp = &sc->sc_arpcom.ac_if;
1104
1105         for (i = 0; i < RXBUF_ENTRIES; i++) {
1106                 sd = sc->sc_rxbufs[i].rb_sd;
1107                 MGETHDR(sd->sd_mbuf, MB_DONTWAIT, MT_DATA);
1108                 if (sd->sd_mbuf == NULL)
1109                         return(ENOBUFS);
1110
1111                 MCLGET(sd->sd_mbuf, MB_DONTWAIT);
1112                 if ((sd->sd_mbuf->m_flags & M_EXT) == 0) {
1113                         m_freem(sd->sd_mbuf);
1114                         return(ENOBUFS);
1115                 }
1116                 sd->sd_mbuf->m_pkthdr.len = sd->sd_mbuf->m_len = MCLBYTES;
1117                 sd->sd_mbuf->m_pkthdr.rcvif = ifp;
1118
1119                 sc->sc_rxbufs[i].rb_paddrlo =
1120                     vtophys(mtod(sd->sd_mbuf, vm_offset_t));
1121                 sc->sc_rxbufs[i].rb_paddrhi = 0;
1122         }
1123
1124         sc->sc_hostvar->hv_rx_buf_write_idx = (RXBUF_ENTRIES - 1) *
1125             sizeof(struct txp_rxbuf_desc);
1126
1127         return(0);
1128 }
1129
1130 static void
1131 txp_rxring_empty(sc)
1132         struct txp_softc *sc;
1133 {
1134         int i;
1135         struct txp_swdesc *sd;
1136
1137         if (sc->sc_rxbufs == NULL)
1138                 return;
1139
1140         for (i = 0; i < RXBUF_ENTRIES; i++) {
1141                 if (&sc->sc_rxbufs[i] == NULL)
1142                         continue;
1143                 sd = sc->sc_rxbufs[i].rb_sd;
1144                 if (sd == NULL)
1145                         continue;
1146                 if (sd->sd_mbuf != NULL) {
1147                         m_freem(sd->sd_mbuf);
1148                         sd->sd_mbuf = NULL;
1149                 }
1150         }
1151
1152         return;
1153 }
1154
1155 static void
1156 txp_init(xsc)
1157         void *xsc;
1158 {
1159         struct txp_softc *sc;
1160         struct ifnet *ifp;
1161         u_int16_t p1;
1162         u_int32_t p2;
1163
1164         sc = xsc;
1165         ifp = &sc->sc_arpcom.ac_if;
1166
1167         if (ifp->if_flags & IFF_RUNNING)
1168                 return;
1169
1170         txp_stop(sc);
1171
1172         crit_enter();
1173
1174         txp_command(sc, TXP_CMD_MAX_PKT_SIZE_WRITE, TXP_MAX_PKTLEN, 0, 0,
1175             NULL, NULL, NULL, 1);
1176
1177         /* Set station address. */
1178         ((u_int8_t *)&p1)[1] = sc->sc_arpcom.ac_enaddr[0];
1179         ((u_int8_t *)&p1)[0] = sc->sc_arpcom.ac_enaddr[1];
1180         ((u_int8_t *)&p2)[3] = sc->sc_arpcom.ac_enaddr[2];
1181         ((u_int8_t *)&p2)[2] = sc->sc_arpcom.ac_enaddr[3];
1182         ((u_int8_t *)&p2)[1] = sc->sc_arpcom.ac_enaddr[4];
1183         ((u_int8_t *)&p2)[0] = sc->sc_arpcom.ac_enaddr[5];
1184         txp_command(sc, TXP_CMD_STATION_ADDRESS_WRITE, p1, p2, 0,
1185             NULL, NULL, NULL, 1);
1186
1187         txp_set_filter(sc);
1188
1189         txp_rxring_fill(sc);
1190
1191         txp_command(sc, TXP_CMD_TX_ENABLE, 0, 0, 0, NULL, NULL, NULL, 1);
1192         txp_command(sc, TXP_CMD_RX_ENABLE, 0, 0, 0, NULL, NULL, NULL, 1);
1193
1194         WRITE_REG(sc, TXP_IER, TXP_INT_RESERVED | TXP_INT_SELF |
1195             TXP_INT_A2H_7 | TXP_INT_A2H_6 | TXP_INT_A2H_5 | TXP_INT_A2H_4 |
1196             TXP_INT_A2H_2 | TXP_INT_A2H_1 | TXP_INT_A2H_0 |
1197             TXP_INT_DMA3 | TXP_INT_DMA2 | TXP_INT_DMA1 | TXP_INT_DMA0 |
1198             TXP_INT_PCI_TABORT | TXP_INT_PCI_MABORT |  TXP_INT_LATCH);
1199         WRITE_REG(sc, TXP_IMR, TXP_INT_A2H_3);
1200
1201         ifp->if_flags |= IFF_RUNNING;
1202         ifp->if_flags &= ~IFF_OACTIVE;
1203         ifp->if_timer = 0;
1204
1205         callout_reset(&sc->txp_stat_timer, hz, txp_tick, sc);
1206
1207         crit_exit();
1208 }
1209
1210 static void
1211 txp_tick(vsc)
1212         void *vsc;
1213 {
1214         struct txp_softc *sc = vsc;
1215         struct ifnet *ifp = &sc->sc_arpcom.ac_if;
1216         struct txp_rsp_desc *rsp = NULL;
1217         struct txp_ext_desc *ext;
1218
1219         crit_enter();
1220         txp_rxbuf_reclaim(sc);
1221
1222         if (txp_command2(sc, TXP_CMD_READ_STATISTICS, 0, 0, 0, NULL, 0,
1223             &rsp, 1))
1224                 goto out;
1225         if (rsp->rsp_numdesc != 6)
1226                 goto out;
1227         if (txp_command(sc, TXP_CMD_CLEAR_STATISTICS, 0, 0, 0,
1228             NULL, NULL, NULL, 1))
1229                 goto out;
1230         ext = (struct txp_ext_desc *)(rsp + 1);
1231
1232         ifp->if_ierrors += ext[3].ext_2 + ext[3].ext_3 + ext[3].ext_4 +
1233             ext[4].ext_1 + ext[4].ext_4;
1234         ifp->if_oerrors += ext[0].ext_1 + ext[1].ext_1 + ext[1].ext_4 +
1235             ext[2].ext_1;
1236         ifp->if_collisions += ext[0].ext_2 + ext[0].ext_3 + ext[1].ext_2 +
1237             ext[1].ext_3;
1238         ifp->if_opackets += rsp->rsp_par2;
1239         ifp->if_ipackets += ext[2].ext_3;
1240
1241 out:
1242         if (rsp != NULL)
1243                 free(rsp, M_DEVBUF);
1244
1245         callout_reset(&sc->txp_stat_timer, hz, txp_tick, sc);
1246         crit_exit();
1247 }
1248
1249 static void
1250 txp_start(ifp)
1251         struct ifnet *ifp;
1252 {
1253         struct txp_softc *sc = ifp->if_softc;
1254         struct txp_tx_ring *r = &sc->sc_txhir;
1255         struct txp_tx_desc *txd;
1256         struct txp_frag_desc *fxd;
1257         struct mbuf *m, *m0;
1258         struct txp_swdesc *sd;
1259         u_int32_t firstprod, firstcnt, prod, cnt;
1260         struct ifvlan           *ifv;
1261
1262         if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
1263                 return;
1264
1265         prod = r->r_prod;
1266         cnt = r->r_cnt;
1267
1268         while (1) {
1269                 m = ifq_poll(&ifp->if_snd);
1270                 if (m == NULL)
1271                         break;
1272
1273                 firstprod = prod;
1274                 firstcnt = cnt;
1275
1276                 sd = sc->sc_txd + prod;
1277                 sd->sd_mbuf = m;
1278
1279                 if ((TX_ENTRIES - cnt) < 4)
1280                         goto oactive;
1281
1282                 txd = r->r_desc + prod;
1283
1284                 txd->tx_flags = TX_FLAGS_TYPE_DATA;
1285                 txd->tx_numdesc = 0;
1286                 txd->tx_addrlo = 0;
1287                 txd->tx_addrhi = 0;
1288                 txd->tx_totlen = 0;
1289                 txd->tx_pflags = 0;
1290
1291                 if (++prod == TX_ENTRIES)
1292                         prod = 0;
1293
1294                 if (++cnt >= (TX_ENTRIES - 4))
1295                         goto oactive;
1296
1297                 if ((m->m_flags & (M_PROTO1|M_PKTHDR)) == (M_PROTO1|M_PKTHDR) &&
1298                     m->m_pkthdr.rcvif != NULL) {
1299                         ifv = m->m_pkthdr.rcvif->if_softc;
1300                         txd->tx_pflags = TX_PFLAGS_VLAN |
1301                             (htons(ifv->ifv_tag) << TX_PFLAGS_VLANTAG_S);
1302                 }
1303
1304                 if (m->m_pkthdr.csum_flags & CSUM_IP)
1305                         txd->tx_pflags |= TX_PFLAGS_IPCKSUM;
1306
1307 #if 0
1308                 if (m->m_pkthdr.csum_flags & CSUM_TCP)
1309                         txd->tx_pflags |= TX_PFLAGS_TCPCKSUM;
1310                 if (m->m_pkthdr.csum_flags & CSUM_UDP)
1311                         txd->tx_pflags |= TX_PFLAGS_UDPCKSUM;
1312 #endif
1313
1314                 fxd = (struct txp_frag_desc *)(r->r_desc + prod);
1315                 for (m0 = m; m0 != NULL; m0 = m0->m_next) {
1316                         if (m0->m_len == 0)
1317                                 continue;
1318                         if (++cnt >= (TX_ENTRIES - 4))
1319                                 goto oactive;
1320
1321                         txd->tx_numdesc++;
1322
1323                         fxd->frag_flags = FRAG_FLAGS_TYPE_FRAG;
1324                         fxd->frag_rsvd1 = 0;
1325                         fxd->frag_len = m0->m_len;
1326                         fxd->frag_addrlo = vtophys(mtod(m0, vm_offset_t));
1327                         fxd->frag_addrhi = 0;
1328                         fxd->frag_rsvd2 = 0;
1329
1330                         if (++prod == TX_ENTRIES) {
1331                                 fxd = (struct txp_frag_desc *)r->r_desc;
1332                                 prod = 0;
1333                         } else
1334                                 fxd++;
1335
1336                 }
1337
1338                 ifp->if_timer = 5;
1339
1340                 m = ifq_dequeue(&ifp->if_snd);
1341                 BPF_MTAP(ifp, m);
1342                 WRITE_REG(sc, r->r_reg, TXP_IDX2OFFSET(prod));
1343         }
1344
1345         r->r_prod = prod;
1346         r->r_cnt = cnt;
1347         return;
1348
1349 oactive:
1350         ifp->if_flags |= IFF_OACTIVE;
1351         r->r_prod = firstprod;
1352         r->r_cnt = firstcnt;
1353         return;
1354 }
1355
1356 /*
1357  * Handle simple commands sent to the typhoon
1358  */
1359 static int
1360 txp_command(sc, id, in1, in2, in3, out1, out2, out3, wait)
1361         struct txp_softc *sc;
1362         u_int16_t id, in1, *out1;
1363         u_int32_t in2, in3, *out2, *out3;
1364         int wait;
1365 {
1366         struct txp_rsp_desc *rsp = NULL;
1367
1368         if (txp_command2(sc, id, in1, in2, in3, NULL, 0, &rsp, wait))
1369                 return (-1);
1370
1371         if (!wait)
1372                 return (0);
1373
1374         if (out1 != NULL)
1375                 *out1 = rsp->rsp_par1;
1376         if (out2 != NULL)
1377                 *out2 = rsp->rsp_par2;
1378         if (out3 != NULL)
1379                 *out3 = rsp->rsp_par3;
1380         free(rsp, M_DEVBUF);
1381         return (0);
1382 }
1383
1384 static int
1385 txp_command2(sc, id, in1, in2, in3, in_extp, in_extn, rspp, wait)
1386         struct txp_softc *sc;
1387         u_int16_t id, in1;
1388         u_int32_t in2, in3;
1389         struct txp_ext_desc *in_extp;
1390         u_int8_t in_extn;
1391         struct txp_rsp_desc **rspp;
1392         int wait;
1393 {
1394         struct txp_hostvar *hv = sc->sc_hostvar;
1395         struct txp_cmd_desc *cmd;
1396         struct txp_ext_desc *ext;
1397         u_int32_t idx, i;
1398         u_int16_t seq;
1399
1400         if (txp_cmd_desc_numfree(sc) < (in_extn + 1)) {
1401                 device_printf(sc->sc_dev, "no free cmd descriptors\n");
1402                 return (-1);
1403         }
1404
1405         idx = sc->sc_cmdring.lastwrite;
1406         cmd = (struct txp_cmd_desc *)(((u_int8_t *)sc->sc_cmdring.base) + idx);
1407         bzero(cmd, sizeof(*cmd));
1408
1409         cmd->cmd_numdesc = in_extn;
1410         cmd->cmd_seq = seq = sc->sc_seq++;
1411         cmd->cmd_id = id;
1412         cmd->cmd_par1 = in1;
1413         cmd->cmd_par2 = in2;
1414         cmd->cmd_par3 = in3;
1415         cmd->cmd_flags = CMD_FLAGS_TYPE_CMD |
1416             (wait ? CMD_FLAGS_RESP : 0) | CMD_FLAGS_VALID;
1417
1418         idx += sizeof(struct txp_cmd_desc);
1419         if (idx == sc->sc_cmdring.size)
1420                 idx = 0;
1421
1422         for (i = 0; i < in_extn; i++) {
1423                 ext = (struct txp_ext_desc *)(((u_int8_t *)sc->sc_cmdring.base) + idx);
1424                 bcopy(in_extp, ext, sizeof(struct txp_ext_desc));
1425                 in_extp++;
1426                 idx += sizeof(struct txp_cmd_desc);
1427                 if (idx == sc->sc_cmdring.size)
1428                         idx = 0;
1429         }
1430
1431         sc->sc_cmdring.lastwrite = idx;
1432
1433         WRITE_REG(sc, TXP_H2A_2, sc->sc_cmdring.lastwrite);
1434
1435         if (!wait)
1436                 return (0);
1437
1438         for (i = 0; i < 10000; i++) {
1439                 idx = hv->hv_resp_read_idx;
1440                 if (idx != hv->hv_resp_write_idx) {
1441                         *rspp = NULL;
1442                         if (txp_response(sc, idx, id, seq, rspp))
1443                                 return (-1);
1444                         if (*rspp != NULL)
1445                                 break;
1446                 }
1447                 DELAY(50);
1448         }
1449         if (i == 1000 || (*rspp) == NULL) {
1450                 device_printf(sc->sc_dev, "0x%x command failed\n", id);
1451                 return (-1);
1452         }
1453
1454         return (0);
1455 }
1456
1457 static int
1458 txp_response(sc, ridx, id, seq, rspp)
1459         struct txp_softc *sc;
1460         u_int32_t ridx;
1461         u_int16_t id;
1462         u_int16_t seq;
1463         struct txp_rsp_desc **rspp;
1464 {
1465         struct txp_hostvar *hv = sc->sc_hostvar;
1466         struct txp_rsp_desc *rsp;
1467
1468         while (ridx != hv->hv_resp_write_idx) {
1469                 rsp = (struct txp_rsp_desc *)(((u_int8_t *)sc->sc_rspring.base) + ridx);
1470
1471                 if (id == rsp->rsp_id && rsp->rsp_seq == seq) {
1472                         *rspp = (struct txp_rsp_desc *)malloc(
1473                             sizeof(struct txp_rsp_desc) * (rsp->rsp_numdesc + 1),
1474                             M_DEVBUF, M_INTWAIT);
1475                         if ((*rspp) == NULL)
1476                                 return (-1);
1477                         txp_rsp_fixup(sc, rsp, *rspp);
1478                         return (0);
1479                 }
1480
1481                 if (rsp->rsp_flags & RSP_FLAGS_ERROR) {
1482                         device_printf(sc->sc_dev, "response error!\n");
1483                         txp_rsp_fixup(sc, rsp, NULL);
1484                         ridx = hv->hv_resp_read_idx;
1485                         continue;
1486                 }
1487
1488                 switch (rsp->rsp_id) {
1489                 case TXP_CMD_CYCLE_STATISTICS:
1490                 case TXP_CMD_MEDIA_STATUS_READ:
1491                         break;
1492                 case TXP_CMD_HELLO_RESPONSE:
1493                         device_printf(sc->sc_dev, "hello\n");
1494                         break;
1495                 default:
1496                         device_printf(sc->sc_dev, "unknown id(0x%x)\n",
1497                             rsp->rsp_id);
1498                 }
1499
1500                 txp_rsp_fixup(sc, rsp, NULL);
1501                 ridx = hv->hv_resp_read_idx;
1502                 hv->hv_resp_read_idx = ridx;
1503         }
1504
1505         return (0);
1506 }
1507
1508 static void
1509 txp_rsp_fixup(sc, rsp, dst)
1510         struct txp_softc *sc;
1511         struct txp_rsp_desc *rsp, *dst;
1512 {
1513         struct txp_rsp_desc *src = rsp;
1514         struct txp_hostvar *hv = sc->sc_hostvar;
1515         u_int32_t i, ridx;
1516
1517         ridx = hv->hv_resp_read_idx;
1518
1519         for (i = 0; i < rsp->rsp_numdesc + 1; i++) {
1520                 if (dst != NULL)
1521                         bcopy(src, dst++, sizeof(struct txp_rsp_desc));
1522                 ridx += sizeof(struct txp_rsp_desc);
1523                 if (ridx == sc->sc_rspring.size) {
1524                         src = sc->sc_rspring.base;
1525                         ridx = 0;
1526                 } else
1527                         src++;
1528                 sc->sc_rspring.lastwrite = hv->hv_resp_read_idx = ridx;
1529         }
1530         
1531         hv->hv_resp_read_idx = ridx;
1532 }
1533
1534 static int
1535 txp_cmd_desc_numfree(sc)
1536         struct txp_softc *sc;
1537 {
1538         struct txp_hostvar *hv = sc->sc_hostvar;
1539         struct txp_boot_record *br = sc->sc_boot;
1540         u_int32_t widx, ridx, nfree;
1541
1542         widx = sc->sc_cmdring.lastwrite;
1543         ridx = hv->hv_cmd_read_idx;
1544
1545         if (widx == ridx) {
1546                 /* Ring is completely free */
1547                 nfree = br->br_cmd_siz - sizeof(struct txp_cmd_desc);
1548         } else {
1549                 if (widx > ridx)
1550                         nfree = br->br_cmd_siz -
1551                             (widx - ridx + sizeof(struct txp_cmd_desc));
1552                 else
1553                         nfree = ridx - widx - sizeof(struct txp_cmd_desc);
1554         }
1555
1556         return (nfree / sizeof(struct txp_cmd_desc));
1557 }
1558
1559 static void
1560 txp_stop(sc)
1561         struct txp_softc *sc;
1562 {
1563         struct ifnet *ifp;
1564
1565         ifp = &sc->sc_arpcom.ac_if;
1566
1567         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1568
1569         callout_stop(&sc->txp_stat_timer);
1570
1571         txp_command(sc, TXP_CMD_TX_DISABLE, 0, 0, 0, NULL, NULL, NULL, 1);
1572         txp_command(sc, TXP_CMD_RX_DISABLE, 0, 0, 0, NULL, NULL, NULL, 1);
1573
1574         txp_rxring_empty(sc);
1575
1576         return;
1577 }
1578
1579 static void
1580 txp_watchdog(ifp)
1581         struct ifnet *ifp;
1582 {
1583         return;
1584 }
1585
1586 static int
1587 txp_ifmedia_upd(ifp)
1588         struct ifnet *ifp;
1589 {
1590         struct txp_softc *sc = ifp->if_softc;
1591         struct ifmedia *ifm = &sc->sc_ifmedia;
1592         u_int16_t new_xcvr;
1593
1594         if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
1595                 return (EINVAL);
1596
1597         if (IFM_SUBTYPE(ifm->ifm_media) == IFM_10_T) {
1598                 if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX)
1599                         new_xcvr = TXP_XCVR_10_FDX;
1600                 else
1601                         new_xcvr = TXP_XCVR_10_HDX;
1602         } else if (IFM_SUBTYPE(ifm->ifm_media) == IFM_100_TX) {
1603                 if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX)
1604                         new_xcvr = TXP_XCVR_100_FDX;
1605                 else
1606                         new_xcvr = TXP_XCVR_100_HDX;
1607         } else if (IFM_SUBTYPE(ifm->ifm_media) == IFM_AUTO) {
1608                 new_xcvr = TXP_XCVR_AUTO;
1609         } else
1610                 return (EINVAL);
1611
1612         /* nothing to do */
1613         if (sc->sc_xcvr == new_xcvr)
1614                 return (0);
1615
1616         txp_command(sc, TXP_CMD_XCVR_SELECT, new_xcvr, 0, 0,
1617             NULL, NULL, NULL, 0);
1618         sc->sc_xcvr = new_xcvr;
1619
1620         return (0);
1621 }
1622
1623 static void
1624 txp_ifmedia_sts(ifp, ifmr)
1625         struct ifnet *ifp;
1626         struct ifmediareq *ifmr;
1627 {
1628         struct txp_softc *sc = ifp->if_softc;
1629         struct ifmedia *ifm = &sc->sc_ifmedia;
1630         u_int16_t bmsr, bmcr, anlpar;
1631
1632         ifmr->ifm_status = IFM_AVALID;
1633         ifmr->ifm_active = IFM_ETHER;
1634
1635         if (txp_command(sc, TXP_CMD_PHY_MGMT_READ, 0, MII_BMSR, 0,
1636             &bmsr, NULL, NULL, 1))
1637                 goto bail;
1638         if (txp_command(sc, TXP_CMD_PHY_MGMT_READ, 0, MII_BMSR, 0,
1639             &bmsr, NULL, NULL, 1))
1640                 goto bail;
1641
1642         if (txp_command(sc, TXP_CMD_PHY_MGMT_READ, 0, MII_BMCR, 0,
1643             &bmcr, NULL, NULL, 1))
1644                 goto bail;
1645
1646         if (txp_command(sc, TXP_CMD_PHY_MGMT_READ, 0, MII_ANLPAR, 0,
1647             &anlpar, NULL, NULL, 1))
1648                 goto bail;
1649
1650         if (bmsr & BMSR_LINK)
1651                 ifmr->ifm_status |= IFM_ACTIVE;
1652
1653         if (bmcr & BMCR_ISO) {
1654                 ifmr->ifm_active |= IFM_NONE;
1655                 ifmr->ifm_status = 0;
1656                 return;
1657         }
1658
1659         if (bmcr & BMCR_LOOP)
1660                 ifmr->ifm_active |= IFM_LOOP;
1661
1662         if (bmcr & BMCR_AUTOEN) {
1663                 if ((bmsr & BMSR_ACOMP) == 0) {
1664                         ifmr->ifm_active |= IFM_NONE;
1665                         return;
1666                 }
1667
1668                 if (anlpar & ANLPAR_T4)
1669                         ifmr->ifm_active |= IFM_100_T4;
1670                 else if (anlpar & ANLPAR_TX_FD)
1671                         ifmr->ifm_active |= IFM_100_TX|IFM_FDX;
1672                 else if (anlpar & ANLPAR_TX)
1673                         ifmr->ifm_active |= IFM_100_TX;
1674                 else if (anlpar & ANLPAR_10_FD)
1675                         ifmr->ifm_active |= IFM_10_T|IFM_FDX;
1676                 else if (anlpar & ANLPAR_10)
1677                         ifmr->ifm_active |= IFM_10_T;
1678                 else
1679                         ifmr->ifm_active |= IFM_NONE;
1680         } else
1681                 ifmr->ifm_active = ifm->ifm_cur->ifm_media;
1682         return;
1683
1684 bail:
1685         ifmr->ifm_active |= IFM_NONE;
1686         ifmr->ifm_status &= ~IFM_AVALID;
1687 }
1688
1689 #ifdef TXP_DEBUG
1690 static void
1691 txp_show_descriptor(d)
1692         void *d;
1693 {
1694         struct txp_cmd_desc *cmd = d;
1695         struct txp_rsp_desc *rsp = d;
1696         struct txp_tx_desc *txd = d;
1697         struct txp_frag_desc *frgd = d;
1698
1699         switch (cmd->cmd_flags & CMD_FLAGS_TYPE_M) {
1700         case CMD_FLAGS_TYPE_CMD:
1701                 /* command descriptor */
1702                 printf("[cmd flags 0x%x num %d id %d seq %d par1 0x%x par2 0x%x par3 0x%x]\n",
1703                     cmd->cmd_flags, cmd->cmd_numdesc, cmd->cmd_id, cmd->cmd_seq,
1704                     cmd->cmd_par1, cmd->cmd_par2, cmd->cmd_par3);
1705                 break;
1706         case CMD_FLAGS_TYPE_RESP:
1707                 /* response descriptor */
1708                 printf("[rsp flags 0x%x num %d id %d seq %d par1 0x%x par2 0x%x par3 0x%x]\n",
1709                     rsp->rsp_flags, rsp->rsp_numdesc, rsp->rsp_id, rsp->rsp_seq,
1710                     rsp->rsp_par1, rsp->rsp_par2, rsp->rsp_par3);
1711                 break;
1712         case CMD_FLAGS_TYPE_DATA:
1713                 /* data header (assuming tx for now) */
1714                 printf("[data flags 0x%x num %d totlen %d addr 0x%x/0x%x pflags 0x%x]",
1715                     txd->tx_flags, txd->tx_numdesc, txd->tx_totlen,
1716                     txd->tx_addrlo, txd->tx_addrhi, txd->tx_pflags);
1717                 break;
1718         case CMD_FLAGS_TYPE_FRAG:
1719                 /* fragment descriptor */
1720                 printf("[frag flags 0x%x rsvd1 0x%x len %d addr 0x%x/0x%x rsvd2 0x%x]",
1721                     frgd->frag_flags, frgd->frag_rsvd1, frgd->frag_len,
1722                     frgd->frag_addrlo, frgd->frag_addrhi, frgd->frag_rsvd2);
1723                 break;
1724         default:
1725                 printf("[unknown(%x) flags 0x%x num %d id %d seq %d par1 0x%x par2 0x%x par3 0x%x]\n",
1726                     cmd->cmd_flags & CMD_FLAGS_TYPE_M,
1727                     cmd->cmd_flags, cmd->cmd_numdesc, cmd->cmd_id, cmd->cmd_seq,
1728                     cmd->cmd_par1, cmd->cmd_par2, cmd->cmd_par3);
1729                 break;
1730         }
1731 }
1732 #endif
1733
1734 static void
1735 txp_set_filter(sc)
1736         struct txp_softc *sc;
1737 {
1738         struct ifnet *ifp = &sc->sc_arpcom.ac_if;
1739         u_int32_t crc, carry, hashbit, hash[2];
1740         u_int16_t filter;
1741         u_int8_t octet;
1742         int i, j, mcnt = 0;
1743         struct ifmultiaddr *ifma;
1744         char *enm;
1745
1746         if (ifp->if_flags & IFF_PROMISC) {
1747                 filter = TXP_RXFILT_PROMISC;
1748                 goto setit;
1749         }
1750
1751         filter = TXP_RXFILT_DIRECT;
1752
1753         if (ifp->if_flags & IFF_BROADCAST)
1754                 filter |= TXP_RXFILT_BROADCAST;
1755
1756         if (ifp->if_flags & IFF_ALLMULTI)
1757                 filter |= TXP_RXFILT_ALLMULTI;
1758         else {
1759                 hash[0] = hash[1] = 0;
1760
1761                 for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
1762                     ifma = ifma->ifma_link.le_next) {
1763                         if (ifma->ifma_addr->sa_family != AF_LINK)
1764                                 continue;
1765
1766                         enm = LLADDR((struct sockaddr_dl *)ifma->ifma_addr);
1767                         mcnt++;
1768                         crc = 0xffffffff;
1769
1770                         for (i = 0; i < ETHER_ADDR_LEN; i++) {
1771                                 octet = enm[i];
1772                                 for (j = 0; j < 8; j++) {
1773                                         carry = ((crc & 0x80000000) ? 1 : 0) ^
1774                                             (octet & 1);
1775                                         crc <<= 1;
1776                                         octet >>= 1;
1777                                         if (carry)
1778                                                 crc = (crc ^ TXP_POLYNOMIAL) |
1779                                                     carry;
1780                                 }
1781                         }
1782                         hashbit = (u_int16_t)(crc & (64 - 1));
1783                         hash[hashbit / 32] |= (1 << hashbit % 32);
1784                 }
1785
1786                 if (mcnt > 0) {
1787                         filter |= TXP_RXFILT_HASHMULTI;
1788                         txp_command(sc, TXP_CMD_MCAST_HASH_MASK_WRITE,
1789                             2, hash[0], hash[1], NULL, NULL, NULL, 0);
1790                 }
1791         }
1792
1793 setit:
1794
1795         txp_command(sc, TXP_CMD_RX_FILTER_WRITE, filter, 0, 0,
1796             NULL, NULL, NULL, 1);
1797
1798         return;
1799 }
1800
1801 static void
1802 txp_capabilities(sc)
1803         struct txp_softc *sc;
1804 {
1805         struct ifnet *ifp = &sc->sc_arpcom.ac_if;
1806         struct txp_rsp_desc *rsp = NULL;
1807         struct txp_ext_desc *ext;
1808
1809         if (txp_command2(sc, TXP_CMD_OFFLOAD_READ, 0, 0, 0, NULL, 0, &rsp, 1))
1810                 goto out;
1811
1812         if (rsp->rsp_numdesc != 1)
1813                 goto out;
1814         ext = (struct txp_ext_desc *)(rsp + 1);
1815
1816         sc->sc_tx_capability = ext->ext_1 & OFFLOAD_MASK;
1817         sc->sc_rx_capability = ext->ext_2 & OFFLOAD_MASK;
1818         ifp->if_capabilities = 0;
1819
1820         if (rsp->rsp_par2 & rsp->rsp_par3 & OFFLOAD_VLAN) {
1821                 sc->sc_tx_capability |= OFFLOAD_VLAN;
1822                 sc->sc_rx_capability |= OFFLOAD_VLAN;
1823         }
1824
1825 #if 0
1826         /* not ready yet */
1827         if (rsp->rsp_par2 & rsp->rsp_par3 & OFFLOAD_IPSEC) {
1828                 sc->sc_tx_capability |= OFFLOAD_IPSEC;
1829                 sc->sc_rx_capability |= OFFLOAD_IPSEC;
1830                 ifp->if_capabilities |= IFCAP_IPSEC;
1831         }
1832 #endif
1833
1834         if (rsp->rsp_par2 & rsp->rsp_par3 & OFFLOAD_IPCKSUM) {
1835                 sc->sc_tx_capability |= OFFLOAD_IPCKSUM;
1836                 sc->sc_rx_capability |= OFFLOAD_IPCKSUM;
1837                 ifp->if_capabilities |= IFCAP_HWCSUM;
1838                 ifp->if_hwassist |= CSUM_IP;
1839         }
1840
1841         if (rsp->rsp_par2 & rsp->rsp_par3 & OFFLOAD_TCPCKSUM) {
1842 #if 0
1843                 sc->sc_tx_capability |= OFFLOAD_TCPCKSUM;
1844 #endif
1845                 sc->sc_rx_capability |= OFFLOAD_TCPCKSUM;
1846                 ifp->if_capabilities |= IFCAP_HWCSUM;
1847         }
1848
1849         if (rsp->rsp_par2 & rsp->rsp_par3 & OFFLOAD_UDPCKSUM) {
1850 #if 0
1851                 sc->sc_tx_capability |= OFFLOAD_UDPCKSUM;
1852 #endif
1853                 sc->sc_rx_capability |= OFFLOAD_UDPCKSUM;
1854                 ifp->if_capabilities |= IFCAP_HWCSUM;
1855         }
1856         ifp->if_capenable = ifp->if_capabilities;
1857
1858         if (txp_command(sc, TXP_CMD_OFFLOAD_WRITE, 0,
1859             sc->sc_tx_capability, sc->sc_rx_capability, NULL, NULL, NULL, 1))
1860                 goto out;
1861
1862 out:
1863         if (rsp != NULL)
1864                 free(rsp, M_DEVBUF);
1865
1866         return;
1867 }