Home | History | Annotate | Line # | Download | only in pcmcia
mhzc.c revision 1.14.2.1
      1  1.14.2.1    skrll /*	$NetBSD: mhzc.c,v 1.14.2.1 2004/08/12 11:42:01 skrll Exp $	*/
      2       1.1  thorpej 
      3       1.1  thorpej /*-
      4  1.14.2.1    skrll  * Copyright (c) 1999, 2000, 2004 The NetBSD Foundation, Inc.
      5       1.1  thorpej  * All rights reserved.
      6       1.1  thorpej  *
      7       1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  1.14.2.1    skrll  * NASA Ames Research Center, and by Charles M. Hannum.
     10       1.1  thorpej  *
     11       1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     12       1.1  thorpej  * modification, are permitted provided that the following conditions
     13       1.1  thorpej  * are met:
     14       1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     15       1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     16       1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18       1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     19       1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     20       1.1  thorpej  *    must display the following acknowledgement:
     21       1.1  thorpej  *	This product includes software developed by the NetBSD
     22       1.1  thorpej  *	Foundation, Inc. and its contributors.
     23       1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24       1.1  thorpej  *    contributors may be used to endorse or promote products derived
     25       1.1  thorpej  *    from this software without specific prior written permission.
     26       1.1  thorpej  *
     27       1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28       1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29       1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30       1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31       1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32       1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33       1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34       1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35       1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36       1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37       1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38       1.1  thorpej  */
     39       1.1  thorpej 
     40       1.1  thorpej /*
     41       1.1  thorpej  * Device driver for the Megaherz X-JACK Ethernet/Modem combo cards.
     42       1.1  thorpej  *
     43       1.1  thorpej  * Many thanks to Chuck Cranor for having the patience to sift through
     44       1.1  thorpej  * the Linux smc91c92_cs.c driver to find the magic details to get this
     45       1.1  thorpej  * working!
     46       1.1  thorpej  */
     47       1.8    lukem 
     48       1.8    lukem #include <sys/cdefs.h>
     49  1.14.2.1    skrll __KERNEL_RCSID(0, "$NetBSD: mhzc.c,v 1.14.2.1 2004/08/12 11:42:01 skrll Exp $");
     50       1.1  thorpej 
     51       1.1  thorpej #include "opt_inet.h"
     52       1.1  thorpej #include "opt_ns.h"
     53       1.1  thorpej #include "bpfilter.h"
     54       1.1  thorpej 
     55       1.1  thorpej #include <sys/param.h>
     56       1.1  thorpej #include <sys/systm.h>
     57       1.1  thorpej #include <sys/mbuf.h>
     58       1.1  thorpej #include <sys/socket.h>
     59       1.1  thorpej #include <sys/ioctl.h>
     60       1.1  thorpej #include <sys/errno.h>
     61       1.1  thorpej #include <sys/syslog.h>
     62       1.1  thorpej #include <sys/select.h>
     63       1.1  thorpej #include <sys/tty.h>
     64       1.1  thorpej #include <sys/device.h>
     65       1.1  thorpej 
     66       1.1  thorpej #include <net/if.h>
     67       1.1  thorpej #include <net/if_dl.h>
     68       1.1  thorpej #include <net/if_ether.h>
     69       1.1  thorpej #include <net/if_media.h>
     70       1.1  thorpej 
     71       1.1  thorpej #ifdef INET
     72       1.1  thorpej #include <netinet/in.h>
     73       1.1  thorpej #include <netinet/in_systm.h>
     74       1.1  thorpej #include <netinet/in_var.h>
     75       1.1  thorpej #include <netinet/ip.h>
     76       1.1  thorpej #include <netinet/if_inarp.h>
     77       1.1  thorpej #endif
     78       1.1  thorpej 
     79       1.1  thorpej #ifdef NS
     80       1.1  thorpej #include <netns/ns.h>
     81       1.1  thorpej #include <netns/ns_if.h>
     82       1.1  thorpej #endif
     83       1.1  thorpej 
     84       1.1  thorpej #if NBPFILTER > 0
     85       1.1  thorpej #include <net/bpf.h>
     86       1.1  thorpej #include <net/bpfdesc.h>
     87       1.1  thorpej #endif
     88       1.1  thorpej 
     89       1.1  thorpej #include <machine/intr.h>
     90       1.1  thorpej #include <machine/bus.h>
     91       1.1  thorpej 
     92       1.1  thorpej #include <dev/ic/comreg.h>
     93       1.1  thorpej #include <dev/ic/comvar.h>
     94       1.6   briggs 
     95       1.6   briggs #include <dev/mii/mii.h>
     96       1.6   briggs #include <dev/mii/miivar.h>
     97       1.1  thorpej 
     98       1.1  thorpej #include <dev/ic/smc91cxxreg.h>
     99       1.1  thorpej #include <dev/ic/smc91cxxvar.h>
    100       1.1  thorpej 
    101       1.1  thorpej #include <dev/pcmcia/pcmciareg.h>
    102       1.1  thorpej #include <dev/pcmcia/pcmciavar.h>
    103       1.1  thorpej #include <dev/pcmcia/pcmciadevs.h>
    104       1.1  thorpej 
    105       1.1  thorpej #include "mhzc.h"
    106       1.1  thorpej 
    107       1.1  thorpej struct mhzc_softc {
    108       1.1  thorpej 	struct device sc_dev;		/* generic device glue */
    109       1.1  thorpej 
    110       1.1  thorpej 	struct pcmcia_function *sc_pf;	/* our PCMCIA function */
    111       1.1  thorpej 	void *sc_ih;			/* interrupt handle */
    112       1.1  thorpej 
    113       1.1  thorpej 	const struct mhzc_product *sc_product;
    114       1.1  thorpej 
    115       1.1  thorpej 	/*
    116       1.1  thorpej 	 * Data for the Modem portion.
    117       1.1  thorpej 	 */
    118       1.1  thorpej 	struct device *sc_modem;
    119       1.1  thorpej 	struct pcmcia_io_handle sc_modem_pcioh;
    120       1.1  thorpej 	int sc_modem_io_window;
    121       1.1  thorpej 
    122       1.1  thorpej 	/*
    123       1.1  thorpej 	 * Data for the Ethernet portion.
    124       1.1  thorpej 	 */
    125       1.1  thorpej 	struct device *sc_ethernet;
    126       1.1  thorpej 	struct pcmcia_io_handle sc_ethernet_pcioh;
    127       1.1  thorpej 	int sc_ethernet_io_window;
    128       1.1  thorpej 
    129       1.1  thorpej 	int sc_flags;
    130       1.1  thorpej };
    131       1.1  thorpej 
    132       1.1  thorpej /* sc_flags */
    133       1.1  thorpej #define	MHZC_MODEM_MAPPED	0x01
    134       1.1  thorpej #define	MHZC_ETHERNET_MAPPED	0x02
    135       1.1  thorpej #define	MHZC_MODEM_ENABLED	0x04
    136       1.1  thorpej #define	MHZC_ETHERNET_ENABLED	0x08
    137  1.14.2.1    skrll #define	MHZC_MODEM_ALLOCED	0x10
    138  1.14.2.1    skrll #define	MHZC_ETHERNET_ALLOCED	0x20
    139       1.1  thorpej 
    140       1.1  thorpej int	mhzc_match __P((struct device *, struct cfdata *, void *));
    141       1.1  thorpej void	mhzc_attach __P((struct device *, struct device *, void *));
    142       1.1  thorpej int	mhzc_detach __P((struct device *, int));
    143       1.1  thorpej int	mhzc_activate __P((struct device *, enum devact));
    144       1.1  thorpej 
    145      1.12  thorpej CFATTACH_DECL(mhzc, sizeof(struct mhzc_softc),
    146      1.13  thorpej     mhzc_match, mhzc_attach, mhzc_detach, mhzc_activate);
    147       1.1  thorpej 
    148       1.1  thorpej int	mhzc_em3336_enaddr __P((struct mhzc_softc *, u_int8_t *));
    149       1.1  thorpej int	mhzc_em3336_enable __P((struct mhzc_softc *));
    150       1.1  thorpej 
    151       1.4      cgd const struct mhzc_product {
    152       1.4      cgd 	struct pcmcia_product mp_product;
    153       1.1  thorpej 
    154       1.1  thorpej 	/* Get the Ethernet address for this card. */
    155       1.1  thorpej 	int		(*mp_enaddr) __P((struct mhzc_softc *, u_int8_t *));
    156       1.1  thorpej 
    157       1.1  thorpej 	/* Perform any special `enable' magic. */
    158       1.1  thorpej 	int		(*mp_enable) __P((struct mhzc_softc *));
    159       1.1  thorpej } mhzc_products[] = {
    160  1.14.2.1    skrll 	{ { PCMCIA_VENDOR_MEGAHERTZ, PCMCIA_PRODUCT_MEGAHERTZ_EM3336,
    161  1.14.2.1    skrll 	    PCMCIA_CIS_INVALID },
    162       1.1  thorpej 	  mhzc_em3336_enaddr,		mhzc_em3336_enable },
    163       1.1  thorpej };
    164  1.14.2.1    skrll static const size_t mhzc_nproducts =
    165  1.14.2.1    skrll     sizeof(mhzc_products) / sizeof(mhzc_products[0]);
    166       1.1  thorpej 
    167       1.1  thorpej int	mhzc_print __P((void *, const char *));
    168       1.1  thorpej 
    169       1.1  thorpej int	mhzc_check_cfe __P((struct mhzc_softc *, struct pcmcia_config_entry *));
    170       1.7      uwe int	mhzc_alloc_ethernet __P((struct mhzc_softc *, struct pcmcia_config_entry *));
    171       1.1  thorpej 
    172       1.1  thorpej int	mhzc_enable __P((struct mhzc_softc *, int));
    173       1.1  thorpej void	mhzc_disable __P((struct mhzc_softc *, int));
    174       1.1  thorpej 
    175       1.1  thorpej int	mhzc_intr __P((void *));
    176       1.1  thorpej 
    177       1.1  thorpej int
    178       1.1  thorpej mhzc_match(parent, match, aux)
    179       1.1  thorpej 	struct device *parent;
    180       1.1  thorpej 	struct cfdata *match;
    181       1.1  thorpej 	void *aux;
    182       1.1  thorpej {
    183       1.1  thorpej 	struct pcmcia_attach_args *pa = aux;
    184       1.1  thorpej 
    185  1.14.2.1    skrll 	if (pcmcia_product_lookup(pa, mhzc_products, mhzc_nproducts,
    186  1.14.2.1    skrll 	    sizeof(mhzc_products[0]), NULL))
    187  1.14.2.1    skrll 		return (2);		/* beat `com' */
    188       1.1  thorpej 	return (0);
    189       1.1  thorpej }
    190       1.1  thorpej 
    191       1.1  thorpej void
    192       1.1  thorpej mhzc_attach(parent, self, aux)
    193       1.1  thorpej 	struct device *parent, *self;
    194       1.1  thorpej 	void *aux;
    195       1.1  thorpej {
    196       1.1  thorpej 	struct mhzc_softc *sc = (void *)self;
    197       1.1  thorpej 	struct pcmcia_attach_args *pa = aux;
    198       1.1  thorpej 	struct pcmcia_config_entry *cfe;
    199  1.14.2.1    skrll 	int error;
    200       1.1  thorpej 
    201       1.1  thorpej 	sc->sc_pf = pa->pf;
    202       1.1  thorpej 
    203  1.14.2.1    skrll 	sc->sc_product = pcmcia_product_lookup(pa, mhzc_products,
    204  1.14.2.1    skrll 	    mhzc_nproducts, sizeof(mhzc_products[0]), NULL);
    205  1.14.2.1    skrll 	if (!sc->sc_product)
    206       1.1  thorpej 		panic("mhzc_attach: impossible");
    207       1.1  thorpej 
    208       1.1  thorpej 	/*
    209       1.1  thorpej 	 * The address decoders on these cards are wacky.  The configuration
    210       1.1  thorpej 	 * entries are set up to look like serial ports, and have no
    211       1.1  thorpej 	 * information about the Ethernet portion.  In order to talk to
    212       1.1  thorpej 	 * the Modem portion, the I/O address must have bit 0x80 set.
    213       1.1  thorpej 	 * In order to talk to the Ethernet portion, the I/O address must
    214       1.1  thorpej 	 * have the 0x80 bit clear.
    215       1.1  thorpej 	 *
    216       1.1  thorpej 	 * The standard configuration entries conveniently have 0x80 set
    217       1.1  thorpej 	 * in them, and have a length of 8 (a 16550's size, convenient!),
    218       1.1  thorpej 	 * so we use those to set up the Modem portion.
    219       1.1  thorpej 	 *
    220       1.1  thorpej 	 * Once we have the Modem's address established, we search for
    221       1.1  thorpej 	 * an address suitable for the Ethernet portion.  We do this by
    222       1.1  thorpej 	 * rounding up to the next 16-byte aligned address where 0x80
    223       1.1  thorpej 	 * isn't set (the SMC Ethernet chip has a 16-byte address size)
    224       1.1  thorpej 	 * and attemping to allocate a 16-byte region until we succeed.
    225       1.1  thorpej 	 *
    226       1.1  thorpej 	 * Sure would have been nice if Megahertz had made the card a
    227       1.1  thorpej 	 * proper multi-function device.
    228       1.1  thorpej 	 */
    229       1.9    lukem 	SIMPLEQ_FOREACH(cfe, &pa->pf->cfe_head, cfe_list) {
    230       1.1  thorpej 		if (mhzc_check_cfe(sc, cfe)) {
    231       1.1  thorpej 			/* Found one! */
    232       1.1  thorpej 			break;
    233       1.1  thorpej 		}
    234       1.1  thorpej 	}
    235       1.1  thorpej 	if (cfe == NULL) {
    236  1.14.2.1    skrll 		aprint_error("%s: unable to find suitable config table entry\n",
    237  1.14.2.1    skrll 		    self->dv_xname);
    238  1.14.2.1    skrll 		goto fail;
    239       1.1  thorpej 	}
    240       1.1  thorpej 
    241       1.7      uwe 	if (mhzc_alloc_ethernet(sc, cfe) == 0) {
    242  1.14.2.1    skrll 		aprint_error("%s: unable to allocate space for Ethernet portion\n",
    243  1.14.2.1    skrll 		    self->dv_xname);
    244  1.14.2.1    skrll 		goto fail;
    245       1.1  thorpej 	}
    246       1.1  thorpej 
    247       1.1  thorpej 	/* Enable the card. */
    248       1.1  thorpej 	pcmcia_function_init(pa->pf, cfe);
    249  1.14.2.1    skrll 
    250  1.14.2.1    skrll 	if (pcmcia_io_map(sc->sc_pf, PCMCIA_WIDTH_IO8, &sc->sc_modem_pcioh,
    251  1.14.2.1    skrll 	    &sc->sc_modem_io_window)) {
    252  1.14.2.1    skrll 		aprint_error("%s: unable to map I/O space\n",
    253  1.14.2.1    skrll 		    sc->sc_dev.dv_xname);
    254  1.14.2.1    skrll 		goto fail;
    255  1.14.2.1    skrll 	}
    256  1.14.2.1    skrll 	sc->sc_flags |= MHZC_MODEM_MAPPED;
    257  1.14.2.1    skrll 
    258  1.14.2.1    skrll 	if (pcmcia_io_map(sc->sc_pf, PCMCIA_WIDTH_AUTO, &sc->sc_ethernet_pcioh,
    259  1.14.2.1    skrll 	    &sc->sc_ethernet_io_window)) {
    260  1.14.2.1    skrll 		aprint_error("%s: unable to map I/O space\n",
    261  1.14.2.1    skrll 		    sc->sc_dev.dv_xname);
    262  1.14.2.1    skrll 		goto fail;
    263       1.1  thorpej 	}
    264  1.14.2.1    skrll 	sc->sc_flags |= MHZC_ETHERNET_MAPPED;
    265       1.1  thorpej 
    266  1.14.2.1    skrll 	error = mhzc_enable(sc, MHZC_MODEM_ENABLED|MHZC_ETHERNET_ENABLED);
    267  1.14.2.1    skrll 	if (error)
    268  1.14.2.1    skrll 		goto fail;
    269       1.1  thorpej 
    270  1.14.2.1    skrll 	sc->sc_modem = config_found(self, "com", mhzc_print);
    271  1.14.2.1    skrll 	sc->sc_ethernet = config_found(self, "sm", mhzc_print);
    272       1.1  thorpej 
    273  1.14.2.1    skrll 	mhzc_disable(sc, MHZC_MODEM_ENABLED|MHZC_ETHERNET_ENABLED);
    274       1.5    enami 	return;
    275       1.5    enami 
    276  1.14.2.1    skrll fail:
    277  1.14.2.1    skrll 	/* I/O spaces will be freed by detach. */
    278  1.14.2.1    skrll 	;
    279       1.1  thorpej }
    280       1.1  thorpej 
    281       1.1  thorpej int
    282       1.1  thorpej mhzc_check_cfe(sc, cfe)
    283       1.1  thorpej 	struct mhzc_softc *sc;
    284       1.1  thorpej 	struct pcmcia_config_entry *cfe;
    285       1.1  thorpej {
    286       1.1  thorpej 
    287       1.1  thorpej 	if (cfe->num_memspace != 0)
    288       1.1  thorpej 		return (0);
    289       1.1  thorpej 
    290       1.1  thorpej 	if (cfe->num_iospace != 1)
    291       1.1  thorpej 		return (0);
    292       1.1  thorpej 
    293       1.1  thorpej 	if (pcmcia_io_alloc(sc->sc_pf,
    294       1.1  thorpej 	    cfe->iospace[0].start,
    295       1.1  thorpej 	    cfe->iospace[0].length,
    296       1.1  thorpej 	    cfe->iospace[0].length,
    297       1.1  thorpej 	    &sc->sc_modem_pcioh) == 0) {
    298       1.1  thorpej 		/* Found one for the modem! */
    299  1.14.2.1    skrll 		sc->sc_flags |= MHZC_MODEM_ALLOCED;
    300       1.1  thorpej 		return (1);
    301       1.1  thorpej 	}
    302       1.1  thorpej 
    303       1.1  thorpej 	return (0);
    304       1.1  thorpej }
    305       1.1  thorpej 
    306       1.1  thorpej int
    307       1.7      uwe mhzc_alloc_ethernet(sc, cfe)
    308       1.1  thorpej 	struct mhzc_softc *sc;
    309       1.7      uwe 	struct pcmcia_config_entry *cfe;
    310       1.1  thorpej {
    311       1.1  thorpej 	bus_addr_t addr, maxaddr;
    312       1.1  thorpej 
    313       1.7      uwe 	addr = cfe->iospace[0].start + cfe->iospace[0].length;
    314       1.7      uwe 	maxaddr = 0x1000;
    315       1.1  thorpej 
    316       1.1  thorpej 	/*
    317       1.1  thorpej 	 * Now round it up so that it starts on a 16-byte boundary.
    318       1.1  thorpej 	 */
    319       1.1  thorpej 	addr = roundup(addr, 0x10);
    320       1.1  thorpej 
    321       1.1  thorpej 	for (; (addr + 0x10) < maxaddr; addr += 0x10) {
    322       1.1  thorpej 		if (addr & 0x80)
    323       1.1  thorpej 			continue;
    324       1.1  thorpej 		if (pcmcia_io_alloc(sc->sc_pf, addr, 0x10, 0x10,
    325       1.1  thorpej 		    &sc->sc_ethernet_pcioh) == 0) {
    326       1.1  thorpej 			/* Found one for the ethernet! */
    327  1.14.2.1    skrll 			sc->sc_flags |= MHZC_ETHERNET_ALLOCED;
    328       1.1  thorpej 			return (1);
    329       1.1  thorpej 		}
    330       1.1  thorpej 	}
    331       1.1  thorpej 
    332       1.1  thorpej 	return (0);
    333       1.1  thorpej }
    334       1.1  thorpej 
    335       1.1  thorpej int
    336       1.1  thorpej mhzc_print(aux, pnp)
    337       1.1  thorpej 	void *aux;
    338       1.1  thorpej 	const char *pnp;
    339       1.1  thorpej {
    340       1.1  thorpej 	const char *name = aux;
    341       1.1  thorpej 
    342       1.1  thorpej 	if (pnp)
    343      1.14  thorpej 		aprint_normal("%s at %s(*)",  name, pnp);
    344       1.1  thorpej 
    345       1.1  thorpej 	return (UNCONF);
    346       1.1  thorpej }
    347       1.1  thorpej 
    348       1.1  thorpej int
    349       1.1  thorpej mhzc_detach(self, flags)
    350       1.1  thorpej 	struct device *self;
    351       1.1  thorpej 	int flags;
    352       1.1  thorpej {
    353       1.1  thorpej 	struct mhzc_softc *sc = (void *)self;
    354       1.1  thorpej 	int rv;
    355       1.1  thorpej 
    356       1.1  thorpej 	if (sc->sc_ethernet != NULL) {
    357       1.1  thorpej 		rv = config_detach(sc->sc_ethernet, flags);
    358       1.1  thorpej 		if (rv != 0)
    359       1.1  thorpej 			return (rv);
    360       1.5    enami 		sc->sc_ethernet = NULL;
    361       1.1  thorpej 	}
    362       1.1  thorpej 
    363       1.1  thorpej 	if (sc->sc_modem != NULL) {
    364       1.1  thorpej 		rv = config_detach(sc->sc_modem, flags);
    365       1.1  thorpej 		if (rv != 0)
    366       1.1  thorpej 			return (rv);
    367       1.5    enami 		sc->sc_modem = NULL;
    368       1.1  thorpej 	}
    369       1.1  thorpej 
    370       1.1  thorpej 	/* Unmap our i/o windows. */
    371       1.1  thorpej 	if (sc->sc_flags & MHZC_MODEM_MAPPED)
    372       1.1  thorpej 		pcmcia_io_unmap(sc->sc_pf, sc->sc_modem_io_window);
    373       1.1  thorpej 	if (sc->sc_flags & MHZC_ETHERNET_MAPPED)
    374       1.1  thorpej 		pcmcia_io_unmap(sc->sc_pf, sc->sc_ethernet_io_window);
    375       1.1  thorpej 
    376       1.1  thorpej 	/* Free our i/o spaces. */
    377  1.14.2.1    skrll 	if (sc->sc_flags & MHZC_ETHERNET_ALLOCED)
    378       1.5    enami 		pcmcia_io_free(sc->sc_pf, &sc->sc_modem_pcioh);
    379  1.14.2.1    skrll 	if (sc->sc_flags & MHZC_MODEM_ALLOCED)
    380       1.5    enami 		pcmcia_io_free(sc->sc_pf, &sc->sc_ethernet_pcioh);
    381  1.14.2.1    skrll 
    382  1.14.2.1    skrll 	sc->sc_flags = 0;
    383       1.1  thorpej 
    384       1.1  thorpej 	return (0);
    385       1.1  thorpej }
    386       1.1  thorpej 
    387       1.1  thorpej int
    388       1.1  thorpej mhzc_activate(self, act)
    389       1.1  thorpej 	struct device *self;
    390       1.1  thorpej 	enum devact act;
    391       1.1  thorpej {
    392       1.1  thorpej 	struct mhzc_softc *sc = (void *)self;
    393       1.1  thorpej 	int s, rv = 0;
    394       1.1  thorpej 
    395       1.1  thorpej 	s = splhigh();
    396       1.1  thorpej 	switch (act) {
    397       1.1  thorpej 	case DVACT_ACTIVATE:
    398       1.1  thorpej 		rv = EOPNOTSUPP;
    399       1.1  thorpej 		break;
    400       1.1  thorpej 
    401       1.1  thorpej 	case DVACT_DEACTIVATE:
    402       1.1  thorpej 		if (sc->sc_ethernet != NULL) {
    403       1.1  thorpej 			rv = config_deactivate(sc->sc_ethernet);
    404       1.1  thorpej 			if (rv != 0)
    405       1.1  thorpej 				goto out;
    406       1.1  thorpej 		}
    407       1.1  thorpej 
    408       1.1  thorpej 		if (sc->sc_modem != NULL) {
    409       1.1  thorpej 			rv = config_deactivate(sc->sc_modem);
    410       1.1  thorpej 			if (rv != 0)
    411       1.1  thorpej 				goto out;
    412       1.1  thorpej 		}
    413       1.1  thorpej 		break;
    414       1.1  thorpej 	}
    415       1.1  thorpej  out:
    416       1.1  thorpej 	splx(s);
    417       1.1  thorpej 	return (rv);
    418       1.1  thorpej }
    419       1.1  thorpej 
    420       1.1  thorpej int
    421       1.1  thorpej mhzc_intr(arg)
    422       1.1  thorpej 	void *arg;
    423       1.1  thorpej {
    424       1.1  thorpej 	struct mhzc_softc *sc = arg;
    425       1.1  thorpej 	int rval = 0;
    426       1.1  thorpej 
    427       1.1  thorpej #if NCOM_MHZC > 0
    428       1.1  thorpej 	if (sc->sc_modem != NULL &&
    429       1.1  thorpej 	    (sc->sc_flags & MHZC_MODEM_ENABLED) != 0)
    430       1.1  thorpej 		rval |= comintr(sc->sc_modem);
    431       1.1  thorpej #endif
    432       1.1  thorpej 
    433       1.1  thorpej #if NSM_MHZC > 0
    434       1.1  thorpej 	if (sc->sc_ethernet != NULL &&
    435       1.1  thorpej 	    (sc->sc_flags & MHZC_ETHERNET_ENABLED) != 0)
    436       1.1  thorpej 		rval |= smc91cxx_intr(sc->sc_ethernet);
    437       1.1  thorpej #endif
    438       1.1  thorpej 
    439       1.1  thorpej 	return (rval);
    440       1.1  thorpej }
    441       1.1  thorpej 
    442       1.1  thorpej int
    443       1.1  thorpej mhzc_enable(sc, flag)
    444       1.1  thorpej 	struct mhzc_softc *sc;
    445       1.1  thorpej 	int flag;
    446       1.1  thorpej {
    447  1.14.2.1    skrll 	int error;
    448       1.1  thorpej 
    449  1.14.2.1    skrll 	if ((sc->sc_flags & flag) == flag) {
    450  1.14.2.1    skrll 		printf("%s: already enabled\n", sc->sc_dev.dv_xname);
    451  1.14.2.1    skrll 		return (0);
    452       1.1  thorpej 	}
    453       1.1  thorpej 
    454       1.1  thorpej 	if ((sc->sc_flags & (MHZC_MODEM_ENABLED|MHZC_ETHERNET_ENABLED)) != 0) {
    455       1.1  thorpej 		sc->sc_flags |= flag;
    456       1.1  thorpej 		return (0);
    457       1.1  thorpej 	}
    458       1.1  thorpej 
    459       1.1  thorpej 	/*
    460       1.1  thorpej 	 * Establish our interrupt handler.
    461       1.1  thorpej 	 *
    462       1.1  thorpej 	 * XXX Note, we establish this at IPL_NET.  This is suboptimal
    463       1.1  thorpej 	 * XXX the Modem portion, but is necessary to make the Ethernet
    464       1.1  thorpej 	 * XXX portion have the correct interrupt level semantics.
    465       1.1  thorpej 	 *
    466       1.1  thorpej 	 * XXX Eventually we should use the `enabled' bits in the
    467       1.1  thorpej 	 * XXX flags word to determine which level we should be at.
    468       1.1  thorpej 	 */
    469       1.1  thorpej 	sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_NET,
    470       1.1  thorpej 	    mhzc_intr, sc);
    471  1.14.2.1    skrll 	if (!sc->sc_ih)
    472  1.14.2.1    skrll 		return (EIO);
    473       1.1  thorpej 
    474  1.14.2.1    skrll 	error = pcmcia_function_enable(sc->sc_pf);
    475  1.14.2.1    skrll 	if (error) {
    476       1.2  thorpej 		pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    477  1.14.2.1    skrll 		sc->sc_ih = 0;
    478  1.14.2.1    skrll 		return (error);
    479       1.2  thorpej 	}
    480       1.2  thorpej 
    481       1.2  thorpej 	/*
    482       1.2  thorpej 	 * Perform any special enable magic necessary.
    483       1.2  thorpej 	 */
    484       1.2  thorpej 	if (sc->sc_product->mp_enable != NULL &&
    485       1.2  thorpej 	    (*sc->sc_product->mp_enable)(sc) != 0) {
    486       1.2  thorpej 		pcmcia_function_disable(sc->sc_pf);
    487       1.1  thorpej 		pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    488       1.1  thorpej 		return (1);
    489       1.1  thorpej 	}
    490       1.1  thorpej 
    491       1.1  thorpej 	sc->sc_flags |= flag;
    492       1.1  thorpej 	return (0);
    493       1.1  thorpej }
    494       1.1  thorpej 
    495       1.1  thorpej void
    496       1.1  thorpej mhzc_disable(sc, flag)
    497       1.1  thorpej 	struct mhzc_softc *sc;
    498       1.1  thorpej 	int flag;
    499       1.1  thorpej {
    500       1.1  thorpej 
    501       1.1  thorpej 	if ((sc->sc_flags & flag) == 0) {
    502  1.14.2.1    skrll 		printf("%s: already disabled\n", sc->sc_dev.dv_xname);
    503  1.14.2.1    skrll 		return;
    504       1.1  thorpej 	}
    505       1.1  thorpej 
    506       1.1  thorpej 	sc->sc_flags &= ~flag;
    507       1.1  thorpej 	if ((sc->sc_flags & (MHZC_MODEM_ENABLED|MHZC_ETHERNET_ENABLED)) != 0)
    508       1.1  thorpej 		return;
    509       1.1  thorpej 
    510       1.1  thorpej 	pcmcia_function_disable(sc->sc_pf);
    511  1.14.2.1    skrll 	pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    512  1.14.2.1    skrll 	sc->sc_ih = 0;
    513       1.1  thorpej }
    514       1.1  thorpej 
    515       1.1  thorpej /*****************************************************************************
    516       1.1  thorpej  * Megahertz EM3336 (and compatibles) support
    517       1.1  thorpej  *****************************************************************************/
    518       1.1  thorpej 
    519       1.1  thorpej int	mhzc_em3336_lannid_ciscallback __P((struct pcmcia_tuple *, void *));
    520       1.1  thorpej int	mhzc_em3336_ascii_enaddr __P((const char *cisstr, u_int8_t *));
    521       1.1  thorpej 
    522       1.1  thorpej int
    523       1.1  thorpej mhzc_em3336_enaddr(sc, myla)
    524       1.1  thorpej 	struct mhzc_softc *sc;
    525       1.1  thorpej 	u_int8_t *myla;
    526       1.1  thorpej {
    527       1.1  thorpej 
    528       1.1  thorpej 	/* Get the station address from CIS tuple 0x81. */
    529       1.1  thorpej 	if (pcmcia_scan_cis(sc->sc_dev.dv_parent,
    530       1.1  thorpej 	    mhzc_em3336_lannid_ciscallback, myla) != 1) {
    531       1.1  thorpej 		printf("%s: unable to get Ethernet address from CIS\n",
    532       1.1  thorpej 		    sc->sc_dev.dv_xname);
    533       1.1  thorpej 		return (0);
    534       1.1  thorpej 	}
    535       1.1  thorpej 
    536       1.1  thorpej 	return (1);
    537       1.1  thorpej }
    538       1.1  thorpej 
    539       1.1  thorpej int
    540       1.1  thorpej mhzc_em3336_enable(sc)
    541       1.1  thorpej 	struct mhzc_softc *sc;
    542       1.1  thorpej {
    543       1.1  thorpej 	struct pcmcia_mem_handle memh;
    544       1.1  thorpej 	bus_addr_t memoff;
    545       1.1  thorpej 	int memwin, reg;
    546       1.1  thorpej 
    547       1.1  thorpej 	/*
    548       1.1  thorpej 	 * Bring the chip to live by touching its registers in the correct
    549       1.1  thorpej 	 * way (as per my reference... the Linux smc91c92_cs.c driver by
    550       1.1  thorpej 	 * David A. Hinds).
    551       1.1  thorpej 	 */
    552       1.1  thorpej 
    553       1.1  thorpej 	/* Map the ISRPOWEREG. */
    554       1.1  thorpej 	if (pcmcia_mem_alloc(sc->sc_pf, 0x1000, &memh) != 0) {
    555       1.1  thorpej 		printf("%s: unable to allocate memory space\n",
    556       1.1  thorpej 		    sc->sc_dev.dv_xname);
    557       1.1  thorpej 		return (1);
    558       1.1  thorpej 	}
    559       1.1  thorpej 
    560       1.1  thorpej 	if (pcmcia_mem_map(sc->sc_pf, PCMCIA_MEM_ATTR, 0, 0x1000,
    561       1.1  thorpej 	    &memh, &memoff, &memwin)) {
    562       1.1  thorpej 		printf("%s: unable to map memory space\n",
    563       1.1  thorpej 		    sc->sc_dev.dv_xname);
    564       1.1  thorpej 		pcmcia_mem_free(sc->sc_pf, &memh);
    565       1.1  thorpej 		return (1);
    566       1.1  thorpej 	}
    567       1.1  thorpej 
    568       1.1  thorpej 	/*
    569       1.1  thorpej 	 * The magic sequence:
    570       1.1  thorpej 	 *
    571       1.1  thorpej 	 *	- read/write the CCR option register.
    572       1.1  thorpej 	 *	- read the ISRPOWEREG 2 times.
    573       1.1  thorpej 	 *	- read/write the CCR option register again.
    574       1.1  thorpej 	 */
    575       1.1  thorpej 
    576       1.1  thorpej 	reg = pcmcia_ccr_read(sc->sc_pf, PCMCIA_CCR_OPTION);
    577       1.1  thorpej 	pcmcia_ccr_write(sc->sc_pf, PCMCIA_CCR_OPTION, reg);
    578       1.1  thorpej 
    579       1.1  thorpej 	reg = bus_space_read_1(memh.memt, memh.memh, 0x380);
    580       1.1  thorpej 	delay(5);
    581       1.1  thorpej 	reg = bus_space_read_1(memh.memt, memh.memh, 0x380);
    582       1.1  thorpej 
    583       1.1  thorpej 	delay(200000);
    584       1.1  thorpej 
    585       1.1  thorpej 	reg = pcmcia_ccr_read(sc->sc_pf, PCMCIA_CCR_OPTION);
    586       1.1  thorpej 	delay(5);
    587       1.1  thorpej 	pcmcia_ccr_write(sc->sc_pf, PCMCIA_CCR_OPTION, reg);
    588       1.1  thorpej 
    589       1.1  thorpej 	pcmcia_mem_unmap(sc->sc_pf, memwin);
    590       1.1  thorpej 	pcmcia_mem_free(sc->sc_pf, &memh);
    591       1.1  thorpej 
    592       1.1  thorpej 	return (0);
    593       1.1  thorpej }
    594       1.1  thorpej 
    595       1.1  thorpej int
    596       1.1  thorpej mhzc_em3336_lannid_ciscallback(tuple, arg)
    597       1.1  thorpej 	struct pcmcia_tuple *tuple;
    598       1.1  thorpej 	void *arg;
    599       1.1  thorpej {
    600       1.1  thorpej 	u_int8_t *myla = arg, addr_str[ETHER_ADDR_LEN * 2];
    601       1.1  thorpej 	int i;
    602       1.1  thorpej 
    603       1.1  thorpej 	if (tuple->code == 0x81) {
    604       1.1  thorpej 		/*
    605       1.1  thorpej 		 * We have a string-encoded address.  Length includes
    606       1.1  thorpej 		 * terminating 0xff.
    607       1.1  thorpej 		 */
    608       1.1  thorpej 		if (tuple->length != (ETHER_ADDR_LEN * 2) + 1)
    609       1.1  thorpej 			return (0);
    610       1.1  thorpej 
    611       1.1  thorpej 		for (i = 0; i < tuple->length - 1; i++)
    612       1.1  thorpej 			addr_str[i] = pcmcia_tuple_read_1(tuple, i);
    613       1.1  thorpej 
    614       1.1  thorpej 		/*
    615       1.1  thorpej 		 * Decode the string into `myla'.
    616       1.1  thorpej 		 */
    617       1.1  thorpej 		return (mhzc_em3336_ascii_enaddr(addr_str, myla));
    618       1.1  thorpej 	}
    619       1.1  thorpej 	return (0);
    620       1.1  thorpej }
    621       1.1  thorpej 
    622       1.1  thorpej /* XXX This should be shared w/ if_sm_pcmcia.c */
    623       1.1  thorpej int
    624       1.1  thorpej mhzc_em3336_ascii_enaddr(cisstr, myla)
    625       1.1  thorpej 	const char *cisstr;
    626       1.1  thorpej 	u_int8_t *myla;
    627       1.1  thorpej {
    628       1.1  thorpej 	u_int8_t digit;
    629       1.1  thorpej 	int i;
    630       1.1  thorpej 
    631       1.1  thorpej 	memset(myla, 0, ETHER_ADDR_LEN);
    632       1.1  thorpej 
    633       1.1  thorpej 	for (i = 0, digit = 0; i < (ETHER_ADDR_LEN * 2); i++) {
    634       1.1  thorpej 		if (cisstr[i] >= '0' && cisstr[i] <= '9')
    635       1.1  thorpej 			digit |= cisstr[i] - '0';
    636       1.1  thorpej 		else if (cisstr[i] >= 'a' && cisstr[i] <= 'f')
    637       1.1  thorpej 			digit |= (cisstr[i] - 'a') + 10;
    638       1.1  thorpej 		else if (cisstr[i] >= 'A' && cisstr[i] <= 'F')
    639       1.1  thorpej 			digit |= (cisstr[i] - 'A') + 10;
    640       1.1  thorpej 		else {
    641       1.1  thorpej 			/* Bogus digit!! */
    642       1.1  thorpej 			return (0);
    643       1.1  thorpej 		}
    644       1.1  thorpej 
    645       1.1  thorpej 		/* Compensate for ordering of digits. */
    646       1.1  thorpej 		if (i & 1) {
    647       1.1  thorpej 			myla[i >> 1] = digit;
    648       1.1  thorpej 			digit = 0;
    649       1.1  thorpej 		} else
    650       1.1  thorpej 			digit <<= 4;
    651       1.1  thorpej 	}
    652       1.1  thorpej 
    653       1.1  thorpej 	return (1);
    654       1.1  thorpej }
    655       1.1  thorpej 
    656       1.1  thorpej /****** Here begins the com attachment code. ******/
    657       1.1  thorpej 
    658       1.1  thorpej #if NCOM_MHZC > 0
    659       1.1  thorpej int	com_mhzc_match __P((struct device *, struct cfdata *, void *));
    660       1.1  thorpej void	com_mhzc_attach __P((struct device *, struct device *, void *));
    661       1.5    enami int	com_mhzc_detach __P((struct device *, int));
    662       1.1  thorpej 
    663       1.1  thorpej /* No mhzc-specific goo in the softc; it's all in the parent. */
    664      1.12  thorpej CFATTACH_DECL(com_mhzc, sizeof(struct com_softc),
    665      1.13  thorpej     com_mhzc_match, com_mhzc_attach, com_detach, com_activate);
    666       1.1  thorpej 
    667       1.1  thorpej int	com_mhzc_enable __P((struct com_softc *));
    668       1.1  thorpej void	com_mhzc_disable __P((struct com_softc *));
    669       1.1  thorpej 
    670       1.1  thorpej int
    671       1.1  thorpej com_mhzc_match(parent, match, aux)
    672       1.1  thorpej 	struct device *parent;
    673       1.1  thorpej 	struct cfdata *match;
    674       1.1  thorpej 	void *aux;
    675       1.1  thorpej {
    676       1.1  thorpej 	extern struct cfdriver com_cd;
    677       1.1  thorpej 	const char *name = aux;
    678       1.1  thorpej 
    679       1.1  thorpej 	/* Device is always present. */
    680       1.1  thorpej 	if (strcmp(name, com_cd.cd_name) == 0)
    681       1.1  thorpej 		return (1);
    682       1.1  thorpej 
    683       1.1  thorpej 	return (0);
    684       1.1  thorpej }
    685       1.1  thorpej 
    686       1.1  thorpej void
    687       1.1  thorpej com_mhzc_attach(parent, self, aux)
    688       1.1  thorpej 	struct device *parent, *self;
    689       1.1  thorpej 	void *aux;
    690       1.1  thorpej {
    691       1.1  thorpej 	struct com_softc *sc = (void *)self;
    692       1.1  thorpej 	struct mhzc_softc *msc = (void *)parent;
    693       1.1  thorpej 
    694  1.14.2.1    skrll 	aprint_normal("\n");
    695       1.1  thorpej 
    696       1.1  thorpej 	sc->sc_iot = msc->sc_modem_pcioh.iot;
    697       1.1  thorpej 	sc->sc_ioh = msc->sc_modem_pcioh.ioh;
    698       1.1  thorpej 
    699       1.1  thorpej 	sc->enabled = 1;
    700       1.1  thorpej 
    701       1.1  thorpej 	sc->sc_iobase = -1;
    702       1.1  thorpej 	sc->sc_frequency = COM_FREQ;
    703       1.1  thorpej 
    704       1.1  thorpej 	sc->enable = com_mhzc_enable;
    705       1.1  thorpej 	sc->disable = com_mhzc_disable;
    706       1.1  thorpej 
    707  1.14.2.1    skrll 	aprint_normal("%s", sc->sc_dev.dv_xname);
    708  1.14.2.1    skrll 
    709       1.1  thorpej 	com_attach_subr(sc);
    710       1.1  thorpej 
    711       1.1  thorpej 	sc->enabled = 0;
    712       1.1  thorpej }
    713       1.1  thorpej 
    714       1.1  thorpej int
    715       1.1  thorpej com_mhzc_enable(sc)
    716       1.1  thorpej 	struct com_softc *sc;
    717       1.1  thorpej {
    718       1.1  thorpej 
    719       1.1  thorpej 	return (mhzc_enable((struct mhzc_softc *)sc->sc_dev.dv_parent,
    720       1.1  thorpej 	    MHZC_MODEM_ENABLED));
    721       1.1  thorpej }
    722       1.1  thorpej 
    723       1.1  thorpej void
    724       1.1  thorpej com_mhzc_disable(sc)
    725       1.1  thorpej 	struct com_softc *sc;
    726       1.1  thorpej {
    727       1.1  thorpej 
    728       1.1  thorpej 	mhzc_disable((struct mhzc_softc *)sc->sc_dev.dv_parent,
    729       1.1  thorpej 	    MHZC_MODEM_ENABLED);
    730       1.1  thorpej }
    731       1.1  thorpej 
    732       1.1  thorpej #endif /* NCOM_MHZC > 0 */
    733       1.1  thorpej 
    734       1.1  thorpej /****** Here begins the sm attachment code. ******/
    735       1.1  thorpej 
    736       1.1  thorpej #if NSM_MHZC > 0
    737       1.1  thorpej int	sm_mhzc_match __P((struct device *, struct cfdata *, void *));
    738       1.1  thorpej void	sm_mhzc_attach __P((struct device *, struct device *, void *));
    739       1.1  thorpej 
    740       1.1  thorpej /* No mhzc-specific goo in the softc; it's all in the parent. */
    741      1.12  thorpej CFATTACH_DECL(sm_mhzc, sizeof(struct smc91cxx_softc),
    742      1.13  thorpej     sm_mhzc_match, sm_mhzc_attach, smc91cxx_detach, smc91cxx_activate);
    743       1.1  thorpej 
    744       1.1  thorpej int	sm_mhzc_enable __P((struct smc91cxx_softc *));
    745       1.1  thorpej void	sm_mhzc_disable __P((struct smc91cxx_softc *));
    746       1.1  thorpej 
    747       1.1  thorpej int
    748       1.1  thorpej sm_mhzc_match(parent, match, aux)
    749       1.1  thorpej 	struct device *parent;
    750       1.1  thorpej 	struct cfdata *match;
    751       1.1  thorpej 	void *aux;
    752       1.1  thorpej {
    753       1.1  thorpej 	extern struct cfdriver sm_cd;
    754       1.1  thorpej 	const char *name = aux;
    755       1.1  thorpej 
    756       1.1  thorpej 	/* Device is always present. */
    757       1.1  thorpej 	if (strcmp(name, sm_cd.cd_name) == 0)
    758       1.1  thorpej 		return (1);
    759       1.1  thorpej 
    760       1.1  thorpej 	return (0);
    761       1.1  thorpej }
    762       1.1  thorpej 
    763       1.1  thorpej void
    764       1.1  thorpej sm_mhzc_attach(parent, self, aux)
    765       1.1  thorpej 	struct device *parent, *self;
    766       1.1  thorpej 	void *aux;
    767       1.1  thorpej {
    768       1.1  thorpej 	struct smc91cxx_softc *sc = (void *)self;
    769       1.1  thorpej 	struct mhzc_softc *msc = (void *)parent;
    770       1.1  thorpej 	u_int8_t myla[ETHER_ADDR_LEN];
    771       1.1  thorpej 
    772  1.14.2.1    skrll 	aprint_normal("\n");
    773       1.1  thorpej 
    774       1.1  thorpej 	sc->sc_bst = msc->sc_ethernet_pcioh.iot;
    775       1.1  thorpej 	sc->sc_bsh = msc->sc_ethernet_pcioh.ioh;
    776       1.1  thorpej 
    777       1.1  thorpej 	sc->sc_enable = sm_mhzc_enable;
    778       1.1  thorpej 	sc->sc_disable = sm_mhzc_disable;
    779       1.1  thorpej 
    780       1.1  thorpej 	if ((*msc->sc_product->mp_enaddr)(msc, myla) != 1)
    781       1.1  thorpej 		return;
    782       1.1  thorpej 
    783       1.1  thorpej 	/* Perform generic initialization. */
    784       1.1  thorpej 	smc91cxx_attach(sc, myla);
    785       1.1  thorpej }
    786       1.1  thorpej 
    787       1.1  thorpej int
    788       1.1  thorpej sm_mhzc_enable(sc)
    789       1.1  thorpej 	struct smc91cxx_softc *sc;
    790       1.1  thorpej {
    791       1.1  thorpej 
    792       1.1  thorpej 	return (mhzc_enable((struct mhzc_softc *)sc->sc_dev.dv_parent,
    793       1.1  thorpej 	    MHZC_ETHERNET_ENABLED));
    794       1.1  thorpej }
    795       1.1  thorpej 
    796       1.1  thorpej void
    797       1.1  thorpej sm_mhzc_disable(sc)
    798       1.1  thorpej 	struct smc91cxx_softc *sc;
    799       1.1  thorpej {
    800       1.1  thorpej 
    801       1.1  thorpej 	mhzc_disable((struct mhzc_softc *)sc->sc_dev.dv_parent,
    802       1.1  thorpej 	    MHZC_ETHERNET_ENABLED);
    803       1.1  thorpej }
    804       1.1  thorpej 
    805       1.1  thorpej #endif /* NSM_MHZC > 0 */
    806