Home | History | Annotate | Line # | Download | only in mca
if_we_mca.c revision 1.21.104.1
      1  1.21.104.1   thorpej /*	$NetBSD: if_we_mca.c,v 1.21.104.1 2021/04/17 17:26:18 thorpej Exp $	*/
      2         1.1  jdolecek 
      3         1.1  jdolecek /*-
      4         1.3  jdolecek  * Copyright (c) 1997, 1998, 2001 The NetBSD Foundation, Inc.
      5         1.1  jdolecek  * All rights reserved.
      6         1.1  jdolecek  *
      7         1.1  jdolecek  * This code is derived from software contributed to The NetBSD Foundation
      8         1.1  jdolecek  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9         1.1  jdolecek  * NASA Ames Research Center, and Jaromir Dolecek.
     10         1.1  jdolecek  *
     11         1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     12         1.1  jdolecek  * modification, are permitted provided that the following conditions
     13         1.1  jdolecek  * are met:
     14         1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     15         1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     16         1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     17         1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     18         1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     19         1.1  jdolecek  *
     20         1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21         1.1  jdolecek  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22         1.1  jdolecek  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23         1.1  jdolecek  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24         1.1  jdolecek  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25         1.1  jdolecek  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26         1.1  jdolecek  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27         1.1  jdolecek  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28         1.1  jdolecek  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29         1.1  jdolecek  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30         1.1  jdolecek  * POSSIBILITY OF SUCH DAMAGE.
     31         1.1  jdolecek  */
     32         1.1  jdolecek 
     33         1.1  jdolecek /*
     34         1.1  jdolecek  * Device driver for National Semiconductor DS8390/WD83C690 based ethernet
     35         1.1  jdolecek  * adapters.
     36         1.1  jdolecek  *
     37         1.1  jdolecek  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
     38         1.1  jdolecek  *
     39         1.1  jdolecek  * Copyright (C) 1993, David Greenman.  This software may be used, modified,
     40         1.1  jdolecek  * copied, distributed, and sold, in both source and binary form provided that
     41         1.1  jdolecek  * the above copyright and these terms are retained.  Under no circumstances is
     42         1.1  jdolecek  * the author responsible for the proper functioning of this software, nor does
     43         1.1  jdolecek  * the author assume any responsibility for damages incurred with its use.
     44         1.1  jdolecek  */
     45         1.1  jdolecek 
     46         1.1  jdolecek /*
     47         1.1  jdolecek  * Device driver for the Western Digital/SMC 8003 and 8013 series,
     48         1.1  jdolecek  * and the SMC Elite Ultra (8216).
     49         1.1  jdolecek  *
     50         1.9  jdolecek  * Currently only tested with WD8003W/A and EtherCard PLUS Elite 10T/A
     51         1.9  jdolecek  * (8013WP/A). Other WD8003 and SMC Elite based cards should work
     52         1.9  jdolecek  * without problems too.
     53         1.1  jdolecek  */
     54         1.5     lukem 
     55         1.5     lukem #include <sys/cdefs.h>
     56  1.21.104.1   thorpej __KERNEL_RCSID(0, "$NetBSD: if_we_mca.c,v 1.21.104.1 2021/04/17 17:26:18 thorpej Exp $");
     57         1.1  jdolecek 
     58         1.1  jdolecek #include <sys/param.h>
     59         1.1  jdolecek #include <sys/systm.h>
     60         1.1  jdolecek #include <sys/device.h>
     61         1.1  jdolecek #include <sys/socket.h>
     62         1.1  jdolecek #include <sys/mbuf.h>
     63         1.1  jdolecek 
     64         1.1  jdolecek #include <net/if.h>
     65         1.1  jdolecek #include <net/if_types.h>
     66         1.1  jdolecek #include <net/if_media.h>
     67         1.1  jdolecek #include <net/if_ether.h>
     68         1.1  jdolecek 
     69        1.19        ad #include <sys/bus.h>
     70         1.1  jdolecek 
     71         1.1  jdolecek #include <dev/mca/mcareg.h>
     72         1.1  jdolecek #include <dev/mca/mcavar.h>
     73         1.1  jdolecek #include <dev/mca/mcadevs.h>
     74         1.1  jdolecek 
     75         1.1  jdolecek #include <dev/ic/dp8390reg.h>
     76         1.1  jdolecek #include <dev/ic/dp8390var.h>
     77         1.1  jdolecek #include <dev/ic/wereg.h>
     78         1.1  jdolecek #include <dev/ic/wevar.h>
     79         1.1  jdolecek 
     80         1.1  jdolecek #define WD_8003		0x01
     81         1.1  jdolecek #define WD_ELITE	0x02
     82         1.1  jdolecek 
     83        1.20      cube int we_mca_probe(device_t, cfdata_t , void *);
     84        1.20      cube void we_mca_attach(device_t, device_t, void *);
     85        1.12     perry void we_mca_init_hook(struct we_softc *);
     86         1.1  jdolecek 
     87        1.20      cube CFATTACH_DECL_NEW(we_mca, sizeof(struct we_softc),
     88         1.8   thorpej     we_mca_probe, we_mca_attach, NULL, NULL);
     89         1.1  jdolecek 
     90         1.1  jdolecek /*
     91         1.1  jdolecek  * The types for some cards may not be correct; hopefully it's close
     92         1.1  jdolecek  * enough.
     93         1.1  jdolecek  */
     94         1.1  jdolecek static const struct we_mca_product {
     95         1.1  jdolecek 	u_int32_t we_id;
     96         1.1  jdolecek 	const char *we_name;
     97         1.1  jdolecek 	int we_flag;
     98         1.1  jdolecek 	int we_type;
     99         1.1  jdolecek 	const char *we_typestr;
    100         1.1  jdolecek } we_mca_products[] = {
    101         1.1  jdolecek 	{ MCA_PRODUCT_WD_8013EP, "EtherCard PLUS Elite/A (8013EP/A)",
    102         1.1  jdolecek 		WD_ELITE,	WE_TYPE_WD8013EP, "WD8013EP/A" },
    103         1.1  jdolecek 	{ MCA_PRODUCT_WD_8013WP, "EtherCard PLUS Elite 10T/A (8013WP/A)",
    104         1.9  jdolecek 		WD_ELITE,	WE_TYPE_WD8013EP, "WD8013WP/A" },
    105         1.1  jdolecek 	{ MCA_PRODUCT_IBM_WD_2,"IBM PS/2 Adapter/A for Ethernet Networks (UTP)",
    106        1.11  jdolecek 		WD_ELITE, WE_TYPE_WD8013EP, "WD8013WP/A"},
    107         1.1  jdolecek 	{ MCA_PRODUCT_IBM_WD_T,"IBM PS/2 Adapter/A for Ethernet Networks (BNC)",
    108        1.11  jdolecek 		WD_ELITE, WE_TYPE_WD8013EP, "WD8013WP/A"},
    109         1.1  jdolecek 	{ MCA_PRODUCT_WD_8003E,	"WD EtherCard PLUS/A (WD8003E/A or WD8003ET/A)",
    110         1.1  jdolecek 		WD_8003,	WE_TYPE_WD8003E, "WD8003E/A or WD8003ET/A" },
    111         1.1  jdolecek 	{ MCA_PRODUCT_WD_8003ST,"WD StarCard PLUS/A (WD8003ST/A)",
    112         1.1  jdolecek 		WD_8003,	WE_TYPE_WD8003W, "WD8003ST/A" }, /* XXX */
    113         1.1  jdolecek 	{ MCA_PRODUCT_WD_8003W,	"WD EtherCard PLUS 10T/A (WD8003W/A)",
    114         1.1  jdolecek 		WD_8003,	WE_TYPE_WD8003W, "WD8003W/A" },
    115         1.1  jdolecek 	{ MCA_PRODUCT_IBM_WD_O, "IBM PS/2 Adapter/A for Ethernet Networks",
    116        1.11  jdolecek 		WD_8003,	WE_TYPE_WD8003W, "IBM PS/2 Adapter/A" },
    117        1.16  christos 	{ 0x0000,		NULL,
    118        1.16  christos 		0,		0,		 NULL },
    119         1.1  jdolecek };
    120         1.1  jdolecek 
    121         1.1  jdolecek /* see POS description in we_mca_attach() */
    122         1.1  jdolecek static const int we_mca_irq[] = {
    123         1.1  jdolecek 	3, 4, 10, 15,
    124         1.1  jdolecek };
    125        1.10  jdolecek 
    126        1.12     perry static const struct we_mca_product *we_mca_lookup(int);
    127         1.1  jdolecek 
    128         1.1  jdolecek static const struct we_mca_product *
    129        1.20      cube we_mca_lookup(int id)
    130         1.1  jdolecek {
    131         1.1  jdolecek 	const struct we_mca_product *wep;
    132         1.1  jdolecek 
    133         1.1  jdolecek 	for(wep = we_mca_products; wep->we_name; wep++)
    134         1.1  jdolecek 		if (wep->we_id == id)
    135         1.1  jdolecek 			return (wep);
    136         1.1  jdolecek 
    137         1.1  jdolecek 	return (NULL);
    138         1.1  jdolecek }
    139         1.1  jdolecek 
    140         1.1  jdolecek int
    141        1.20      cube we_mca_probe(device_t parent, cfdata_t cf, void *aux)
    142         1.1  jdolecek {
    143         1.1  jdolecek 	struct mca_attach_args *ma = aux;
    144         1.1  jdolecek 
    145         1.1  jdolecek 	return (we_mca_lookup(ma->ma_id) != NULL);
    146         1.1  jdolecek }
    147         1.1  jdolecek 
    148         1.1  jdolecek void
    149        1.20      cube we_mca_attach(device_t parent, device_t self, void *aux)
    150         1.1  jdolecek {
    151        1.15   thorpej 	struct we_softc *wsc = device_private(self);
    152         1.1  jdolecek 	struct dp8390_softc *sc = &wsc->sc_dp8390;
    153         1.1  jdolecek 	struct mca_attach_args *ma = aux;
    154         1.1  jdolecek 	const struct we_mca_product *wep;
    155         1.1  jdolecek 	bus_space_tag_t nict, asict, memt;
    156         1.1  jdolecek 	bus_space_handle_t nich, asich, memh;
    157         1.1  jdolecek 	const char *typestr;
    158         1.1  jdolecek 	int irq, iobase, maddr;
    159         1.1  jdolecek 	int pos2, pos3, pos5;
    160         1.1  jdolecek 
    161        1.20      cube 	sc->sc_dev = self;
    162        1.20      cube 
    163         1.1  jdolecek 	pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2);
    164         1.1  jdolecek 	pos3 = mca_conf_read(ma->ma_mc, ma->ma_slot, 3);
    165         1.1  jdolecek 	pos5 = mca_conf_read(ma->ma_mc, ma->ma_slot, 5);
    166         1.1  jdolecek 
    167         1.1  jdolecek 	/*
    168         1.9  jdolecek 	 * POS registers differ a lot between 8003 and 8013, so they are
    169         1.1  jdolecek 	 * divided to two sections.
    170        1.10  jdolecek 	 *
    171         1.1  jdolecek 	 * 8003: POS register 2: (adf pos0)
    172         1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    173        1.10  jdolecek 	 * 0 0 1 \_____/ \__ enable: 0=adapter disabled, 1=adapter enabled
    174        1.10  jdolecek 	 *             \____ Adapter I/O Space: 0x200-0x21F + XX*0x20
    175         1.1  jdolecek 	 *
    176         1.1  jdolecek 	 * 8003: POS register 3: (adf pos1)
    177         1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    178        1.10  jdolecek 	 * 1 1 0 \___/ 1 X
    179         1.1  jdolecek 	 *           \______ Shared Ram Space (16K Bytes):
    180         1.1  jdolecek 	 *                     0xC0000-0xC3FFF + XX * 0x4000
    181         1.1  jdolecek 	 *
    182         1.1  jdolecek 	 * 8003: POS register 5: (adf pos3)
    183         1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    184         1.1  jdolecek 	 *             \_/
    185         1.1  jdolecek 	 *               \__ Interrupt Level: 00=3 01=4 10=10 11=15
    186         1.1  jdolecek 	 *
    187         1.1  jdolecek 	 * -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    188         1.1  jdolecek 	 *
    189         1.1  jdolecek 	 * 8013: POS register 2: (adf pos0)
    190         1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    191         1.1  jdolecek 	 * \____/        \__ enable: 0=adapter disabled, 1=adapter enabled
    192         1.1  jdolecek 	 *      \___________ Adapter I/O Space: 0x0800-0x081F + XX * 0x1000
    193         1.1  jdolecek 	 *
    194         1.1  jdolecek 	 * 8013: POS register 3: (adf pos1)
    195         1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    196        1.11  jdolecek 	 * | X 0 | \_____/
    197        1.11  jdolecek 	 * |     |       \__ Shared RAM Base Address
    198        1.11  jdolecek 	 * |     |                0xc0000 + ((xx & 0x0f) * 0x2000)
    199        1.11  jdolecek 	 * |      \____________ Ram size: 0 = 8k, 1 = 16k
    200        1.11  jdolecek 	 * |                      some size and address combinations are
    201        1.11  jdolecek 	 * |                        not supported, varies by card :(
    202        1.11  jdolecek 	 *  \__________________ If set, add 0xf00000 to shared RAM base addr
    203        1.11  jdolecek 	 *                      puts shared RAM near top of 16MB address space
    204         1.1  jdolecek 	 *
    205         1.1  jdolecek 	 * 8013: POS register 5: (adf pos3)
    206         1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    207         1.1  jdolecek 	 *         \_/ \_/
    208         1.1  jdolecek 	 *           \   \__ Media Select: 00=TwPr (no link) 10=BNC
    209         1.1  jdolecek 	 *            \          01=AUI|AUI or 10BaseT
    210         1.1  jdolecek 	 *             \____ Interrupt Level: 00=3 01=4 10=10 11=14
    211         1.1  jdolecek 	 */
    212         1.1  jdolecek 
    213         1.1  jdolecek 	wep = we_mca_lookup(ma->ma_id);
    214         1.1  jdolecek #ifdef DIAGNOSTIC
    215         1.1  jdolecek 	if (wep == NULL) {
    216        1.20      cube 		aprint_error("\n%s: where did the card go?\n",
    217        1.20      cube 		    device_xname(self));
    218         1.1  jdolecek 		return;
    219         1.1  jdolecek 	}
    220         1.1  jdolecek #endif
    221         1.1  jdolecek 
    222         1.1  jdolecek 	if (wep->we_flag & WD_8003) {
    223         1.1  jdolecek 		/* WD8003 based */
    224         1.1  jdolecek 		iobase = 0x200 + (((pos2 & 0x0e) >> 1) * 0x020);
    225         1.1  jdolecek 		maddr  = 0xC0000 + (((pos3 & 0x1c) >> 2) * 0x04000);
    226         1.1  jdolecek 		irq = we_mca_irq[(pos5 & 0x03)];
    227        1.11  jdolecek 		sc->mem_size = 16384;
    228         1.1  jdolecek 	} else {
    229         1.1  jdolecek 		/* SMC Elite */
    230         1.1  jdolecek 		iobase = 0x800 + (((pos2 & 0xf0) >> 4) * 0x1000);
    231        1.11  jdolecek 		maddr = 0xC0000 + ((pos3 & 0x0f) * 0x2000)
    232        1.11  jdolecek 		    + ((pos3 & 0x80) ? 0xF00000 : 0);
    233         1.9  jdolecek 		irq = we_mca_irq[(pos5 & 0x0c) >> 2];
    234        1.11  jdolecek 		sc->mem_size = (pos3 & 0x10) ? 16384 : 8192;
    235         1.1  jdolecek 	}
    236         1.1  jdolecek 
    237         1.1  jdolecek 	nict = asict = ma->ma_iot;
    238         1.1  jdolecek 	memt = ma->ma_memt;
    239         1.1  jdolecek 
    240        1.20      cube 	aprint_normal(" slot %d port %#x-%#x mem %#x-%#x irq %d: %s\n",
    241         1.9  jdolecek 		ma->ma_slot + 1,
    242         1.9  jdolecek 		iobase, iobase + WE_NPORTS - 1,
    243         1.9  jdolecek 		maddr, maddr + sc->mem_size - 1,
    244         1.9  jdolecek 		irq, wep->we_name);
    245         1.1  jdolecek 
    246         1.1  jdolecek 	/* Map the device. */
    247         1.1  jdolecek 	if (bus_space_map(asict, iobase, WE_NPORTS, 0, &asich)) {
    248        1.20      cube 		aprint_error_dev(self, "can't map nic i/o space\n");
    249         1.1  jdolecek 		return;
    250         1.1  jdolecek 	}
    251         1.1  jdolecek 
    252         1.1  jdolecek 	if (bus_space_subregion(asict, asich, WE_NIC_OFFSET, WE_NIC_NPORTS,
    253         1.1  jdolecek 	    &nich)) {
    254        1.20      cube 		aprint_error_dev(self, "can't subregion i/o space\n");
    255         1.1  jdolecek 		return;
    256         1.1  jdolecek 	}
    257         1.1  jdolecek 
    258         1.1  jdolecek 	wsc->sc_type = wep->we_type;
    259        1.13  jdolecek 	/* all cards we support are 16bit native (no need for reset) */
    260        1.13  jdolecek 	wsc->sc_flags = WE_16BIT_ENABLE|WE_16BIT_NOTOGGLE;
    261         1.1  jdolecek 	sc->is790 = 0;
    262         1.1  jdolecek 	typestr = wep->we_typestr;
    263         1.1  jdolecek 
    264         1.1  jdolecek 	/*
    265         1.1  jdolecek 	 * Map memory space.
    266         1.1  jdolecek 	 */
    267         1.1  jdolecek 	if (bus_space_map(memt, maddr, sc->mem_size, 0, &memh)) {
    268        1.20      cube 		aprint_error_dev(self, "can't map shared memory %#x-%#x\n",
    269         1.9  jdolecek 		    maddr, maddr + sc->mem_size - 1);
    270         1.1  jdolecek 		return;
    271         1.1  jdolecek 	}
    272         1.1  jdolecek 
    273         1.1  jdolecek 	wsc->sc_asict = asict;
    274         1.1  jdolecek 	wsc->sc_asich = asich;
    275         1.1  jdolecek 
    276         1.1  jdolecek 	sc->sc_regt = nict;
    277         1.1  jdolecek 	sc->sc_regh = nich;
    278         1.1  jdolecek 
    279         1.1  jdolecek 	sc->sc_buft = memt;
    280         1.1  jdolecek 	sc->sc_bufh = memh;
    281         1.1  jdolecek 
    282         1.1  jdolecek 	wsc->sc_maddr = maddr;
    283         1.1  jdolecek 
    284         1.1  jdolecek 	/* Interface is always enabled. */
    285         1.1  jdolecek 	sc->sc_enabled = 1;
    286         1.1  jdolecek 
    287         1.1  jdolecek 	wsc->sc_init_hook = we_mca_init_hook;
    288         1.1  jdolecek 
    289         1.1  jdolecek 	if (we_config(self, wsc, typestr))
    290         1.1  jdolecek 		return;
    291         1.1  jdolecek 
    292         1.1  jdolecek 	/* Map and establish the interrupt. */
    293         1.1  jdolecek 	wsc->sc_ih = mca_intr_establish(ma->ma_mc, irq,
    294         1.1  jdolecek 			    IPL_NET, dp8390_intr, sc);
    295         1.1  jdolecek 	if (wsc->sc_ih == NULL) {
    296        1.20      cube 		aprint_error_dev(self, "can't establish interrupt\n");
    297         1.1  jdolecek 		return;
    298         1.1  jdolecek 	}
    299         1.1  jdolecek }
    300         1.1  jdolecek 
    301         1.1  jdolecek void
    302        1.20      cube we_mca_init_hook(struct we_softc *wsc)
    303         1.1  jdolecek {
    304         1.1  jdolecek 	/*
    305  1.21.104.1   thorpej 	 * Enable interrupts. This is required for at least WD8003W/A, without
    306  1.21.104.1   thorpej 	 * this, the card doesn't send any interrupts in 16bit mode. The code
    307         1.1  jdolecek 	 * was taken from Linux smc-mca.c driver.
    308         1.1  jdolecek 	 */
    309         1.1  jdolecek 	bus_space_write_1(wsc->sc_asict, wsc->sc_asich, WE_LAAR, 0x04);
    310         1.1  jdolecek 	wsc->sc_laar_proto |= 0x04;
    311         1.1  jdolecek }
    312