if_tlp_cardbus.c revision 1.30 1 /* $NetBSD: if_tlp_cardbus.c,v 1.30 2001/07/18 15:24:24 thorpej Exp $ */
2
3 /*-
4 * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 * NASA Ames Research Center.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the NetBSD
22 * Foundation, Inc. and its contributors.
23 * 4. Neither the name of The NetBSD Foundation nor the names of its
24 * contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40 /*
41 * CardBus bus front-end for the Digital Semiconductor ``Tulip'' (21x4x)
42 * Ethernet controller family driver.
43 */
44
45 #include "opt_inet.h"
46 #include "opt_ns.h"
47 #include "bpfilter.h"
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/mbuf.h>
52 #include <sys/malloc.h>
53 #include <sys/kernel.h>
54 #include <sys/socket.h>
55 #include <sys/ioctl.h>
56 #include <sys/errno.h>
57 #include <sys/device.h>
58
59 #include <machine/endian.h>
60
61 #include <net/if.h>
62 #include <net/if_dl.h>
63 #include <net/if_media.h>
64 #include <net/if_ether.h>
65
66 #if NBPFILTER > 0
67 #include <net/bpf.h>
68 #endif
69
70 #ifdef INET
71 #include <netinet/in.h>
72 #include <netinet/if_inarp.h>
73 #endif
74
75 #ifdef NS
76 #include <netns/ns.h>
77 #include <netns/ns_if.h>
78 #endif
79
80 #include <machine/bus.h>
81 #include <machine/intr.h>
82
83 #include <dev/mii/miivar.h>
84 #include <dev/mii/mii_bitbang.h>
85
86 #include <dev/ic/tulipreg.h>
87 #include <dev/ic/tulipvar.h>
88
89 #include <dev/pci/pcivar.h>
90 #include <dev/pci/pcireg.h>
91 #include <dev/pci/pcidevs.h>
92
93 #include <dev/cardbus/cardbusvar.h>
94 #include <dev/cardbus/cardbusdevs.h>
95
96 /*
97 * PCI configuration space registers used by the Tulip.
98 */
99 #define TULIP_PCI_IOBA 0x10 /* i/o mapped base */
100 #define TULIP_PCI_MMBA 0x14 /* memory mapped base */
101 #define TULIP_PCI_CFDA 0x40 /* configuration driver area */
102
103 #define CFDA_SLEEP 0x80000000 /* sleep mode */
104 #define CFDA_SNOOZE 0x40000000 /* snooze mode */
105
106 struct tulip_cardbus_softc {
107 struct tulip_softc sc_tulip; /* real Tulip softc */
108
109 /* CardBus-specific goo. */
110 void *sc_ih; /* interrupt handle */
111 cardbus_devfunc_t sc_ct; /* our CardBus devfuncs */
112 cardbustag_t sc_tag; /* our CardBus tag */
113 int sc_csr; /* CSR bits */
114 bus_size_t sc_mapsize; /* the size of mapped bus space
115 region */
116
117 int sc_cben; /* CardBus enables */
118 int sc_bar_reg; /* which BAR to use */
119 pcireg_t sc_bar_val; /* value of the BAR */
120
121 int sc_intrline; /* interrupt line */
122 };
123
124 int tlp_cardbus_match __P((struct device *, struct cfdata *, void *));
125 void tlp_cardbus_attach __P((struct device *, struct device *, void *));
126 int tlp_cardbus_detach __P((struct device *, int));
127
128 struct cfattach tlp_cardbus_ca = {
129 sizeof(struct tulip_cardbus_softc),
130 tlp_cardbus_match, tlp_cardbus_attach,
131 tlp_cardbus_detach, tlp_activate,
132 };
133
134 const struct tulip_cardbus_product {
135 u_int32_t tcp_vendor; /* PCI vendor ID */
136 u_int32_t tcp_product; /* PCI product ID */
137 tulip_chip_t tcp_chip; /* base Tulip chip type */
138 } tlp_cardbus_products[] = {
139 { PCI_VENDOR_DEC, PCI_PRODUCT_DEC_21142,
140 TULIP_CHIP_21142 },
141
142 { PCI_VENDOR_XIRCOM, PCI_PRODUCT_XIRCOM_X3201_3_21143,
143 TULIP_CHIP_X3201_3 },
144
145 { PCI_VENDOR_ADMTEK, PCI_PRODUCT_ADMTEK_AN985,
146 TULIP_CHIP_AN985 },
147
148 { CARDBUS_VENDOR_ACCTON, CARDBUS_PRODUCT_ACCTON_EN2242,
149 TULIP_CHIP_AN985 },
150
151 { CARDBUS_VENDOR_ABOCOM, CARDBUS_PRODUCT_ABOCOM_FE2500,
152 TULIP_CHIP_AN985 },
153
154 { CARDBUS_VENDOR_ABOCOM, CARDBUS_PRODUCT_ABOCOM_PCM200,
155 TULIP_CHIP_AN985 },
156
157 { 0, 0,
158 TULIP_CHIP_INVALID },
159 };
160
161 void tlp_cardbus_setup __P((struct tulip_cardbus_softc *));
162
163 int tlp_cardbus_enable __P((struct tulip_softc *));
164 void tlp_cardbus_disable __P((struct tulip_softc *));
165 void tlp_cardbus_power __P((struct tulip_softc *, int));
166
167 void tlp_cardbus_x3201_reset __P((struct tulip_softc *));
168
169 const struct tulip_cardbus_product *tlp_cardbus_lookup
170 __P((const struct cardbus_attach_args *));
171
172 const struct tulip_cardbus_product *
173 tlp_cardbus_lookup(ca)
174 const struct cardbus_attach_args *ca;
175 {
176 const struct tulip_cardbus_product *tcp;
177
178 for (tcp = tlp_cardbus_products;
179 tlp_chip_names[tcp->tcp_chip] != NULL;
180 tcp++) {
181 if (PCI_VENDOR(ca->ca_id) == tcp->tcp_vendor &&
182 PCI_PRODUCT(ca->ca_id) == tcp->tcp_product)
183 return (tcp);
184 }
185 return (NULL);
186 }
187
188 int
189 tlp_cardbus_match(parent, match, aux)
190 struct device *parent;
191 struct cfdata *match;
192 void *aux;
193 {
194 struct cardbus_attach_args *ca = aux;
195
196 if (tlp_cardbus_lookup(ca) != NULL)
197 return (1);
198
199 return (0);
200 }
201
202 void
203 tlp_cardbus_attach(parent, self, aux)
204 struct device *parent, *self;
205 void *aux;
206 {
207 struct tulip_cardbus_softc *csc = (void *)self;
208 struct tulip_softc *sc = &csc->sc_tulip;
209 struct cardbus_attach_args *ca = aux;
210 cardbus_devfunc_t ct = ca->ca_ct;
211 const struct tulip_cardbus_product *tcp;
212 u_int8_t enaddr[ETHER_ADDR_LEN];
213 bus_addr_t adr;
214 pcireg_t reg;
215
216 sc->sc_devno = ca->ca_device;
217 sc->sc_dmat = ca->ca_dmat;
218 csc->sc_ct = ct;
219 csc->sc_tag = ca->ca_tag;
220
221 tcp = tlp_cardbus_lookup(ca);
222 if (tcp == NULL) {
223 printf("\n");
224 panic("tlp_cardbus_attach: impossible");
225 }
226 sc->sc_chip = tcp->tcp_chip;
227
228 /*
229 * By default, Tulip registers are 8 bytes long (4 bytes
230 * followed by a 4 byte pad).
231 */
232 sc->sc_regshift = 3;
233
234 /*
235 * Power management hooks.
236 */
237 sc->sc_enable = tlp_cardbus_enable;
238 sc->sc_disable = tlp_cardbus_disable;
239 sc->sc_power = tlp_cardbus_power;
240
241 /*
242 * Get revision info, and set some chip-specific variables.
243 */
244 sc->sc_rev = PCI_REVISION(ca->ca_class);
245 switch (sc->sc_chip) {
246 case TULIP_CHIP_21142:
247 if (sc->sc_rev >= 0x20)
248 sc->sc_chip = TULIP_CHIP_21143;
249 break;
250
251 case TULIP_CHIP_AN985:
252 /*
253 * The AN983 and AN985 are very similar, and are
254 * differentiated by a "signature" register that
255 * is like, but not identical, to a PCI ID register.
256 */
257 reg = cardbus_conf_read(ct->ct_cc, ct->ct_cf, csc->sc_tag,
258 0x80);
259 switch (reg) {
260 case 0x09811317:
261 sc->sc_chip = TULIP_CHIP_AN985;
262 break;
263
264 case 0x09851317:
265 sc->sc_chip = TULIP_CHIP_AN983;
266 break;
267
268 }
269 break;
270
271 default:
272 /* Nothing. -- to make gcc happy */
273 break;
274 }
275
276 printf(": %s Ethernet, pass %d.%d\n",
277 tlp_chip_names[sc->sc_chip],
278 (sc->sc_rev >> 4) & 0xf, sc->sc_rev & 0xf);
279
280 /*
281 * Map the device.
282 */
283 csc->sc_csr = PCI_COMMAND_MASTER_ENABLE;
284 if (Cardbus_mapreg_map(ct, TULIP_PCI_IOBA,
285 PCI_MAPREG_TYPE_IO, 0, &sc->sc_st, &sc->sc_sh, &adr,
286 &csc->sc_mapsize) == 0) {
287 #if rbus
288 #else
289 (*ct->ct_cf->cardbus_io_open)(cc, 0, adr, adr+csc->sc_mapsize);
290 #endif
291 csc->sc_cben = CARDBUS_IO_ENABLE;
292 csc->sc_csr |= PCI_COMMAND_IO_ENABLE;
293 csc->sc_bar_reg = TULIP_PCI_IOBA;
294 csc->sc_bar_val = adr | PCI_MAPREG_TYPE_IO;
295 } else if (Cardbus_mapreg_map(ct, TULIP_PCI_MMBA,
296 PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
297 &sc->sc_st, &sc->sc_sh, &adr, &csc->sc_mapsize) == 0) {
298 #if rbus
299 #else
300 (*ct->ct_cf->cardbus_mem_open)(cc, 0, adr, adr+csc->sc_mapsize);
301 #endif
302 csc->sc_cben = CARDBUS_MEM_ENABLE;
303 csc->sc_csr |= PCI_COMMAND_MEM_ENABLE;
304 csc->sc_bar_reg = TULIP_PCI_MMBA;
305 csc->sc_bar_val = adr | PCI_MAPREG_TYPE_MEM;
306 } else {
307 printf("%s: unable to map device registers\n",
308 sc->sc_dev.dv_xname);
309 return;
310 }
311
312 /*
313 * Bring the chip out of powersave mode and initialize the
314 * configuration registers.
315 */
316 tlp_cardbus_setup(csc);
317
318 /*
319 * Read the contents of the Ethernet Address ROM/SROM.
320 */
321 switch (sc->sc_chip) {
322 case TULIP_CHIP_X3201_3:
323 /*
324 * No SROM on this chip.
325 */
326 break;
327
328 default:
329 if (tlp_read_srom(sc) == 0)
330 goto cant_cope;
331 break;
332 }
333
334 /*
335 * Deal with chip/board quirks. This includes setting up
336 * the mediasw, and extracting the Ethernet address from
337 * the rombuf.
338 */
339 switch (sc->sc_chip) {
340 case TULIP_CHIP_21142:
341 case TULIP_CHIP_21143:
342 /* Check for new format SROM. */
343 if (tlp_isv_srom_enaddr(sc, enaddr) != 0) {
344 /*
345 * We start out with the 2114x ISV media switch.
346 * When we search for quirks, we may change to
347 * a different switch.
348 */
349 sc->sc_mediasw = &tlp_2114x_isv_mediasw;
350 } else if (tlp_parse_old_srom(sc, enaddr) == 0) {
351 /*
352 * Not an ISV SROM, and not in old DEC Address
353 * ROM format. Try to snarf it out of the CIS.
354 */
355 if (ca->ca_cis.funce.network.netid_present == 0)
356 goto cant_cope;
357
358 /* Grab the MAC address from the CIS. */
359 memcpy(enaddr, ca->ca_cis.funce.network.netid,
360 sizeof(enaddr));
361 }
362
363 /* XXX XXX XXX QUIRKS XXX XXX XXX */
364
365 /*
366 * If we don't already have a media switch, default to
367 * MII-over-SIO, with no special reset routine.
368 */
369 if (sc->sc_mediasw == NULL) {
370 printf("%s: defaulting to MII-over-SIO; no bets...\n",
371 sc->sc_dev.dv_xname);
372 sc->sc_mediasw = &tlp_sio_mii_mediasw;
373 }
374 break;
375
376 case TULIP_CHIP_AN983:
377 case TULIP_CHIP_AN985:
378 /*
379 * The ADMtek AN985's Ethernet address is located
380 * at offset 8 of its EEPROM.
381 */
382 memcpy(enaddr, &sc->sc_srom[8], ETHER_ADDR_LEN);
383
384 /*
385 * The ADMtek AN985 can be configured in Single-Chip
386 * mode or MAC-only mode. Single-Chip uses the built-in
387 * PHY, MAC-only has an external PHY (usually HomePNA).
388 * The selection is based on an EEPROM setting, and both
389 * PHYs are access via MII attached to SIO.
390 *
391 * The AN985 "ghosts" the internal PHY onto all
392 * MII addresses, so we have to use a media init
393 * routine that limits the search.
394 * XXX How does this work with MAC-only mode?
395 */
396 sc->sc_mediasw = &tlp_an985_mediasw;
397 break;
398
399 case TULIP_CHIP_X3201_3:
400 /*
401 * The X3201 doesn't have an SROM. Lift the MAC address
402 * from the CIS. Also, we have a special media switch:
403 * MII-on-SIO, plus some special GPIO setup.
404 */
405 memcpy(enaddr, ca->ca_cis.funce.network.netid, sizeof(enaddr));
406 sc->sc_reset = tlp_cardbus_x3201_reset;
407 sc->sc_mediasw = &tlp_sio_mii_mediasw;
408 break;
409
410 default:
411 cant_cope:
412 printf("%s: sorry, unable to handle your board\n",
413 sc->sc_dev.dv_xname);
414 return;
415 }
416
417 /* Remember which interrupt line. */
418 csc->sc_intrline = ca->ca_intrline;
419
420 /*
421 * The CardBus cards will make it to store-and-forward mode as
422 * soon as you put them under any kind of load, so just start
423 * out there.
424 */
425 sc->sc_txthresh = TXTH_SF;
426
427 /*
428 * Finish off the attach.
429 */
430 tlp_attach(sc, enaddr);
431
432 /*
433 * Power down the socket.
434 */
435 Cardbus_function_disable(csc->sc_ct);
436 }
437
438 int
439 tlp_cardbus_detach(self, flags)
440 struct device *self;
441 int flags;
442 {
443 struct tulip_cardbus_softc *csc = (void *)self;
444 struct tulip_softc *sc = &csc->sc_tulip;
445 struct cardbus_devfunc *ct = csc->sc_ct;
446 int rv;
447
448 #if defined(DIAGNOSTIC)
449 if (ct == NULL)
450 panic("%s: data structure lacks\n", sc->sc_dev.dv_xname);
451 #endif
452
453 rv = tlp_detach(sc);
454 if (rv)
455 return (rv);
456
457 /*
458 * Unhook the interrupt handler.
459 */
460 if (csc->sc_ih != NULL)
461 cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, csc->sc_ih);
462
463 /*
464 * Release bus space and close window.
465 */
466 if (csc->sc_bar_reg != 0)
467 Cardbus_mapreg_unmap(ct, csc->sc_bar_reg,
468 sc->sc_st, sc->sc_sh, csc->sc_mapsize);
469
470 return (0);
471 }
472
473 int
474 tlp_cardbus_enable(sc)
475 struct tulip_softc *sc;
476 {
477 struct tulip_cardbus_softc *csc = (void *) sc;
478 cardbus_devfunc_t ct = csc->sc_ct;
479 cardbus_chipset_tag_t cc = ct->ct_cc;
480 cardbus_function_tag_t cf = ct->ct_cf;
481
482 /*
483 * Power on the socket.
484 */
485 Cardbus_function_enable(ct);
486
487 /*
488 * Set up the PCI configuration registers.
489 */
490 tlp_cardbus_setup(csc);
491
492 /*
493 * Map and establish the interrupt.
494 */
495 csc->sc_ih = cardbus_intr_establish(cc, cf, csc->sc_intrline, IPL_NET,
496 tlp_intr, sc);
497 if (csc->sc_ih == NULL) {
498 printf("%s: unable to establish interrupt at %d\n",
499 sc->sc_dev.dv_xname, csc->sc_intrline);
500 Cardbus_function_disable(csc->sc_ct);
501 return (1);
502 }
503 printf("%s: interrupting at %d\n", sc->sc_dev.dv_xname,
504 csc->sc_intrline);
505
506 return (0);
507 }
508
509 void
510 tlp_cardbus_disable(sc)
511 struct tulip_softc *sc;
512 {
513 struct tulip_cardbus_softc *csc = (void *) sc;
514 cardbus_devfunc_t ct = csc->sc_ct;
515 cardbus_chipset_tag_t cc = ct->ct_cc;
516 cardbus_function_tag_t cf = ct->ct_cf;
517
518 /* Unhook the interrupt handler. */
519 cardbus_intr_disestablish(cc, cf, csc->sc_ih);
520 csc->sc_ih = NULL;
521
522 /* Power down the socket. */
523 Cardbus_function_disable(ct);
524 }
525
526 void
527 tlp_cardbus_power(sc, why)
528 struct tulip_softc *sc;
529 int why;
530 {
531 struct tulip_cardbus_softc *csc = (void *) sc;
532
533 if (why == PWR_RESUME) {
534 /*
535 * Give the PCI configuration registers a kick
536 * in the head.
537 */
538 #ifdef DIAGNOSTIC
539 if (TULIP_IS_ENABLED(sc) == 0)
540 panic("tlp_cardbus_power");
541 #endif
542 tlp_cardbus_setup(csc);
543 }
544 }
545
546 void
547 tlp_cardbus_setup(csc)
548 struct tulip_cardbus_softc *csc;
549 {
550 struct tulip_softc *sc = &csc->sc_tulip;
551 cardbus_devfunc_t ct = csc->sc_ct;
552 cardbus_chipset_tag_t cc = ct->ct_cc;
553 cardbus_function_tag_t cf = ct->ct_cf;
554 pcireg_t reg;
555 int pmreg;
556
557 /*
558 * Check to see if the device is in power-save mode, and
559 * bring it out if necessary.
560 */
561 switch (sc->sc_chip) {
562 case TULIP_CHIP_21142:
563 case TULIP_CHIP_21143:
564 case TULIP_CHIP_X3201_3:
565 /*
566 * Clear the "sleep mode" bit in the CFDA register.
567 */
568 reg = cardbus_conf_read(cc, cf, csc->sc_tag, TULIP_PCI_CFDA);
569 if (reg & (CFDA_SLEEP|CFDA_SNOOZE))
570 cardbus_conf_write(cc, cf, csc->sc_tag, TULIP_PCI_CFDA,
571 reg & ~(CFDA_SLEEP|CFDA_SNOOZE));
572 break;
573
574 default:
575 /* Nothing. -- to make gcc happy */
576 break;
577 }
578
579 if (cardbus_get_capability(cc, cf, csc->sc_tag,
580 PCI_CAP_PWRMGMT, &pmreg, 0)) {
581 reg = cardbus_conf_read(cc, cf, csc->sc_tag, pmreg + 4) & 0x03;
582 #if 1 /* XXX Probably not right for CardBus. */
583 if (reg == 3) {
584 /*
585 * The card has lost all configuration data in
586 * this state, so punt.
587 */
588 printf("%s: unable to wake up from power state D3\n",
589 sc->sc_dev.dv_xname);
590 return;
591 }
592 #endif
593 if (reg != 0) {
594 printf("%s: waking up from power state D%d\n",
595 sc->sc_dev.dv_xname, reg);
596 cardbus_conf_write(cc, cf, csc->sc_tag,
597 pmreg + 4, 0);
598 }
599 }
600
601 /* Make sure the right access type is on the CardBus bridge. */
602 (*ct->ct_cf->cardbus_ctrl)(cc, csc->sc_cben);
603 (*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
604
605 /* Program the BAR. */
606 cardbus_conf_write(cc, cf, csc->sc_tag, csc->sc_bar_reg,
607 csc->sc_bar_val);
608
609 /* Enable the appropriate bits in the PCI CSR. */
610 reg = cardbus_conf_read(cc, cf, csc->sc_tag, PCI_COMMAND_STATUS_REG);
611 reg &= ~(PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE);
612 reg |= csc->sc_csr;
613 cardbus_conf_write(cc, cf, csc->sc_tag, PCI_COMMAND_STATUS_REG, reg);
614
615 /*
616 * Make sure the latency timer is set to some reasonable
617 * value.
618 */
619 reg = cardbus_conf_read(cc, cf, csc->sc_tag, PCI_BHLC_REG);
620 if (PCI_LATTIMER(reg) < 0x20) {
621 reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
622 reg |= (0x20 << PCI_LATTIMER_SHIFT);
623 cardbus_conf_write(cc, cf, csc->sc_tag, PCI_BHLC_REG, reg);
624 }
625 }
626
627 void
628 tlp_cardbus_x3201_reset(sc)
629 struct tulip_softc *sc;
630 {
631 u_int32_t reg;
632
633 reg = TULIP_READ(sc, CSR_SIAGEN);
634
635 /* make GP[2,0] outputs */
636 TULIP_WRITE(sc, CSR_SIAGEN, (reg & ~SIAGEN_MD) | SIAGEN_CWE |
637 0x00050000);
638 TULIP_WRITE(sc, CSR_SIAGEN, (reg & ~SIAGEN_CWE) | SIAGEN_MD);
639 }
640