Home | History | Annotate | Line # | Download | only in mca
if_ep_mca.c revision 1.22
      1  1.22       dsl /*	$NetBSD: if_ep_mca.c,v 1.22 2009/03/14 15:36:18 dsl Exp $	*/
      2   1.1  jdolecek 
      3   1.1  jdolecek /*-
      4   1.1  jdolecek  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5   1.1  jdolecek  * All rights reserved.
      6   1.1  jdolecek  *
      7   1.1  jdolecek  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  jdolecek  * by Jaromir Dolecek.
      9   1.1  jdolecek  *
     10   1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     11   1.1  jdolecek  * modification, are permitted provided that the following conditions
     12   1.1  jdolecek  * are met:
     13   1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     14   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     15   1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     18   1.1  jdolecek  *
     19   1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1  jdolecek  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1  jdolecek  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1  jdolecek  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1  jdolecek  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1  jdolecek  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1  jdolecek  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1  jdolecek  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1  jdolecek  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1  jdolecek  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1  jdolecek  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1  jdolecek  */
     31   1.1  jdolecek 
     32   1.1  jdolecek /*
     33   1.1  jdolecek  * Copyright (c) 1997 Jonathan Stone <jonathan (at) NetBSD.org>
     34   1.1  jdolecek  * Copyright (c) 1994 Herb Peyerl <hpeyerl (at) beer.org>
     35   1.1  jdolecek  * All rights reserved.
     36   1.1  jdolecek  *
     37   1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     38   1.1  jdolecek  * modification, are permitted provided that the following conditions
     39   1.1  jdolecek  * are met:
     40   1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     41   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     42   1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     43   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     44   1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     45   1.1  jdolecek  * 3. All advertising materials mentioning features or use of this software
     46   1.1  jdolecek  *    must display the following acknowledgement:
     47   1.1  jdolecek  *      This product includes software developed by Herb Peyerl.
     48   1.1  jdolecek  * 4. The name of Herb Peyerl may not be used to endorse or promote products
     49   1.1  jdolecek  *    derived from this software without specific prior written permission.
     50   1.1  jdolecek  *
     51   1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     52   1.1  jdolecek  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     53   1.1  jdolecek  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     54   1.1  jdolecek  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     55   1.1  jdolecek  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     56   1.1  jdolecek  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     57   1.1  jdolecek  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     58   1.1  jdolecek  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     59   1.1  jdolecek  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     60   1.1  jdolecek  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     61   1.1  jdolecek  */
     62   1.1  jdolecek 
     63   1.1  jdolecek /*
     64   1.1  jdolecek  * Driver for 3Com 3c529 cards.
     65   1.1  jdolecek  *
     66   1.4  jdolecek  * If you encouter sucky performance, try kernel without DEBUG/DIAGNOSTIC.
     67   1.4  jdolecek  * This helped on my test machine to change the performance of the card
     68   1.4  jdolecek  * from like 5KB/s to like 800 KB/s.
     69   1.1  jdolecek  */
     70   1.6     lukem 
     71   1.6     lukem #include <sys/cdefs.h>
     72  1.22       dsl __KERNEL_RCSID(0, "$NetBSD: if_ep_mca.c,v 1.22 2009/03/14 15:36:18 dsl Exp $");
     73   1.1  jdolecek 
     74   1.1  jdolecek #include <sys/param.h>
     75   1.1  jdolecek #include <sys/systm.h>
     76  1.13     perry #include <sys/mbuf.h>
     77  1.13     perry #include <sys/socket.h>
     78   1.1  jdolecek #include <sys/ioctl.h>
     79   1.1  jdolecek #include <sys/errno.h>
     80   1.1  jdolecek #include <sys/device.h>
     81   1.1  jdolecek 
     82   1.1  jdolecek #include <net/if.h>
     83   1.1  jdolecek #include <net/if_ether.h>
     84   1.1  jdolecek #include <net/if_media.h>
     85   1.1  jdolecek 
     86  1.18        ad #include <sys/bus.h>
     87   1.1  jdolecek 
     88   1.1  jdolecek #include <dev/mii/miivar.h>
     89   1.1  jdolecek 
     90   1.1  jdolecek #include <dev/ic/elink3var.h>
     91   1.1  jdolecek #include <dev/ic/elink3reg.h>
     92   1.1  jdolecek 
     93   1.1  jdolecek #include <dev/mca/mcavar.h>
     94   1.1  jdolecek #include <dev/mca/mcadevs.h>
     95   1.1  jdolecek 
     96   1.1  jdolecek /*
     97   1.1  jdolecek  * MCA constants.
     98   1.1  jdolecek  */
     99   1.1  jdolecek #define MCA_CBIO		0x200	/* Configuration Base IO Address */
    100   1.1  jdolecek #define MCA_IOSZ		0x10	/* I/O space size */
    101   1.1  jdolecek 
    102  1.21  christos int ep_mca_match(device_t , cfdata_t , void *);
    103  1.21  christos void ep_mca_attach(device_t , device_t , void *);
    104   1.1  jdolecek 
    105  1.21  christos CFATTACH_DECL_NEW(ep_mca, sizeof(struct ep_softc),
    106  1.10   thorpej     ep_mca_match, ep_mca_attach, NULL, NULL);
    107   1.1  jdolecek 
    108   1.1  jdolecek const struct ep_mca_product {
    109   1.1  jdolecek 	u_int32_t	epp_prodid;	/* MCA product ID */
    110   1.1  jdolecek 	const char	*epp_name;	/* device name */
    111   1.1  jdolecek } ep_mca_products[] = {
    112   1.7  jdolecek 	{ MCA_PRODUCT_3C529,	"3C529 Ethernet Adapter" },
    113   1.1  jdolecek 	{ MCA_PRODUCT_3C529_TP,	"3c529-TP Ethernet Adapter" },
    114   1.1  jdolecek 	{ MCA_PRODUCT_3C529_TM, "3c529 Ethernet Adapter (test mode)" },
    115   1.1  jdolecek 	{ MCA_PRODUCT_3C529_2T, "3c529 Ethernet Adapter (10base2/T)" },
    116   1.1  jdolecek 	{ MCA_PRODUCT_3C529_T,	"3c529 Ethernet Adapter (10baseT)"   },
    117   1.1  jdolecek 
    118   1.1  jdolecek 	{ 0,			NULL },
    119   1.1  jdolecek };
    120   1.1  jdolecek 
    121   1.1  jdolecek static const struct ep_mca_product *ep_mca_lookup
    122  1.12     perry    (const struct mca_attach_args *);
    123   1.1  jdolecek 
    124   1.1  jdolecek static const struct ep_mca_product *
    125  1.22       dsl ep_mca_lookup(const struct mca_attach_args *ma)
    126   1.1  jdolecek {
    127   1.1  jdolecek 	const struct ep_mca_product *epp;
    128   1.1  jdolecek 
    129   1.1  jdolecek 	for (epp = ep_mca_products; epp->epp_name != NULL; epp++)
    130   1.1  jdolecek 		if (ma->ma_id == epp->epp_prodid)
    131   1.1  jdolecek 			return (epp);
    132   1.1  jdolecek 
    133   1.1  jdolecek 	return (NULL);
    134   1.1  jdolecek }
    135   1.1  jdolecek 
    136   1.1  jdolecek int
    137  1.21  christos ep_mca_match(device_t parent, cfdata_t match, void *aux)
    138   1.1  jdolecek {
    139   1.1  jdolecek 	struct mca_attach_args *ma = (struct mca_attach_args *) aux;
    140   1.1  jdolecek 
    141   1.1  jdolecek 	if (ep_mca_lookup(ma) != NULL)
    142   1.1  jdolecek 		return (1);
    143   1.1  jdolecek 
    144   1.1  jdolecek 	return (0);
    145   1.1  jdolecek }
    146   1.1  jdolecek 
    147   1.1  jdolecek void
    148  1.21  christos ep_mca_attach(device_t parent, device_t self, void *aux)
    149   1.1  jdolecek {
    150  1.15   thorpej 	struct ep_softc *sc = device_private(self);
    151   1.1  jdolecek 	struct mca_attach_args *ma = aux;
    152   1.1  jdolecek 	bus_space_handle_t ioh;
    153   1.1  jdolecek 	int pos4, pos5, iobase, irq, media;
    154   1.1  jdolecek 	const struct ep_mca_product *epp;
    155   1.1  jdolecek 
    156   1.1  jdolecek 	pos4 = mca_conf_read(ma->ma_mc, ma->ma_slot, 4);
    157   1.1  jdolecek 	pos5 = mca_conf_read(ma->ma_mc, ma->ma_slot, 5);
    158   1.1  jdolecek 
    159   1.1  jdolecek 	/*
    160   1.1  jdolecek 	 * POS register 2: (adf pos0)
    161   1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    162   1.1  jdolecek 	 *               \__ enable: 0=adapter disabled, 1=adapter enabled
    163   1.1  jdolecek 	 *
    164   1.1  jdolecek 	 * POS register 3: (adf pos1)
    165  1.13     perry 	 *
    166   1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    167   1.1  jdolecek 	 * \________/
    168   1.1  jdolecek 	 *          \_______ Boot ROM Address Range: 0=disabled
    169   1.1  jdolecek 	 *                     X=0xc2000-0xc3fff + (x * 0x2000)
    170   1.1  jdolecek 	 *
    171   1.1  jdolecek 	 * POS register 4: (adf pos2)
    172  1.13     perry 	 *
    173   1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    174  1.13     perry 	 * \________/  \_/
    175   1.1  jdolecek 	 *          \    \__ Transceiver Type: 00=on-board (RJ45), 01=ext(AUI)
    176   1.1  jdolecek 	 *           \______ I/O Address Range: 0x200-0x20f + ((x>>2) * 0x400)
    177   1.1  jdolecek 	 *
    178   1.1  jdolecek 	 * POS register 5: (adf pos3)
    179  1.13     perry 	 *
    180   1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    181   1.1  jdolecek 	 *          \____/
    182   1.1  jdolecek 	 *               \__ Interrupt level
    183   1.1  jdolecek 	 */
    184   1.1  jdolecek 
    185   1.1  jdolecek 	iobase = MCA_CBIO + (((pos4 & 0xfc) >> 2) * 0x400);
    186   1.3  jdolecek 	irq = (pos5 & 0x0f);
    187   1.1  jdolecek 
    188  1.21  christos 	sc->sc_dev = self;
    189   1.1  jdolecek 	/* map the pio registers */
    190   1.1  jdolecek 	if (bus_space_map(ma->ma_iot, iobase, MCA_IOSZ, 0, &ioh)) {
    191  1.21  christos 		aprint_error_dev(sc->sc_dev, "unable to map i/o space\n");
    192   1.1  jdolecek 		return;
    193   1.1  jdolecek 	}
    194   1.1  jdolecek 
    195   1.1  jdolecek 	sc->sc_iot = ma->ma_iot;
    196   1.1  jdolecek 	sc->sc_ioh = ioh;
    197   1.1  jdolecek 
    198   1.1  jdolecek 	epp = ep_mca_lookup(ma);
    199   1.1  jdolecek 	if (epp == NULL) {
    200   1.1  jdolecek 		printf("\n");
    201   1.1  jdolecek 		panic("ep_mca_attach: impossible");
    202   1.1  jdolecek 	}
    203   1.1  jdolecek 
    204   1.3  jdolecek 	printf(" slot %d irq %d: 3Com %s\n", ma->ma_slot + 1,
    205   1.3  jdolecek 		irq, epp->epp_name);
    206   1.1  jdolecek 
    207   1.1  jdolecek 	sc->enable = NULL;
    208   1.1  jdolecek 	sc->disable = NULL;
    209   1.1  jdolecek 	sc->enabled = 1;
    210   1.1  jdolecek 
    211   1.1  jdolecek 	sc->bustype = ELINK_BUS_MCA;
    212   1.1  jdolecek 	sc->ep_flags = 0;
    213   1.1  jdolecek 
    214   1.1  jdolecek 	if (epconfig(sc, ELINK_CHIPSET_3C509, NULL))
    215   1.1  jdolecek 		return;
    216   1.1  jdolecek 
    217   1.1  jdolecek 	/* Map and establish the interrupt. */
    218   1.1  jdolecek 	sc->sc_ih = mca_intr_establish(ma->ma_mc, irq, IPL_NET, epintr, sc);
    219   1.1  jdolecek 	if (sc->sc_ih == NULL) {
    220  1.21  christos 		aprint_error_dev(sc->sc_dev, "couldn't establish interrupt handler\n");
    221   1.1  jdolecek 		return;
    222   1.1  jdolecek 	}
    223   1.1  jdolecek 
    224   1.1  jdolecek 	/*
    225   1.1  jdolecek 	 * Set default media to be same as the one selected in POS.
    226   1.1  jdolecek 	 */
    227   1.1  jdolecek 	switch (pos4 & 0x03) {
    228   1.1  jdolecek 	case 0x00:
    229   1.1  jdolecek 		/* on-board RJ-45 */
    230   1.1  jdolecek 		media = IFM_10_T;
    231   1.1  jdolecek 		break;
    232   1.1  jdolecek 	case 0x01:
    233   1.1  jdolecek 		/* external AUI */
    234   1.1  jdolecek 		media = IFM_10_5;
    235   1.1  jdolecek 		break;
    236   1.1  jdolecek 	case 0x02:
    237   1.1  jdolecek 		/* undefined, should never be set */
    238   1.1  jdolecek 		media = IFM_NONE;
    239   1.1  jdolecek 		break;
    240   1.1  jdolecek 	case 0x03:
    241   1.1  jdolecek 		/* BNC */
    242   1.1  jdolecek 		media = IFM_10_2;
    243   1.1  jdolecek 		break;
    244  1.11  christos 	default:
    245  1.21  christos 		aprint_error_dev(sc->sc_dev, " cannot determine media\n");
    246  1.11  christos 		return;
    247   1.1  jdolecek 	}
    248   1.1  jdolecek 	ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|media);
    249   1.1  jdolecek }
    250