if_tlp_cardbus.c revision 1.45 1 /* $NetBSD: if_tlp_cardbus.c,v 1.45 2005/02/27 00:26:59 perry 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 <sys/cdefs.h>
46 __KERNEL_RCSID(0, "$NetBSD: if_tlp_cardbus.c,v 1.45 2005/02/27 00:26:59 perry Exp $");
47
48 #include "opt_inet.h"
49 #include "opt_ns.h"
50 #include "bpfilter.h"
51
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/mbuf.h>
55 #include <sys/malloc.h>
56 #include <sys/kernel.h>
57 #include <sys/socket.h>
58 #include <sys/ioctl.h>
59 #include <sys/errno.h>
60 #include <sys/device.h>
61
62 #include <machine/endian.h>
63
64 #include <net/if.h>
65 #include <net/if_dl.h>
66 #include <net/if_media.h>
67 #include <net/if_ether.h>
68
69 #if NBPFILTER > 0
70 #include <net/bpf.h>
71 #endif
72
73 #ifdef INET
74 #include <netinet/in.h>
75 #include <netinet/if_inarp.h>
76 #endif
77
78 #ifdef NS
79 #include <netns/ns.h>
80 #include <netns/ns_if.h>
81 #endif
82
83 #include <machine/bus.h>
84 #include <machine/intr.h>
85
86 #include <dev/mii/miivar.h>
87 #include <dev/mii/mii_bitbang.h>
88
89 #include <dev/ic/tulipreg.h>
90 #include <dev/ic/tulipvar.h>
91
92 #include <dev/pci/pcivar.h>
93 #include <dev/pci/pcireg.h>
94 #include <dev/pci/pcidevs.h>
95
96 #include <dev/cardbus/cardbusvar.h>
97 #include <dev/pci/pcidevs.h>
98
99 /*
100 * PCI configuration space registers used by the Tulip.
101 */
102 #define TULIP_PCI_IOBA 0x10 /* i/o mapped base */
103 #define TULIP_PCI_MMBA 0x14 /* memory mapped base */
104 #define TULIP_PCI_CFDA 0x40 /* configuration driver area */
105
106 #define CFDA_SLEEP 0x80000000 /* sleep mode */
107 #define CFDA_SNOOZE 0x40000000 /* snooze mode */
108
109 struct tulip_cardbus_softc {
110 struct tulip_softc sc_tulip; /* real Tulip softc */
111
112 /* CardBus-specific goo. */
113 void *sc_ih; /* interrupt handle */
114 cardbus_devfunc_t sc_ct; /* our CardBus devfuncs */
115 cardbustag_t sc_tag; /* our CardBus tag */
116 int sc_csr; /* CSR bits */
117 bus_size_t sc_mapsize; /* the size of mapped bus space
118 region */
119
120 int sc_cben; /* CardBus enables */
121 int sc_bar_reg; /* which BAR to use */
122 pcireg_t sc_bar_val; /* value of the BAR */
123
124 int sc_intrline; /* interrupt line */
125 };
126
127 int tlp_cardbus_match(struct device *, struct cfdata *, void *);
128 void tlp_cardbus_attach(struct device *, struct device *, void *);
129 int tlp_cardbus_detach(struct device *, int);
130
131 CFATTACH_DECL(tlp_cardbus, sizeof(struct tulip_cardbus_softc),
132 tlp_cardbus_match, tlp_cardbus_attach, tlp_cardbus_detach, tlp_activate);
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 { PCI_VENDOR_ACCTON, PCI_PRODUCT_ACCTON_EN2242,
149 TULIP_CHIP_AN985 },
150
151 { PCI_VENDOR_ABOCOM, PCI_PRODUCT_ABOCOM_FE2500,
152 TULIP_CHIP_AN985 },
153
154 { PCI_VENDOR_ABOCOM, PCI_PRODUCT_ABOCOM_PCM200,
155 TULIP_CHIP_AN985 },
156
157 { PCI_VENDOR_ABOCOM, PCI_PRODUCT_ABOCOM_FE2500MX,
158 TULIP_CHIP_AN985 },
159
160 { PCI_VENDOR_HAWKING, PCI_PRODUCT_HAWKING_PN672TX,
161 TULIP_CHIP_AN985 },
162
163 { PCI_VENDOR_ADMTEK, PCI_PRODUCT_ADMTEK_AN985_2,
164 TULIP_CHIP_AN985 },
165
166 { PCI_VENDOR_MICROSOFT, PCI_PRODUCT_MICROSOFT_MN120,
167 TULIP_CHIP_AN985 },
168
169 { 0, 0,
170 TULIP_CHIP_INVALID },
171 };
172
173 struct tlp_cardbus_quirks {
174 void (*tpq_func)(struct tulip_cardbus_softc *,
175 const u_int8_t *);
176 u_int8_t tpq_oui[3];
177 };
178
179 void tlp_cardbus_lxt_quirks(struct tulip_cardbus_softc *,
180 const u_int8_t *);
181
182 const struct tlp_cardbus_quirks tlp_cardbus_21142_quirks[] = {
183 { tlp_cardbus_lxt_quirks, { 0x00, 0x40, 0x05 } },
184 { NULL, { 0, 0, 0 } }
185 };
186
187 void tlp_cardbus_setup(struct tulip_cardbus_softc *);
188
189 int tlp_cardbus_enable(struct tulip_softc *);
190 void tlp_cardbus_disable(struct tulip_softc *);
191 void tlp_cardbus_power(struct tulip_softc *, int);
192
193 void tlp_cardbus_x3201_reset(struct tulip_softc *);
194
195 const struct tulip_cardbus_product *tlp_cardbus_lookup
196 (const struct cardbus_attach_args *);
197 void tlp_cardbus_get_quirks(struct tulip_cardbus_softc *,
198 const u_int8_t *, const struct tlp_cardbus_quirks *);
199
200 const struct tulip_cardbus_product *
201 tlp_cardbus_lookup(ca)
202 const struct cardbus_attach_args *ca;
203 {
204 const struct tulip_cardbus_product *tcp;
205
206 for (tcp = tlp_cardbus_products;
207 tlp_chip_names[tcp->tcp_chip] != NULL;
208 tcp++) {
209 if (PCI_VENDOR(ca->ca_id) == tcp->tcp_vendor &&
210 PCI_PRODUCT(ca->ca_id) == tcp->tcp_product)
211 return (tcp);
212 }
213 return (NULL);
214 }
215
216 void
217 tlp_cardbus_get_quirks(csc, enaddr, tpq)
218 struct tulip_cardbus_softc *csc;
219 const u_int8_t *enaddr;
220 const struct tlp_cardbus_quirks *tpq;
221 {
222
223 for (; tpq->tpq_func != NULL; tpq++) {
224 if (tpq->tpq_oui[0] == enaddr[0] &&
225 tpq->tpq_oui[1] == enaddr[1] &&
226 tpq->tpq_oui[2] == enaddr[2]) {
227 (*tpq->tpq_func)(csc, enaddr);
228 return;
229 }
230 }
231 }
232
233 int
234 tlp_cardbus_match(parent, match, aux)
235 struct device *parent;
236 struct cfdata *match;
237 void *aux;
238 {
239 struct cardbus_attach_args *ca = aux;
240
241 if (tlp_cardbus_lookup(ca) != NULL)
242 return (1);
243
244 return (0);
245 }
246
247 void
248 tlp_cardbus_attach(parent, self, aux)
249 struct device *parent, *self;
250 void *aux;
251 {
252 struct tulip_cardbus_softc *csc = (void *)self;
253 struct tulip_softc *sc = &csc->sc_tulip;
254 struct cardbus_attach_args *ca = aux;
255 cardbus_devfunc_t ct = ca->ca_ct;
256 const struct tulip_cardbus_product *tcp;
257 u_int8_t enaddr[ETHER_ADDR_LEN];
258 bus_addr_t adr;
259 pcireg_t reg;
260
261 sc->sc_devno = ca->ca_device;
262 sc->sc_dmat = ca->ca_dmat;
263 csc->sc_ct = ct;
264 csc->sc_tag = ca->ca_tag;
265
266 tcp = tlp_cardbus_lookup(ca);
267 if (tcp == NULL) {
268 printf("\n");
269 panic("tlp_cardbus_attach: impossible");
270 }
271 sc->sc_chip = tcp->tcp_chip;
272
273 /*
274 * By default, Tulip registers are 8 bytes long (4 bytes
275 * followed by a 4 byte pad).
276 */
277 sc->sc_regshift = 3;
278
279 /*
280 * Power management hooks.
281 */
282 sc->sc_enable = tlp_cardbus_enable;
283 sc->sc_disable = tlp_cardbus_disable;
284 sc->sc_power = tlp_cardbus_power;
285
286 /*
287 * Get revision info, and set some chip-specific variables.
288 */
289 sc->sc_rev = PCI_REVISION(ca->ca_class);
290 switch (sc->sc_chip) {
291 case TULIP_CHIP_21142:
292 if (sc->sc_rev >= 0x20)
293 sc->sc_chip = TULIP_CHIP_21143;
294 break;
295
296 case TULIP_CHIP_AN985:
297 /*
298 * The AN983 and AN985 are very similar, and are
299 * differentiated by a "signature" register that
300 * is like, but not identical, to a PCI ID register.
301 */
302 reg = cardbus_conf_read(ct->ct_cc, ct->ct_cf, csc->sc_tag,
303 0x80);
304 switch (reg) {
305 case 0x09811317:
306 sc->sc_chip = TULIP_CHIP_AN985;
307 break;
308
309 case 0x09851317:
310 sc->sc_chip = TULIP_CHIP_AN983;
311 break;
312
313 }
314 break;
315
316 default:
317 /* Nothing. -- to make gcc happy */
318 break;
319 }
320
321 printf(": %s Ethernet, pass %d.%d\n",
322 tlp_chip_names[sc->sc_chip],
323 (sc->sc_rev >> 4) & 0xf, sc->sc_rev & 0xf);
324
325 /*
326 * Map the device.
327 */
328 csc->sc_csr = CARDBUS_COMMAND_MASTER_ENABLE;
329 if (Cardbus_mapreg_map(ct, TULIP_PCI_MMBA,
330 CARDBUS_MAPREG_TYPE_MEM, 0, &sc->sc_st, &sc->sc_sh, &adr,
331 &csc->sc_mapsize) == 0) {
332 #if rbus
333 #else
334 (*ct->ct_cf->cardbus_mem_open)(cc, 0, adr, adr+csc->sc_mapsize);
335 #endif
336 csc->sc_cben = CARDBUS_MEM_ENABLE;
337 csc->sc_csr |= CARDBUS_COMMAND_MEM_ENABLE;
338 csc->sc_bar_reg = TULIP_PCI_MMBA;
339 csc->sc_bar_val = adr | CARDBUS_MAPREG_TYPE_MEM;
340 } else if (Cardbus_mapreg_map(ct, TULIP_PCI_IOBA,
341 CARDBUS_MAPREG_TYPE_IO, 0, &sc->sc_st, &sc->sc_sh, &adr,
342 &csc->sc_mapsize) == 0) {
343 #if rbus
344 #else
345 (*ct->ct_cf->cardbus_io_open)(cc, 0, adr, adr+csc->sc_mapsize);
346 #endif
347 csc->sc_cben = CARDBUS_IO_ENABLE;
348 csc->sc_csr |= CARDBUS_COMMAND_IO_ENABLE;
349 csc->sc_bar_reg = TULIP_PCI_IOBA;
350 csc->sc_bar_val = adr | CARDBUS_MAPREG_TYPE_IO;
351 } else {
352 printf("%s: unable to map device registers\n",
353 sc->sc_dev.dv_xname);
354 return;
355 }
356
357 /*
358 * Bring the chip out of powersave mode and initialize the
359 * configuration registers.
360 */
361 tlp_cardbus_setup(csc);
362
363 /*
364 * Read the contents of the Ethernet Address ROM/SROM.
365 */
366 switch (sc->sc_chip) {
367 case TULIP_CHIP_X3201_3:
368 /*
369 * No SROM on this chip.
370 */
371 break;
372
373 default:
374 if (tlp_read_srom(sc) == 0)
375 goto cant_cope;
376 break;
377 }
378
379 /*
380 * Deal with chip/board quirks. This includes setting up
381 * the mediasw, and extracting the Ethernet address from
382 * the rombuf.
383 */
384 switch (sc->sc_chip) {
385 case TULIP_CHIP_21142:
386 case TULIP_CHIP_21143:
387 /* Check for new format SROM. */
388 if (tlp_isv_srom_enaddr(sc, enaddr) != 0) {
389 /*
390 * We start out with the 2114x ISV media switch.
391 * When we search for quirks, we may change to
392 * a different switch.
393 */
394 sc->sc_mediasw = &tlp_2114x_isv_mediasw;
395 } else if (tlp_parse_old_srom(sc, enaddr) == 0) {
396 /*
397 * Not an ISV SROM, and not in old DEC Address
398 * ROM format. Try to snarf it out of the CIS.
399 */
400 if (ca->ca_cis.funce.network.netid_present == 0)
401 goto cant_cope;
402
403 /* Grab the MAC address from the CIS. */
404 memcpy(enaddr, ca->ca_cis.funce.network.netid,
405 sizeof(enaddr));
406 }
407
408 /*
409 * Deal with any quirks this board might have.
410 */
411 tlp_cardbus_get_quirks(csc, enaddr, tlp_cardbus_21142_quirks);
412
413 /*
414 * If we don't already have a media switch, default to
415 * MII-over-SIO, with no special reset routine.
416 */
417 if (sc->sc_mediasw == NULL) {
418 printf("%s: defaulting to MII-over-SIO; no bets...\n",
419 sc->sc_dev.dv_xname);
420 sc->sc_mediasw = &tlp_sio_mii_mediasw;
421 }
422 break;
423
424 case TULIP_CHIP_AN983:
425 case TULIP_CHIP_AN985:
426 /*
427 * The ADMtek AN985's Ethernet address is located
428 * at offset 8 of its EEPROM.
429 */
430 memcpy(enaddr, &sc->sc_srom[8], ETHER_ADDR_LEN);
431
432 /*
433 * The ADMtek AN985 can be configured in Single-Chip
434 * mode or MAC-only mode. Single-Chip uses the built-in
435 * PHY, MAC-only has an external PHY (usually HomePNA).
436 * The selection is based on an EEPROM setting, and both
437 * PHYs are access via MII attached to SIO.
438 *
439 * The AN985 "ghosts" the internal PHY onto all
440 * MII addresses, so we have to use a media init
441 * routine that limits the search.
442 * XXX How does this work with MAC-only mode?
443 */
444 sc->sc_mediasw = &tlp_an985_mediasw;
445 break;
446
447 case TULIP_CHIP_X3201_3:
448 /*
449 * The X3201 doesn't have an SROM. Lift the MAC address
450 * from the CIS. Also, we have a special media switch:
451 * MII-on-SIO, plus some special GPIO setup.
452 */
453 memcpy(enaddr, ca->ca_cis.funce.network.netid, sizeof(enaddr));
454 sc->sc_reset = tlp_cardbus_x3201_reset;
455 sc->sc_mediasw = &tlp_sio_mii_mediasw;
456 break;
457
458 default:
459 cant_cope:
460 printf("%s: sorry, unable to handle your board\n",
461 sc->sc_dev.dv_xname);
462 return;
463 }
464
465 /* Remember which interrupt line. */
466 csc->sc_intrline = ca->ca_intrline;
467
468 /*
469 * The CardBus cards will make it to store-and-forward mode as
470 * soon as you put them under any kind of load, so just start
471 * out there.
472 */
473 sc->sc_txthresh = TXTH_SF;
474
475 /*
476 * Finish off the attach.
477 */
478 tlp_attach(sc, enaddr);
479
480 /*
481 * Power down the socket.
482 */
483 Cardbus_function_disable(csc->sc_ct);
484 }
485
486 int
487 tlp_cardbus_detach(self, flags)
488 struct device *self;
489 int flags;
490 {
491 struct tulip_cardbus_softc *csc = (void *)self;
492 struct tulip_softc *sc = &csc->sc_tulip;
493 struct cardbus_devfunc *ct = csc->sc_ct;
494 int rv;
495
496 #if defined(DIAGNOSTIC)
497 if (ct == NULL)
498 panic("%s: data structure lacks", sc->sc_dev.dv_xname);
499 #endif
500
501 rv = tlp_detach(sc);
502 if (rv)
503 return (rv);
504
505 /*
506 * Unhook the interrupt handler.
507 */
508 if (csc->sc_ih != NULL)
509 cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, csc->sc_ih);
510
511 /*
512 * Release bus space and close window.
513 */
514 if (csc->sc_bar_reg != 0)
515 Cardbus_mapreg_unmap(ct, csc->sc_bar_reg,
516 sc->sc_st, sc->sc_sh, csc->sc_mapsize);
517
518 return (0);
519 }
520
521 int
522 tlp_cardbus_enable(sc)
523 struct tulip_softc *sc;
524 {
525 struct tulip_cardbus_softc *csc = (void *) sc;
526 cardbus_devfunc_t ct = csc->sc_ct;
527 cardbus_chipset_tag_t cc = ct->ct_cc;
528 cardbus_function_tag_t cf = ct->ct_cf;
529
530 /*
531 * Power on the socket.
532 */
533 Cardbus_function_enable(ct);
534
535 /*
536 * Set up the PCI configuration registers.
537 */
538 tlp_cardbus_setup(csc);
539
540 /*
541 * Map and establish the interrupt.
542 */
543 csc->sc_ih = cardbus_intr_establish(cc, cf, csc->sc_intrline, IPL_NET,
544 tlp_intr, sc);
545 if (csc->sc_ih == NULL) {
546 printf("%s: unable to establish interrupt at %d\n",
547 sc->sc_dev.dv_xname, csc->sc_intrline);
548 Cardbus_function_disable(csc->sc_ct);
549 return (1);
550 }
551 printf("%s: interrupting at %d\n", sc->sc_dev.dv_xname,
552 csc->sc_intrline);
553
554 return (0);
555 }
556
557 void
558 tlp_cardbus_disable(sc)
559 struct tulip_softc *sc;
560 {
561 struct tulip_cardbus_softc *csc = (void *) sc;
562 cardbus_devfunc_t ct = csc->sc_ct;
563 cardbus_chipset_tag_t cc = ct->ct_cc;
564 cardbus_function_tag_t cf = ct->ct_cf;
565
566 /* Unhook the interrupt handler. */
567 cardbus_intr_disestablish(cc, cf, csc->sc_ih);
568 csc->sc_ih = NULL;
569
570 /* Power down the socket. */
571 Cardbus_function_disable(ct);
572 }
573
574 void
575 tlp_cardbus_power(sc, why)
576 struct tulip_softc *sc;
577 int why;
578 {
579
580 switch (why) {
581 case PWR_RESUME:
582 tlp_cardbus_enable(sc);
583 break;
584 case PWR_SUSPEND:
585 tlp_cardbus_disable(sc);
586 break;
587 }
588 }
589
590 void
591 tlp_cardbus_setup(csc)
592 struct tulip_cardbus_softc *csc;
593 {
594 struct tulip_softc *sc = &csc->sc_tulip;
595 cardbus_devfunc_t ct = csc->sc_ct;
596 cardbus_chipset_tag_t cc = ct->ct_cc;
597 cardbus_function_tag_t cf = ct->ct_cf;
598 pcireg_t reg;
599
600 /*
601 * Check to see if the device is in power-save mode, and
602 * bring it out if necessary.
603 */
604 switch (sc->sc_chip) {
605 case TULIP_CHIP_21142:
606 case TULIP_CHIP_21143:
607 case TULIP_CHIP_X3201_3:
608 /*
609 * Clear the "sleep mode" bit in the CFDA register.
610 */
611 reg = cardbus_conf_read(cc, cf, csc->sc_tag, TULIP_PCI_CFDA);
612 if (reg & (CFDA_SLEEP|CFDA_SNOOZE))
613 cardbus_conf_write(cc, cf, csc->sc_tag, TULIP_PCI_CFDA,
614 reg & ~(CFDA_SLEEP|CFDA_SNOOZE));
615 break;
616
617 default:
618 /* Nothing. -- to make gcc happy */
619 break;
620 }
621
622 (void)cardbus_setpowerstate(sc->sc_dev.dv_xname, ct, csc->sc_tag,
623 PCI_PWR_D0);
624
625 /* Program the BAR. */
626 cardbus_conf_write(cc, cf, csc->sc_tag, csc->sc_bar_reg,
627 csc->sc_bar_val);
628
629 /* Make sure the right access type is on the CardBus bridge. */
630 (*ct->ct_cf->cardbus_ctrl)(cc, csc->sc_cben);
631 (*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
632
633 /* Enable the appropriate bits in the PCI CSR. */
634 reg = cardbus_conf_read(cc, cf, csc->sc_tag, PCI_COMMAND_STATUS_REG);
635 reg &= ~(PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE);
636 reg |= csc->sc_csr;
637 cardbus_conf_write(cc, cf, csc->sc_tag, PCI_COMMAND_STATUS_REG, reg);
638
639 /*
640 * Make sure the latency timer is set to some reasonable
641 * value.
642 */
643 reg = cardbus_conf_read(cc, cf, csc->sc_tag, PCI_BHLC_REG);
644 if (PCI_LATTIMER(reg) < 0x20) {
645 reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
646 reg |= (0x20 << PCI_LATTIMER_SHIFT);
647 cardbus_conf_write(cc, cf, csc->sc_tag, PCI_BHLC_REG, reg);
648 }
649 }
650
651 void
652 tlp_cardbus_x3201_reset(sc)
653 struct tulip_softc *sc;
654 {
655 u_int32_t reg;
656
657 reg = TULIP_READ(sc, CSR_SIAGEN);
658
659 /* make GP[2,0] outputs */
660 TULIP_WRITE(sc, CSR_SIAGEN, (reg & ~SIAGEN_MD) | SIAGEN_CWE |
661 0x00050000);
662 TULIP_WRITE(sc, CSR_SIAGEN, (reg & ~SIAGEN_CWE) | SIAGEN_MD);
663 }
664
665 void
666 tlp_cardbus_lxt_quirks(csc, enaddr)
667 struct tulip_cardbus_softc *csc;
668 const u_int8_t *enaddr;
669 {
670 struct tulip_softc *sc = &csc->sc_tulip;
671
672 sc->sc_mediasw = &tlp_sio_mii_mediasw;
673 }
674