Home | History | Annotate | Line # | Download | only in pcmcia
if_sm_pcmcia.c revision 1.50.4.3
      1  1.50.4.3      yamt /*	$NetBSD: if_sm_pcmcia.c,v 1.50.4.3 2009/05/16 10:41:41 yamt Exp $	*/
      2       1.2   thorpej 
      3       1.2   thorpej /*-
      4      1.40   mycroft  * Copyright (c) 1997, 1998, 2000, 2004 The NetBSD Foundation, Inc.
      5       1.2   thorpej  * All rights reserved.
      6       1.2   thorpej  *
      7       1.2   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9      1.40   mycroft  * NASA Ames Research Center, and by Charles M. Hannum.
     10       1.2   thorpej  *
     11       1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     12       1.2   thorpej  * modification, are permitted provided that the following conditions
     13       1.2   thorpej  * are met:
     14       1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     15       1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     16       1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18       1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     19       1.2   thorpej  *
     20       1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.2   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.2   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.2   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.2   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.2   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.2   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.2   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.2   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.2   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.2   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31       1.2   thorpej  */
     32      1.26     lukem 
     33      1.26     lukem #include <sys/cdefs.h>
     34  1.50.4.3      yamt __KERNEL_RCSID(0, "$NetBSD: if_sm_pcmcia.c,v 1.50.4.3 2009/05/16 10:41:41 yamt Exp $");
     35       1.2   thorpej 
     36       1.2   thorpej #include <sys/param.h>
     37       1.2   thorpej #include <sys/systm.h>
     38       1.2   thorpej #include <sys/mbuf.h>
     39       1.2   thorpej #include <sys/socket.h>
     40       1.2   thorpej #include <sys/ioctl.h>
     41       1.2   thorpej #include <sys/errno.h>
     42       1.2   thorpej #include <sys/syslog.h>
     43       1.2   thorpej #include <sys/select.h>
     44       1.2   thorpej #include <sys/device.h>
     45       1.2   thorpej 
     46       1.2   thorpej #include <net/if.h>
     47       1.2   thorpej #include <net/if_dl.h>
     48       1.2   thorpej #include <net/if_ether.h>
     49       1.2   thorpej #include <net/if_media.h>
     50       1.2   thorpej 
     51      1.49        ad #include <sys/intr.h>
     52      1.49        ad #include <sys/bus.h>
     53      1.23    briggs 
     54      1.23    briggs #include <dev/mii/mii.h>
     55      1.23    briggs #include <dev/mii/miivar.h>
     56       1.2   thorpej 
     57       1.2   thorpej #include <dev/ic/smc91cxxreg.h>
     58       1.2   thorpej #include <dev/ic/smc91cxxvar.h>
     59       1.2   thorpej 
     60       1.2   thorpej #include <dev/pcmcia/pcmciareg.h>
     61       1.2   thorpej #include <dev/pcmcia/pcmciavar.h>
     62       1.6  christos #include <dev/pcmcia/pcmciadevs.h>
     63       1.2   thorpej 
     64  1.50.4.3      yamt int	sm_pcmcia_match(device_t, cfdata_t, void *);
     65      1.45     perry int	sm_pcmcia_validate_config(struct pcmcia_config_entry *);
     66  1.50.4.3      yamt void	sm_pcmcia_attach(device_t, device_t, void *);
     67  1.50.4.3      yamt int	sm_pcmcia_detach(device_t, int);
     68       1.2   thorpej 
     69       1.2   thorpej struct sm_pcmcia_softc {
     70       1.2   thorpej 	struct	smc91cxx_softc sc_smc;		/* real "smc" softc */
     71       1.2   thorpej 
     72      1.43   mycroft 	struct	pcmcia_function *sc_pf;		/* our PCMCIA function */
     73       1.2   thorpej 	void	*sc_ih;				/* interrupt cookie */
     74      1.39   mycroft 
     75      1.39   mycroft 	int	sc_state;
     76      1.39   mycroft #define	SM_PCMCIA_ATTACHED	3
     77       1.2   thorpej };
     78       1.2   thorpej 
     79      1.29   thorpej CFATTACH_DECL(sm_pcmcia, sizeof(struct sm_pcmcia_softc),
     80      1.30   thorpej     sm_pcmcia_match, sm_pcmcia_attach, sm_pcmcia_detach, smc91cxx_activate);
     81       1.2   thorpej 
     82      1.45     perry int	sm_pcmcia_enable(struct smc91cxx_softc *);
     83      1.45     perry void	sm_pcmcia_disable(struct smc91cxx_softc *);
     84       1.2   thorpej 
     85      1.45     perry int	sm_pcmcia_ascii_enaddr(const char *, u_int8_t *);
     86       1.7   thorpej 
     87      1.20       cgd const struct pcmcia_product sm_pcmcia_products[] = {
     88      1.43   mycroft 	{ PCMCIA_VENDOR_MEGAHERTZ2, PCMCIA_PRODUCT_MEGAHERTZ2_EM1144,
     89      1.43   mycroft 	  PCMCIA_CIS_INVALID },
     90      1.31   mycroft 
     91      1.43   mycroft 	{ PCMCIA_VENDOR_MEGAHERTZ2, PCMCIA_PRODUCT_MEGAHERTZ2_XJACK,
     92      1.43   mycroft 	  PCMCIA_CIS_INVALID },
     93      1.16       abs 
     94      1.43   mycroft 	{ PCMCIA_VENDOR_NEWMEDIA, PCMCIA_PRODUCT_NEWMEDIA_BASICS,
     95      1.43   mycroft 	  PCMCIA_CIS_INVALID },
     96      1.10   thorpej 
     97      1.11   thorpej #if 0
     98      1.43   mycroft 	{ PCMCIA_VENDOR_SMC, PCMCIA_PRODUCT_SMC_8020BT,
     99      1.43   mycroft 	  PCMCIA_CIS_INVALID },
    100      1.11   thorpej #endif
    101      1.43   mycroft 	{ PCMCIA_VENDOR_PSION, PCMCIA_PRODUCT_PSION_GOLDCARD,
    102      1.43   mycroft 	  PCMCIA_CIS_INVALID },
    103       1.7   thorpej };
    104      1.43   mycroft const size_t sm_pcmcia_nproducts =
    105      1.43   mycroft     sizeof(sm_pcmcia_products) / sizeof(sm_pcmcia_products[0]);
    106       1.7   thorpej 
    107       1.2   thorpej int
    108  1.50.4.3      yamt sm_pcmcia_match(device_t parent, cfdata_t match,
    109      1.47  christos     void *aux)
    110       1.2   thorpej {
    111       1.2   thorpej 	struct pcmcia_attach_args *pa = aux;
    112       1.2   thorpej 
    113      1.43   mycroft 	/* This is to differentiate the serial function of some cards. */
    114      1.31   mycroft 	if (pa->pf->function != PCMCIA_FUNCTION_NETWORK)
    115      1.31   mycroft 		return (0);
    116      1.31   mycroft 
    117      1.43   mycroft 	if (pcmcia_product_lookup(pa, sm_pcmcia_products, sm_pcmcia_nproducts,
    118      1.43   mycroft 	    sizeof(sm_pcmcia_products[0]), NULL))
    119       1.7   thorpej 		return (1);
    120       1.2   thorpej 	return (0);
    121       1.2   thorpej }
    122       1.2   thorpej 
    123      1.39   mycroft int
    124  1.50.4.2      yamt sm_pcmcia_validate_config(struct pcmcia_config_entry *cfe)
    125      1.39   mycroft {
    126      1.39   mycroft 	if (cfe->iftype != PCMCIA_IFTYPE_IO ||
    127      1.39   mycroft 	    cfe->num_memspace != 0 ||
    128      1.39   mycroft 	    cfe->num_iospace != 1 ||
    129      1.39   mycroft 	    cfe->iospace[0].length < SMC_IOSIZE)
    130      1.39   mycroft 		return (EINVAL);
    131      1.39   mycroft 	return (0);
    132      1.39   mycroft }
    133      1.39   mycroft 
    134       1.2   thorpej void
    135  1.50.4.3      yamt sm_pcmcia_attach(device_t parent, device_t self, void *aux)
    136       1.2   thorpej {
    137       1.2   thorpej 	struct sm_pcmcia_softc *psc = (struct sm_pcmcia_softc *)self;
    138       1.2   thorpej 	struct smc91cxx_softc *sc = &psc->sc_smc;
    139       1.2   thorpej 	struct pcmcia_attach_args *pa = aux;
    140       1.2   thorpej 	struct pcmcia_config_entry *cfe;
    141      1.32   mycroft 	u_int8_t enaddr[ETHER_ADDR_LEN];
    142      1.39   mycroft 	int error;
    143       1.2   thorpej 
    144       1.2   thorpej 	psc->sc_pf = pa->pf;
    145      1.35   mycroft 
    146      1.39   mycroft 	error = pcmcia_function_configure(pa->pf, sm_pcmcia_validate_config);
    147      1.39   mycroft 	if (error) {
    148      1.50    cegger 		aprint_error_dev(self, "configure failed, error=%d\n",
    149      1.39   mycroft 		    error);
    150      1.39   mycroft 		return;
    151       1.2   thorpej 	}
    152       1.2   thorpej 
    153      1.39   mycroft 	cfe = pa->pf->cfe;
    154      1.39   mycroft 	sc->sc_bst = cfe->iospace[0].handle.iot;
    155      1.39   mycroft 	sc->sc_bsh = cfe->iospace[0].handle.ioh;
    156      1.39   mycroft 
    157      1.39   mycroft 	error = sm_pcmcia_enable(sc);
    158      1.41   mycroft 	if (error)
    159      1.39   mycroft 		goto fail;
    160      1.38   mycroft 
    161      1.38   mycroft 	sc->sc_enable = sm_pcmcia_enable;
    162      1.38   mycroft 	sc->sc_disable = sm_pcmcia_disable;
    163      1.38   mycroft 
    164      1.10   thorpej 	/*
    165      1.10   thorpej 	 * First try to get the Ethernet address from FUNCE/LANNID tuple.
    166      1.32   mycroft 	 * If that fails, try one of the CIS info strings.
    167      1.10   thorpej 	 */
    168      1.32   mycroft 	if (pa->pf->pf_funce_lan_nidlen == ETHER_ADDR_LEN) {
    169      1.32   mycroft 		memcpy(enaddr, pa->pf->pf_funce_lan_nid, ETHER_ADDR_LEN);
    170      1.32   mycroft 	} else {
    171      1.32   mycroft 		if (!sm_pcmcia_ascii_enaddr(pa->pf->sc->card.cis1_info[3], enaddr) &&
    172      1.32   mycroft 		    !sm_pcmcia_ascii_enaddr(pa->pf->sc->card.cis1_info[2], enaddr))
    173      1.50    cegger 			aprint_error_dev(self, "unable to get Ethernet address\n");
    174      1.10   thorpej 	}
    175      1.10   thorpej 
    176       1.7   thorpej 	/* Perform generic intialization. */
    177       1.7   thorpej 	smc91cxx_attach(sc, enaddr);
    178       1.7   thorpej 
    179      1.39   mycroft 	psc->sc_state = SM_PCMCIA_ATTACHED;
    180      1.38   mycroft 	sm_pcmcia_disable(sc);
    181      1.21     enami 	return;
    182      1.21     enami 
    183      1.39   mycroft fail:
    184      1.39   mycroft 	pcmcia_function_unconfigure(pa->pf);
    185      1.13   thorpej }
    186      1.13   thorpej 
    187      1.13   thorpej int
    188  1.50.4.3      yamt sm_pcmcia_detach(device_t self, int flags)
    189      1.13   thorpej {
    190      1.14   thorpej 	struct sm_pcmcia_softc *psc = (struct sm_pcmcia_softc *)self;
    191      1.39   mycroft 	int error;
    192      1.14   thorpej 
    193      1.39   mycroft 	if (psc->sc_state != SM_PCMCIA_ATTACHED)
    194      1.21     enami 		return (0);
    195      1.14   thorpej 
    196  1.50.4.3      yamt 	error = smc91cxx_detach((device_t)&psc->sc_smc, flags);
    197      1.39   mycroft 	if (error)
    198      1.39   mycroft 		return (error);
    199      1.21     enami 
    200      1.39   mycroft 	pcmcia_function_unconfigure(psc->sc_pf);
    201      1.14   thorpej 
    202      1.21     enami 	return (0);
    203       1.7   thorpej }
    204       1.7   thorpej 
    205       1.7   thorpej int
    206  1.50.4.2      yamt sm_pcmcia_ascii_enaddr(const char *cisstr, u_int8_t *myla)
    207       1.7   thorpej {
    208      1.18   thorpej 	u_int8_t digit;
    209      1.18   thorpej 	int i;
    210       1.7   thorpej 
    211      1.31   mycroft 	/* No CIS string. */
    212      1.31   mycroft 	if (cisstr == 0)
    213      1.31   mycroft 		return (0);
    214      1.31   mycroft 
    215      1.18   thorpej 	memset(myla, 0, ETHER_ADDR_LEN);
    216      1.18   thorpej 
    217      1.18   thorpej 	for (i = 0, digit = 0; i < (ETHER_ADDR_LEN * 2); i++) {
    218      1.18   thorpej 		if (cisstr[i] >= '0' && cisstr[i] <= '9')
    219      1.18   thorpej 			digit |= cisstr[i] - '0';
    220      1.18   thorpej 		else if (cisstr[i] >= 'a' && cisstr[i] <= 'f')
    221      1.18   thorpej 			digit |= (cisstr[i] - 'a') + 10;
    222      1.18   thorpej 		else if (cisstr[i] >= 'A' && cisstr[i] <= 'F')
    223      1.18   thorpej 			digit |= (cisstr[i] - 'A') + 10;
    224      1.18   thorpej 		else {
    225      1.18   thorpej 			/* Bogus digit!! */
    226      1.18   thorpej 			return (0);
    227       1.2   thorpej 		}
    228      1.18   thorpej 
    229      1.18   thorpej 		/* Compensate for ordering of digits. */
    230      1.18   thorpej 		if (i & 1) {
    231      1.18   thorpej 			myla[i >> 1] = digit;
    232      1.18   thorpej 			digit = 0;
    233      1.18   thorpej 		} else
    234      1.18   thorpej 			digit <<= 4;
    235       1.2   thorpej 	}
    236       1.2   thorpej 
    237       1.7   thorpej 	return (1);
    238       1.7   thorpej }
    239       1.7   thorpej 
    240       1.7   thorpej int
    241  1.50.4.2      yamt sm_pcmcia_enable(struct smc91cxx_softc *sc)
    242       1.2   thorpej {
    243       1.2   thorpej 	struct sm_pcmcia_softc *psc = (struct sm_pcmcia_softc *)sc;
    244      1.38   mycroft 	int error;
    245      1.19    itojun 
    246       1.2   thorpej 	/* Establish the interrupt handler. */
    247       1.2   thorpej 	psc->sc_ih = pcmcia_intr_establish(psc->sc_pf, IPL_NET, smc91cxx_intr,
    248       1.2   thorpej 	    sc);
    249      1.41   mycroft 	if (!psc->sc_ih)
    250      1.41   mycroft 		return (EIO);
    251      1.37   mycroft 
    252      1.38   mycroft 	error = pcmcia_function_enable(psc->sc_pf);
    253      1.42   mycroft 	if (error) {
    254      1.37   mycroft 		pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    255      1.42   mycroft 		psc->sc_ih = 0;
    256      1.42   mycroft 	}
    257      1.37   mycroft 
    258      1.38   mycroft 	return (error);
    259       1.2   thorpej }
    260       1.2   thorpej 
    261       1.2   thorpej void
    262  1.50.4.2      yamt sm_pcmcia_disable(struct smc91cxx_softc *sc)
    263       1.2   thorpej {
    264       1.2   thorpej 	struct sm_pcmcia_softc *psc = (struct sm_pcmcia_softc *)sc;
    265       1.2   thorpej 
    266      1.37   mycroft 	pcmcia_function_disable(psc->sc_pf);
    267      1.25     pooka 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    268      1.39   mycroft 	psc->sc_ih = 0;
    269       1.2   thorpej }
    270