Home | History | Annotate | Line # | Download | only in dev
if_ne_neptune.c revision 1.20.20.1
      1  1.20.20.1  jdolecek /*	$NetBSD: if_ne_neptune.c,v 1.20.20.1 2017/12/03 11:36:48 jdolecek Exp $	*/
      2        1.2   minoura 
      3        1.2   minoura /*-
      4        1.2   minoura  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5        1.2   minoura  * All rights reserved.
      6        1.2   minoura  *
      7        1.2   minoura  * This code is derived from software contributed to The NetBSD Foundation
      8        1.2   minoura  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9        1.2   minoura  * NASA Ames Research Center.
     10        1.2   minoura  *
     11        1.2   minoura  * Redistribution and use in source and binary forms, with or without
     12        1.2   minoura  * modification, are permitted provided that the following conditions
     13        1.2   minoura  * are met:
     14        1.2   minoura  * 1. Redistributions of source code must retain the above copyright
     15        1.2   minoura  *    notice, this list of conditions and the following disclaimer.
     16        1.2   minoura  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.2   minoura  *    notice, this list of conditions and the following disclaimer in the
     18        1.2   minoura  *    documentation and/or other materials provided with the distribution.
     19        1.2   minoura  *
     20        1.2   minoura  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21        1.2   minoura  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22        1.2   minoura  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23        1.2   minoura  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24        1.2   minoura  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25        1.2   minoura  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26        1.2   minoura  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27        1.2   minoura  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28        1.2   minoura  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29        1.2   minoura  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30        1.2   minoura  * POSSIBILITY OF SUCH DAMAGE.
     31        1.2   minoura  */
     32        1.8     lukem 
     33        1.8     lukem #include <sys/cdefs.h>
     34  1.20.20.1  jdolecek __KERNEL_RCSID(0, "$NetBSD: if_ne_neptune.c,v 1.20.20.1 2017/12/03 11:36:48 jdolecek Exp $");
     35        1.2   minoura 
     36        1.2   minoura #include "opt_inet.h"
     37        1.2   minoura #include "opt_ns.h"
     38        1.2   minoura 
     39        1.2   minoura #include <sys/param.h>
     40        1.2   minoura #include <sys/systm.h>
     41        1.2   minoura #include <sys/mbuf.h>
     42        1.2   minoura #include <sys/socket.h>
     43        1.2   minoura #include <sys/ioctl.h>
     44        1.2   minoura #include <sys/errno.h>
     45        1.2   minoura #include <sys/syslog.h>
     46        1.2   minoura #include <sys/select.h>
     47        1.2   minoura #include <sys/device.h>
     48        1.2   minoura 
     49        1.2   minoura #include <net/if.h>
     50        1.2   minoura #include <net/if_dl.h>
     51        1.2   minoura #include <net/if_ether.h>
     52        1.2   minoura #include <net/if_media.h>
     53        1.2   minoura 
     54        1.2   minoura #ifdef INET
     55        1.2   minoura #include <netinet/in.h>
     56        1.2   minoura #include <netinet/in_systm.h>
     57        1.2   minoura #include <netinet/in_var.h>
     58        1.2   minoura #include <netinet/ip.h>
     59        1.2   minoura #include <netinet/if_inarp.h>
     60        1.2   minoura #endif
     61        1.2   minoura 
     62        1.2   minoura #include <machine/bus.h>
     63        1.2   minoura 
     64        1.2   minoura #include <dev/ic/dp8390reg.h>
     65        1.2   minoura #include <dev/ic/dp8390var.h>
     66        1.2   minoura 
     67        1.2   minoura #include <dev/ic/ne2000reg.h>
     68        1.2   minoura #include <dev/ic/ne2000var.h>
     69        1.2   minoura 
     70        1.2   minoura #include <arch/x68k/dev/neptunevar.h>
     71        1.2   minoura 
     72       1.14   tsutsui static int ne_neptune_match(device_t, cfdata_t, void *);
     73       1.14   tsutsui static void ne_neptune_attach(device_t, device_t, void *);
     74        1.2   minoura 
     75        1.2   minoura #define ne_neptune_softc ne2000_softc
     76        1.2   minoura 
     77       1.16   tsutsui CFATTACH_DECL_NEW(ne_neptune, sizeof(struct ne_neptune_softc),
     78        1.7   thorpej     ne_neptune_match, ne_neptune_attach, NULL, NULL);
     79        1.2   minoura 
     80        1.2   minoura int
     81       1.14   tsutsui ne_neptune_match(device_t parent, cfdata_t match, void *aux)
     82        1.2   minoura {
     83        1.2   minoura 	struct neptune_attach_args *na = aux;
     84        1.2   minoura 	bus_space_tag_t nict = na->na_bst;
     85        1.2   minoura 	bus_space_handle_t nich;
     86        1.2   minoura 	bus_space_tag_t asict;
     87        1.2   minoura 	bus_space_handle_t asich;
     88        1.2   minoura 	int rv = 0;
     89        1.2   minoura 
     90        1.2   minoura 	if (na->na_addr == NEPTUNECF_ADDR_DEFAULT)
     91        1.2   minoura 		na->na_addr = 0x300;
     92        1.2   minoura 
     93        1.2   minoura 	/* Make sure this is a valid NE[12]000 i/o address. */
     94        1.2   minoura 	if ((na->na_addr & 0x1f) != 0)
     95        1.2   minoura 		return (0);
     96        1.2   minoura 
     97        1.2   minoura 	/* Map i/o space. */
     98        1.2   minoura 	if (bus_space_map(nict, na->na_addr, NE2000_NPORTS*2, 0, &nich))
     99        1.2   minoura 		return (0);
    100        1.2   minoura 
    101        1.2   minoura 	asict = nict;
    102        1.2   minoura 	if (bus_space_subregion(nict, nich, NE2000_ASIC_OFFSET,
    103        1.2   minoura 	    NE2000_ASIC_NPORTS*2, &asich))
    104        1.2   minoura 		goto out;
    105        1.2   minoura 
    106        1.2   minoura 	/* Look for an NE2000-compatible card. */
    107        1.2   minoura 	rv = ne2000_detect(nict, nich, asict, asich);
    108        1.2   minoura 
    109        1.2   minoura  out:
    110        1.2   minoura 	bus_space_unmap(nict, nich, NE2000_NPORTS);
    111       1.18     isaki 	return (rv != 0) ? 1 : 0;
    112        1.2   minoura }
    113        1.2   minoura 
    114        1.2   minoura void
    115       1.14   tsutsui ne_neptune_attach(device_t parent, device_t self, void *aux)
    116        1.2   minoura {
    117       1.14   tsutsui 	struct ne_neptune_softc *nsc = device_private(self);
    118        1.2   minoura 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
    119        1.2   minoura 	struct neptune_attach_args *na = aux;
    120        1.2   minoura 	bus_space_tag_t nict = na->na_bst;
    121        1.2   minoura 	bus_space_handle_t nich;
    122        1.2   minoura 	bus_space_tag_t asict = nict;
    123        1.2   minoura 	bus_space_handle_t asich;
    124        1.2   minoura 	const char *typestr;
    125        1.2   minoura 	int netype;
    126        1.2   minoura 
    127       1.14   tsutsui 	dsc->sc_dev = self;
    128       1.14   tsutsui 	aprint_normal("\n");
    129        1.2   minoura 
    130        1.2   minoura 	/* Map i/o space. */
    131        1.2   minoura 	if (bus_space_map(nict, na->na_addr, NE2000_NPORTS*2, 0, &nich)) {
    132       1.14   tsutsui 		aprint_error_dev(self, "can't map i/o space\n");
    133        1.2   minoura 		return;
    134        1.2   minoura 	}
    135        1.2   minoura 
    136        1.2   minoura 	if (bus_space_subregion(nict, nich, NE2000_ASIC_OFFSET,
    137        1.2   minoura 	    NE2000_ASIC_NPORTS*2, &asich)) {
    138       1.14   tsutsui 		aprint_error_dev(self, "can't subregion i/o space\n");
    139        1.2   minoura 		return;
    140        1.2   minoura 	}
    141        1.2   minoura 
    142        1.2   minoura 	dsc->sc_regt = nict;
    143        1.2   minoura 	dsc->sc_regh = nich;
    144        1.2   minoura 
    145        1.2   minoura 	nsc->sc_asict = asict;
    146        1.2   minoura 	nsc->sc_asich = asich;
    147        1.2   minoura 
    148        1.2   minoura 	/*
    149        1.2   minoura 	 * Detect it again, so we can print some information about the
    150        1.2   minoura 	 * interface.
    151        1.2   minoura 	 */
    152        1.2   minoura 	netype = ne2000_detect(nict, nich, asict, asich);
    153        1.2   minoura 	switch (netype) {
    154        1.2   minoura 	case NE2000_TYPE_NE1000:
    155        1.2   minoura 		typestr = "NE1000";
    156        1.2   minoura 		break;
    157        1.2   minoura 
    158        1.2   minoura 	case NE2000_TYPE_NE2000:
    159        1.2   minoura 		typestr = "NE2000";
    160       1.20   tsutsui 		break;
    161       1.20   tsutsui 
    162       1.20   tsutsui 	case NE2000_TYPE_RTL8019:
    163       1.20   tsutsui 		typestr = "NE2000 (RTL8019)";
    164        1.2   minoura 		break;
    165        1.2   minoura 
    166        1.2   minoura 	default:
    167       1.14   tsutsui 		aprint_error_dev(self, "where did the card go?!\n");
    168        1.2   minoura 		return;
    169        1.2   minoura 	}
    170        1.2   minoura 
    171       1.14   tsutsui 	aprint_normal_dev(self, "%s Ethernet\n", typestr);
    172        1.2   minoura 
    173        1.2   minoura 	/* This interface is always enabled. */
    174        1.2   minoura 	dsc->sc_enabled = 1;
    175        1.2   minoura 
    176        1.2   minoura 	/*
    177        1.2   minoura 	 * Do generic NE2000 attach.  This will read the station address
    178        1.2   minoura 	 * from the EEPROM.
    179        1.2   minoura 	 */
    180        1.3   thorpej 	ne2000_attach(nsc, NULL);
    181        1.2   minoura 
    182        1.2   minoura 	/* Establish the interrupt handler. */
    183       1.17     isaki 	if (neptune_intr_establish(na->na_intr, "ne", dp8390_intr, dsc))
    184       1.14   tsutsui 		aprint_error_dev(self,
    185       1.14   tsutsui 		    "couldn't establish interrupt handler\n");
    186        1.2   minoura }
    187