if_tlp_cardbus.c revision 1.27 1 /* $NetBSD: if_tlp_cardbus.c,v 1.27 2001/04/13 00:18:11 kanaoka 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 default:
269 /* Unknown -- use default. */
270 }
271 break;
272
273 default:
274 /* Nothing. */
275 }
276
277 printf(": %s Ethernet, pass %d.%d\n",
278 tlp_chip_names[sc->sc_chip],
279 (sc->sc_rev >> 4) & 0xf, sc->sc_rev & 0xf);
280
281 /*
282 * Map the device.
283 */
284 csc->sc_csr = PCI_COMMAND_MASTER_ENABLE;
285 if (Cardbus_mapreg_map(ct, TULIP_PCI_IOBA,
286 PCI_MAPREG_TYPE_IO, 0, &sc->sc_st, &sc->sc_sh, &adr,
287 &csc->sc_mapsize) == 0) {
288 #if rbus
289 #else
290 (*ct->ct_cf->cardbus_io_open)(cc, 0, adr, adr+csc->sc_mapsize);
291 #endif
292 csc->sc_cben = CARDBUS_IO_ENABLE;
293 csc->sc_csr |= PCI_COMMAND_IO_ENABLE;
294 csc->sc_bar_reg = TULIP_PCI_IOBA;
295 csc->sc_bar_val = adr | PCI_MAPREG_TYPE_IO;
296 } else if (Cardbus_mapreg_map(ct, TULIP_PCI_MMBA,
297 PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
298 &sc->sc_st, &sc->sc_sh, &adr, &csc->sc_mapsize) == 0) {
299 #if rbus
300 #else
301 (*ct->ct_cf->cardbus_mem_open)(cc, 0, adr, adr+csc->sc_mapsize);
302 #endif
303 csc->sc_cben = CARDBUS_MEM_ENABLE;
304 csc->sc_csr |= PCI_COMMAND_MEM_ENABLE;
305 csc->sc_bar_reg = TULIP_PCI_MMBA;
306 csc->sc_bar_val = adr | PCI_MAPREG_TYPE_MEM;
307 } else {
308 printf("%s: unable to map device registers\n",
309 sc->sc_dev.dv_xname);
310 return;
311 }
312
313 /*
314 * Bring the chip out of powersave mode and initialize the
315 * configuration registers.
316 */
317 tlp_cardbus_setup(csc);
318
319 /*
320 * Read the contents of the Ethernet Address ROM/SROM.
321 */
322 switch (sc->sc_chip) {
323 case TULIP_CHIP_X3201_3:
324 /*
325 * No SROM on this chip.
326 */
327 break;
328
329 default:
330 if (tlp_read_srom(sc) == 0)
331 goto cant_cope;
332 break;
333 }
334
335 /*
336 * Deal with chip/board quirks. This includes setting up
337 * the mediasw, and extracting the Ethernet address from
338 * the rombuf.
339 */
340 switch (sc->sc_chip) {
341 case TULIP_CHIP_21142:
342 case TULIP_CHIP_21143:
343 /* Check for new format SROM. */
344 if (tlp_isv_srom_enaddr(sc, enaddr) != 0) {
345 /*
346 * We start out with the 2114x ISV media switch.
347 * When we search for quirks, we may change to
348 * a different switch.
349 */
350 sc->sc_mediasw = &tlp_2114x_isv_mediasw;
351 } else if (tlp_parse_old_srom(sc, enaddr) == 0) {
352 /*
353 * Not an ISV SROM, and not in old DEC Address
354 * ROM format. Try to snarf it out of the CIS.
355 */
356 if (ca->ca_cis.funce.network.netid_present == 0)
357 goto cant_cope;
358
359 /* Grab the MAC address from the CIS. */
360 memcpy(enaddr, ca->ca_cis.funce.network.netid,
361 sizeof(enaddr));
362 }
363
364 /* XXX XXX XXX QUIRKS XXX XXX XXX */
365
366 /*
367 * If we don't already have a media switch, default to
368 * MII-over-SIO, with no special reset routine.
369 */
370 if (sc->sc_mediasw == NULL) {
371 printf("%s: defaulting to MII-over-SIO; no bets...\n",
372 sc->sc_dev.dv_xname);
373 sc->sc_mediasw = &tlp_sio_mii_mediasw;
374 }
375 break;
376
377 case TULIP_CHIP_AN983:
378 case TULIP_CHIP_AN985:
379 /*
380 * The ADMtek AN985's Ethernet address is located
381 * at offset 8 of its EEPROM.
382 */
383 memcpy(enaddr, &sc->sc_srom[8], ETHER_ADDR_LEN);
384
385 /*
386 * The ADMtek AN985 can be configured in Single-Chip
387 * mode or MAC-only mode. Single-Chip uses the built-in
388 * PHY, MAC-only has an external PHY (usually HomePNA).
389 * The selection is based on an EEPROM setting, and both
390 * PHYs are access via MII attached to SIO.
391 *
392 * The AN985 "ghosts" the internal PHY onto all
393 * MII addresses, so we have to use a media init
394 * routine that limits the search.
395 * XXX How does this work with MAC-only mode?
396 */
397 sc->sc_mediasw = &tlp_an985_mediasw;
398 break;
399
400 case TULIP_CHIP_X3201_3:
401 /*
402 * The X3201 doesn't have an SROM. Lift the MAC address
403 * from the CIS. Also, we have a special media switch:
404 * MII-on-SIO, plus some special GPIO setup.
405 */
406 memcpy(enaddr, ca->ca_cis.funce.network.netid, sizeof(enaddr));
407 sc->sc_reset = tlp_cardbus_x3201_reset;
408 sc->sc_mediasw = &tlp_sio_mii_mediasw;
409 break;
410
411 default:
412 cant_cope:
413 printf("%s: sorry, unable to handle your board\n",
414 sc->sc_dev.dv_xname);
415 return;
416 }
417
418 /* Remember which interrupt line. */
419 csc->sc_intrline = ca->ca_intrline;
420
421 /*
422 * The CardBus cards will make it to store-and-forward mode as
423 * soon as you put them under any kind of load, so just start
424 * out there.
425 */
426 sc->sc_txthresh = TXTH_SF;
427
428 /*
429 * Finish off the attach.
430 */
431 tlp_attach(sc, enaddr);
432
433 /*
434 * Power down the socket.
435 */
436 Cardbus_function_disable(csc->sc_ct);
437 }
438
439 int
440 tlp_cardbus_detach(self, flags)
441 struct device *self;
442 int flags;
443 {
444 struct tulip_cardbus_softc *csc = (void *)self;
445 struct tulip_softc *sc = &csc->sc_tulip;
446 struct cardbus_devfunc *ct = csc->sc_ct;
447 int rv;
448
449 #if defined(DIAGNOSTIC)
450 if (ct == NULL)
451 panic("%s: data structure lacks\n", sc->sc_dev.dv_xname);
452 #endif
453
454 rv = tlp_detach(sc);
455 if (rv)
456 return (rv);
457
458 /*
459 * Unhook the interrupt handler.
460 */
461 if (csc->sc_ih != NULL)
462 cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, csc->sc_ih);
463
464 /*
465 * Release bus space and close window.
466 */
467 if (csc->sc_bar_reg != 0)
468 Cardbus_mapreg_unmap(ct, csc->sc_bar_reg,
469 sc->sc_st, sc->sc_sh, csc->sc_mapsize);
470
471 return (0);
472 }
473
474 int
475 tlp_cardbus_enable(sc)
476 struct tulip_softc *sc;
477 {
478 struct tulip_cardbus_softc *csc = (void *) sc;
479 cardbus_devfunc_t ct = csc->sc_ct;
480 cardbus_chipset_tag_t cc = ct->ct_cc;
481 cardbus_function_tag_t cf = ct->ct_cf;
482
483 /*
484 * Power on the socket.
485 */
486 Cardbus_function_enable(ct);
487
488 /*
489 * Set up the PCI configuration registers.
490 */
491 tlp_cardbus_setup(csc);
492
493 /*
494 * Map and establish the interrupt.
495 */
496 csc->sc_ih = cardbus_intr_establish(cc, cf, csc->sc_intrline, IPL_NET,
497 tlp_intr, sc);
498 if (csc->sc_ih == NULL) {
499 printf("%s: unable to establish interrupt at %d\n",
500 sc->sc_dev.dv_xname, csc->sc_intrline);
501 Cardbus_function_disable(csc->sc_ct);
502 return (1);
503 }
504 printf("%s: interrupting at %d\n", sc->sc_dev.dv_xname,
505 csc->sc_intrline);
506
507 return (0);
508 }
509
510 void
511 tlp_cardbus_disable(sc)
512 struct tulip_softc *sc;
513 {
514 struct tulip_cardbus_softc *csc = (void *) sc;
515 cardbus_devfunc_t ct = csc->sc_ct;
516 cardbus_chipset_tag_t cc = ct->ct_cc;
517 cardbus_function_tag_t cf = ct->ct_cf;
518
519 /* Unhook the interrupt handler. */
520 cardbus_intr_disestablish(cc, cf, csc->sc_ih);
521 csc->sc_ih = NULL;
522
523 /* Power down the socket. */
524 Cardbus_function_disable(ct);
525 }
526
527 void
528 tlp_cardbus_power(sc, why)
529 struct tulip_softc *sc;
530 int why;
531 {
532 struct tulip_cardbus_softc *csc = (void *) sc;
533
534 if (why == PWR_RESUME) {
535 /*
536 * Give the PCI configuration registers a kick
537 * in the head.
538 */
539 #ifdef DIAGNOSTIC
540 if (TULIP_IS_ENABLED(sc) == 0)
541 panic("tlp_cardbus_power");
542 #endif
543 tlp_cardbus_setup(csc);
544 }
545 }
546
547 void
548 tlp_cardbus_setup(csc)
549 struct tulip_cardbus_softc *csc;
550 {
551 struct tulip_softc *sc = &csc->sc_tulip;
552 cardbus_devfunc_t ct = csc->sc_ct;
553 cardbus_chipset_tag_t cc = ct->ct_cc;
554 cardbus_function_tag_t cf = ct->ct_cf;
555 pcireg_t reg;
556 int pmreg;
557
558 /*
559 * Check to see if the device is in power-save mode, and
560 * bring it out if necessary.
561 */
562 switch (sc->sc_chip) {
563 case TULIP_CHIP_21142:
564 case TULIP_CHIP_21143:
565 case TULIP_CHIP_X3201_3:
566 /*
567 * Clear the "sleep mode" bit in the CFDA register.
568 */
569 reg = cardbus_conf_read(cc, cf, csc->sc_tag, TULIP_PCI_CFDA);
570 if (reg & (CFDA_SLEEP|CFDA_SNOOZE))
571 cardbus_conf_write(cc, cf, csc->sc_tag, TULIP_PCI_CFDA,
572 reg & ~(CFDA_SLEEP|CFDA_SNOOZE));
573 break;
574
575 default:
576 /* Nothing. */
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