Home | History | Annotate | Line # | Download | only in ic
ne2000.c revision 1.64.2.1
      1  1.64.2.1  uebayasi /*	$NetBSD: ne2000.c,v 1.64.2.1 2010/04/30 14:43:20 uebayasi Exp $	*/
      2       1.2   thorpej 
      3       1.2   thorpej /*-
      4       1.8   thorpej  * Copyright (c) 1997, 1998 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.2   thorpej  * NASA Ames Research Center.
     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.2   thorpej 
     33       1.2   thorpej /*
     34       1.2   thorpej  * Device driver for National Semiconductor DS8390/WD83C690 based ethernet
     35       1.2   thorpej  * adapters.
     36       1.2   thorpej  *
     37       1.2   thorpej  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
     38       1.2   thorpej  *
     39       1.2   thorpej  * Copyright (C) 1993, David Greenman.  This software may be used, modified,
     40       1.2   thorpej  * copied, distributed, and sold, in both source and binary form provided that
     41       1.2   thorpej  * the above copyright and these terms are retained.  Under no circumstances is
     42       1.2   thorpej  * the author responsible for the proper functioning of this software, nor does
     43       1.2   thorpej  * the author assume any responsibility for damages incurred with its use.
     44       1.2   thorpej  */
     45       1.2   thorpej 
     46       1.2   thorpej /*
     47       1.2   thorpej  * Common code shared by all NE2000-compatible Ethernet interfaces.
     48       1.2   thorpej  */
     49      1.37     lukem 
     50      1.37     lukem #include <sys/cdefs.h>
     51  1.64.2.1  uebayasi __KERNEL_RCSID(0, "$NetBSD: ne2000.c,v 1.64.2.1 2010/04/30 14:43:20 uebayasi Exp $");
     52       1.2   thorpej 
     53      1.29        ws #include "opt_ipkdb.h"
     54      1.29        ws 
     55  1.64.2.1  uebayasi #include "rtl80x9.h"
     56  1.64.2.1  uebayasi 
     57       1.2   thorpej #include <sys/param.h>
     58       1.2   thorpej #include <sys/systm.h>
     59       1.2   thorpej #include <sys/device.h>
     60       1.2   thorpej #include <sys/socket.h>
     61       1.2   thorpej #include <sys/mbuf.h>
     62       1.2   thorpej #include <sys/syslog.h>
     63       1.2   thorpej 
     64       1.2   thorpej #include <net/if.h>
     65       1.2   thorpej #include <net/if_dl.h>
     66       1.2   thorpej #include <net/if_types.h>
     67       1.5   thorpej #include <net/if_media.h>
     68       1.2   thorpej 
     69       1.2   thorpej #include <net/if_ether.h>
     70       1.2   thorpej 
     71      1.48       dsl #include <sys/bswap.h>
     72      1.55        ad #include <sys/bus.h>
     73       1.2   thorpej 
     74      1.11  sakamoto #ifndef __BUS_SPACE_HAS_STREAM_METHODS
     75      1.10  sakamoto #define	bus_space_write_stream_2	bus_space_write_2
     76      1.10  sakamoto #define	bus_space_write_multi_stream_2	bus_space_write_multi_2
     77      1.10  sakamoto #define	bus_space_read_multi_stream_2	bus_space_read_multi_2
     78      1.11  sakamoto #endif /* __BUS_SPACE_HAS_STREAM_METHODS */
     79      1.10  sakamoto 
     80      1.29        ws #ifdef IPKDB_NE
     81      1.29        ws #include <ipkdb/ipkdb.h>
     82      1.29        ws #endif
     83      1.29        ws 
     84       1.2   thorpej #include <dev/ic/dp8390reg.h>
     85       1.2   thorpej #include <dev/ic/dp8390var.h>
     86       1.2   thorpej 
     87       1.2   thorpej #include <dev/ic/ne2000reg.h>
     88       1.2   thorpej #include <dev/ic/ne2000var.h>
     89      1.17    mjacob 
     90  1.64.2.1  uebayasi #include <dev/ic/rtl80x9reg.h>
     91  1.64.2.1  uebayasi #include <dev/ic/rtl80x9var.h>
     92  1.64.2.1  uebayasi 
     93      1.36     enami #include <dev/ic/ax88190reg.h>
     94      1.36     enami 
     95  1.64.2.1  uebayasi static int	ne2000_write_mbuf(struct dp8390_softc *, struct mbuf *, int);
     96  1.64.2.1  uebayasi static int	ne2000_ring_copy(struct dp8390_softc *, int, void *, u_short);
     97  1.64.2.1  uebayasi static void	ne2000_read_hdr(struct dp8390_softc *, int,
     98  1.64.2.1  uebayasi 		    struct dp8390_ring *);
     99  1.64.2.1  uebayasi static int	ne2000_test_mem(struct dp8390_softc *);
    100  1.64.2.1  uebayasi 
    101  1.64.2.1  uebayasi static void	ne2000_writemem(bus_space_tag_t, bus_space_handle_t,
    102  1.64.2.1  uebayasi 		    bus_space_tag_t, bus_space_handle_t, const uint8_t *, int,
    103  1.64.2.1  uebayasi 		    size_t, int, int);
    104  1.64.2.1  uebayasi static void	ne2000_readmem(bus_space_tag_t, bus_space_handle_t,
    105  1.64.2.1  uebayasi 		    bus_space_tag_t, bus_space_handle_t, int, uint8_t *,
    106  1.64.2.1  uebayasi 		    size_t, int);
    107  1.64.2.1  uebayasi 
    108  1.64.2.1  uebayasi #ifdef NE2000_DETECT_8BIT
    109  1.64.2.1  uebayasi static bool	ne2000_detect_8bit(bus_space_tag_t, bus_space_handle_t,
    110  1.64.2.1  uebayasi 		    bus_space_tag_t, bus_space_handle_t);
    111  1.64.2.1  uebayasi #endif
    112       1.2   thorpej 
    113      1.44   mycroft #define	ASIC_BARRIER(asict, asich) \
    114      1.44   mycroft 	bus_space_barrier((asict), (asich), 0, 0x10, \
    115      1.44   mycroft 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE)
    116      1.44   mycroft 
    117      1.26     enami int
    118  1.64.2.1  uebayasi ne2000_attach(struct ne2000_softc *nsc, uint8_t *myea)
    119       1.2   thorpej {
    120       1.2   thorpej 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
    121       1.2   thorpej 	bus_space_tag_t nict = dsc->sc_regt;
    122       1.2   thorpej 	bus_space_handle_t nich = dsc->sc_regh;
    123       1.2   thorpej 	bus_space_tag_t asict = nsc->sc_asict;
    124       1.2   thorpej 	bus_space_handle_t asich = nsc->sc_asich;
    125  1.64.2.1  uebayasi 	uint8_t romdata[16];
    126  1.64.2.1  uebayasi 	int memstart, memsize, i, useword;
    127       1.2   thorpej 
    128       1.2   thorpej 	/*
    129      1.19     enami 	 * Detect it again unless caller specified it; this gives us
    130      1.19     enami 	 * the memory size.
    131       1.2   thorpej 	 */
    132      1.42   mycroft 	if (nsc->sc_type == NE2000_TYPE_UNKNOWN)
    133      1.19     enami 		nsc->sc_type = ne2000_detect(nict, nich, asict, asich);
    134      1.42   mycroft 
    135      1.42   mycroft 	/*
    136      1.42   mycroft 	 * 8k of memory for NE1000, 16k for NE2000 and 24k for the
    137      1.42   mycroft 	 * card uses DL10019.
    138      1.42   mycroft 	 */
    139      1.42   mycroft 	switch (nsc->sc_type) {
    140      1.42   mycroft 	case NE2000_TYPE_UNKNOWN:
    141      1.42   mycroft 	default:
    142      1.57      cube 		aprint_error_dev(dsc->sc_dev, "where did the card go?\n");
    143  1.64.2.1  uebayasi 		return 1;
    144      1.42   mycroft 	case NE2000_TYPE_NE1000:
    145  1.64.2.1  uebayasi 		memstart = 8192;
    146      1.42   mycroft 		memsize = 8192;
    147      1.42   mycroft 		useword = 0;
    148      1.42   mycroft 		break;
    149      1.42   mycroft 	case NE2000_TYPE_NE2000:
    150      1.42   mycroft 	case NE2000_TYPE_AX88190:		/* XXX really? */
    151      1.42   mycroft 	case NE2000_TYPE_AX88790:
    152  1.64.2.1  uebayasi #if NRTL80X9 > 0
    153  1.64.2.1  uebayasi 	case NE2000_TYPE_RTL8019:
    154  1.64.2.1  uebayasi #endif
    155  1.64.2.1  uebayasi 		memstart = 16384;
    156  1.64.2.1  uebayasi 		memsize = 16384;
    157      1.42   mycroft 		useword = 1;
    158  1.64.2.1  uebayasi 		if (
    159  1.64.2.1  uebayasi #ifdef NE2000_DETECT_8BIT
    160  1.64.2.1  uebayasi 		    ne2000_detect_8bit(nict, nich, asict, asich) ||
    161  1.64.2.1  uebayasi #endif
    162  1.64.2.1  uebayasi 		    (nsc->sc_quirk & NE2000_QUIRK_8BIT) != 0) {
    163  1.64.2.1  uebayasi 			/* in 8 bit mode, only 8KB memory can be used */
    164  1.64.2.1  uebayasi 			memsize = 8192;
    165  1.64.2.1  uebayasi 			useword = 0;
    166  1.64.2.1  uebayasi 		}
    167      1.42   mycroft 		break;
    168      1.42   mycroft 	case NE2000_TYPE_DL10019:
    169      1.42   mycroft 	case NE2000_TYPE_DL10022:
    170  1.64.2.1  uebayasi 		memstart = 8192 * 3;
    171      1.42   mycroft 		memsize = 8192 * 3;
    172      1.42   mycroft 		useword = 1;
    173      1.42   mycroft 		break;
    174       1.2   thorpej 	}
    175       1.2   thorpej 
    176      1.42   mycroft 	nsc->sc_useword = useword;
    177  1.64.2.1  uebayasi #if NRTL80X9 > 0
    178  1.64.2.1  uebayasi 	if (nsc->sc_type == NE2000_TYPE_RTL8019) {
    179  1.64.2.1  uebayasi 		dsc->init_card = rtl80x9_init_card;
    180  1.64.2.1  uebayasi 		dsc->sc_media_init = rtl80x9_media_init;
    181  1.64.2.1  uebayasi 		dsc->sc_mediachange = rtl80x9_mediachange;
    182  1.64.2.1  uebayasi 		dsc->sc_mediastatus = rtl80x9_mediastatus;
    183  1.64.2.1  uebayasi 	}
    184  1.64.2.1  uebayasi #endif
    185       1.2   thorpej 
    186       1.2   thorpej 	dsc->cr_proto = ED_CR_RD2;
    187      1.39  christos 	if (nsc->sc_type == NE2000_TYPE_AX88190 ||
    188      1.39  christos 	    nsc->sc_type == NE2000_TYPE_AX88790) {
    189      1.27     enami 		dsc->rcr_proto = ED_RCR_INTT;
    190      1.27     enami 		dsc->sc_flags |= DP8390_DO_AX88190_WORKAROUND;
    191      1.27     enami 	} else
    192      1.27     enami 		dsc->rcr_proto = 0;
    193       1.2   thorpej 
    194       1.2   thorpej 	/*
    195       1.2   thorpej 	 * DCR gets:
    196       1.2   thorpej 	 *
    197       1.2   thorpej 	 *	FIFO threshold to 8, No auto-init Remote DMA,
    198       1.2   thorpej 	 *	byte order=80x86.
    199       1.2   thorpej 	 *
    200       1.2   thorpej 	 * NE1000 gets byte-wide DMA, NE2000 gets word-wide DMA.
    201       1.2   thorpej 	 */
    202  1.64.2.1  uebayasi 	dsc->dcr_reg = ED_DCR_FT1 | ED_DCR_LS | (useword ? ED_DCR_WTS : 0);
    203       1.2   thorpej 
    204       1.2   thorpej 	dsc->test_mem = ne2000_test_mem;
    205       1.2   thorpej 	dsc->ring_copy = ne2000_ring_copy;
    206       1.2   thorpej 	dsc->write_mbuf = ne2000_write_mbuf;
    207       1.2   thorpej 	dsc->read_hdr = ne2000_read_hdr;
    208       1.2   thorpej 
    209       1.2   thorpej 	/* Registers are linear. */
    210       1.2   thorpej 	for (i = 0; i < 16; i++)
    211       1.2   thorpej 		dsc->sc_reg_map[i] = i;
    212       1.2   thorpej 
    213       1.2   thorpej 	/*
    214       1.2   thorpej 	 * NIC memory doens't start at zero on an NE board.
    215       1.2   thorpej 	 * The start address is tied to the bus width.
    216       1.2   thorpej 	 */
    217       1.2   thorpej #ifdef GWETHER
    218       1.2   thorpej 	{
    219  1.64.2.1  uebayasi 		int x;
    220       1.2   thorpej 		int8_t pbuf0[ED_PAGE_SIZE], pbuf[ED_PAGE_SIZE],
    221       1.2   thorpej 		    tbuf[ED_PAGE_SIZE];
    222       1.2   thorpej 
    223  1.64.2.1  uebayasi 		memstart = 0;
    224       1.2   thorpej 		for (i = 0; i < ED_PAGE_SIZE; i++)
    225       1.2   thorpej 			pbuf0[i] = 0;
    226       1.2   thorpej 
    227       1.2   thorpej 		/* Search for the start of RAM. */
    228       1.2   thorpej 		for (x = 1; x < 256; x++) {
    229       1.2   thorpej 			ne2000_writemem(nict, nich, asict, asich, pbuf0,
    230      1.15   thorpej 			    x << ED_PAGE_SHIFT, ED_PAGE_SIZE, useword, 0);
    231       1.2   thorpej 			ne2000_readmem(nict, nich, asict, asich,
    232       1.2   thorpej 			    x << ED_PAGE_SHIFT, tbuf, ED_PAGE_SIZE, useword);
    233      1.34   thorpej 			if (memcmp(pbuf0, tbuf, ED_PAGE_SIZE) == 0) {
    234       1.2   thorpej 				for (i = 0; i < ED_PAGE_SIZE; i++)
    235       1.2   thorpej 					pbuf[i] = 255 - x;
    236       1.2   thorpej 				ne2000_writemem(nict, nich, asict, asich,
    237       1.2   thorpej 				    pbuf, x << ED_PAGE_SHIFT, ED_PAGE_SIZE,
    238      1.15   thorpej 				    useword, 0);
    239       1.2   thorpej 				ne2000_readmem(nict, nich, asict, asich,
    240       1.2   thorpej 				    x << ED_PAGE_SHIFT, tbuf, ED_PAGE_SIZE,
    241       1.2   thorpej 				    useword);
    242      1.34   thorpej 				if (memcmp(pbuf, tbuf, ED_PAGE_SIZE) == 0) {
    243  1.64.2.1  uebayasi 					memstart = x << ED_PAGE_SHIFT;
    244       1.2   thorpej 					memsize = ED_PAGE_SIZE;
    245       1.2   thorpej 					break;
    246       1.2   thorpej 				}
    247       1.2   thorpej 			}
    248       1.2   thorpej 		}
    249       1.2   thorpej 
    250  1.64.2.1  uebayasi 		if (memstart == 0) {
    251  1.64.2.1  uebayasi 			aprint_error_dev(&dsc->sc_dev,
    252  1.64.2.1  uebayasi 			    "cannot find start of RAM\n");
    253  1.64.2.1  uebayasi 			return 1;
    254       1.2   thorpej 		}
    255       1.2   thorpej 
    256       1.2   thorpej 		/* Search for the end of RAM. */
    257       1.2   thorpej 		for (++x; x < 256; x++) {
    258       1.2   thorpej 			ne2000_writemem(nict, nich, asict, asich, pbuf0,
    259      1.15   thorpej 			    x << ED_PAGE_SHIFT, ED_PAGE_SIZE, useword, 0);
    260       1.2   thorpej 			ne2000_readmem(nict, nich, asict, asich,
    261       1.2   thorpej 			    x << ED_PAGE_SHIFT, tbuf, ED_PAGE_SIZE, useword);
    262      1.34   thorpej 			if (memcmp(pbuf0, tbuf, ED_PAGE_SIZE) == 0) {
    263       1.2   thorpej 				for (i = 0; i < ED_PAGE_SIZE; i++)
    264       1.2   thorpej 					pbuf[i] = 255 - x;
    265       1.2   thorpej 				ne2000_writemem(nict, nich, asict, asich,
    266       1.2   thorpej 				    pbuf, x << ED_PAGE_SHIFT, ED_PAGE_SIZE,
    267      1.15   thorpej 				    useword, 0);
    268       1.2   thorpej 				ne2000_readmem(nict, nich, asict, asich,
    269      1.13   msaitoh 				    x << ED_PAGE_SHIFT, tbuf, ED_PAGE_SIZE,
    270       1.2   thorpej 				    useword);
    271      1.34   thorpej 				if (memcmp(pbuf, tbuf, ED_PAGE_SIZE) == 0)
    272       1.2   thorpej 					memsize += ED_PAGE_SIZE;
    273       1.2   thorpej 				else
    274       1.2   thorpej 					break;
    275       1.2   thorpej 			} else
    276       1.2   thorpej 				break;
    277       1.2   thorpej 		}
    278       1.2   thorpej 
    279       1.2   thorpej 		printf("%s: RAM start 0x%x, size %d\n",
    280  1.64.2.1  uebayasi 		    device_xname(&dsc->sc_dev), memstart, memsize);
    281       1.2   thorpej 	}
    282       1.2   thorpej #endif /* GWETHER */
    283  1.64.2.1  uebayasi 	dsc->mem_start = memstart;
    284       1.2   thorpej 
    285       1.2   thorpej 	dsc->mem_size = memsize;
    286       1.2   thorpej 
    287       1.2   thorpej 	if (myea == NULL) {
    288       1.2   thorpej 		/* Read the station address. */
    289      1.39  christos 		if (nsc->sc_type == NE2000_TYPE_AX88190 ||
    290      1.39  christos 		    nsc->sc_type == NE2000_TYPE_AX88790) {
    291      1.27     enami 			/* Select page 0 registers. */
    292      1.28        ws 			NIC_BARRIER(nict, nich);
    293      1.27     enami 			bus_space_write_1(nict, nich, ED_P0_CR,
    294      1.27     enami 			    ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STA);
    295      1.28        ws 			NIC_BARRIER(nict, nich);
    296      1.27     enami 			/* Select word transfer. */
    297      1.62    nonaka 			bus_space_write_1(nict, nich, ED_P0_DCR,
    298  1.64.2.1  uebayasi 			    useword ? ED_DCR_WTS : 0);
    299      1.28        ws 			NIC_BARRIER(nict, nich);
    300      1.27     enami 			ne2000_readmem(nict, nich, asict, asich,
    301      1.36     enami 			    AX88190_NODEID_OFFSET, dsc->sc_enaddr,
    302      1.27     enami 			    ETHER_ADDR_LEN, useword);
    303      1.27     enami 		} else {
    304  1.64.2.1  uebayasi 			bool ne1000 = (nsc->sc_type == NE2000_TYPE_NE1000);
    305  1.64.2.1  uebayasi 
    306      1.27     enami 			ne2000_readmem(nict, nich, asict, asich, 0, romdata,
    307      1.27     enami 			    sizeof(romdata), useword);
    308      1.27     enami 			for (i = 0; i < ETHER_ADDR_LEN; i++)
    309      1.27     enami 				dsc->sc_enaddr[i] =
    310  1.64.2.1  uebayasi 				    romdata[i * (ne1000 ? 1 : 2)];
    311      1.27     enami 		}
    312       1.2   thorpej 	} else
    313      1.35   thorpej 		memcpy(dsc->sc_enaddr, myea, sizeof(dsc->sc_enaddr));
    314       1.2   thorpej 
    315       1.2   thorpej 	/* Clear any pending interrupts that might have occurred above. */
    316      1.28        ws 	NIC_BARRIER(nict, nich);
    317       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_ISR, 0xff);
    318      1.28        ws 	NIC_BARRIER(nict, nich);
    319       1.2   thorpej 
    320      1.32   thorpej 	if (dsc->sc_media_init == NULL)
    321      1.32   thorpej 		dsc->sc_media_init = dp8390_media_init;
    322      1.32   thorpej 
    323      1.32   thorpej 	if (dp8390_config(dsc)) {
    324      1.57      cube 		aprint_error_dev(dsc->sc_dev, "setup failed\n");
    325  1.64.2.1  uebayasi 		return 1;
    326       1.2   thorpej 	}
    327       1.2   thorpej 
    328  1.64.2.1  uebayasi 	return 0;
    329       1.2   thorpej }
    330       1.2   thorpej 
    331       1.2   thorpej /*
    332       1.2   thorpej  * Detect an NE-2000 or compatible.  Returns a model code.
    333       1.2   thorpej  */
    334       1.2   thorpej int
    335  1.64.2.1  uebayasi ne2000_detect(bus_space_tag_t nict, bus_space_handle_t nich,
    336  1.64.2.1  uebayasi     bus_space_tag_t asict, bus_space_handle_t asich)
    337       1.2   thorpej {
    338  1.64.2.1  uebayasi 	const uint8_t test_pattern[32] = "THIS is A memory TEST pattern";
    339  1.64.2.1  uebayasi 	uint8_t test_buffer[32], tmp;
    340      1.56  dholland 	int i, rv = NE2000_TYPE_UNKNOWN;
    341  1.64.2.1  uebayasi 	int useword;
    342       1.2   thorpej 
    343       1.2   thorpej 	/* Reset the board. */
    344       1.2   thorpej #ifdef GWETHER
    345       1.2   thorpej 	bus_space_write_1(asict, asich, NE2000_ASIC_RESET, 0);
    346      1.44   mycroft 	ASIC_BARRIER(asict, asich);
    347       1.2   thorpej 	delay(200);
    348       1.2   thorpej #endif /* GWETHER */
    349       1.2   thorpej 	tmp = bus_space_read_1(asict, asich, NE2000_ASIC_RESET);
    350      1.44   mycroft 	ASIC_BARRIER(asict, asich);
    351       1.2   thorpej 	delay(10000);
    352       1.2   thorpej 
    353       1.2   thorpej 	/*
    354       1.2   thorpej 	 * I don't know if this is necessary; probably cruft leftover from
    355       1.2   thorpej 	 * Clarkson packet driver code. Doesn't do a thing on the boards I've
    356       1.2   thorpej 	 * tested. -DG [note that a outb(0x84, 0) seems to work here, and is
    357       1.2   thorpej 	 * non-invasive...but some boards don't seem to reset and I don't have
    358       1.2   thorpej 	 * complete documentation on what the 'right' thing to do is...so we do
    359       1.2   thorpej 	 * the invasive thing for now.  Yuck.]
    360       1.2   thorpej 	 */
    361       1.2   thorpej 	bus_space_write_1(asict, asich, NE2000_ASIC_RESET, tmp);
    362      1.44   mycroft 	ASIC_BARRIER(asict, asich);
    363       1.2   thorpej 	delay(5000);
    364       1.2   thorpej 
    365       1.2   thorpej 	/*
    366       1.2   thorpej 	 * This is needed because some NE clones apparently don't reset the
    367       1.2   thorpej 	 * NIC properly (or the NIC chip doesn't reset fully on power-up).
    368       1.2   thorpej 	 * XXX - this makes the probe invasive!  Done against my better
    369       1.2   thorpej 	 * judgement.  -DLG
    370       1.2   thorpej 	 */
    371       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_CR,
    372       1.2   thorpej 	    ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STP);
    373      1.28        ws 	NIC_BARRIER(nict, nich);
    374       1.2   thorpej 
    375       1.2   thorpej 	delay(5000);
    376       1.2   thorpej 
    377       1.4   thorpej 	/*
    378      1.41       wiz 	 * Generic probe routine for testing for the existence of a DS8390.
    379       1.4   thorpej 	 * Must be performed  after the NIC has just been reset.  This
    380       1.4   thorpej 	 * works by looking at certain register values that are guaranteed
    381       1.4   thorpej 	 * to be initialized a certain way after power-up or reset.
    382       1.4   thorpej 	 *
    383       1.4   thorpej 	 * Specifically:
    384       1.4   thorpej 	 *
    385       1.4   thorpej 	 *	Register		reset bits	set bits
    386       1.4   thorpej 	 *	--------		----------	--------
    387       1.4   thorpej 	 *	CR			TXP, STA	RD2, STP
    388       1.4   thorpej 	 *	ISR					RST
    389       1.4   thorpej 	 *	IMR			<all>
    390       1.4   thorpej 	 *	DCR					LAS
    391       1.4   thorpej 	 *	TCR			LB1, LB0
    392       1.4   thorpej 	 *
    393       1.4   thorpej 	 * We only look at CR and ISR, however, since looking at the others
    394       1.4   thorpej 	 * would require changing register pages, which would be intrusive
    395       1.4   thorpej 	 * if this isn't an 8390.
    396       1.4   thorpej 	 */
    397       1.4   thorpej 
    398       1.2   thorpej 	tmp = bus_space_read_1(nict, nich, ED_P0_CR);
    399       1.2   thorpej 	if ((tmp & (ED_CR_RD2 | ED_CR_TXP | ED_CR_STA | ED_CR_STP)) !=
    400       1.2   thorpej 	    (ED_CR_RD2 | ED_CR_STP))
    401       1.4   thorpej 		goto out;
    402       1.4   thorpej 
    403       1.4   thorpej 	tmp = bus_space_read_1(nict, nich, ED_P0_ISR);
    404       1.4   thorpej 	if ((tmp & ED_ISR_RST) != ED_ISR_RST)
    405       1.2   thorpej 		goto out;
    406       1.2   thorpej 
    407       1.2   thorpej 	bus_space_write_1(nict, nich,
    408       1.2   thorpej 	    ED_P0_CR, ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STA);
    409      1.28        ws 	NIC_BARRIER(nict, nich);
    410       1.2   thorpej 
    411       1.2   thorpej 	for (i = 0; i < 100; i++) {
    412       1.2   thorpej 		if ((bus_space_read_1(nict, nich, ED_P0_ISR) & ED_ISR_RST) ==
    413       1.2   thorpej 		    ED_ISR_RST) {
    414       1.2   thorpej 			/* Ack the reset bit. */
    415       1.2   thorpej 			bus_space_write_1(nict, nich, ED_P0_ISR, ED_ISR_RST);
    416      1.28        ws 			NIC_BARRIER(nict, nich);
    417       1.2   thorpej 			break;
    418       1.2   thorpej 		}
    419       1.2   thorpej 		delay(100);
    420       1.2   thorpej 	}
    421       1.2   thorpej 
    422       1.2   thorpej #if 0
    423       1.2   thorpej 	/* XXX */
    424       1.2   thorpej 	if (i == 100)
    425       1.2   thorpej 		goto out;
    426       1.2   thorpej #endif
    427       1.2   thorpej 
    428       1.2   thorpej 	/*
    429       1.2   thorpej 	 * Test the ability to read and write to the NIC memory.  This has
    430       1.2   thorpej 	 * the side effect of determining if this is an NE1000 or an NE2000.
    431       1.2   thorpej 	 */
    432       1.2   thorpej 
    433       1.2   thorpej 	/*
    434       1.2   thorpej 	 * This prevents packets from being stored in the NIC memory when
    435       1.2   thorpej 	 * the readmem routine turns on the start bit in the CR.
    436       1.2   thorpej 	 */
    437       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RCR, ED_RCR_MON);
    438      1.28        ws 	NIC_BARRIER(nict, nich);
    439       1.2   thorpej 
    440       1.2   thorpej 	/* Temporarily initialize DCR for byte operations. */
    441       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_DCR, ED_DCR_FT1 | ED_DCR_LS);
    442       1.2   thorpej 
    443       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_PSTART, 8192 >> ED_PAGE_SHIFT);
    444       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_PSTOP, 16384 >> ED_PAGE_SHIFT);
    445       1.2   thorpej 
    446       1.2   thorpej 	/*
    447       1.2   thorpej 	 * Write a test pattern in byte mode.  If this fails, then there
    448       1.2   thorpej 	 * probably isn't any memory at 8k - which likely means that the
    449       1.2   thorpej 	 * board is an NE2000.
    450       1.2   thorpej 	 */
    451       1.2   thorpej 	ne2000_writemem(nict, nich, asict, asich, test_pattern, 8192,
    452      1.15   thorpej 	    sizeof(test_pattern), 0, 1);
    453       1.2   thorpej 	ne2000_readmem(nict, nich, asict, asich, 8192, test_buffer,
    454       1.2   thorpej 	    sizeof(test_buffer), 0);
    455       1.2   thorpej 
    456  1.64.2.1  uebayasi 	if (memcmp(test_pattern, test_buffer, sizeof(test_pattern)) == 0) {
    457       1.2   thorpej 		/* We're an NE1000. */
    458       1.2   thorpej 		rv = NE2000_TYPE_NE1000;
    459  1.64.2.1  uebayasi 		goto out;
    460  1.64.2.1  uebayasi 	}
    461  1.64.2.1  uebayasi 
    462  1.64.2.1  uebayasi 	/* not an NE1000 - try NE2000 */
    463  1.64.2.1  uebayasi 
    464  1.64.2.1  uebayasi 	/* try 16 bit mode first */
    465  1.64.2.1  uebayasi 	useword = 1;
    466  1.64.2.1  uebayasi 
    467  1.64.2.1  uebayasi #ifdef NE2000_DETECT_8BIT
    468  1.64.2.1  uebayasi 	/*
    469  1.64.2.1  uebayasi 	 * Check bus type in EEPROM first because some NE2000 compatible wedges
    470  1.64.2.1  uebayasi 	 * on 16 bit DMA access if the chip is configured in 8 bit mode.
    471  1.64.2.1  uebayasi 	 */
    472  1.64.2.1  uebayasi 	if (ne2000_detect_8bit(nict, nich, asict, asich))
    473  1.64.2.1  uebayasi 		useword = 0;
    474  1.64.2.1  uebayasi #endif
    475  1.64.2.1  uebayasi  again:
    476  1.64.2.1  uebayasi 	bus_space_write_1(nict, nich, ED_P0_DCR, ED_DCR_FT1 | ED_DCR_LS |
    477  1.64.2.1  uebayasi 	    (useword ? ED_DCR_WTS : 0));
    478  1.64.2.1  uebayasi 	bus_space_write_1(nict, nich, ED_P0_PSTART, 16384 >> ED_PAGE_SHIFT);
    479  1.64.2.1  uebayasi 	bus_space_write_1(nict, nich, ED_P0_PSTOP,
    480  1.64.2.1  uebayasi 	    (16384 + (useword ? 16384 : 8192)) >> ED_PAGE_SHIFT);
    481  1.64.2.1  uebayasi 
    482  1.64.2.1  uebayasi 	/*
    483  1.64.2.1  uebayasi 	 * Write the test pattern in word mode.  If this also fails,
    484  1.64.2.1  uebayasi 	 * then we don't know what this board is.
    485  1.64.2.1  uebayasi 	 */
    486  1.64.2.1  uebayasi 	ne2000_writemem(nict, nich, asict, asich, test_pattern, 16384,
    487  1.64.2.1  uebayasi 	    sizeof(test_pattern), useword, 1);
    488  1.64.2.1  uebayasi 	ne2000_readmem(nict, nich, asict, asich, 16384, test_buffer,
    489  1.64.2.1  uebayasi 	    sizeof(test_buffer), useword);
    490  1.64.2.1  uebayasi 
    491  1.64.2.1  uebayasi 	if (memcmp(test_pattern, test_buffer, sizeof(test_pattern)) != 0) {
    492  1.64.2.1  uebayasi 		if (useword == 1) {
    493  1.64.2.1  uebayasi 			/* try 8 bit mode */
    494  1.64.2.1  uebayasi 			useword = 0;
    495  1.64.2.1  uebayasi 			goto again;
    496  1.64.2.1  uebayasi 		}
    497  1.64.2.1  uebayasi 		return NE2000_TYPE_UNKNOWN;	/* not an NE2000 either */
    498       1.2   thorpej 	}
    499       1.2   thorpej 
    500  1.64.2.1  uebayasi 	rv = NE2000_TYPE_NE2000;
    501  1.64.2.1  uebayasi 
    502  1.64.2.1  uebayasi #if NRTL80X9 > 0
    503  1.64.2.1  uebayasi 	/* Check for a Realtek RTL8019. */
    504  1.64.2.1  uebayasi 	if (bus_space_read_1(nict, nich, NERTL_RTL0_8019ID0) == RTL0_8019ID0 &&
    505  1.64.2.1  uebayasi 	    bus_space_read_1(nict, nich, NERTL_RTL0_8019ID1) == RTL0_8019ID1)
    506  1.64.2.1  uebayasi 		rv = NE2000_TYPE_RTL8019;
    507  1.64.2.1  uebayasi #endif
    508  1.64.2.1  uebayasi 
    509  1.64.2.1  uebayasi  out:
    510       1.2   thorpej 	/* Clear any pending interrupts that might have occurred above. */
    511      1.28        ws 	NIC_BARRIER(nict, nich);
    512       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_ISR, 0xff);
    513       1.2   thorpej 
    514  1.64.2.1  uebayasi 	return rv;
    515  1.64.2.1  uebayasi }
    516  1.64.2.1  uebayasi 
    517  1.64.2.1  uebayasi #ifdef NE2000_DETECT_8BIT
    518  1.64.2.1  uebayasi static bool
    519  1.64.2.1  uebayasi ne2000_detect_8bit(bus_space_tag_t nict, bus_space_handle_t nich,
    520  1.64.2.1  uebayasi     bus_space_tag_t asict, bus_space_handle_t asich)
    521  1.64.2.1  uebayasi {
    522  1.64.2.1  uebayasi 	bool is8bit;
    523  1.64.2.1  uebayasi 	uint8_t romdata[32];
    524  1.64.2.1  uebayasi 
    525  1.64.2.1  uebayasi 	is8bit = false;
    526  1.64.2.1  uebayasi 
    527  1.64.2.1  uebayasi 	/* Set DCR for 8 bit DMA. */
    528  1.64.2.1  uebayasi 	bus_space_write_1(nict, nich, ED_P0_DCR, ED_DCR_FT1 | ED_DCR_LS);
    529  1.64.2.1  uebayasi 	/* Read PROM area. */
    530  1.64.2.1  uebayasi 	ne2000_readmem(nict, nich, asict, asich, 0, romdata,
    531  1.64.2.1  uebayasi 	    sizeof(romdata), 0);
    532  1.64.2.1  uebayasi 	if (romdata[28] == 'B' && romdata[30] == 'B') {
    533  1.64.2.1  uebayasi 		/* 'B' (0x42) in 8 bit mode, 'W' (0x57) in 16 bit mode */
    534  1.64.2.1  uebayasi 		is8bit = true;
    535  1.64.2.1  uebayasi 	}
    536  1.64.2.1  uebayasi 	if (!is8bit) {
    537  1.64.2.1  uebayasi 		/* not in 8 bit mode; put back DCR setting for 16 bit DMA */
    538  1.64.2.1  uebayasi 		bus_space_write_1(nict, nich, ED_P0_DCR,
    539  1.64.2.1  uebayasi 		    ED_DCR_FT1 | ED_DCR_LS | ED_DCR_WTS);
    540  1.64.2.1  uebayasi 	}
    541  1.64.2.1  uebayasi 
    542  1.64.2.1  uebayasi 	return is8bit;
    543       1.2   thorpej }
    544  1.64.2.1  uebayasi #endif
    545       1.2   thorpej 
    546       1.2   thorpej /*
    547       1.2   thorpej  * Write an mbuf chain to the destination NIC memory address using programmed
    548       1.2   thorpej  * I/O.
    549       1.2   thorpej  */
    550       1.2   thorpej int
    551      1.60       dsl ne2000_write_mbuf(struct dp8390_softc *sc, struct mbuf *m, int buf)
    552       1.2   thorpej {
    553       1.2   thorpej 	struct ne2000_softc *nsc = (struct ne2000_softc *)sc;
    554       1.2   thorpej 	bus_space_tag_t nict = sc->sc_regt;
    555       1.2   thorpej 	bus_space_handle_t nich = sc->sc_regh;
    556       1.2   thorpej 	bus_space_tag_t asict = nsc->sc_asict;
    557       1.2   thorpej 	bus_space_handle_t asich = nsc->sc_asich;
    558      1.38    bouyer 	int savelen, padlen;
    559       1.2   thorpej 	int maxwait = 100;	/* about 120us */
    560       1.2   thorpej 
    561       1.2   thorpej 	savelen = m->m_pkthdr.len;
    562      1.38    bouyer 	if (savelen < ETHER_MIN_LEN - ETHER_CRC_LEN) {
    563      1.38    bouyer 		padlen = ETHER_MIN_LEN - ETHER_CRC_LEN - savelen;
    564      1.38    bouyer 		savelen = ETHER_MIN_LEN - ETHER_CRC_LEN;
    565      1.38    bouyer 	} else
    566      1.38    bouyer 		padlen = 0;
    567      1.38    bouyer 
    568       1.2   thorpej 
    569       1.2   thorpej 	/* Select page 0 registers. */
    570      1.28        ws 	NIC_BARRIER(nict, nich);
    571       1.3     enami 	bus_space_write_1(nict, nich, ED_P0_CR,
    572       1.3     enami 	    ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STA);
    573      1.28        ws 	NIC_BARRIER(nict, nich);
    574       1.2   thorpej 
    575       1.2   thorpej 	/* Reset remote DMA complete flag. */
    576       1.3     enami 	bus_space_write_1(nict, nich, ED_P0_ISR, ED_ISR_RDC);
    577      1.28        ws 	NIC_BARRIER(nict, nich);
    578       1.2   thorpej 
    579       1.2   thorpej 	/* Set up DMA byte count. */
    580       1.3     enami 	bus_space_write_1(nict, nich, ED_P0_RBCR0, savelen);
    581       1.3     enami 	bus_space_write_1(nict, nich, ED_P0_RBCR1, savelen >> 8);
    582       1.2   thorpej 
    583       1.2   thorpej 	/* Set up destination address in NIC mem. */
    584       1.3     enami 	bus_space_write_1(nict, nich, ED_P0_RSAR0, buf);
    585       1.3     enami 	bus_space_write_1(nict, nich, ED_P0_RSAR1, buf >> 8);
    586       1.2   thorpej 
    587       1.2   thorpej 	/* Set remote DMA write. */
    588      1.28        ws 	NIC_BARRIER(nict, nich);
    589       1.3     enami 	bus_space_write_1(nict, nich,
    590       1.3     enami 	    ED_P0_CR, ED_CR_RD1 | ED_CR_PAGE_0 | ED_CR_STA);
    591      1.28        ws 	NIC_BARRIER(nict, nich);
    592       1.2   thorpej 
    593       1.2   thorpej 	/*
    594       1.2   thorpej 	 * Transfer the mbuf chain to the NIC memory.  NE2000 cards
    595       1.2   thorpej 	 * require that data be transferred as words, and only words,
    596       1.2   thorpej 	 * so that case requires some extra code to patch over odd-length
    597       1.2   thorpej 	 * mbufs.
    598       1.2   thorpej 	 */
    599  1.64.2.1  uebayasi 	if (nsc->sc_useword == 0) {
    600  1.64.2.1  uebayasi 		/* byte ops are easy. */
    601  1.64.2.1  uebayasi 		for (; m != NULL; m = m->m_next) {
    602       1.2   thorpej 			if (m->m_len) {
    603       1.2   thorpej 				bus_space_write_multi_1(asict, asich,
    604  1.64.2.1  uebayasi 				    NE2000_ASIC_DATA, mtod(m, uint8_t *),
    605       1.2   thorpej 				    m->m_len);
    606       1.2   thorpej 			}
    607       1.2   thorpej 		}
    608      1.38    bouyer 		if (padlen) {
    609      1.38    bouyer 			for(; padlen > 0; padlen--)
    610      1.38    bouyer 				bus_space_write_1(asict, asich,
    611      1.38    bouyer 				    NE2000_ASIC_DATA, 0);
    612      1.38    bouyer 		}
    613       1.2   thorpej 	} else {
    614  1.64.2.1  uebayasi 		/* word ops are a bit trickier. */
    615  1.64.2.1  uebayasi 		uint8_t *data, savebyte[2];
    616      1.12   thorpej 		int l, leftover;
    617      1.12   thorpej #ifdef DIAGNOSTIC
    618  1.64.2.1  uebayasi 		uint8_t *lim;
    619      1.12   thorpej #endif
    620      1.12   thorpej 		/* Start out with no leftover data. */
    621      1.12   thorpej 		leftover = 0;
    622      1.12   thorpej 		savebyte[0] = savebyte[1] = 0;
    623       1.2   thorpej 
    624  1.64.2.1  uebayasi 		for (; m != NULL; m = m->m_next) {
    625       1.2   thorpej 			l = m->m_len;
    626       1.2   thorpej 			if (l == 0)
    627       1.2   thorpej 				continue;
    628  1.64.2.1  uebayasi 			data = mtod(m, uint8_t *);
    629      1.12   thorpej #ifdef DIAGNOSTIC
    630      1.12   thorpej 			lim = data + l;
    631      1.12   thorpej #endif
    632      1.12   thorpej 			while (l > 0) {
    633      1.12   thorpej 				if (leftover) {
    634      1.12   thorpej 					/*
    635      1.12   thorpej 					 * Data left over (from mbuf or
    636      1.12   thorpej 					 * realignment).  Buffer the next
    637      1.12   thorpej 					 * byte, and write it and the
    638      1.12   thorpej 					 * leftover data out.
    639      1.12   thorpej 					 */
    640      1.12   thorpej 					savebyte[1] = *data++;
    641      1.12   thorpej 					l--;
    642      1.12   thorpej 					bus_space_write_stream_2(asict, asich,
    643      1.12   thorpej 					    NE2000_ASIC_DATA,
    644  1.64.2.1  uebayasi 					    *(uint16_t *)savebyte);
    645      1.12   thorpej 					leftover = 0;
    646      1.18  drochner 				} else if (BUS_SPACE_ALIGNED_POINTER(data,
    647  1.64.2.1  uebayasi 					   uint16_t) == 0) {
    648      1.12   thorpej 					/*
    649      1.12   thorpej 					 * Unaligned data; buffer the next
    650      1.12   thorpej 					 * byte.
    651      1.12   thorpej 					 */
    652      1.12   thorpej 					savebyte[0] = *data++;
    653      1.12   thorpej 					l--;
    654      1.12   thorpej 					leftover = 1;
    655      1.12   thorpej 				} else {
    656      1.12   thorpej 					/*
    657      1.12   thorpej 					 * Aligned data; output contiguous
    658      1.12   thorpej 					 * words as much as we can, then
    659      1.12   thorpej 					 * buffer the remaining byte, if any.
    660      1.12   thorpej 					 */
    661      1.12   thorpej 					leftover = l & 1;
    662      1.12   thorpej 					l &= ~1;
    663      1.12   thorpej 					bus_space_write_multi_stream_2(asict,
    664      1.12   thorpej 					    asich, NE2000_ASIC_DATA,
    665  1.64.2.1  uebayasi 					    (uint16_t *)data, l >> 1);
    666      1.12   thorpej 					data += l;
    667      1.12   thorpej 					if (leftover)
    668      1.12   thorpej 						savebyte[0] = *data++;
    669      1.12   thorpej 					l = 0;
    670      1.12   thorpej 				}
    671       1.2   thorpej 			}
    672      1.12   thorpej 			if (l < 0)
    673      1.12   thorpej 				panic("ne2000_write_mbuf: negative len");
    674      1.12   thorpej #ifdef DIAGNOSTIC
    675      1.12   thorpej 			if (data != lim)
    676      1.12   thorpej 				panic("ne2000_write_mbuf: data != lim");
    677      1.12   thorpej #endif
    678       1.2   thorpej 		}
    679      1.12   thorpej 		if (leftover) {
    680       1.2   thorpej 			savebyte[1] = 0;
    681      1.10  sakamoto 			bus_space_write_stream_2(asict, asich, NE2000_ASIC_DATA,
    682  1.64.2.1  uebayasi 			    *(uint16_t *)savebyte);
    683      1.38    bouyer 		}
    684      1.38    bouyer 		if (padlen) {
    685      1.43   mycroft 			for(; padlen > 1; padlen -= 2)
    686      1.38    bouyer 				bus_space_write_stream_2(asict, asich,
    687      1.38    bouyer 				    NE2000_ASIC_DATA, 0);
    688       1.2   thorpej 		}
    689       1.2   thorpej 	}
    690      1.28        ws 	NIC_BARRIER(nict, nich);
    691       1.2   thorpej 
    692      1.46       bsh 	/* AX88796 doesn't seem to have remote DMA complete */
    693      1.46       bsh 	if (sc->sc_flags & DP8390_NO_REMOTE_DMA_COMPLETE)
    694  1.64.2.1  uebayasi 		return savelen;
    695      1.46       bsh 
    696       1.2   thorpej 	/*
    697       1.2   thorpej 	 * Wait for remote DMA to complete.  This is necessary because on the
    698       1.2   thorpej 	 * transmit side, data is handled internally by the NIC in bursts, and
    699       1.2   thorpej 	 * we can't start another remote DMA until this one completes.  Not
    700       1.2   thorpej 	 * waiting causes really bad things to happen - like the NIC wedging
    701       1.2   thorpej 	 * the bus.
    702       1.2   thorpej 	 */
    703       1.2   thorpej 	while (((bus_space_read_1(nict, nich, ED_P0_ISR) & ED_ISR_RDC) !=
    704      1.28        ws 	    ED_ISR_RDC) && --maxwait) {
    705      1.49  christos 		(void)bus_space_read_1(nict, nich, ED_P0_CRDA1);
    706      1.49  christos 		(void)bus_space_read_1(nict, nich, ED_P0_CRDA0);
    707      1.28        ws 		NIC_BARRIER(nict, nich);
    708      1.28        ws 		DELAY(1);
    709      1.28        ws 	}
    710       1.2   thorpej 
    711       1.2   thorpej 	if (maxwait == 0) {
    712       1.2   thorpej 		log(LOG_WARNING,
    713       1.2   thorpej 		    "%s: remote transmit DMA failed to complete\n",
    714      1.57      cube 		    device_xname(sc->sc_dev));
    715       1.2   thorpej 		dp8390_reset(sc);
    716       1.2   thorpej 	}
    717       1.2   thorpej 
    718  1.64.2.1  uebayasi 	return savelen;
    719       1.2   thorpej }
    720       1.2   thorpej 
    721       1.2   thorpej /*
    722       1.2   thorpej  * Given a source and destination address, copy 'amout' of a packet from
    723       1.2   thorpej  * the ring buffer into a linear destination buffer.  Takes into account
    724       1.2   thorpej  * ring-wrap.
    725       1.2   thorpej  */
    726       1.2   thorpej int
    727      1.60       dsl ne2000_ring_copy(struct dp8390_softc *sc, int src, void *dstv, u_short amount)
    728       1.2   thorpej {
    729      1.54  christos 	char *dst = dstv;
    730       1.2   thorpej 	struct ne2000_softc *nsc = (struct ne2000_softc *)sc;
    731       1.2   thorpej 	bus_space_tag_t nict = sc->sc_regt;
    732       1.2   thorpej 	bus_space_handle_t nich = sc->sc_regh;
    733       1.2   thorpej 	bus_space_tag_t asict = nsc->sc_asict;
    734       1.2   thorpej 	bus_space_handle_t asich = nsc->sc_asich;
    735       1.2   thorpej 	u_short tmp_amount;
    736      1.42   mycroft 	int useword = nsc->sc_useword;
    737       1.2   thorpej 
    738       1.2   thorpej 	/* Does copy wrap to lower addr in ring buffer? */
    739       1.2   thorpej 	if (src + amount > sc->mem_end) {
    740       1.2   thorpej 		tmp_amount = sc->mem_end - src;
    741       1.2   thorpej 
    742       1.2   thorpej 		/* Copy amount up to end of NIC memory. */
    743       1.2   thorpej 		ne2000_readmem(nict, nich, asict, asich, src,
    744  1.64.2.1  uebayasi 		    (uint8_t *)dst, tmp_amount, useword);
    745       1.2   thorpej 
    746       1.2   thorpej 		amount -= tmp_amount;
    747       1.2   thorpej 		src = sc->mem_ring;
    748       1.2   thorpej 		dst += tmp_amount;
    749       1.2   thorpej 	}
    750       1.2   thorpej 
    751  1.64.2.1  uebayasi 	ne2000_readmem(nict, nich, asict, asich, src, (uint8_t *)dst,
    752       1.2   thorpej 	    amount, useword);
    753       1.2   thorpej 
    754  1.64.2.1  uebayasi 	return src + amount;
    755       1.2   thorpej }
    756       1.2   thorpej 
    757       1.2   thorpej void
    758      1.60       dsl ne2000_read_hdr(struct dp8390_softc *sc, int buf, struct dp8390_ring *hdr)
    759       1.2   thorpej {
    760       1.2   thorpej 	struct ne2000_softc *nsc = (struct ne2000_softc *)sc;
    761       1.2   thorpej 
    762       1.2   thorpej 	ne2000_readmem(sc->sc_regt, sc->sc_regh, nsc->sc_asict, nsc->sc_asich,
    763  1.64.2.1  uebayasi 	    buf, (uint8_t *)hdr, sizeof(struct dp8390_ring),
    764      1.42   mycroft 	    nsc->sc_useword);
    765       1.7   thorpej #if BYTE_ORDER == BIG_ENDIAN
    766       1.7   thorpej 	hdr->count = bswap16(hdr->count);
    767       1.7   thorpej #endif
    768       1.2   thorpej }
    769       1.2   thorpej 
    770       1.2   thorpej int
    771      1.52  christos ne2000_test_mem(struct dp8390_softc *sc)
    772       1.2   thorpej {
    773       1.2   thorpej 
    774       1.2   thorpej 	/* Noop. */
    775  1.64.2.1  uebayasi 	return 0;
    776       1.2   thorpej }
    777       1.2   thorpej 
    778       1.2   thorpej /*
    779       1.2   thorpej  * Given a NIC memory source address and a host memory destination address,
    780       1.2   thorpej  * copy 'amount' from NIC to host using programmed i/o.  The 'amount' is
    781       1.2   thorpej  * rounded up to a word - ok as long as mbufs are word sized.
    782       1.2   thorpej  */
    783       1.2   thorpej void
    784  1.64.2.1  uebayasi ne2000_readmem(bus_space_tag_t nict, bus_space_handle_t nich,
    785  1.64.2.1  uebayasi     bus_space_tag_t asict, bus_space_handle_t asich,
    786  1.64.2.1  uebayasi     int src, uint8_t *dst, size_t amount, int useword)
    787       1.2   thorpej {
    788       1.2   thorpej 
    789       1.2   thorpej 	/* Select page 0 registers. */
    790      1.28        ws 	NIC_BARRIER(nict, nich);
    791       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_CR,
    792       1.2   thorpej 	    ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STA);
    793      1.28        ws 	NIC_BARRIER(nict, nich);
    794       1.2   thorpej 
    795       1.2   thorpej 	/* Round up to a word. */
    796  1.64.2.1  uebayasi 	amount = roundup2(amount, sizeof(uint16_t));
    797       1.2   thorpej 
    798       1.2   thorpej 	/* Set up DMA byte count. */
    799       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RBCR0, amount);
    800       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RBCR1, amount >> 8);
    801       1.2   thorpej 
    802       1.2   thorpej 	/* Set up source address in NIC mem. */
    803       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RSAR0, src);
    804       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RSAR1, src >> 8);
    805       1.2   thorpej 
    806      1.28        ws 	NIC_BARRIER(nict, nich);
    807       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_CR,
    808       1.2   thorpej 	    ED_CR_RD0 | ED_CR_PAGE_0 | ED_CR_STA);
    809       1.2   thorpej 
    810      1.44   mycroft 	ASIC_BARRIER(asict, asich);
    811       1.2   thorpej 	if (useword)
    812      1.10  sakamoto 		bus_space_read_multi_stream_2(asict, asich, NE2000_ASIC_DATA,
    813  1.64.2.1  uebayasi 		    (uint16_t *)dst, amount >> 1);
    814       1.2   thorpej 	else
    815       1.2   thorpej 		bus_space_read_multi_1(asict, asich, NE2000_ASIC_DATA,
    816       1.2   thorpej 		    dst, amount);
    817       1.2   thorpej }
    818       1.2   thorpej 
    819       1.2   thorpej /*
    820       1.2   thorpej  * Stripped down routine for writing a linear buffer to NIC memory.  Only
    821       1.2   thorpej  * used in the probe routine to test the memory.  'len' must be even.
    822       1.2   thorpej  */
    823       1.2   thorpej void
    824  1.64.2.1  uebayasi ne2000_writemem(bus_space_tag_t nict, bus_space_handle_t nich,
    825  1.64.2.1  uebayasi     bus_space_tag_t asict, bus_space_handle_t asich,
    826  1.64.2.1  uebayasi     const uint8_t *src, int dst, size_t len, int useword, int quiet)
    827       1.2   thorpej {
    828       1.2   thorpej 	int maxwait = 100;	/* about 120us */
    829       1.2   thorpej 
    830       1.2   thorpej 	/* Select page 0 registers. */
    831      1.28        ws 	NIC_BARRIER(nict, nich);
    832       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_CR,
    833       1.2   thorpej 	    ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STA);
    834      1.28        ws 	NIC_BARRIER(nict, nich);
    835       1.2   thorpej 
    836       1.2   thorpej 	/* Reset remote DMA complete flag. */
    837       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_ISR, ED_ISR_RDC);
    838      1.28        ws 	NIC_BARRIER(nict, nich);
    839       1.2   thorpej 
    840       1.2   thorpej 	/* Set up DMA byte count. */
    841       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RBCR0, len);
    842       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RBCR1, len >> 8);
    843       1.2   thorpej 
    844       1.2   thorpej 	/* Set up destination address in NIC mem. */
    845       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RSAR0, dst);
    846       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_RSAR1, dst >> 8);
    847       1.2   thorpej 
    848       1.2   thorpej 	/* Set remote DMA write. */
    849      1.28        ws 	NIC_BARRIER(nict, nich);
    850       1.2   thorpej 	bus_space_write_1(nict, nich, ED_P0_CR,
    851       1.2   thorpej 	    ED_CR_RD1 | ED_CR_PAGE_0 | ED_CR_STA);
    852      1.44   mycroft 	NIC_BARRIER(nict, nich);
    853       1.2   thorpej 
    854      1.44   mycroft 	ASIC_BARRIER(asict, asich);
    855       1.2   thorpej 	if (useword)
    856      1.10  sakamoto 		bus_space_write_multi_stream_2(asict, asich, NE2000_ASIC_DATA,
    857  1.64.2.1  uebayasi 		    (const uint16_t *)src, len >> 1);
    858       1.2   thorpej 	else
    859       1.2   thorpej 		bus_space_write_multi_1(asict, asich, NE2000_ASIC_DATA,
    860       1.2   thorpej 		    src, len);
    861      1.44   mycroft 	ASIC_BARRIER(asict, asich);
    862       1.2   thorpej 
    863       1.2   thorpej 	/*
    864       1.2   thorpej 	 * Wait for remote DMA to complete.  This is necessary because on the
    865       1.2   thorpej 	 * transmit side, data is handled internally by the NIC in bursts, and
    866       1.2   thorpej 	 * we can't start another remote DMA until this one completes.  Not
    867       1.2   thorpej 	 * waiting causes really bad things to happen - like the NIC wedging
    868       1.2   thorpej 	 * the bus.
    869       1.2   thorpej 	 */
    870       1.2   thorpej 	while (((bus_space_read_1(nict, nich, ED_P0_ISR) & ED_ISR_RDC) !=
    871      1.28        ws 	    ED_ISR_RDC) && --maxwait)
    872      1.28        ws 		DELAY(1);
    873       1.2   thorpej 
    874      1.15   thorpej 	if (!quiet && maxwait == 0)
    875       1.2   thorpej 		printf("ne2000_writemem: failed to complete\n");
    876      1.24    itojun }
    877      1.24    itojun 
    878      1.24    itojun int
    879      1.60       dsl ne2000_detach(struct ne2000_softc *sc, int flags)
    880      1.24    itojun {
    881      1.26     enami 
    882  1.64.2.1  uebayasi 	return dp8390_detach(&sc->sc_dp8390, flags);
    883       1.2   thorpej }
    884      1.29        ws 
    885      1.29        ws #ifdef IPKDB_NE
    886      1.29        ws /*
    887      1.29        ws  * This code is essentially the same as ne2000_attach above.
    888      1.29        ws  */
    889      1.29        ws int
    890      1.60       dsl ne2000_ipkdb_attach(struct ipkdb_if *kip)
    891      1.29        ws {
    892      1.29        ws 	struct ne2000_softc *np = kip->port;
    893      1.29        ws 	struct dp8390_softc *dp = &np->sc_dp8390;
    894      1.29        ws 	bus_space_tag_t nict = dp->sc_regt;
    895      1.29        ws 	bus_space_handle_t nich = dp->sc_regh;
    896  1.64.2.1  uebayasi 	bus_space_tag_t asict = np->sc_asict;
    897  1.64.2.1  uebayasi 	bus_space_handle_t asich = np->sc_asich;
    898  1.64.2.1  uebayasi 	int i, useword;
    899      1.29        ws 
    900      1.29        ws #ifdef GWETHER
    901      1.29        ws 	/* Not supported (yet?) */
    902      1.29        ws 	return -1;
    903      1.29        ws #endif
    904      1.29        ws 
    905      1.62    nonaka 	if (np->sc_type == NE2000_TYPE_UNKNOWN)
    906  1.64.2.1  uebayasi 		np->sc_type = ne2000_detect(nict, nich, asict, asich);
    907      1.62    nonaka 	if (np->sc_type == NE2000_TYPE_UNKNOWN)
    908      1.29        ws 		return -1;
    909      1.29        ws 
    910      1.29        ws 	switch (np->sc_type) {
    911      1.29        ws 	case NE2000_TYPE_NE1000:
    912  1.64.2.1  uebayasi 		dp->mem_start = 8192;
    913  1.64.2.1  uebayasi 		dp->mem_size = 8192;
    914  1.64.2.1  uebayasi 		useword = 0;
    915      1.29        ws 		kip->name = "ne1000";
    916      1.29        ws 		break;
    917      1.29        ws 	case NE2000_TYPE_NE2000:
    918  1.64.2.1  uebayasi 	case NE2000_TYPE_AX88190:
    919  1.64.2.1  uebayasi 	case NE2000_TYPE_AX88790:
    920  1.64.2.1  uebayasi #if NRTL80X9 > 0
    921  1.64.2.1  uebayasi 	case NE2000_TYPE_RTL8019:
    922  1.64.2.1  uebayasi #endif
    923  1.64.2.1  uebayasi 		dp->mem_start = 16384;
    924  1.64.2.1  uebayasi 		dp->mem_size = 16384;
    925  1.64.2.1  uebayasi 		useword = 1;
    926  1.64.2.1  uebayasi 		if (
    927  1.64.2.1  uebayasi #ifdef NE2000_DETECT_8BIT
    928  1.64.2.1  uebayasi 		    ne2000_detect_8bit(nict, nich, asict, asich) ||
    929  1.64.2.1  uebayasi #endif
    930  1.64.2.1  uebayasi 		    (np->sc_quirk & NE2000_QUIRK_8BIT) != 0) {
    931  1.64.2.1  uebayasi 			/* in 8 bit mode, only 8KB memory can be used */
    932  1.64.2.1  uebayasi 			dp->mem_size = 8192;
    933  1.64.2.1  uebayasi 			useword = 0;
    934  1.64.2.1  uebayasi 		}
    935  1.64.2.1  uebayasi 		kip->name =
    936  1.64.2.1  uebayasi 		    (np->sc_type == NE2000_TYPE_AX88190 ||
    937  1.64.2.1  uebayasi 		     np->sc_type == NE2000_TYPE_AX88790) ?
    938  1.64.2.1  uebayasi 		    "ax88190" : "ne2000";
    939      1.29        ws 		break;
    940      1.29        ws 	case NE2000_TYPE_DL10019:
    941      1.33   thorpej 	case NE2000_TYPE_DL10022:
    942  1.64.2.1  uebayasi 		dp->mem_start = 8192 * 3;
    943  1.64.2.1  uebayasi 		dp->mem_size = 8192 * 3;
    944  1.64.2.1  uebayasi 		useword = 1;
    945      1.33   thorpej 		kip->name = (np->sc_type == NE2000_TYPE_DL10019) ?
    946      1.33   thorpej 		    "dl10022" : "dl10019";
    947      1.29        ws 		break;
    948      1.53      cube 	default:
    949      1.53      cube 		return -1;
    950      1.53      cube 		break;
    951      1.29        ws 	}
    952      1.29        ws 
    953  1.64.2.1  uebayasi 	np->sc_useword = useword;
    954  1.64.2.1  uebayasi #if NRTL80X9 > 0
    955  1.64.2.1  uebayasi 	if (np->sc_type == NE2000_TYPE_RTL8019) {
    956  1.64.2.1  uebayasi 		dp->init_card = rtl80x9_init_card;
    957  1.64.2.1  uebayasi 		dp->sc_media_init = rtl80x9_media_init;
    958  1.64.2.1  uebayasi 		dp->sc_mediachange = rtl80x9_mediachange;
    959  1.64.2.1  uebayasi 		dp->sc_mediastatus = rtl80x9_mediastatus;
    960  1.64.2.1  uebayasi 	}
    961  1.64.2.1  uebayasi #endif
    962  1.64.2.1  uebayasi 
    963  1.64.2.1  uebayasi 	dp->cr_proto = ED_CR_RD2;
    964  1.64.2.1  uebayasi 	if (np->sc_type == NE2000_TYPE_AX88190 ||
    965  1.64.2.1  uebayasi 	    np->sc_type == NE2000_TYPE_AX88790) {
    966  1.64.2.1  uebayasi 		dp->rcr_proto = ED_RCR_INTT;
    967  1.64.2.1  uebayasi 		dp->sc_flags |= DP8390_DO_AX88190_WORKAROUND;
    968  1.64.2.1  uebayasi 	} else
    969  1.64.2.1  uebayasi 		dp->rcr_proto = 0;
    970  1.64.2.1  uebayasi 	dp->dcr_reg = ED_DCR_FT1 | ED_DCR_LS | (useword ? ED_DCR_WTS : 0);
    971  1.64.2.1  uebayasi 
    972  1.64.2.1  uebayasi 	dp->test_mem = ne2000_test_mem;
    973  1.64.2.1  uebayasi 	dp->ring_copy = ne2000_ring_copy;
    974  1.64.2.1  uebayasi 	dp->write_mbuf = ne2000_write_mbuf;
    975  1.64.2.1  uebayasi 	dp->read_hdr = ne2000_read_hdr;
    976  1.64.2.1  uebayasi 
    977  1.64.2.1  uebayasi 	for (i = 0; i < 16; i++)
    978  1.64.2.1  uebayasi 		dp->sc_reg_map[i] = i;
    979  1.64.2.1  uebayasi 
    980      1.29        ws 	if (dp8390_ipkdb_attach(kip))
    981      1.29        ws 		return -1;
    982      1.29        ws 
    983      1.29        ws 	if (!(kip->flags & IPKDB_MYHW)) {
    984      1.29        ws 		char romdata[16];
    985      1.29        ws 
    986      1.29        ws 		/* Read the station address. */
    987      1.39  christos 		if (np->sc_type == NE2000_TYPE_AX88190 ||
    988      1.39  christos 		    np->sc_type == NE2000_TYPE_AX88790) {
    989      1.29        ws 			/* Select page 0 registers. */
    990      1.29        ws 			NIC_BARRIER(nict, nich);
    991      1.29        ws 			bus_space_write_1(nict, nich, ED_P0_CR,
    992      1.29        ws 				ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STA);
    993      1.29        ws 			NIC_BARRIER(nict, nich);
    994      1.29        ws 			/* Select word transfer */
    995      1.62    nonaka 			bus_space_write_1(nict, nich, ED_P0_DCR,
    996  1.64.2.1  uebayasi 			    useword ? ED_DCR_WTS : 0);
    997  1.64.2.1  uebayasi 			ne2000_readmem(nict, nich, asict, asich,
    998      1.36     enami 				AX88190_NODEID_OFFSET, kip->myenetaddr,
    999      1.29        ws 				ETHER_ADDR_LEN, useword);
   1000      1.29        ws 		} else {
   1001  1.64.2.1  uebayasi 			bool ne1000 = (np->sc_type == NE2000_TYPE_NE1000);
   1002  1.64.2.1  uebayasi 
   1003  1.64.2.1  uebayasi 			ne2000_readmem(nict, nich, asict, asich,
   1004      1.29        ws 				0, romdata, sizeof romdata, useword);
   1005      1.29        ws 			for (i = 0; i < ETHER_ADDR_LEN; i++)
   1006  1.64.2.1  uebayasi 				kip->myenetaddr[i] =
   1007  1.64.2.1  uebayasi 				    romdata[i * (ne1000 ? 1 : 2)];
   1008      1.29        ws 		}
   1009      1.29        ws 		kip->flags |= IPKDB_MYHW;
   1010      1.29        ws 
   1011      1.29        ws 	}
   1012      1.29        ws 	dp8390_stop(dp);
   1013      1.29        ws 
   1014      1.29        ws 	return 0;
   1015      1.29        ws }
   1016      1.29        ws #endif
   1017      1.50     peter 
   1018      1.61       uwe bool
   1019  1.64.2.1  uebayasi ne2000_suspend(device_t self, const pmf_qual_t *qual)
   1020      1.61       uwe {
   1021      1.61       uwe 	struct ne2000_softc *sc = device_private(self);
   1022      1.61       uwe 	struct dp8390_softc *dsc = &sc->sc_dp8390;
   1023      1.61       uwe 	int s;
   1024      1.61       uwe 
   1025      1.61       uwe 	s = splnet();
   1026      1.61       uwe 
   1027      1.61       uwe 	dp8390_stop(dsc);
   1028      1.61       uwe 	dp8390_disable(dsc);
   1029      1.61       uwe 
   1030      1.61       uwe 	splx(s);
   1031      1.61       uwe 	return true;
   1032      1.61       uwe }
   1033      1.61       uwe 
   1034      1.61       uwe bool
   1035  1.64.2.1  uebayasi ne2000_resume(device_t self, const pmf_qual_t *qual)
   1036      1.61       uwe {
   1037      1.61       uwe 	struct ne2000_softc *sc = device_private(self);
   1038      1.61       uwe 	struct dp8390_softc *dsc = &sc->sc_dp8390;
   1039      1.61       uwe 	struct ifnet *ifp = &dsc->sc_ec.ec_if;
   1040      1.61       uwe 	int s;
   1041      1.61       uwe 
   1042      1.61       uwe 	s = splnet();
   1043      1.61       uwe 
   1044      1.61       uwe 	if (ifp->if_flags & IFF_UP) {
   1045      1.61       uwe 		if (dp8390_enable(dsc) == 0)
   1046      1.61       uwe 			dp8390_init(dsc);
   1047      1.61       uwe 	}
   1048      1.61       uwe 
   1049      1.61       uwe 	splx(s);
   1050      1.61       uwe 	return true;
   1051      1.61       uwe }
   1052