Home | History | Annotate | Line # | Download | only in pcmcia
if_sm_pcmcia.c revision 1.54.22.2
      1  1.54.22.2  jdolecek /*	$NetBSD: if_sm_pcmcia.c,v 1.54.22.2 2017/12/03 11:37:31 jdolecek 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.54.22.2  jdolecek __KERNEL_RCSID(0, "$NetBSD: if_sm_pcmcia.c,v 1.54.22.2 2017/12/03 11:37:31 jdolecek 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.54    cegger int	sm_pcmcia_match(device_t, cfdata_t, void *);
     65       1.45     perry int	sm_pcmcia_validate_config(struct pcmcia_config_entry *);
     66       1.54    cegger void	sm_pcmcia_attach(device_t, device_t, void *);
     67       1.54    cegger 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.54.22.1       tls CFATTACH_DECL_NEW(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.54    cegger 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.52       dsl 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.54    cegger sm_pcmcia_attach(device_t parent, device_t self, void *aux)
    136        1.2   thorpej {
    137  1.54.22.1       tls 	struct sm_pcmcia_softc *psc = device_private(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.54.22.1       tls 	sc->sc_dev = self;
    145        1.2   thorpej 	psc->sc_pf = pa->pf;
    146       1.35   mycroft 
    147       1.39   mycroft 	error = pcmcia_function_configure(pa->pf, sm_pcmcia_validate_config);
    148       1.39   mycroft 	if (error) {
    149  1.54.22.2  jdolecek 		aprint_error_dev(self, "configure failed, error=%d\n", 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.54.22.2  jdolecek 			aprint_error_dev(self,
    174  1.54.22.2  jdolecek 			    "unable to get Ethernet address\n");
    175       1.10   thorpej 	}
    176       1.10   thorpej 
    177        1.7   thorpej 	/* Perform generic intialization. */
    178        1.7   thorpej 	smc91cxx_attach(sc, enaddr);
    179        1.7   thorpej 
    180       1.39   mycroft 	psc->sc_state = SM_PCMCIA_ATTACHED;
    181       1.38   mycroft 	sm_pcmcia_disable(sc);
    182       1.21     enami 	return;
    183       1.21     enami 
    184       1.39   mycroft fail:
    185       1.39   mycroft 	pcmcia_function_unconfigure(pa->pf);
    186       1.13   thorpej }
    187       1.13   thorpej 
    188       1.13   thorpej int
    189       1.54    cegger sm_pcmcia_detach(device_t self, int flags)
    190       1.13   thorpej {
    191  1.54.22.1       tls 	struct sm_pcmcia_softc *psc = device_private(self);
    192       1.39   mycroft 	int error;
    193       1.14   thorpej 
    194       1.39   mycroft 	if (psc->sc_state != SM_PCMCIA_ATTACHED)
    195       1.21     enami 		return (0);
    196       1.14   thorpej 
    197       1.54    cegger 	error = smc91cxx_detach((device_t)&psc->sc_smc, flags);
    198       1.39   mycroft 	if (error)
    199       1.39   mycroft 		return (error);
    200       1.21     enami 
    201       1.39   mycroft 	pcmcia_function_unconfigure(psc->sc_pf);
    202       1.14   thorpej 
    203       1.21     enami 	return (0);
    204        1.7   thorpej }
    205        1.7   thorpej 
    206        1.7   thorpej int
    207       1.52       dsl sm_pcmcia_ascii_enaddr(const char *cisstr, u_int8_t *myla)
    208        1.7   thorpej {
    209       1.18   thorpej 	u_int8_t digit;
    210       1.18   thorpej 	int i;
    211        1.7   thorpej 
    212       1.31   mycroft 	/* No CIS string. */
    213       1.31   mycroft 	if (cisstr == 0)
    214       1.31   mycroft 		return (0);
    215       1.31   mycroft 
    216       1.18   thorpej 	memset(myla, 0, ETHER_ADDR_LEN);
    217       1.18   thorpej 
    218       1.18   thorpej 	for (i = 0, digit = 0; i < (ETHER_ADDR_LEN * 2); i++) {
    219       1.18   thorpej 		if (cisstr[i] >= '0' && cisstr[i] <= '9')
    220       1.18   thorpej 			digit |= cisstr[i] - '0';
    221       1.18   thorpej 		else if (cisstr[i] >= 'a' && cisstr[i] <= 'f')
    222       1.18   thorpej 			digit |= (cisstr[i] - 'a') + 10;
    223       1.18   thorpej 		else if (cisstr[i] >= 'A' && cisstr[i] <= 'F')
    224       1.18   thorpej 			digit |= (cisstr[i] - 'A') + 10;
    225       1.18   thorpej 		else {
    226       1.18   thorpej 			/* Bogus digit!! */
    227       1.18   thorpej 			return (0);
    228        1.2   thorpej 		}
    229       1.18   thorpej 
    230       1.18   thorpej 		/* Compensate for ordering of digits. */
    231       1.18   thorpej 		if (i & 1) {
    232       1.18   thorpej 			myla[i >> 1] = digit;
    233       1.18   thorpej 			digit = 0;
    234       1.18   thorpej 		} else
    235       1.18   thorpej 			digit <<= 4;
    236        1.2   thorpej 	}
    237        1.2   thorpej 
    238        1.7   thorpej 	return (1);
    239        1.7   thorpej }
    240        1.7   thorpej 
    241        1.7   thorpej int
    242       1.52       dsl sm_pcmcia_enable(struct smc91cxx_softc *sc)
    243        1.2   thorpej {
    244        1.2   thorpej 	struct sm_pcmcia_softc *psc = (struct sm_pcmcia_softc *)sc;
    245       1.38   mycroft 	int error;
    246       1.19    itojun 
    247        1.2   thorpej 	/* Establish the interrupt handler. */
    248        1.2   thorpej 	psc->sc_ih = pcmcia_intr_establish(psc->sc_pf, IPL_NET, smc91cxx_intr,
    249        1.2   thorpej 	    sc);
    250       1.41   mycroft 	if (!psc->sc_ih)
    251       1.41   mycroft 		return (EIO);
    252       1.37   mycroft 
    253       1.38   mycroft 	error = pcmcia_function_enable(psc->sc_pf);
    254       1.42   mycroft 	if (error) {
    255       1.37   mycroft 		pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    256       1.42   mycroft 		psc->sc_ih = 0;
    257       1.42   mycroft 	}
    258       1.37   mycroft 
    259       1.38   mycroft 	return (error);
    260        1.2   thorpej }
    261        1.2   thorpej 
    262        1.2   thorpej void
    263       1.52       dsl sm_pcmcia_disable(struct smc91cxx_softc *sc)
    264        1.2   thorpej {
    265        1.2   thorpej 	struct sm_pcmcia_softc *psc = (struct sm_pcmcia_softc *)sc;
    266        1.2   thorpej 
    267       1.37   mycroft 	pcmcia_function_disable(psc->sc_pf);
    268       1.25     pooka 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    269       1.39   mycroft 	psc->sc_ih = 0;
    270        1.2   thorpej }
    271