Home | History | Annotate | Line # | Download | only in isa
if_ne_isa.c revision 1.10.2.1
      1 /*	$NetBSD: if_ne_isa.c,v 1.10.2.1 2001/08/24 00:09:49 nathanw Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  * NASA Ames Research Center.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. All advertising materials mentioning features or use of this software
     20  *    must display the following acknowledgement:
     21  *	This product includes software developed by the NetBSD
     22  *	Foundation, Inc. and its contributors.
     23  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  *    contributors may be used to endorse or promote products derived
     25  *    from this software without specific prior written permission.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  * POSSIBILITY OF SUCH DAMAGE.
     38  */
     39 
     40 #include <sys/param.h>
     41 #include <sys/systm.h>
     42 #include <sys/mbuf.h>
     43 #include <sys/socket.h>
     44 #include <sys/ioctl.h>
     45 #include <sys/errno.h>
     46 #include <sys/syslog.h>
     47 #include <sys/select.h>
     48 #include <sys/device.h>
     49 
     50 #include <net/if.h>
     51 #include <net/if_dl.h>
     52 #include <net/if_ether.h>
     53 #include <net/if_media.h>
     54 
     55 #include <machine/intr.h>
     56 #include <machine/bus.h>
     57 
     58 #include <dev/ic/dp8390reg.h>
     59 #include <dev/ic/dp8390var.h>
     60 
     61 #include <dev/ic/ne2000reg.h>
     62 #include <dev/ic/ne2000var.h>
     63 
     64 #include <dev/ic/rtl80x9reg.h>
     65 #include <dev/ic/rtl80x9var.h>
     66 
     67 #include <dev/isa/isavar.h>
     68 
     69 int	ne_isa_match __P((struct device *, struct cfdata *, void *));
     70 void	ne_isa_attach __P((struct device *, struct device *, void *));
     71 
     72 struct ne_isa_softc {
     73 	struct	ne2000_softc sc_ne2000;		/* real "ne2000" softc */
     74 
     75 	/* ISA-specific goo. */
     76 	void	*sc_ih;				/* interrupt cookie */
     77 };
     78 
     79 struct cfattach ne_isa_ca = {
     80 	sizeof(struct ne_isa_softc), ne_isa_match, ne_isa_attach
     81 };
     82 
     83 int
     84 ne_isa_match(parent, match, aux)
     85 	struct device *parent;
     86 	struct cfdata *match;
     87 	void *aux;
     88 {
     89 	struct isa_attach_args *ia = aux;
     90 	bus_space_tag_t nict = ia->ia_iot;
     91 	bus_space_handle_t nich;
     92 	bus_space_tag_t asict;
     93 	bus_space_handle_t asich;
     94 	int rv = 0;
     95 
     96 	/* Disallow wildcarded values. */
     97 	if (ia->ia_irq == ISACF_IRQ_DEFAULT)
     98 		return (0);
     99 	if (ia->ia_iobase == ISACF_PORT_DEFAULT)
    100 		return (0);
    101 
    102 	/* Make sure this is a valid NE[12]000 i/o address. */
    103 	if ((ia->ia_iobase & 0x1f) != 0)
    104 		return (0);
    105 
    106 	/* Map i/o space. */
    107 	if (bus_space_map(nict, ia->ia_iobase, NE2000_NPORTS, 0, &nich))
    108 		return (0);
    109 
    110 	asict = nict;
    111 	if (bus_space_subregion(nict, nich, NE2000_ASIC_OFFSET,
    112 	    NE2000_ASIC_NPORTS, &asich))
    113 		goto out;
    114 
    115 	/* Look for an NE2000-compatible card. */
    116 	rv = ne2000_detect(nict, nich, asict, asich);
    117 
    118 	if (rv)
    119 		ia->ia_iosize = NE2000_NPORTS;
    120 
    121  out:
    122 	bus_space_unmap(nict, nich, NE2000_NPORTS);
    123 	return (rv);
    124 }
    125 
    126 void
    127 ne_isa_attach(parent, self, aux)
    128 	struct device *parent, *self;
    129 	void *aux;
    130 {
    131 	struct ne_isa_softc *isc = (struct ne_isa_softc *)self;
    132 	struct ne2000_softc *nsc = &isc->sc_ne2000;
    133 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
    134 	struct isa_attach_args *ia = aux;
    135 	bus_space_tag_t nict = ia->ia_iot;
    136 	bus_space_handle_t nich;
    137 	bus_space_tag_t asict = nict;
    138 	bus_space_handle_t asich;
    139 	const char *typestr;
    140 	int netype;
    141 
    142 	printf("\n");
    143 
    144 	/* Map i/o space. */
    145 	if (bus_space_map(nict, ia->ia_iobase, NE2000_NPORTS, 0, &nich)) {
    146 		printf("%s: can't map i/o space\n", dsc->sc_dev.dv_xname);
    147 		return;
    148 	}
    149 
    150 	if (bus_space_subregion(nict, nich, NE2000_ASIC_OFFSET,
    151 	    NE2000_ASIC_NPORTS, &asich)) {
    152 		printf("%s: can't subregion i/o space\n", dsc->sc_dev.dv_xname);
    153 		return;
    154 	}
    155 
    156 	dsc->sc_regt = nict;
    157 	dsc->sc_regh = nich;
    158 
    159 	nsc->sc_asict = asict;
    160 	nsc->sc_asich = asich;
    161 
    162 	/*
    163 	 * Detect it again, so we can print some information about the
    164 	 * interface.
    165 	 */
    166 	netype = ne2000_detect(nict, nich, asict, asich);
    167 	switch (netype) {
    168 	case NE2000_TYPE_NE1000:
    169 		typestr = "NE1000";
    170 		break;
    171 
    172 	case NE2000_TYPE_NE2000:
    173 		typestr = "NE2000";
    174 		/*
    175 		 * Check for a RealTek 8019.
    176 		 */
    177 		bus_space_write_1(nict, nich, ED_P0_CR,
    178 		    ED_CR_PAGE_0 | ED_CR_STP);
    179 		if (bus_space_read_1(nict, nich, NERTL_RTL0_8019ID0) ==
    180 								RTL0_8019ID0 &&
    181 		    bus_space_read_1(nict, nich, NERTL_RTL0_8019ID1) ==
    182 								RTL0_8019ID1) {
    183 			typestr = "NE2000 (RTL8019)";
    184 			dsc->sc_mediachange = rtl80x9_mediachange;
    185 			dsc->sc_mediastatus = rtl80x9_mediastatus;
    186 			dsc->init_card = rtl80x9_init_card;
    187 			dsc->sc_media_init = rtl80x9_media_init;
    188 		}
    189 		break;
    190 
    191 	default:
    192 		printf("%s: where did the card go?!\n", dsc->sc_dev.dv_xname);
    193 		return;
    194 	}
    195 
    196 	printf("%s: %s Ethernet\n", dsc->sc_dev.dv_xname, typestr);
    197 
    198 	/* This interface is always enabled. */
    199 	dsc->sc_enabled = 1;
    200 
    201 	/*
    202 	 * Do generic NE2000 attach.  This will read the station address
    203 	 * from the EEPROM.
    204 	 */
    205 	ne2000_attach(nsc, NULL);
    206 
    207 	/* Establish the interrupt handler. */
    208 	isc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE,
    209 	    IPL_NET, dp8390_intr, dsc);
    210 	if (isc->sc_ih == NULL)
    211 		printf("%s: couldn't establish interrupt handler\n",
    212 		    dsc->sc_dev.dv_xname);
    213 }
    214