Home | History | Annotate | Line # | Download | only in mca
if_ate_mca.c revision 1.12.4.3
      1  1.12.4.3      yamt /*	$NetBSD: if_ate_mca.c,v 1.12.4.3 2007/10/27 11:32:15 yamt Exp $	*/
      2       1.1  jdolecek 
      3       1.1  jdolecek /*-
      4       1.1  jdolecek  * Copyright (c) 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 Jaromir Dolecek.
      9       1.1  jdolecek  *
     10       1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     11       1.1  jdolecek  * modification, are permitted provided that the following conditions
     12       1.1  jdolecek  * are met:
     13       1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     14       1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     15       1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     18       1.1  jdolecek  * 3. All advertising materials mentioning features or use of this software
     19       1.1  jdolecek  *    must display the following acknowledgement:
     20       1.1  jdolecek  *	This product includes software developed by the NetBSD
     21       1.1  jdolecek  *	Foundation, Inc. and its contributors.
     22       1.1  jdolecek  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1  jdolecek  *    contributors may be used to endorse or promote products derived
     24       1.1  jdolecek  *    from this software without specific prior written permission.
     25       1.1  jdolecek  *
     26       1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1  jdolecek  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1  jdolecek  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1  jdolecek  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1  jdolecek  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1  jdolecek  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1  jdolecek  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1  jdolecek  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1  jdolecek  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1  jdolecek  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1  jdolecek  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1  jdolecek  */
     38       1.1  jdolecek 
     39       1.1  jdolecek /*
     40       1.1  jdolecek  * Driver for ATI AT1720X MCA cards based on Fujitsu MB8696xA controller.
     41       1.1  jdolecek  */
     42       1.3     lukem 
     43       1.3     lukem #include <sys/cdefs.h>
     44  1.12.4.3      yamt __KERNEL_RCSID(0, "$NetBSD: if_ate_mca.c,v 1.12.4.3 2007/10/27 11:32:15 yamt Exp $");
     45       1.1  jdolecek 
     46       1.1  jdolecek #include <sys/param.h>
     47       1.1  jdolecek #include <sys/systm.h>
     48       1.1  jdolecek #include <sys/device.h>
     49       1.1  jdolecek #include <sys/socket.h>
     50       1.1  jdolecek #include <sys/syslog.h>
     51       1.1  jdolecek 
     52       1.1  jdolecek #include <net/if.h>
     53       1.1  jdolecek #include <net/if_ether.h>
     54       1.1  jdolecek #include <net/if_media.h>
     55       1.1  jdolecek 
     56  1.12.4.3      yamt #include <sys/bus.h>
     57  1.12.4.3      yamt #include <sys/intr.h>
     58       1.1  jdolecek 
     59       1.1  jdolecek #include <dev/ic/mb86960reg.h>
     60       1.1  jdolecek #include <dev/ic/mb86960var.h>
     61       1.1  jdolecek 
     62       1.1  jdolecek #include <dev/mca/mcavar.h>
     63       1.1  jdolecek #include <dev/mca/mcadevs.h>
     64       1.1  jdolecek 
     65      1.11     perry int	ate_mca_match(struct device *, struct cfdata *, void *);
     66      1.11     perry void	ate_mca_attach(struct device *, struct device *, void *);
     67      1.11     perry static void ate_mca_detect(bus_space_tag_t, bus_space_handle_t,
     68      1.11     perry     u_int8_t enaddr[ETHER_ADDR_LEN]);
     69       1.1  jdolecek 
     70       1.1  jdolecek #define ATE_NPORTS 0x20
     71       1.1  jdolecek 
     72       1.1  jdolecek struct ate_softc {
     73       1.1  jdolecek 	struct	mb86960_softc sc_mb86960;	/* real "mb86960" softc */
     74       1.1  jdolecek 
     75       1.1  jdolecek 	/* MCA-specific goo. */
     76       1.1  jdolecek 	void	*sc_ih;				/* interrupt cookie */
     77       1.1  jdolecek };
     78       1.1  jdolecek 
     79       1.6   thorpej CFATTACH_DECL(ate_mca, sizeof(struct ate_softc),
     80       1.7   thorpej     ate_mca_match, ate_mca_attach, NULL, NULL);
     81       1.1  jdolecek 
     82       1.1  jdolecek static const struct ate_mca_product {
     83       1.1  jdolecek 	u_int32_t	at_prodid;	/* MCA product ID */
     84       1.1  jdolecek 	const char	*at_name;	/* device name */
     85       1.1  jdolecek 	int		at_type;	/* device type */
     86       1.1  jdolecek } ate_mca_products[] = {
     87       1.1  jdolecek 	{ MCA_PRODUCT_AT1720T,	"ATI AT1720T",	FE_TYPE_AT1700T		},
     88       1.1  jdolecek 	{ MCA_PRODUCT_AT1720BT,	"ATI AT1720BT",	FE_TYPE_AT1700BT	},
     89       1.1  jdolecek 	{ MCA_PRODUCT_AT1720AT, "ATI AT1720AT",	FE_TYPE_AT1700AT	},
     90       1.1  jdolecek 	{ MCA_PRODUCT_AT1720FT, "ATI AT1720FT",	FE_TYPE_AT1700FT	},
     91  1.12.4.2      yamt 	{ 0,			NULL,		0			},
     92       1.1  jdolecek };
     93       1.1  jdolecek 
     94      1.11     perry static const struct ate_mca_product *ate_mca_lookup(u_int32_t);
     95       1.1  jdolecek 
     96       1.1  jdolecek static const struct ate_mca_product *
     97       1.1  jdolecek ate_mca_lookup(id)
     98       1.1  jdolecek 	u_int32_t id;
     99       1.1  jdolecek {
    100       1.1  jdolecek 	const struct ate_mca_product *atp;
    101       1.1  jdolecek 
    102       1.1  jdolecek 	for (atp = ate_mca_products; atp->at_name != NULL; atp++)
    103       1.1  jdolecek 		if (id == atp->at_prodid)
    104       1.1  jdolecek 			return (atp);
    105       1.1  jdolecek 
    106       1.1  jdolecek 	return (NULL);
    107       1.1  jdolecek }
    108       1.1  jdolecek 
    109       1.1  jdolecek int
    110  1.12.4.2      yamt ate_mca_match(struct device *parent, struct cfdata *match,
    111  1.12.4.2      yamt     void *aux)
    112       1.1  jdolecek {
    113       1.1  jdolecek 	struct mca_attach_args *ma = (struct mca_attach_args *) aux;
    114       1.1  jdolecek 
    115       1.1  jdolecek 	if (ate_mca_lookup(ma->ma_id) != NULL)
    116       1.1  jdolecek 		return (1);
    117       1.1  jdolecek 
    118       1.1  jdolecek 	return (0);
    119       1.1  jdolecek }
    120       1.1  jdolecek 
    121       1.1  jdolecek /* see POS diagrams below for explanation of these arrays' contents */
    122       1.1  jdolecek static const int ats_iobase[] = {
    123       1.1  jdolecek 	0x400, 0x2400, 0x4400, 0x6400, 0x1400, 0x3400, 0x5400, 0x7400
    124       1.1  jdolecek };
    125       1.1  jdolecek static const int ats_irq[] = {
    126       1.1  jdolecek 	3, 4, 5, 9, 10, 11, 12, 15
    127       1.1  jdolecek };
    128       1.1  jdolecek 
    129       1.1  jdolecek void
    130  1.12.4.2      yamt ate_mca_attach(struct device *parent, struct device *self,
    131  1.12.4.2      yamt     void *aux)
    132       1.1  jdolecek {
    133  1.12.4.1      yamt 	struct ate_softc *isc = device_private(self);
    134       1.1  jdolecek 	struct mb86960_softc *sc = &isc->sc_mb86960;
    135       1.1  jdolecek 	struct mca_attach_args *ma = aux;
    136       1.1  jdolecek 	bus_space_tag_t iot = ma->ma_iot;
    137       1.1  jdolecek 	bus_space_handle_t ioh;
    138       1.1  jdolecek 	u_int8_t myea[ETHER_ADDR_LEN];
    139      1.10    simonb 	int pos3, pos4;
    140       1.1  jdolecek 	int iobase, irq;
    141       1.1  jdolecek 	const struct ate_mca_product *atp;
    142       1.1  jdolecek 
    143       1.1  jdolecek 	pos3 = mca_conf_read(ma->ma_mc, ma->ma_slot, 3);
    144       1.1  jdolecek 	pos4 = mca_conf_read(ma->ma_mc, ma->ma_slot, 4);
    145       1.1  jdolecek 
    146       1.1  jdolecek 	/*
    147       1.1  jdolecek 	 * POS register 2: (adf pos0)
    148       1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    149       1.1  jdolecek 	 *               \__ enable: 0=adapter disabled, 1=adapter enabled
    150       1.1  jdolecek 	 *
    151       1.1  jdolecek 	 * POS register 3: (adf pos1)
    152      1.12     perry 	 *
    153       1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    154       1.1  jdolecek 	 * \_/ \___/ \___/
    155       1.1  jdolecek 	 *   \     \     \__ I/O Port Addresses: 000=0x400-0x4FF 100=0x1400-
    156       1.1  jdolecek 	 *    \     \          001=0x2400 101=0x3400 010=0x4400 110=0x5400
    157       1.1  jdolecek 	 *     \     \         011=0x6400 111=0x7400
    158       1.1  jdolecek 	 *      \     \_____ Boot ROM Memory Address
    159       1.1  jdolecek 	 *       \
    160       1.1  jdolecek 	 *        \_________ Lower 2 bit of Interrupt Request Number
    161       1.1  jdolecek 	 *
    162       1.1  jdolecek 	 * POS register 4: (adf pos2)
    163      1.12     perry 	 *
    164       1.1  jdolecek 	 * 7 6 5 4 3 2 1 0
    165       1.1  jdolecek 	 *   \      \_______ Twisted Pair Type: 0=100 ohm, Unshielded
    166       1.1  jdolecek 	 *    \                1=150 ohm, Shielded
    167       1.1  jdolecek 	 *     \____________ Higher 1 bit of Interrupt Request Number:
    168       1.1  jdolecek 	 *                   000=3 001=4 010=5 011=9 100=10 101=11 110=12 111=15
    169       1.1  jdolecek 	 */
    170       1.1  jdolecek 
    171       1.1  jdolecek 	atp = ate_mca_lookup(ma->ma_id);
    172       1.1  jdolecek #ifdef DIAGNOSTIC
    173       1.1  jdolecek 	if (atp == NULL) {
    174       1.1  jdolecek 		printf("\n%s: where did the card go?\n", sc->sc_dev.dv_xname);
    175       1.1  jdolecek 		return;
    176       1.1  jdolecek 	}
    177       1.1  jdolecek #endif
    178       1.1  jdolecek 
    179       1.1  jdolecek 	iobase = ats_iobase[pos3 & 0x7];
    180       1.1  jdolecek 	irq = ats_irq[((pos4 & 0x40) >> 4) | ((pos3 & 0xc0) >> 6)];
    181       1.1  jdolecek 
    182       1.2  jdolecek 	printf(" slot %d irq %d: %s\n", ma->ma_slot + 1, irq, atp->at_name);
    183       1.2  jdolecek 
    184       1.1  jdolecek 	/* Map i/o space. */
    185       1.1  jdolecek 	if (bus_space_map(iot, iobase, ATE_NPORTS, 0, &ioh)) {
    186       1.1  jdolecek 		printf("%s: can't map i/o space\n", sc->sc_dev.dv_xname);
    187       1.1  jdolecek 		return;
    188       1.1  jdolecek 	}
    189       1.1  jdolecek 
    190       1.1  jdolecek 	sc->sc_bst = iot;
    191       1.1  jdolecek 	sc->sc_bsh = ioh;
    192       1.1  jdolecek 
    193      1.10    simonb 	/* Get ethernet address. */
    194       1.1  jdolecek 	ate_mca_detect(iot, ioh, myea);
    195       1.1  jdolecek 
    196       1.1  jdolecek 	/* This interface is always enabled. */
    197       1.9   tsutsui 	sc->sc_stat |= FE_STAT_ENABLED;
    198       1.1  jdolecek 
    199       1.1  jdolecek 	/*
    200       1.1  jdolecek 	 * Do generic MB86960 attach.
    201       1.1  jdolecek 	 */
    202       1.9   tsutsui 	mb86960_attach(sc, myea);
    203       1.1  jdolecek 
    204       1.1  jdolecek 	mb86960_config(sc, NULL, 0, 0);
    205       1.1  jdolecek 
    206       1.1  jdolecek 	/* Establish the interrupt handler. */
    207       1.1  jdolecek 	isc->sc_ih = mca_intr_establish(ma->ma_mc, irq, IPL_NET,
    208       1.1  jdolecek 			mb86960_intr, sc);
    209       1.1  jdolecek 	if (isc->sc_ih == NULL) {
    210       1.1  jdolecek 		printf("%s: couldn't establish interrupt handler\n",
    211       1.1  jdolecek 		    sc->sc_dev.dv_xname);
    212       1.1  jdolecek 		return;
    213       1.1  jdolecek 	}
    214       1.1  jdolecek }
    215       1.1  jdolecek 
    216       1.1  jdolecek /*
    217       1.1  jdolecek  * Very simplified ate_detect() from dev/isa/if_ate.c, only
    218       1.1  jdolecek  * to determine ethernet address.
    219       1.1  jdolecek  */
    220       1.1  jdolecek static void
    221       1.1  jdolecek ate_mca_detect(iot, ioh, enaddr)
    222       1.1  jdolecek 	bus_space_tag_t iot;
    223       1.1  jdolecek 	bus_space_handle_t ioh;
    224       1.1  jdolecek 	u_int8_t enaddr[ETHER_ADDR_LEN];
    225       1.1  jdolecek {
    226       1.8   tsutsui 	u_int8_t eeprom[FE_EEPROM_SIZE];
    227       1.1  jdolecek 
    228       1.1  jdolecek 	/* Get our station address from EEPROM. */
    229       1.8   tsutsui 	mb86965_read_eeprom(iot, ioh, eeprom);
    230       1.8   tsutsui 	memcpy(enaddr, eeprom + FE_ATI_EEP_ADDR, ETHER_ADDR_LEN);
    231       1.1  jdolecek }
    232