Home | History | Annotate | Line # | Download | only in pci
if_ex_pci.c revision 1.12.4.2
      1  1.12.4.2        he /*	$NetBSD: if_ex_pci.c,v 1.12.4.2 2001/03/20 17:25:33 he Exp $	*/
      2       1.1      fvdl 
      3       1.1      fvdl /*-
      4       1.1      fvdl  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5       1.1      fvdl  * All rights reserved.
      6       1.1      fvdl  *
      7       1.1      fvdl  * This code is derived from software contributed to The NetBSD Foundation
      8       1.3   thorpej  * by Frank van der Linden; Jason R. Thorpe of the Numerical Aerospace
      9       1.3   thorpej  * Simulation Facility, NASA Ames Research Center.
     10       1.1      fvdl  *
     11       1.1      fvdl  * Redistribution and use in source and binary forms, with or without
     12       1.1      fvdl  * modification, are permitted provided that the following conditions
     13       1.1      fvdl  * are met:
     14       1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     15       1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     16       1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     18       1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     19       1.1      fvdl  * 3. All advertising materials mentioning features or use of this software
     20       1.1      fvdl  *    must display the following acknowledgement:
     21       1.1      fvdl  *	This product includes software developed by the NetBSD
     22       1.1      fvdl  *	Foundation, Inc. and its contributors.
     23       1.1      fvdl  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24       1.1      fvdl  *    contributors may be used to endorse or promote products derived
     25       1.1      fvdl  *    from this software without specific prior written permission.
     26       1.1      fvdl  *
     27       1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28       1.1      fvdl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29       1.1      fvdl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30       1.1      fvdl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31       1.1      fvdl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32       1.1      fvdl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33       1.1      fvdl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34       1.1      fvdl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35       1.1      fvdl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36       1.1      fvdl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37       1.1      fvdl  * POSSIBILITY OF SUCH DAMAGE.
     38       1.1      fvdl  */
     39       1.1      fvdl 
     40       1.1      fvdl #include "opt_inet.h"
     41       1.1      fvdl #include "opt_ns.h"
     42       1.1      fvdl #include "bpfilter.h"
     43       1.1      fvdl 
     44       1.1      fvdl #include <sys/param.h>
     45       1.1      fvdl #include <sys/systm.h>
     46       1.1      fvdl #include <sys/mbuf.h>
     47       1.1      fvdl #include <sys/socket.h>
     48       1.1      fvdl #include <sys/ioctl.h>
     49       1.1      fvdl #include <sys/errno.h>
     50       1.1      fvdl #include <sys/syslog.h>
     51       1.1      fvdl #include <sys/select.h>
     52       1.1      fvdl #include <sys/device.h>
     53       1.1      fvdl 
     54       1.1      fvdl #include <net/if.h>
     55       1.1      fvdl #include <net/if_dl.h>
     56       1.1      fvdl #include <net/if_ether.h>
     57       1.1      fvdl #include <net/if_media.h>
     58       1.1      fvdl 
     59       1.1      fvdl #ifdef INET
     60       1.1      fvdl #include <netinet/in.h>
     61       1.1      fvdl #include <netinet/in_systm.h>
     62       1.1      fvdl #include <netinet/in_var.h>
     63       1.1      fvdl #include <netinet/ip.h>
     64       1.1      fvdl #include <netinet/if_inarp.h>
     65       1.1      fvdl #endif
     66       1.1      fvdl 
     67       1.1      fvdl #ifdef NS
     68       1.1      fvdl #include <netns/ns.h>
     69       1.1      fvdl #include <netns/ns_if.h>
     70       1.1      fvdl #endif
     71       1.1      fvdl 
     72       1.1      fvdl #if NBPFILTER > 0
     73       1.1      fvdl #include <net/bpf.h>
     74       1.1      fvdl #include <net/bpfdesc.h>
     75       1.1      fvdl #endif
     76       1.1      fvdl 
     77       1.1      fvdl #include <machine/cpu.h>
     78       1.1      fvdl #include <machine/bus.h>
     79       1.1      fvdl #include <machine/intr.h>
     80       1.1      fvdl 
     81       1.1      fvdl #include <dev/mii/miivar.h>
     82       1.1      fvdl #include <dev/mii/mii.h>
     83       1.1      fvdl 
     84       1.1      fvdl #include <dev/ic/elink3var.h>
     85       1.1      fvdl #include <dev/ic/elink3reg.h>
     86       1.1      fvdl #include <dev/ic/elinkxlreg.h>
     87       1.1      fvdl #include <dev/ic/elinkxlvar.h>
     88       1.1      fvdl 
     89       1.1      fvdl #include <dev/pci/pcivar.h>
     90       1.1      fvdl #include <dev/pci/pcireg.h>
     91       1.1      fvdl #include <dev/pci/pcidevs.h>
     92       1.1      fvdl 
     93  1.12.4.2        he struct ex_pci_softc {
     94  1.12.4.2        he 	struct ex_softc sc_ex;
     95  1.12.4.2        he 	pci_chipset_tag_t sc_chiptag;
     96  1.12.4.2        he 	pcitag_t sc_pcitag;
     97  1.12.4.2        he };
     98  1.12.4.2        he 
     99       1.1      fvdl /*
    100       1.1      fvdl  * PCI constants.
    101       1.1      fvdl  * XXX These should be in a common file!
    102       1.1      fvdl  */
    103       1.1      fvdl #define PCI_CONN		0x48    /* Connector type */
    104       1.1      fvdl #define PCI_CBIO		0x10    /* Configuration Base IO Address */
    105       1.1      fvdl #define PCI_POWERCTL		0xe0
    106  1.12.4.2        he #define PCI_FUNCMEM		0x18
    107  1.12.4.2        he 
    108  1.12.4.2        he #define PCI_INTRACK		0x00008000
    109       1.1      fvdl 
    110       1.1      fvdl int ex_pci_match __P((struct device *, struct cfdata *, void *));
    111       1.1      fvdl void ex_pci_attach __P((struct device *, struct device *, void *));
    112  1.12.4.2        he void ex_pci_intr_ack __P((struct ex_softc *));
    113       1.1      fvdl 
    114       1.1      fvdl struct cfattach ex_pci_ca = {
    115  1.12.4.2        he 	sizeof(struct ex_pci_softc), ex_pci_match, ex_pci_attach
    116       1.1      fvdl };
    117       1.1      fvdl 
    118       1.3   thorpej const struct ex_pci_product {
    119       1.3   thorpej 	u_int32_t	epp_prodid;	/* PCI product ID */
    120       1.3   thorpej 	int		epp_flags;	/* initial softc flags */
    121       1.3   thorpej 	const char	*epp_name;	/* device name */
    122       1.3   thorpej } ex_pci_products[] = {
    123       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C900TPO,	0,
    124       1.4   thorpej 	  "3c900-TPO Ethernet" },
    125       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C900COMBO,	0,
    126       1.4   thorpej 	  "3c900-COMBO Ethernet" },
    127       1.3   thorpej 
    128       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C905TX,	EX_CONF_MII,
    129       1.4   thorpej 	  "3c905-TX 10/100 Ethernet" },
    130       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C905T4,	EX_CONF_MII,
    131       1.4   thorpej 	  "3c905-T4 10/100 Ethernet" },
    132       1.3   thorpej 
    133       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C900BTPO,	EX_CONF_90XB,
    134       1.4   thorpej 	  "3c900B-TPO Ethernet" },
    135       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C900BCOMBO,	EX_CONF_90XB,
    136       1.4   thorpej 	  "3c900B-COMBO Ethernet" },
    137       1.6      fvdl 	{ PCI_PRODUCT_3COM_3C900BTPC,   EX_CONF_90XB,
    138       1.6      fvdl 	  "3c900B-TPC Ethernet" },
    139       1.3   thorpej 
    140       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C905BTX,	EX_CONF_90XB|EX_CONF_MII|EX_CONF_INTPHY,
    141       1.4   thorpej 	  "3c905B-TX 10/100 Ethernet" },
    142       1.3   thorpej 	{ PCI_PRODUCT_3COM_3C905BT4,	EX_CONF_90XB|EX_CONF_MII,
    143       1.4   thorpej 	  "3c905B-T4 10/100 Ethernet" },
    144       1.9  drochner 	{ PCI_PRODUCT_3COM_3C905BCOMBO,	EX_CONF_90XB/*|EX_CONF_MII|EX_CONF_INTPHY*/,
    145       1.9  drochner 	  "3c905B-COMBO 10/100 Ethernet" },
    146       1.8      fvdl 	{ PCI_PRODUCT_3COM_3C905BFX,	EX_CONF_90XB,
    147       1.4   thorpej 	  "3c905B-FX 10/100 Ethernet" },
    148       1.4   thorpej 
    149       1.4   thorpej 	/* XXX Internal PHY? */
    150      1.10   mycroft 	{ PCI_PRODUCT_3COM_3C980SRV,	EX_CONF_90XB,
    151       1.4   thorpej 	  "3c980 Server Adapter 10/100 Ethernet" },
    152      1.12   thorpej 	{ PCI_PRODUCT_3COM_3C980CTXM,	EX_CONF_90XB,
    153      1.12   thorpej 	  "3c980C-TXM 10/100 Ethernet" },
    154      1.12   thorpej 
    155       1.7      ross 	{ PCI_PRODUCT_3COM_3C905CTX,	EX_CONF_90XB|EX_CONF_MII,
    156       1.7      ross 	  "3c905C-TX 10/100 Ethernet with mngmt" },
    157  1.12.4.1        he 
    158  1.12.4.1        he 	{ PCI_PRODUCT_3COM_3C450TX,		EX_CONF_90XB,
    159  1.12.4.1        he 	  "3c450-TX 10/100 Ethernet" },
    160  1.12.4.1        he 
    161  1.12.4.1        he 	{ PCI_PRODUCT_3COM_3CSOHO100TX,	EX_CONF_90XB,
    162  1.12.4.1        he 	  "3cSOHO100-TX 10/100 Ethernet" },
    163       1.3   thorpej 
    164  1.12.4.2        he 	{ PCI_PRODUCT_3COM_3C555,
    165  1.12.4.2        he 	   EX_CONF_90XB | EX_CONF_MII | EX_CONF_EEPROM_OFF |
    166  1.12.4.2        he 	   EX_CONF_EEPROM_8BIT,
    167  1.12.4.2        he 	  "3c555 MiniPCI 10/100 Ethernet" },
    168  1.12.4.2        he 
    169  1.12.4.2        he 	{ PCI_PRODUCT_3COM_3C556,
    170  1.12.4.2        he 	   EX_CONF_90XB | EX_CONF_MII | EX_CONF_EEPROM_OFF |
    171  1.12.4.2        he 	   EX_CONF_PCI_FUNCREG | EX_CONF_RESETHACK | EX_CONF_INV_LED_POLARITY |
    172  1.12.4.2        he 	   EX_CONF_PHY_POWER | EX_CONF_EEPROM_8BIT,
    173  1.12.4.2        he 	  "3c556 MiniPCI 10/100 Ethernet" },
    174  1.12.4.2        he 
    175  1.12.4.2        he 	{ PCI_PRODUCT_3COM_3C556B,
    176  1.12.4.2        he 	   EX_CONF_90XB | EX_CONF_MII | EX_CONF_EEPROM_OFF |
    177  1.12.4.2        he 	   EX_CONF_PCI_FUNCREG | EX_CONF_RESETHACK | EX_CONF_INV_LED_POLARITY |
    178  1.12.4.2        he 	   EX_CONF_PHY_POWER,
    179  1.12.4.2        he 	  "3c556B MiniPCI 10/100 Ethernet" },
    180  1.12.4.2        he 
    181       1.3   thorpej 	{ 0,				0,
    182       1.3   thorpej 	  NULL },
    183       1.3   thorpej };
    184       1.3   thorpej 
    185       1.3   thorpej const struct ex_pci_product *ex_pci_lookup
    186       1.3   thorpej     __P((const struct pci_attach_args *));
    187       1.3   thorpej 
    188       1.3   thorpej const struct ex_pci_product *
    189       1.3   thorpej ex_pci_lookup(pa)
    190       1.3   thorpej 	const struct pci_attach_args *pa;
    191       1.3   thorpej {
    192       1.3   thorpej 	const struct ex_pci_product *epp;
    193       1.3   thorpej 
    194       1.3   thorpej 	if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_3COM)
    195       1.3   thorpej 		return (NULL);
    196       1.3   thorpej 
    197       1.3   thorpej 	for (epp = ex_pci_products; epp->epp_name != NULL; epp++)
    198       1.3   thorpej 		if (PCI_PRODUCT(pa->pa_id) == epp->epp_prodid)
    199       1.3   thorpej 			return (epp);
    200       1.3   thorpej 	return (NULL);
    201       1.3   thorpej }
    202       1.3   thorpej 
    203       1.1      fvdl int
    204       1.1      fvdl ex_pci_match(parent, match, aux)
    205       1.1      fvdl 	struct device *parent;
    206       1.1      fvdl 	struct cfdata *match;
    207       1.1      fvdl 	void *aux;
    208       1.1      fvdl {
    209       1.1      fvdl 	struct pci_attach_args *pa = (struct pci_attach_args *) aux;
    210       1.1      fvdl 
    211       1.3   thorpej 	if (ex_pci_lookup(pa) != NULL)
    212       1.3   thorpej 		return (2);	/* beat ep_pci */
    213       1.1      fvdl 
    214       1.3   thorpej 	return (0);
    215       1.1      fvdl }
    216       1.1      fvdl 
    217       1.1      fvdl void
    218       1.1      fvdl ex_pci_attach(parent, self, aux)
    219       1.1      fvdl 	struct device *parent, *self;
    220       1.1      fvdl 	void *aux;
    221       1.1      fvdl {
    222       1.1      fvdl 	struct ex_softc *sc = (void *)self;
    223  1.12.4.2        he 	struct ex_pci_softc *psc = (void *)self;
    224       1.1      fvdl 	struct pci_attach_args *pa = aux;
    225       1.1      fvdl 	pci_chipset_tag_t pc = pa->pa_pc;
    226       1.1      fvdl 	pci_intr_handle_t ih;
    227       1.3   thorpej 	const struct ex_pci_product *epp;
    228       1.1      fvdl 	const char *intrstr = NULL;
    229      1.11   mycroft 	int rev, pmreg;
    230      1.11   mycroft 	pcireg_t reg;
    231       1.1      fvdl 
    232       1.1      fvdl 	if (pci_mapreg_map(pa, PCI_CBIO, PCI_MAPREG_TYPE_IO, 0,
    233       1.1      fvdl 	    &sc->sc_iot, &sc->sc_ioh, NULL, NULL)) {
    234       1.1      fvdl 		printf(": can't map i/o space\n");
    235       1.1      fvdl 		return;
    236       1.1      fvdl 	}
    237       1.1      fvdl 
    238       1.3   thorpej 	epp = ex_pci_lookup(pa);
    239       1.3   thorpej 	if (epp == NULL) {
    240       1.3   thorpej 		printf("\n");
    241       1.3   thorpej 		panic("ex_pci_attach: impossible");
    242       1.1      fvdl 	}
    243       1.1      fvdl 
    244       1.9  drochner 	rev = PCI_REVISION(pci_conf_read(pc, pa->pa_tag, PCI_CLASS_REG));
    245       1.9  drochner 	printf(": 3Com %s (rev. 0x%x)\n", epp->epp_name, rev);
    246       1.1      fvdl 
    247       1.1      fvdl 	sc->enable = NULL;
    248       1.1      fvdl 	sc->disable = NULL;
    249       1.1      fvdl 	sc->enabled = 1;
    250       1.1      fvdl 
    251       1.3   thorpej 	sc->sc_dmat = pa->pa_dmat;
    252       1.3   thorpej 
    253       1.3   thorpej 	sc->ex_bustype = EX_BUS_PCI;
    254       1.3   thorpej 	sc->ex_conf = epp->epp_flags;
    255       1.3   thorpej 
    256       1.1      fvdl 	/* Enable the card. */
    257       1.1      fvdl 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    258       1.1      fvdl 	    pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
    259       1.1      fvdl 	    PCI_COMMAND_MASTER_ENABLE);
    260       1.1      fvdl 
    261       1.1      fvdl 	/* Get it out of power save mode if needed (BIOS bugs) */
    262      1.11   mycroft 	if (pci_get_capability(pc, pa->pa_tag, PCI_CAP_PWRMGMT, &pmreg, 0)) {
    263      1.11   mycroft 		reg = pci_conf_read(pc, pa->pa_tag, pmreg + 4) & 0x3;
    264      1.11   mycroft 		if (reg == 3) {
    265       1.1      fvdl 			/*
    266       1.1      fvdl 			 * The card has lost all configuration data in
    267       1.1      fvdl 			 * this state, so punt.
    268       1.1      fvdl 			 */
    269       1.1      fvdl 			printf("%s: unable to wake up from power state D3\n",
    270       1.1      fvdl 			    sc->sc_dev.dv_xname);
    271       1.1      fvdl 			return;
    272       1.1      fvdl 		}
    273      1.11   mycroft 		if (reg != 0) {
    274       1.1      fvdl 			printf("%s: waking up from power state D%d\n",
    275      1.11   mycroft 			    sc->sc_dev.dv_xname, reg);
    276      1.11   mycroft 			pci_conf_write(pc, pa->pa_tag, pmreg + 4, 0);
    277       1.1      fvdl 		}
    278       1.1      fvdl 	}
    279       1.1      fvdl 
    280       1.1      fvdl 	/* Map and establish the interrupt. */
    281       1.1      fvdl 	if (pci_intr_map(pc, pa->pa_intrtag, pa->pa_intrpin,
    282       1.1      fvdl 	    pa->pa_intrline, &ih)) {
    283       1.1      fvdl 		printf("%s: couldn't map interrupt\n", sc->sc_dev.dv_xname);
    284       1.1      fvdl 		return;
    285       1.1      fvdl 	}
    286  1.12.4.2        he 
    287  1.12.4.2        he 	if (sc->ex_conf & EX_CONF_PCI_FUNCREG) {
    288  1.12.4.2        he 		sc->intr_ack = ex_pci_intr_ack;
    289  1.12.4.2        he 		psc->sc_chiptag = pa->pa_pc;
    290  1.12.4.2        he 		psc->sc_pcitag = pa->pa_tag;
    291  1.12.4.2        he 	}
    292  1.12.4.2        he 
    293       1.1      fvdl 	intrstr = pci_intr_string(pc, ih);
    294       1.1      fvdl 	sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, ex_intr, sc);
    295       1.1      fvdl 	if (sc->sc_ih == NULL) {
    296       1.1      fvdl 		printf("%s: couldn't establish interrupt",
    297       1.1      fvdl 		    sc->sc_dev.dv_xname);
    298       1.1      fvdl 		if (intrstr != NULL)
    299       1.1      fvdl 			printf(" at %s", intrstr);
    300       1.1      fvdl 		printf("\n");
    301       1.1      fvdl 		return;
    302       1.1      fvdl 	}
    303       1.1      fvdl 	printf("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
    304       1.1      fvdl 
    305       1.1      fvdl 	ex_config(sc);
    306  1.12.4.2        he }
    307  1.12.4.2        he 
    308  1.12.4.2        he void
    309  1.12.4.2        he ex_pci_intr_ack(sc)
    310  1.12.4.2        he 	struct ex_softc *sc;
    311  1.12.4.2        he {
    312  1.12.4.2        he 	struct ex_pci_softc *psc = (struct ex_pci_softc *)sc;
    313  1.12.4.2        he 
    314  1.12.4.2        he 	pci_conf_write(psc->sc_chiptag, psc->sc_pcitag, PCI_FUNCMEM + 4,
    315  1.12.4.2        he 	    PCI_INTRACK);
    316       1.1      fvdl }
    317