Home | History | Annotate | Line # | Download | only in isa
if_ec.c revision 1.31.16.2
      1  1.31.16.1       mjf /*	$NetBSD: if_ec.c,v 1.31.16.2 2008/06/02 13:23:31 mjf Exp $	*/
      2        1.1   thorpej 
      3        1.1   thorpej /*-
      4        1.5   thorpej  * Copyright (c) 1997, 1998 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.1   thorpej  * NASA Ames Research Center.
     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  *
     20        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21        1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22        1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23        1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24        1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25        1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26        1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27        1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28        1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29        1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30        1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31        1.1   thorpej  */
     32        1.1   thorpej 
     33        1.1   thorpej /*
     34        1.1   thorpej  * Device driver for National Semiconductor DS8390/WD83C690 based ethernet
     35        1.1   thorpej  * adapters.
     36        1.1   thorpej  *
     37        1.1   thorpej  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
     38        1.1   thorpej  *
     39        1.1   thorpej  * Copyright (C) 1993, David Greenman.  This software may be used, modified,
     40        1.1   thorpej  * copied, distributed, and sold, in both source and binary form provided that
     41        1.1   thorpej  * the above copyright and these terms are retained.  Under no circumstances is
     42        1.1   thorpej  * the author responsible for the proper functioning of this software, nor does
     43        1.1   thorpej  * the author assume any responsibility for damages incurred with its use.
     44        1.1   thorpej  */
     45        1.1   thorpej 
     46        1.1   thorpej /*
     47        1.1   thorpej  * Device driver for the 3Com Etherlink II (3c503).
     48        1.1   thorpej  */
     49       1.15     lukem 
     50       1.15     lukem #include <sys/cdefs.h>
     51  1.31.16.1       mjf __KERNEL_RCSID(0, "$NetBSD: if_ec.c,v 1.31.16.2 2008/06/02 13:23:31 mjf Exp $");
     52        1.1   thorpej 
     53        1.1   thorpej #include <sys/param.h>
     54        1.1   thorpej #include <sys/systm.h>
     55        1.1   thorpej #include <sys/device.h>
     56        1.1   thorpej #include <sys/socket.h>
     57        1.1   thorpej #include <sys/mbuf.h>
     58        1.1   thorpej #include <sys/syslog.h>
     59        1.1   thorpej 
     60        1.1   thorpej #include <net/if.h>
     61        1.1   thorpej #include <net/if_dl.h>
     62        1.1   thorpej #include <net/if_types.h>
     63        1.1   thorpej #include <net/if_media.h>
     64        1.1   thorpej 
     65        1.1   thorpej #include <net/if_ether.h>
     66        1.1   thorpej 
     67       1.31        ad #include <sys/bus.h>
     68       1.31        ad #include <sys/intr.h>
     69        1.1   thorpej 
     70        1.1   thorpej #include <dev/isa/isareg.h>
     71        1.1   thorpej #include <dev/isa/isavar.h>
     72        1.1   thorpej 
     73        1.1   thorpej #include <dev/ic/dp8390reg.h>
     74        1.1   thorpej #include <dev/ic/dp8390var.h>
     75        1.1   thorpej 
     76        1.1   thorpej #include <dev/isa/if_ecreg.h>
     77        1.1   thorpej 
     78        1.1   thorpej struct ec_softc {
     79        1.1   thorpej 	struct dp8390_softc sc_dp8390;
     80        1.1   thorpej 
     81        1.1   thorpej 	bus_space_tag_t sc_asict;	/* space tag for ASIC */
     82        1.1   thorpej 	bus_space_handle_t sc_asich;	/* space handle for ASIC */
     83        1.1   thorpej 
     84        1.1   thorpej 	int sc_16bitp;			/* are we 16 bit? */
     85        1.1   thorpej 
     86        1.1   thorpej 	void *sc_ih;			/* interrupt handle */
     87        1.1   thorpej };
     88        1.1   thorpej 
     89  1.31.16.1       mjf int	ec_probe(device_t, cfdata_t, void *);
     90  1.31.16.1       mjf void	ec_attach(device_t, device_t, void *);
     91        1.1   thorpej 
     92  1.31.16.1       mjf CFATTACH_DECL_NEW(ec, sizeof(struct ec_softc),
     93       1.19   thorpej     ec_probe, ec_attach, NULL, NULL);
     94        1.1   thorpej 
     95       1.23     perry int	ec_set_media(struct ec_softc *, int);
     96        1.1   thorpej 
     97       1.23     perry void	ec_media_init(struct dp8390_softc *);
     98       1.12   thorpej 
     99       1.23     perry int	ec_mediachange(struct dp8390_softc *);
    100       1.23     perry void	ec_mediastatus(struct dp8390_softc *, struct ifmediareq *);
    101        1.1   thorpej 
    102       1.23     perry void	ec_init_card(struct dp8390_softc *);
    103       1.23     perry int	ec_write_mbuf(struct dp8390_softc *, struct mbuf *, int);
    104       1.30  christos int	ec_ring_copy(struct dp8390_softc *, int, void *, u_short);
    105       1.23     perry void	ec_read_hdr(struct dp8390_softc *, int, struct dp8390_ring *);
    106       1.23     perry int	ec_fake_test_mem(struct dp8390_softc *);
    107       1.23     perry int	ec_test_mem(struct dp8390_softc *);
    108        1.1   thorpej 
    109       1.26     perry inline void ec_readmem(struct ec_softc *, int, u_int8_t *, int);
    110        1.1   thorpej 
    111        1.1   thorpej static const int ec_iobase[] = {
    112        1.1   thorpej 	0x2e0, 0x2a0, 0x280, 0x250, 0x350, 0x330, 0x310, 0x300,
    113        1.1   thorpej };
    114        1.1   thorpej #define	NEC_IOBASE	(sizeof(ec_iobase) / sizeof(ec_iobase[0]))
    115        1.1   thorpej 
    116        1.1   thorpej static const int ec_membase[] = {
    117       1.22  drochner 	-1, -1, -1, -1,
    118       1.22  drochner 	0xc8000, 0xcc000, 0xd8000, 0xdc000,
    119        1.1   thorpej };
    120        1.1   thorpej #define	NEC_MEMBASE	(sizeof(ec_membase) / sizeof(ec_membase[0]))
    121        1.1   thorpej 
    122        1.1   thorpej int
    123  1.31.16.1       mjf ec_probe(device_t parent, cfdata_t match, void *aux)
    124        1.1   thorpej {
    125        1.1   thorpej 	struct isa_attach_args *ia = aux;
    126        1.1   thorpej 	bus_space_tag_t nict, asict, memt;
    127        1.1   thorpej 	bus_space_handle_t nich, asich, memh;
    128        1.1   thorpej 	bus_size_t memsize;
    129        1.1   thorpej 	int nich_valid, asich_valid, memh_valid;
    130        1.1   thorpej 	int i, rv = 0;
    131        1.1   thorpej 	u_int8_t x;
    132        1.1   thorpej 
    133        1.1   thorpej 	nict = asict = ia->ia_iot;
    134        1.1   thorpej 	memt = ia->ia_memt;
    135        1.1   thorpej 
    136        1.1   thorpej 	nich_valid = asich_valid = memh_valid = 0;
    137        1.1   thorpej 
    138        1.1   thorpej 	/*
    139        1.1   thorpej 	 * Hmm, a 16-bit card has 16k of memory, but only an 8k window
    140        1.1   thorpej 	 * to it.
    141        1.1   thorpej 	 */
    142        1.1   thorpej 	memsize = 8192;
    143        1.1   thorpej 
    144       1.16   thorpej 	if (ia->ia_nio < 1)
    145       1.16   thorpej 		return (0);
    146       1.16   thorpej 	if (ia->ia_niomem < 1)
    147       1.16   thorpej 		return (0);
    148       1.16   thorpej 	if (ia->ia_nirq < 1)
    149       1.16   thorpej 		return (0);
    150       1.16   thorpej 
    151       1.16   thorpej 	if (ISA_DIRECT_CONFIG(ia))
    152       1.16   thorpej 		return (0);
    153       1.16   thorpej 
    154        1.1   thorpej 	/* Disallow wildcarded i/o addresses. */
    155       1.22  drochner 	if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
    156        1.1   thorpej 		return (0);
    157        1.1   thorpej 
    158        1.1   thorpej 	/* Disallow wildcarded mem address. */
    159       1.22  drochner 	if (ia->ia_iomem[0].ir_addr == ISA_UNKNOWN_IOMEM)
    160        1.1   thorpej 		return (0);
    161        1.1   thorpej 
    162        1.1   thorpej 	/* Validate the i/o base. */
    163        1.1   thorpej 	for (i = 0; i < NEC_IOBASE; i++)
    164       1.16   thorpej 		if (ia->ia_io[0].ir_addr == ec_iobase[i])
    165        1.1   thorpej 			break;
    166        1.1   thorpej 	if (i == NEC_IOBASE)
    167        1.1   thorpej 		return (0);
    168        1.1   thorpej 
    169        1.1   thorpej 	/* Validate the mem base. */
    170        1.1   thorpej 	for (i = 0; i < NEC_MEMBASE; i++) {
    171       1.22  drochner 		if (ec_membase[i] == -1)
    172        1.1   thorpej 			continue;
    173       1.16   thorpej 		if (ia->ia_iomem[0].ir_addr == ec_membase[i])
    174        1.1   thorpej 			break;
    175        1.1   thorpej 	}
    176        1.1   thorpej 	if (i == NEC_MEMBASE)
    177        1.1   thorpej 		return (0);
    178        1.1   thorpej 
    179        1.1   thorpej 	/* Attempt to map the NIC space. */
    180       1.16   thorpej 	if (bus_space_map(nict, ia->ia_io[0].ir_addr + ELINK2_NIC_OFFSET,
    181        1.1   thorpej 	    ELINK2_NIC_PORTS, 0, &nich))
    182        1.1   thorpej 		goto out;
    183        1.1   thorpej 	nich_valid = 1;
    184        1.1   thorpej 
    185        1.1   thorpej 	/* Attempt to map the ASIC space. */
    186       1.16   thorpej 	if (bus_space_map(asict, ia->ia_io[0].ir_addr + ELINK2_ASIC_OFFSET,
    187        1.1   thorpej 	    ELINK2_ASIC_PORTS, 0, &asich))
    188        1.1   thorpej 		goto out;
    189        1.1   thorpej 	asich_valid = 1;
    190        1.1   thorpej 
    191        1.1   thorpej 	/* Attempt to map the memory space. */
    192       1.16   thorpej 	if (bus_space_map(memt, ia->ia_iomem[0].ir_addr, memsize, 0, &memh))
    193        1.1   thorpej 		goto out;
    194        1.1   thorpej 	memh_valid = 1;
    195        1.1   thorpej 
    196        1.1   thorpej 	/*
    197        1.1   thorpej 	 * Verify that the kernel configured I/O address matches the
    198        1.1   thorpej 	 * board configured I/O address.
    199        1.1   thorpej 	 *
    200        1.1   thorpej 	 * This is really only useful to see if something that looks like
    201        1.1   thorpej 	 * the board is there; after all, we're already talking to it at
    202        1.1   thorpej 	 * this point.
    203        1.1   thorpej 	 */
    204        1.1   thorpej 	x = bus_space_read_1(asict, asich, ELINK2_BCFR);
    205        1.1   thorpej 	if (x == 0 || (x & (x - 1)) != 0)
    206        1.1   thorpej 		goto out;
    207        1.1   thorpej 	i = ffs(x) - 1;
    208       1.16   thorpej 	if (ia->ia_io[0].ir_addr != ec_iobase[i])
    209        1.1   thorpej 		goto out;
    210        1.1   thorpej 
    211        1.1   thorpej 	/*
    212        1.1   thorpej 	 * ...and for the memory address.  Note we do not support
    213        1.1   thorpej 	 * cards configured with shared memory disabled.
    214        1.1   thorpej 	 */
    215        1.1   thorpej 	x = bus_space_read_1(asict, asich, ELINK2_PCFR);
    216        1.1   thorpej 	if (x == 0 || (x & (x - 1)) != 0)
    217        1.1   thorpej 		goto out;
    218        1.1   thorpej 	i = ffs(x) - 1;
    219       1.16   thorpej 	if (ia->ia_iomem[0].ir_addr != ec_membase[i])
    220        1.1   thorpej 		goto out;
    221        1.1   thorpej 
    222        1.1   thorpej 	/* So, we say we've found it! */
    223       1.16   thorpej 	ia->ia_nio = 1;		/* XXX Really 2! */
    224       1.16   thorpej 	ia->ia_io[0].ir_size = ELINK2_NIC_PORTS;
    225       1.16   thorpej 
    226       1.16   thorpej 	ia->ia_niomem = 1;
    227       1.16   thorpej 	ia->ia_iomem[0].ir_size = memsize;
    228       1.16   thorpej 
    229       1.16   thorpej 	ia->ia_nirq = 1;
    230       1.16   thorpej 
    231       1.16   thorpej 	ia->ia_ndrq = 0;
    232       1.16   thorpej 
    233        1.1   thorpej 	rv = 1;
    234        1.1   thorpej 
    235        1.1   thorpej  out:
    236        1.1   thorpej 	if (nich_valid)
    237        1.1   thorpej 		bus_space_unmap(nict, nich, ELINK2_NIC_PORTS);
    238        1.1   thorpej 	if (asich_valid)
    239        1.1   thorpej 		bus_space_unmap(asict, asich, ELINK2_ASIC_PORTS);
    240        1.1   thorpej 	if (memh_valid)
    241        1.1   thorpej 		bus_space_unmap(memt, memh, memsize);
    242        1.1   thorpej 	return (rv);
    243        1.1   thorpej }
    244        1.1   thorpej 
    245        1.1   thorpej void
    246  1.31.16.1       mjf ec_attach(device_t parent, device_t self, void *aux)
    247        1.1   thorpej {
    248  1.31.16.1       mjf 	struct ec_softc *esc = device_private(self);
    249        1.1   thorpej 	struct dp8390_softc *sc = &esc->sc_dp8390;
    250        1.1   thorpej 	struct isa_attach_args *ia = aux;
    251        1.1   thorpej 	bus_space_tag_t nict, asict, memt;
    252        1.1   thorpej 	bus_space_handle_t nich, asich, memh;
    253        1.1   thorpej 	bus_size_t memsize;
    254        1.1   thorpej 	u_int8_t tmp;
    255        1.1   thorpej 	int i;
    256        1.1   thorpej 
    257  1.31.16.1       mjf 	sc->sc_dev = self;
    258  1.31.16.1       mjf 	aprint_normal("\n");
    259        1.1   thorpej 
    260        1.1   thorpej 	nict = asict = ia->ia_iot;
    261        1.1   thorpej 	memt = ia->ia_memt;
    262        1.1   thorpej 
    263        1.1   thorpej 	/*
    264        1.1   thorpej 	 * Hmm, a 16-bit card has 16k of memory, but only an 8k window
    265        1.1   thorpej 	 * to it.
    266        1.1   thorpej 	 */
    267       1.16   thorpej 	memsize = ia->ia_iomem[0].ir_size;
    268        1.1   thorpej 
    269        1.1   thorpej 	/* Map the NIC space. */
    270       1.16   thorpej 	if (bus_space_map(nict, ia->ia_io[0].ir_addr + ELINK2_NIC_OFFSET,
    271        1.1   thorpej 	    ELINK2_NIC_PORTS, 0, &nich)) {
    272  1.31.16.1       mjf 		aprint_error_dev(self, "can't map nic i/o space\n");
    273        1.1   thorpej 		return;
    274        1.1   thorpej 	}
    275        1.1   thorpej 
    276        1.1   thorpej 	/* Map the ASIC space. */
    277       1.16   thorpej 	if (bus_space_map(asict, ia->ia_io[0].ir_addr + ELINK2_ASIC_OFFSET,
    278        1.1   thorpej 	    ELINK2_ASIC_PORTS, 0, &asich)) {
    279  1.31.16.1       mjf 		aprint_error_dev(self, "can't map asic i/o space\n");
    280        1.1   thorpej 		return;
    281        1.1   thorpej 	}
    282        1.1   thorpej 
    283        1.1   thorpej 	/* Map the memory space. */
    284       1.16   thorpej 	if (bus_space_map(memt, ia->ia_iomem[0].ir_addr, memsize, 0, &memh)) {
    285  1.31.16.1       mjf 		aprint_error_dev(self, "can't map shared memory\n");
    286        1.1   thorpej 		return;
    287        1.1   thorpej 	}
    288        1.1   thorpej 
    289        1.1   thorpej 	esc->sc_asict = asict;
    290        1.1   thorpej 	esc->sc_asich = asich;
    291        1.1   thorpej 
    292        1.1   thorpej 	sc->sc_regt = nict;
    293        1.1   thorpej 	sc->sc_regh = nich;
    294        1.1   thorpej 
    295        1.1   thorpej 	sc->sc_buft = memt;
    296        1.1   thorpej 	sc->sc_bufh = memh;
    297        1.1   thorpej 
    298        1.1   thorpej 	/* Interface is always enabled. */
    299        1.1   thorpej 	sc->sc_enabled = 1;
    300        1.1   thorpej 
    301        1.1   thorpej 	/* Registers are linear. */
    302        1.1   thorpej 	for (i = 0; i < 16; i++)
    303        1.1   thorpej 		sc->sc_reg_map[i] = i;
    304        1.1   thorpej 
    305        1.1   thorpej 	/* Now we can use the NIC_{GET,PUT}() macros. */
    306        1.1   thorpej 
    307        1.1   thorpej 	/*
    308        1.1   thorpej 	 * Reset NIC and ASIC.  Enable on-board transeiver throughout
    309        1.1   thorpej 	 * reset sequence since it will lock up if the cable isn't
    310        1.1   thorpej 	 * connected if we don't.
    311        1.1   thorpej 	 */
    312        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_CR,
    313        1.1   thorpej 	    ELINK2_CR_RST | ELINK2_CR_XSEL);
    314        1.1   thorpej 
    315        1.1   thorpej 	/* Wait for a while, then un-reset it. */
    316        1.1   thorpej 	delay(50);
    317        1.1   thorpej 
    318        1.1   thorpej 	/*
    319        1.1   thorpej 	 * The 3Com ASIC defaults to rather strange settings for the CR
    320        1.1   thorpej 	 * after a reset.  It's important to set it again after the
    321        1.1   thorpej 	 * following write (this is done when we map the PROM below).
    322        1.1   thorpej 	 */
    323        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_CR, ELINK2_CR_XSEL);
    324        1.1   thorpej 
    325        1.1   thorpej 	/* Wait a bit for the NIC to recover from the reset. */
    326        1.1   thorpej 	delay(5000);
    327        1.1   thorpej 
    328        1.1   thorpej 	/*
    329        1.1   thorpej 	 * Get the station address from on-board ROM.
    330        1.1   thorpej 	 *
    331        1.1   thorpej 	 * First, map Ethernet address PROM over the top of where the NIC
    332        1.1   thorpej 	 * registers normally appear.
    333        1.1   thorpej 	 */
    334        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_CR,
    335        1.1   thorpej 	    ELINK2_CR_XSEL | ELINK2_CR_EALO);
    336        1.1   thorpej 
    337        1.1   thorpej 	for (i = 0; i < ETHER_ADDR_LEN; i++)
    338        1.1   thorpej 		sc->sc_enaddr[i] = NIC_GET(nict, nich, i);
    339        1.1   thorpej 
    340        1.1   thorpej 	/*
    341        1.1   thorpej 	 * Unmap PROM - select NIC registers.  The proper setting of the
    342       1.13       wiz 	 * transceiver is set in later in ec_init_card() via dp8390_init().
    343        1.1   thorpej 	 */
    344        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_CR, ELINK2_CR_XSEL);
    345        1.1   thorpej 
    346        1.1   thorpej 	/* Determine if this is an 8-bit or 16-bit board. */
    347        1.1   thorpej 
    348        1.1   thorpej 	/* Select page 0 registers. */
    349        1.1   thorpej 	NIC_PUT(nict, nich, ED_P0_CR, ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STP);
    350        1.1   thorpej 
    351        1.1   thorpej 	/*
    352        1.1   thorpej 	 * Attempt to clear WTS.  If it doesn't clear, then this is a
    353        1.1   thorpej 	 * 16-bit board.
    354        1.1   thorpej 	 */
    355        1.1   thorpej 	NIC_PUT(nict, nich, ED_P0_DCR, 0);
    356        1.1   thorpej 
    357        1.1   thorpej 	/* Select page 2 registers. */
    358        1.1   thorpej 	NIC_PUT(nict, nich, ED_P0_CR, ED_CR_RD2 | ED_CR_PAGE_2 | ED_CR_STP);
    359        1.1   thorpej 
    360        1.1   thorpej 	/* The 3c503 forces the WTS bit to a one if this is a 16-bit board. */
    361        1.1   thorpej 	if (NIC_GET(nict, nich, ED_P2_DCR) & ED_DCR_WTS)
    362        1.1   thorpej 		esc->sc_16bitp = 1;
    363        1.1   thorpej 	else
    364        1.1   thorpej 		esc->sc_16bitp = 0;
    365        1.1   thorpej 
    366  1.31.16.1       mjf 	aprint_normal_dev(self, "3Com 3c503 Ethernet (%s-bit)\n",
    367  1.31.16.1       mjf 	    esc->sc_16bitp ? "16" : "8");
    368        1.1   thorpej 
    369        1.1   thorpej 	/* Select page 0 registers. */
    370        1.1   thorpej 	NIC_PUT(nict, nich, ED_P2_CR, ED_CR_RD2 | ED_CR_PAGE_0 | ED_CR_STP);
    371        1.1   thorpej 
    372        1.1   thorpej 	sc->cr_proto = ED_CR_RD2;
    373        1.1   thorpej 
    374        1.1   thorpej 	/*
    375        1.1   thorpej 	 * DCR gets:
    376        1.1   thorpej 	 *
    377        1.1   thorpej 	 *	FIFO threshold to 8, No auto-init Remote DMA,
    378        1.1   thorpej 	 *	byte order=80x86.
    379        1.1   thorpej 	 *
    380        1.1   thorpej 	 * 16-bit cards also get word-wide DMA transfers.
    381        1.1   thorpej 	 */
    382        1.1   thorpej 	sc->dcr_reg = ED_DCR_FT1 | ED_DCR_LS |
    383        1.1   thorpej 	    (esc->sc_16bitp ? ED_DCR_WTS : 0);
    384        1.1   thorpej 
    385        1.1   thorpej 	sc->test_mem = ec_fake_test_mem;
    386        1.1   thorpej 	sc->ring_copy = ec_ring_copy;
    387        1.1   thorpej 	sc->write_mbuf = ec_write_mbuf;
    388        1.1   thorpej 	sc->read_hdr = ec_read_hdr;
    389       1.10   thorpej 	sc->init_card = ec_init_card;
    390        1.1   thorpej 
    391       1.12   thorpej 	sc->sc_media_init = ec_media_init;
    392       1.12   thorpej 
    393        1.1   thorpej 	sc->sc_mediachange = ec_mediachange;
    394        1.1   thorpej 	sc->sc_mediastatus = ec_mediastatus;
    395        1.1   thorpej 
    396        1.1   thorpej 	sc->mem_start = 0;
    397        1.1   thorpej 	sc->mem_size = memsize;
    398        1.1   thorpej 
    399        1.1   thorpej 	/* Do generic parts of attach. */
    400       1.12   thorpej 	if (dp8390_config(sc)) {
    401  1.31.16.1       mjf 		aprint_error_dev(self, " configuration failed\n");
    402        1.1   thorpej 		return;
    403        1.1   thorpej 	}
    404        1.1   thorpej 
    405        1.1   thorpej 	/*
    406        1.1   thorpej 	 * We need to override the way dp8390_config() set up our
    407        1.1   thorpej 	 * shared memory.
    408        1.1   thorpej 	 *
    409        1.1   thorpej 	 * We have an entire 8k window to put the transmit buffers on the
    410        1.1   thorpej 	 * 16-bit boards.  But since the 16bit 3c503's shared memory is only
    411        1.1   thorpej 	 * fast enough to overlap the loading of one full-size packet, trying
    412        1.1   thorpej 	 * to load more than 2 buffers can actually leave the transmitter idle
    413        1.1   thorpej 	 * during the load.  So 2 seems the best value.  (Although a mix of
    414        1.1   thorpej 	 * variable-sized packets might change this assumption.  Nonetheless,
    415        1.1   thorpej 	 * we optimize for linear transfers of same-size packets.)
    416        1.1   thorpej 	 */
    417        1.1   thorpej 	if (esc->sc_16bitp) {
    418  1.31.16.1       mjf 		if (device_cfdata(sc->sc_dev)->cf_flags &
    419       1.27   thorpej 		    DP8390_NO_MULTI_BUFFERING)
    420        1.1   thorpej 			sc->txb_cnt = 1;
    421        1.1   thorpej 		else
    422        1.1   thorpej 			sc->txb_cnt = 2;
    423        1.1   thorpej 
    424        1.1   thorpej 		sc->tx_page_start = ELINK2_TX_PAGE_OFFSET_16BIT;
    425        1.1   thorpej 		sc->rec_page_start = ELINK2_RX_PAGE_OFFSET_16BIT;
    426       1.24     perry 		sc->rec_page_stop = (memsize >> ED_PAGE_SHIFT) +
    427        1.1   thorpej 		    sc->rec_page_start;
    428        1.1   thorpej 		sc->mem_ring = sc->mem_start;
    429        1.1   thorpej 	} else {
    430        1.1   thorpej 		sc->txb_cnt = 1;
    431        1.1   thorpej 		sc->tx_page_start = ELINK2_TX_PAGE_OFFSET_8BIT;
    432        1.1   thorpej 		sc->rec_page_start = sc->tx_page_start + ED_TXBUF_SIZE;
    433        1.1   thorpej 		sc->rec_page_stop = (memsize >> ED_PAGE_SHIFT) +
    434        1.1   thorpej 		    sc->tx_page_start;
    435        1.1   thorpej 		sc->mem_ring = sc->mem_start +
    436        1.1   thorpej 		    (ED_TXBUF_SIZE << ED_PAGE_SHIFT);
    437        1.1   thorpej 	}
    438        1.1   thorpej 
    439        1.1   thorpej 	/*
    440        1.1   thorpej 	 * Initialize CA page start/stop registers.  Probably only needed
    441        1.1   thorpej 	 * if doing DMA, but what the Hell.
    442        1.1   thorpej 	 */
    443        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_PSTR, sc->rec_page_start);
    444        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_PSPR, sc->rec_page_stop);
    445        1.1   thorpej 
    446        1.1   thorpej 	/*
    447        1.1   thorpej 	 * Program the IRQ.
    448        1.1   thorpej 	 */
    449       1.16   thorpej 	switch (ia->ia_irq[0].ir_irq) {
    450        1.1   thorpej 	case 9:	tmp = ELINK2_IDCFR_IRQ2; break;
    451        1.1   thorpej 	case 3:	tmp = ELINK2_IDCFR_IRQ3; break;
    452        1.1   thorpej 	case 4:	tmp = ELINK2_IDCFR_IRQ4; break;
    453        1.1   thorpej 	case 5:	tmp = ELINK2_IDCFR_IRQ5; break;
    454        1.1   thorpej 		break;
    455        1.1   thorpej 
    456       1.22  drochner 	case ISA_UNKNOWN_IRQ:
    457  1.31.16.1       mjf 		aprint_error_dev(self, "wildcarded IRQ is not allowed\n");
    458        1.1   thorpej 		return;
    459        1.1   thorpej 
    460        1.1   thorpej 	default:
    461  1.31.16.1       mjf 		aprint_error_dev(self, "invalid IRQ %d, must be 3, 4, 5, "
    462  1.31.16.1       mjf 		    "or 9\n", ia->ia_irq[0].ir_irq);
    463        1.1   thorpej 		return;
    464        1.1   thorpej 	}
    465        1.1   thorpej 
    466        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_IDCFR, tmp);
    467        1.1   thorpej 
    468        1.1   thorpej 	/*
    469        1.1   thorpej 	 * Initialize the GA configuration register.  Set bank and enable
    470        1.1   thorpej 	 * shared memory.
    471        1.1   thorpej 	 */
    472        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_GACFR,
    473        1.1   thorpej 	    ELINK2_GACFR_RSEL | ELINK2_GACFR_MBS0);
    474        1.1   thorpej 
    475        1.1   thorpej 	/*
    476        1.1   thorpej 	 * Intialize "Vector Pointer" registers.  These gawd-awful things
    477        1.1   thorpej 	 * are compared to 20 bits of the address on the ISA, and if they
    478       1.21       wiz 	 * match, the shared memory is disabled.  We set them to 0xffff0...
    479        1.1   thorpej 	 * allegedly the reset vector.
    480        1.1   thorpej 	 */
    481        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_VPTR2, 0xff);
    482        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_VPTR1, 0xff);
    483        1.1   thorpej 	bus_space_write_1(asict, asich, ELINK2_VPTR0, 0x00);
    484        1.1   thorpej 
    485        1.1   thorpej 	/*
    486        1.1   thorpej 	 * Now run the real memory test.
    487        1.1   thorpej 	 */
    488        1.1   thorpej 	if (ec_test_mem(sc)) {
    489  1.31.16.1       mjf 		aprint_error_dev(self, "memory test failed\n");
    490        1.1   thorpej 		return;
    491        1.1   thorpej 	}
    492        1.1   thorpej 
    493        1.1   thorpej 	/* Establish interrupt handler. */
    494       1.16   thorpej 	esc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
    495       1.16   thorpej 	    IST_EDGE, IPL_NET, dp8390_intr, sc);
    496        1.1   thorpej 	if (esc->sc_ih == NULL)
    497  1.31.16.1       mjf 		aprint_error_dev(self, "can't establish interrupt\n");
    498        1.1   thorpej }
    499        1.1   thorpej 
    500        1.1   thorpej int
    501       1.29  christos ec_fake_test_mem(struct dp8390_softc *sc)
    502        1.1   thorpej {
    503        1.1   thorpej 
    504        1.1   thorpej 	/*
    505        1.1   thorpej 	 * We have to do this after we initialize the GA, but we
    506        1.1   thorpej 	 * have to do that after calling dp8390_config(), which
    507        1.1   thorpej 	 * wants to test memory.  Put this noop here, and then
    508        1.1   thorpej 	 * actually test memory later.
    509        1.1   thorpej 	 */
    510        1.1   thorpej 	return (0);
    511        1.1   thorpej }
    512        1.1   thorpej 
    513        1.1   thorpej int
    514  1.31.16.1       mjf ec_test_mem(struct dp8390_softc *sc)
    515        1.1   thorpej {
    516        1.1   thorpej 	struct ec_softc *esc = (struct ec_softc *)sc;
    517        1.1   thorpej 	bus_space_tag_t memt = sc->sc_buft;
    518        1.1   thorpej 	bus_space_handle_t memh = sc->sc_bufh;
    519        1.1   thorpej 	bus_size_t memsize = sc->mem_size;
    520        1.1   thorpej 	int i;
    521        1.1   thorpej 
    522        1.1   thorpej 	if (esc->sc_16bitp)
    523        1.1   thorpej 		bus_space_set_region_2(memt, memh, 0, 0, memsize >> 1);
    524        1.1   thorpej 	else
    525        1.1   thorpej 		bus_space_set_region_1(memt, memh, 0, 0, memsize);
    526        1.1   thorpej 
    527        1.1   thorpej 	if (esc->sc_16bitp) {
    528        1.1   thorpej 		for (i = 0; i < memsize; i += 2) {
    529        1.1   thorpej 			if (bus_space_read_2(memt, memh, i) != 0)
    530        1.1   thorpej 				goto fail;
    531        1.1   thorpej 		}
    532        1.1   thorpej 	} else {
    533        1.1   thorpej 		for (i = 0; i < memsize; i++) {
    534        1.1   thorpej 			if (bus_space_read_1(memt, memh, i) != 0)
    535        1.1   thorpej 				goto fail;
    536        1.1   thorpej 		}
    537        1.1   thorpej 	}
    538        1.1   thorpej 
    539        1.1   thorpej 	return (0);
    540        1.1   thorpej 
    541        1.1   thorpej  fail:
    542  1.31.16.1       mjf 	aprint_error_dev(sc->sc_dev,
    543  1.31.16.1       mjf 	    "failed to clear shared memory at offset 0x%x\n", i);
    544        1.1   thorpej 	return (1);
    545        1.1   thorpej }
    546        1.1   thorpej 
    547        1.7   thorpej /*
    548        1.7   thorpej  * Given a NIC memory source address and a host memory destination address,
    549        1.7   thorpej  * copy 'len' from NIC to host using shared memory.  The 'len' is rounded
    550        1.7   thorpej  * up to a word - ok as long as mbufs are word-sized.
    551        1.7   thorpej  */
    552       1.26     perry inline void
    553  1.31.16.1       mjf ec_readmem(struct ec_softc *esc, int from, uint8_t *to, int len)
    554        1.1   thorpej {
    555        1.1   thorpej 	bus_space_tag_t memt = esc->sc_dp8390.sc_buft;
    556        1.1   thorpej 	bus_space_handle_t memh = esc->sc_dp8390.sc_bufh;
    557        1.1   thorpej 
    558        1.7   thorpej 	if (len & 1)
    559        1.7   thorpej 		++len;
    560        1.7   thorpej 
    561        1.7   thorpej 	if (esc->sc_16bitp)
    562        1.1   thorpej 		bus_space_read_region_2(memt, memh, from, (u_int16_t *)to,
    563        1.1   thorpej 		    len >> 1);
    564        1.7   thorpej 	else
    565        1.1   thorpej 		bus_space_read_region_1(memt, memh, from, to, len);
    566        1.1   thorpej }
    567        1.1   thorpej 
    568        1.1   thorpej int
    569  1.31.16.1       mjf ec_write_mbuf(struct dp8390_softc *sc, struct mbuf *m, int buf)
    570        1.1   thorpej {
    571        1.1   thorpej 	struct ec_softc *esc = (struct ec_softc *)sc;
    572        1.1   thorpej 	bus_space_tag_t asict = esc->sc_asict;
    573        1.1   thorpej 	bus_space_handle_t asich = esc->sc_asich;
    574        1.7   thorpej 	bus_space_tag_t memt = esc->sc_dp8390.sc_buft;
    575        1.7   thorpej 	bus_space_handle_t memh = esc->sc_dp8390.sc_bufh;
    576        1.7   thorpej 	u_int8_t *data, savebyte[2];
    577        1.7   thorpej 	int savelen, len, leftover;
    578        1.7   thorpej #ifdef DIAGNOSTIC
    579        1.7   thorpej 	u_int8_t *lim;
    580        1.7   thorpej #endif
    581        1.1   thorpej 
    582        1.1   thorpej 	savelen = m->m_pkthdr.len;
    583        1.1   thorpej 
    584        1.1   thorpej 	/*
    585        1.7   thorpej 	 * 8-bit boards are simple: we're already in the correct
    586        1.7   thorpej 	 * page, and no alignment tricks are necessary.
    587        1.7   thorpej 	 */
    588        1.7   thorpej 	if (esc->sc_16bitp == 0) {
    589        1.7   thorpej 		for (; m != NULL; buf += m->m_len, m = m->m_next)
    590        1.7   thorpej 			bus_space_write_region_1(memt, memh, buf,
    591        1.7   thorpej 			    mtod(m, u_int8_t *), m->m_len);
    592       1.20    bouyer 		if (savelen < ETHER_MIN_LEN - ETHER_CRC_LEN) {
    593       1.20    bouyer 			bus_space_set_region_1(memt, memh, buf,
    594       1.20    bouyer 			    0, ETHER_MIN_LEN - ETHER_CRC_LEN - savelen);
    595       1.20    bouyer 			savelen = ETHER_MIN_LEN - ETHER_CRC_LEN;
    596       1.20    bouyer 		}
    597        1.7   thorpej 		return (savelen);
    598        1.7   thorpej 	}
    599        1.7   thorpej 
    600        1.7   thorpej 	/*
    601        1.1   thorpej 	 * If it's a 16-bit board, we have transmit buffers
    602        1.1   thorpej 	 * in a different page; switch to it.
    603        1.1   thorpej 	 */
    604        1.1   thorpej 	if (esc->sc_16bitp)
    605        1.1   thorpej 		bus_space_write_1(asict, asich, ELINK2_GACFR,
    606        1.1   thorpej 		    ELINK2_GACFR_RSEL);
    607        1.1   thorpej 
    608        1.7   thorpej 	/* Start out with no leftover data. */
    609        1.7   thorpej 	leftover = 0;
    610        1.7   thorpej 	savebyte[0] = savebyte[1] = 0;
    611        1.7   thorpej 
    612        1.7   thorpej 	for (; m != NULL; m = m->m_next) {
    613        1.7   thorpej 		len = m->m_len;
    614        1.7   thorpej 		if (len == 0)
    615        1.7   thorpej 			continue;
    616        1.7   thorpej 		data = mtod(m, u_int8_t *);
    617        1.7   thorpej #ifdef DIAGNOSTIC
    618        1.7   thorpej 		lim = data + len;
    619        1.7   thorpej #endif
    620        1.7   thorpej 		while (len > 0) {
    621        1.7   thorpej 			if (leftover) {
    622        1.7   thorpej 				/*
    623        1.7   thorpej 				 * Data left over (from mbuf or realignment).
    624        1.7   thorpej 				 * Buffer the next byte, and write it and
    625        1.7   thorpej 				 * the leftover data out.
    626        1.7   thorpej 				 */
    627        1.7   thorpej 				savebyte[1] = *data++;
    628        1.7   thorpej 				len--;
    629        1.7   thorpej 				bus_space_write_2(memt, memh, buf,
    630        1.7   thorpej 				    *(u_int16_t *)savebyte);
    631        1.7   thorpej 				buf += 2;
    632        1.7   thorpej 				leftover = 0;
    633       1.11  drochner 			} else if (BUS_SPACE_ALIGNED_POINTER(data, u_int16_t)
    634       1.11  drochner 				   == 0) {
    635        1.7   thorpej 				/*
    636        1.7   thorpej 				 * Unaligned data; buffer the next byte.
    637        1.7   thorpej 				 */
    638        1.7   thorpej 				savebyte[0] = *data++;
    639        1.7   thorpej 				len--;
    640        1.7   thorpej 				leftover = 1;
    641        1.7   thorpej 			} else {
    642        1.7   thorpej 				/*
    643        1.7   thorpej 				 * Aligned data; output contiguous words as
    644        1.7   thorpej 				 * much as we can, then buffer the remaining
    645        1.7   thorpej 				 * byte, if any.
    646        1.7   thorpej 				 */
    647        1.7   thorpej 				leftover = len & 1;
    648        1.7   thorpej 				len &= ~1;
    649        1.7   thorpej 				bus_space_write_region_2(memt, memh, buf,
    650        1.7   thorpej 				    (u_int16_t *)data, len >> 1);
    651        1.7   thorpej 				data += len;
    652        1.7   thorpej 				buf += len;
    653        1.7   thorpej 				if (leftover)
    654        1.7   thorpej 					savebyte[0] = *data++;
    655        1.7   thorpej 				len = 0;
    656        1.7   thorpej 			}
    657        1.7   thorpej 		}
    658        1.7   thorpej 		if (len < 0)
    659        1.7   thorpej 			panic("ec_write_mbuf: negative len");
    660        1.7   thorpej #ifdef DIAGNOSTIC
    661        1.7   thorpej 		if (data != lim)
    662        1.7   thorpej 			panic("ec_write_mbuf: data != lim");
    663        1.7   thorpej #endif
    664        1.7   thorpej 	}
    665        1.7   thorpej 	if (leftover) {
    666        1.7   thorpej 		savebyte[1] = 0;
    667        1.7   thorpej 		bus_space_write_2(memt, memh, buf, *(u_int16_t *)savebyte);
    668       1.20    bouyer 		buf += 2;
    669       1.20    bouyer 	}
    670       1.20    bouyer 	if (savelen < ETHER_MIN_LEN - ETHER_CRC_LEN) {
    671       1.20    bouyer 		bus_space_set_region_2(memt, memh, buf,
    672       1.20    bouyer 		    0, (ETHER_MIN_LEN - ETHER_CRC_LEN - savelen) >> 1);
    673       1.20    bouyer 		savelen = ETHER_MIN_LEN - ETHER_CRC_LEN;
    674        1.7   thorpej 	}
    675        1.1   thorpej 
    676        1.1   thorpej 	/*
    677        1.1   thorpej 	 * Switch back to receive page.
    678        1.1   thorpej 	 */
    679        1.1   thorpej 	if (esc->sc_16bitp)
    680        1.1   thorpej 		bus_space_write_1(asict, asich, ELINK2_GACFR,
    681        1.1   thorpej 		    ELINK2_GACFR_RSEL | ELINK2_GACFR_MBS0);
    682       1.24     perry 
    683        1.1   thorpej 	return (savelen);
    684        1.1   thorpej }
    685        1.1   thorpej 
    686        1.1   thorpej int
    687  1.31.16.1       mjf ec_ring_copy(struct dp8390_softc *sc, int src, void *dst, u_short amount)
    688        1.1   thorpej {
    689        1.1   thorpej 	struct ec_softc *esc = (struct ec_softc *)sc;
    690        1.1   thorpej 	u_short tmp_amount;
    691        1.1   thorpej 
    692        1.1   thorpej 	/* Does copy wrap to lower addr in ring buffer? */
    693        1.1   thorpej 	if (src + amount > sc->mem_end) {
    694        1.1   thorpej 		tmp_amount = sc->mem_end - src;
    695        1.1   thorpej 
    696        1.1   thorpej 		/* Copy amount up to end of NIC memory. */
    697        1.1   thorpej 		ec_readmem(esc, src, dst, tmp_amount);
    698        1.1   thorpej 
    699        1.1   thorpej 		amount -= tmp_amount;
    700        1.1   thorpej 		src = sc->mem_ring;
    701       1.30  christos 		dst = (char *)dst + tmp_amount;
    702        1.1   thorpej 	}
    703        1.1   thorpej 
    704        1.1   thorpej 	ec_readmem(esc, src, dst, amount);
    705        1.1   thorpej 
    706        1.1   thorpej 	return (src + amount);
    707        1.1   thorpej }
    708        1.1   thorpej 
    709        1.1   thorpej void
    710  1.31.16.1       mjf ec_read_hdr(struct dp8390_softc *sc, int packet_ptr,
    711  1.31.16.1       mjf     struct dp8390_ring *packet_hdrp)
    712        1.1   thorpej {
    713        1.1   thorpej 	struct ec_softc *esc = (struct ec_softc *)sc;
    714        1.1   thorpej 
    715        1.1   thorpej 	ec_readmem(esc, packet_ptr, (u_int8_t *)packet_hdrp,
    716        1.1   thorpej 	    sizeof(struct dp8390_ring));
    717        1.4   thorpej #if BYTE_ORDER == BIG_ENDIAN
    718        1.4   thorpej 	packet_hdrp->count = bswap16(packet_hdrp->count);
    719        1.4   thorpej #endif
    720       1.12   thorpej }
    721       1.12   thorpej 
    722       1.12   thorpej void
    723       1.12   thorpej ec_media_init(struct dp8390_softc *sc)
    724       1.12   thorpej {
    725       1.12   thorpej 
    726       1.12   thorpej 	ifmedia_init(&sc->sc_media, 0, dp8390_mediachange, dp8390_mediastatus);
    727       1.12   thorpej 	ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_10_2, 0, NULL);
    728       1.12   thorpej 	ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_10_5, 0, NULL);
    729       1.12   thorpej 	ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_10_2);
    730        1.1   thorpej }
    731        1.1   thorpej 
    732        1.1   thorpej int
    733  1.31.16.1       mjf ec_mediachange(struct dp8390_softc *sc)
    734        1.1   thorpej {
    735        1.1   thorpej 	struct ec_softc *esc = (struct ec_softc *)sc;
    736        1.1   thorpej 	struct ifmedia *ifm = &sc->sc_media;
    737        1.1   thorpej 
    738        1.1   thorpej 	return (ec_set_media(esc, ifm->ifm_media));
    739        1.1   thorpej }
    740        1.1   thorpej 
    741        1.1   thorpej void
    742  1.31.16.1       mjf ec_mediastatus(struct dp8390_softc *sc, struct ifmediareq *ifmr)
    743        1.1   thorpej {
    744        1.1   thorpej 	struct ifmedia *ifm = &sc->sc_media;
    745        1.1   thorpej 
    746        1.1   thorpej 	/*
    747        1.1   thorpej 	 * The currently selected media is always the active media.
    748        1.1   thorpej 	 */
    749        1.1   thorpej 	ifmr->ifm_active = ifm->ifm_cur->ifm_media;
    750        1.1   thorpej }
    751        1.1   thorpej 
    752        1.1   thorpej void
    753  1.31.16.1       mjf ec_init_card(struct dp8390_softc *sc)
    754        1.1   thorpej {
    755        1.1   thorpej 	struct ec_softc *esc = (struct ec_softc *)sc;
    756        1.1   thorpej 	struct ifmedia *ifm = &sc->sc_media;
    757        1.1   thorpej 
    758        1.1   thorpej 	(void) ec_set_media(esc, ifm->ifm_cur->ifm_media);
    759        1.1   thorpej }
    760        1.1   thorpej 
    761        1.1   thorpej int
    762  1.31.16.1       mjf ec_set_media(struct ec_softc *esc, int media)
    763        1.1   thorpej {
    764        1.1   thorpej 	u_int8_t new;
    765        1.1   thorpej 
    766        1.1   thorpej 	if (IFM_TYPE(media) != IFM_ETHER)
    767        1.1   thorpej 		return (EINVAL);
    768        1.1   thorpej 
    769        1.1   thorpej 	switch (IFM_SUBTYPE(media)) {
    770        1.1   thorpej 	case IFM_10_2:
    771        1.1   thorpej 		new = ELINK2_CR_XSEL;
    772        1.1   thorpej 		break;
    773        1.1   thorpej 
    774        1.1   thorpej 	case IFM_10_5:
    775        1.1   thorpej 		new = 0;
    776        1.1   thorpej 		break;
    777        1.1   thorpej 
    778        1.1   thorpej 	default:
    779        1.1   thorpej 		return (EINVAL);
    780        1.1   thorpej 	}
    781        1.1   thorpej 
    782        1.1   thorpej 	bus_space_write_1(esc->sc_asict, esc->sc_asich, ELINK2_CR, new);
    783        1.1   thorpej 	return (0);
    784        1.1   thorpej }
    785