Home | History | Annotate | Line # | Download | only in cardbus
if_fxp_cardbus.c revision 1.31.4.1
      1  1.31.4.1    simonb /*	$NetBSD: if_fxp_cardbus.c,v 1.31.4.1 2008/06/27 15:11:21 simonb Exp $	*/
      2       1.1      haya 
      3       1.1      haya /*
      4       1.3      joda  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5       1.3      joda  * All rights reserved.
      6       1.1      haya  *
      7       1.9   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.9   thorpej  * by Johan Danielsson.
      9       1.1      haya  *
     10       1.9   thorpej  * Redistribution and use in source and binary forms, with or without
     11       1.9   thorpej  * modification, are permitted provided that the following conditions
     12       1.9   thorpej  * are met:
     13       1.9   thorpej  * 1. Redistributions of source code must retain the above copyright
     14       1.9   thorpej  *    notice, this list of conditions and the following disclaimer.
     15       1.9   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.9   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17       1.9   thorpej  *    documentation and/or other materials provided with the distribution.
     18       1.3      joda  *
     19       1.3      joda  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.3      joda  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.3      joda  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.3      joda  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.3      joda  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.3      joda  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.3      joda  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.3      joda  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.3      joda  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.3      joda  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1      haya  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1      haya  */
     31       1.1      haya 
     32       1.9   thorpej /*
     33       1.9   thorpej  * CardBus front-end for the Intel i82557 family of Ethernet chips.
     34       1.9   thorpej  */
     35      1.13     lukem 
     36      1.13     lukem #include <sys/cdefs.h>
     37  1.31.4.1    simonb __KERNEL_RCSID(0, "$NetBSD: if_fxp_cardbus.c,v 1.31.4.1 2008/06/27 15:11:21 simonb Exp $");
     38       1.1      haya 
     39       1.1      haya #include "opt_inet.h"
     40       1.1      haya #include "bpfilter.h"
     41       1.1      haya #include "rnd.h"
     42       1.1      haya 
     43       1.1      haya #include <sys/param.h>
     44       1.1      haya #include <sys/systm.h>
     45       1.1      haya #include <sys/mbuf.h>
     46       1.1      haya #include <sys/malloc.h>
     47       1.1      haya #include <sys/kernel.h>
     48       1.1      haya #include <sys/socket.h>
     49       1.1      haya #include <sys/ioctl.h>
     50       1.1      haya #include <sys/errno.h>
     51       1.1      haya #include <sys/device.h>
     52       1.1      haya 
     53       1.1      haya #if NRND > 0
     54       1.1      haya #include <sys/rnd.h>
     55       1.1      haya #endif
     56       1.1      haya 
     57       1.1      haya #include <net/if.h>
     58       1.1      haya #include <net/if_dl.h>
     59       1.1      haya #include <net/if_media.h>
     60       1.1      haya #include <net/if_ether.h>
     61       1.5   thorpej 
     62       1.5   thorpej #include <machine/endian.h>
     63       1.1      haya 
     64       1.1      haya #if NBPFILTER > 0
     65       1.1      haya #include <net/bpf.h>
     66       1.1      haya #endif
     67       1.1      haya 
     68       1.1      haya #ifdef INET
     69       1.1      haya #include <netinet/in.h>
     70       1.1      haya #include <netinet/if_inarp.h>
     71       1.1      haya #endif
     72       1.1      haya 
     73       1.1      haya 
     74      1.27        ad #include <sys/bus.h>
     75      1.27        ad #include <sys/intr.h>
     76       1.1      haya 
     77       1.1      haya #include <dev/mii/miivar.h>
     78       1.1      haya 
     79       1.3      joda #include <dev/ic/i82557reg.h>
     80       1.3      joda #include <dev/ic/i82557var.h>
     81       1.1      haya 
     82       1.1      haya #include <dev/pci/pcivar.h>
     83       1.1      haya #include <dev/pci/pcireg.h>
     84       1.1      haya #include <dev/pci/pcidevs.h>
     85       1.1      haya 
     86       1.1      haya #include <dev/cardbus/cardbusvar.h>
     87      1.18   mycroft #include <dev/pci/pcidevs.h>
     88       1.1      haya 
     89      1.19     perry static int fxp_cardbus_match(struct device *, struct cfdata *, void *);
     90      1.19     perry static void fxp_cardbus_attach(struct device *, struct device *, void *);
     91      1.19     perry static int fxp_cardbus_detach(struct device * self, int flags);
     92      1.19     perry static void fxp_cardbus_setup(struct fxp_softc * sc);
     93      1.19     perry static int fxp_cardbus_enable(struct fxp_softc * sc);
     94      1.19     perry static void fxp_cardbus_disable(struct fxp_softc * sc);
     95       1.1      haya 
     96       1.1      haya struct fxp_cardbus_softc {
     97       1.9   thorpej 	struct fxp_softc sc;
     98       1.9   thorpej 	cardbus_devfunc_t ct;
     99       1.9   thorpej 	pcireg_t base0_reg;
    100       1.9   thorpej 	pcireg_t base1_reg;
    101       1.9   thorpej 	bus_size_t size;
    102       1.1      haya };
    103       1.1      haya 
    104      1.16   thorpej CFATTACH_DECL(fxp_cardbus, sizeof(struct fxp_cardbus_softc),
    105      1.17   thorpej     fxp_cardbus_match, fxp_cardbus_attach, fxp_cardbus_detach, fxp_activate);
    106       1.1      haya 
    107       1.1      haya #ifdef CBB_DEBUG
    108       1.1      haya #define DPRINTF(X) printf X
    109       1.1      haya #else
    110       1.1      haya #define DPRINTF(X)
    111       1.1      haya #endif
    112       1.1      haya 
    113       1.1      haya static int
    114      1.26  christos fxp_cardbus_match(struct device *parent, struct cfdata *match,
    115      1.25  christos     void *aux)
    116       1.1      haya {
    117       1.9   thorpej 	struct cardbus_attach_args *ca = aux;
    118       1.9   thorpej 
    119      1.18   mycroft 	if (CARDBUS_VENDOR(ca->ca_id) == PCI_VENDOR_INTEL &&
    120      1.18   mycroft 	    CARDBUS_PRODUCT(ca->ca_id) == PCI_PRODUCT_INTEL_82557)
    121      1.11   thorpej 		return (1);
    122      1.11   thorpej 
    123      1.11   thorpej 	return (0);
    124       1.1      haya }
    125       1.1      haya 
    126       1.1      haya static void
    127      1.26  christos fxp_cardbus_attach(struct device *parent, struct device *self,
    128      1.25  christos     void *aux)
    129       1.1      haya {
    130      1.12   thorpej 	static const char thisfunc[] = "fxp_cardbus_attach";
    131       1.6      joda 
    132      1.23   thorpej 	struct fxp_softc *sc = device_private(self);
    133      1.23   thorpej 	struct fxp_cardbus_softc *csc = device_private(self);
    134       1.9   thorpej 	struct cardbus_attach_args *ca = aux;
    135       1.9   thorpej 	bus_space_tag_t iot, memt;
    136       1.9   thorpej 	bus_space_handle_t ioh, memh;
    137       1.9   thorpej 
    138       1.9   thorpej 	bus_addr_t adr;
    139       1.9   thorpej 	bus_size_t size;
    140       1.9   thorpej 
    141       1.9   thorpej 	csc->ct = ca->ca_ct;
    142       1.9   thorpej 
    143       1.9   thorpej 	/*
    144       1.9   thorpej          * Map control/status registers.
    145       1.9   thorpej          */
    146      1.10     veego 	if (Cardbus_mapreg_map(csc->ct, CARDBUS_BASE1_REG,
    147      1.10     veego 	    PCI_MAPREG_TYPE_IO, 0, &iot, &ioh, &adr, &size) == 0) {
    148      1.10     veego 		csc->base1_reg = adr | 1;
    149      1.10     veego 		sc->sc_st = iot;
    150      1.10     veego 		sc->sc_sh = ioh;
    151      1.10     veego 		csc->size = size;
    152      1.10     veego 	} else if (Cardbus_mapreg_map(csc->ct, CARDBUS_BASE0_REG,
    153       1.9   thorpej 	    PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT,
    154       1.9   thorpej 	    0, &memt, &memh, &adr, &size) == 0) {
    155       1.9   thorpej 		csc->base0_reg = adr;
    156       1.9   thorpej 		sc->sc_st = memt;
    157       1.9   thorpej 		sc->sc_sh = memh;
    158       1.9   thorpej 		csc->size = size;
    159       1.9   thorpej 	} else
    160      1.12   thorpej 		panic("%s: failed to allocate mem and io space", thisfunc);
    161       1.9   thorpej 
    162       1.9   thorpej 
    163       1.9   thorpej 	if (ca->ca_cis.cis1_info[0] && ca->ca_cis.cis1_info[1])
    164       1.9   thorpej 		printf(": %s %s\n", ca->ca_cis.cis1_info[0],
    165       1.9   thorpej 		    ca->ca_cis.cis1_info[1]);
    166       1.9   thorpej 	else
    167       1.9   thorpej 		printf("\n");
    168       1.9   thorpej 
    169       1.9   thorpej 	sc->sc_dmat = ca->ca_dmat;
    170       1.9   thorpej 	sc->sc_enable = fxp_cardbus_enable;
    171       1.9   thorpej 	sc->sc_disable = fxp_cardbus_disable;
    172       1.9   thorpej 	sc->sc_enabled = 0;
    173       1.9   thorpej 
    174       1.9   thorpej 	fxp_enable(sc);
    175       1.9   thorpej 	fxp_attach(sc);
    176       1.9   thorpej 	fxp_disable(sc);
    177      1.28  jmcneill 
    178      1.29  jmcneill 	if (!pmf_device_register(self, NULL, NULL))
    179      1.28  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    180      1.28  jmcneill 	else
    181      1.28  jmcneill 		pmf_class_network_register(self, &sc->sc_ethercom.ec_if);
    182       1.1      haya }
    183       1.1      haya 
    184       1.1      haya static void
    185       1.9   thorpej fxp_cardbus_setup(struct fxp_softc * sc)
    186       1.1      haya {
    187       1.9   thorpej 	struct fxp_cardbus_softc *csc = (struct fxp_cardbus_softc *) sc;
    188       1.9   thorpej 	struct cardbus_softc *psc =
    189      1.22   thorpej 	    (struct cardbus_softc *) device_parent(&sc->sc_dev);
    190       1.9   thorpej 	cardbus_chipset_tag_t cc = psc->sc_cc;
    191       1.9   thorpej 	cardbus_function_tag_t cf = psc->sc_cf;
    192       1.9   thorpej 	pcireg_t command;
    193       1.9   thorpej 
    194       1.9   thorpej 	cardbustag_t tag = cardbus_make_tag(cc, cf, csc->ct->ct_bus,
    195      1.20  drochner 	    csc->ct->ct_func);
    196       1.9   thorpej 
    197       1.9   thorpej 	command = Cardbus_conf_read(csc->ct, tag, CARDBUS_COMMAND_STATUS_REG);
    198       1.9   thorpej 	if (csc->base0_reg) {
    199       1.9   thorpej 		Cardbus_conf_write(csc->ct, tag,
    200       1.9   thorpej 		    CARDBUS_BASE0_REG, csc->base0_reg);
    201       1.9   thorpej 		(cf->cardbus_ctrl) (cc, CARDBUS_MEM_ENABLE);
    202       1.9   thorpej 		command |= CARDBUS_COMMAND_MEM_ENABLE |
    203       1.9   thorpej 		    CARDBUS_COMMAND_MASTER_ENABLE;
    204       1.9   thorpej 	} else if (csc->base1_reg) {
    205       1.9   thorpej 		Cardbus_conf_write(csc->ct, tag,
    206       1.9   thorpej 		    CARDBUS_BASE1_REG, csc->base1_reg);
    207       1.9   thorpej 		(cf->cardbus_ctrl) (cc, CARDBUS_IO_ENABLE);
    208       1.9   thorpej 		command |= (CARDBUS_COMMAND_IO_ENABLE |
    209       1.9   thorpej 		    CARDBUS_COMMAND_MASTER_ENABLE);
    210       1.9   thorpej 	}
    211       1.9   thorpej 
    212       1.9   thorpej 	(cf->cardbus_ctrl) (cc, CARDBUS_BM_ENABLE);
    213       1.9   thorpej 
    214       1.9   thorpej 	/* enable the card */
    215       1.9   thorpej 	Cardbus_conf_write(csc->ct, tag, CARDBUS_COMMAND_STATUS_REG, command);
    216       1.1      haya }
    217       1.1      haya 
    218       1.1      haya static int
    219       1.9   thorpej fxp_cardbus_enable(struct fxp_softc * sc)
    220       1.1      haya {
    221       1.9   thorpej 	struct fxp_cardbus_softc *csc = (struct fxp_cardbus_softc *) sc;
    222       1.9   thorpej 	struct cardbus_softc *psc =
    223      1.22   thorpej 	    (struct cardbus_softc *) device_parent(&sc->sc_dev);
    224       1.9   thorpej 	cardbus_chipset_tag_t cc = psc->sc_cc;
    225       1.9   thorpej 	cardbus_function_tag_t cf = psc->sc_cf;
    226       1.9   thorpej 
    227       1.9   thorpej 	Cardbus_function_enable(csc->ct);
    228       1.9   thorpej 
    229       1.9   thorpej 	fxp_cardbus_setup(sc);
    230       1.9   thorpej 
    231       1.9   thorpej 	/* Map and establish the interrupt. */
    232       1.9   thorpej 
    233       1.9   thorpej 	sc->sc_ih = cardbus_intr_establish(cc, cf, psc->sc_intrline, IPL_NET,
    234       1.9   thorpej 	    fxp_intr, sc);
    235       1.9   thorpej 	if (NULL == sc->sc_ih) {
    236      1.30    cegger 		aprint_error_dev(&sc->sc_dev, "couldn't establish interrupt\n");
    237       1.9   thorpej 		return 1;
    238       1.9   thorpej 	}
    239       1.1      haya 
    240       1.9   thorpej 	return 0;
    241       1.1      haya }
    242       1.1      haya 
    243       1.1      haya static void
    244       1.9   thorpej fxp_cardbus_disable(struct fxp_softc * sc)
    245       1.1      haya {
    246       1.9   thorpej 	struct cardbus_softc *psc =
    247      1.22   thorpej 	    (struct cardbus_softc *) device_parent(&sc->sc_dev);
    248       1.9   thorpej 	cardbus_chipset_tag_t cc = psc->sc_cc;
    249       1.9   thorpej 	cardbus_function_tag_t cf = psc->sc_cf;
    250       1.9   thorpej 
    251       1.9   thorpej 	/* Remove interrupt handler. */
    252       1.9   thorpej 	cardbus_intr_disestablish(cc, cf, sc->sc_ih);
    253       1.9   thorpej 
    254       1.9   thorpej 	Cardbus_function_disable(((struct fxp_cardbus_softc *) sc)->ct);
    255       1.6      joda }
    256       1.6      joda 
    257       1.6      joda static int
    258      1.26  christos fxp_cardbus_detach(struct device *self, int flags)
    259       1.6      joda {
    260      1.23   thorpej 	struct fxp_softc *sc = device_private(self);
    261      1.23   thorpej 	struct fxp_cardbus_softc *csc = device_private(self);
    262       1.6      joda 	struct cardbus_devfunc *ct = csc->ct;
    263       1.9   thorpej 	int rv, reg;
    264       1.6      joda 
    265       1.6      joda #ifdef DIAGNOSTIC
    266       1.9   thorpej 	if (ct == NULL)
    267      1.30    cegger 		panic("%s: data structure lacks", device_xname(&sc->sc_dev));
    268       1.6      joda #endif
    269       1.6      joda 
    270       1.6      joda 	rv = fxp_detach(sc);
    271       1.6      joda 	if (rv == 0) {
    272       1.6      joda 		/*
    273       1.6      joda 		 * Unhook the interrupt handler.
    274       1.6      joda 		 */
    275       1.6      joda 		cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, sc->sc_ih);
    276       1.6      joda 
    277       1.6      joda 		/*
    278       1.6      joda 		 * release bus space and close window
    279       1.6      joda 		 */
    280       1.9   thorpej 		if (csc->base0_reg)
    281       1.6      joda 			reg = CARDBUS_BASE0_REG;
    282       1.9   thorpej 		else
    283       1.6      joda 			reg = CARDBUS_BASE1_REG;
    284       1.6      joda 		Cardbus_mapreg_unmap(ct, reg, sc->sc_st, sc->sc_sh, csc->size);
    285       1.6      joda 	}
    286       1.6      joda 	return (rv);
    287       1.1      haya }
    288