if_cs_pccard.c revision 140524
1139749Simp/*-
271316Simp * Copyright (c) 1999 M. Warner Losh <imp@village.org>
371316Simp * All rights reserved.
471316Simp *
571316Simp * Redistribution and use in source and binary forms, with or without
671316Simp * modification, are permitted provided that the following conditions
771316Simp * are met:
871316Simp * 1. Redistributions of source code must retain the above copyright
971316Simp *    notice, this list of conditions and the following disclaimer.
1071316Simp * 2. Redistributions in binary form must reproduce the above copyright
1171316Simp *    notice, this list of conditions and the following disclaimer in the
1271316Simp *    documentation and/or other materials provided with the distribution.
1371316Simp *
1471316Simp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1571316Simp * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1671316Simp * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1771316Simp * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
1871316Simp * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
1971316Simp * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2071316Simp * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2171316Simp * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2271316Simp * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2371316Simp * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2471316Simp *
2571316Simp */
2671316Simp
27119418Sobrien#include <sys/cdefs.h>
28119418Sobrien__FBSDID("$FreeBSD: head/sys/dev/cs/if_cs_pccard.c 140524 2005-01-20 19:56:22Z imp $");
29119418Sobrien
3071316Simp#include <sys/param.h>
3171316Simp#include <sys/systm.h>
3271316Simp#include <sys/kernel.h>
3371316Simp#include <sys/socket.h>
3471316Simp
3571316Simp#include <sys/module.h>
3671316Simp#include <sys/bus.h>
3771316Simp
3871316Simp#include <machine/bus.h>
3971316Simp#include <machine/resource.h>
4071316Simp
4171316Simp#include <net/ethernet.h>
4271316Simp#include <net/if.h>
4371316Simp#include <net/if_arp.h>
4471316Simp
4571316Simp#include <dev/cs/if_csvar.h>
4672940Simp#include <dev/cs/if_csreg.h>
4771316Simp#include <dev/pccard/pccardvar.h>
48140524Simp#include <dev/pccard/pccard_cis.h>
4971316Simp
5071316Simp#include "card_if.h"
51129764Simp#include "pccarddevs.h"
5271316Simp
5371316Simpstatic const struct pccard_product cs_pccard_products[] = {
5486394Simp	PCMCIA_CARD(IBM, ETHERJET, 0),
5571316Simp	{ NULL }
5671316Simp};
5771316Simpstatic int
5871316Simpcs_pccard_match(device_t dev)
5971316Simp{
6071316Simp	const struct pccard_product *pp;
61140524Simp	int		error;
62140524Simp	uint32_t	fcn = PCCARD_FUNCTION_UNSPEC;
6371316Simp
64140524Simp	/* Make sure we're a network function */
65140524Simp	error = pccard_get_function(dev, &fcn);
66140524Simp	if (error != 0)
67140524Simp		return (error);
68140524Simp	if (fcn != PCCARD_FUNCTION_NETWORK)
69140524Simp		return (ENXIO);
70140524Simp
7171316Simp	if ((pp = pccard_product_lookup(dev, cs_pccard_products,
7271316Simp	    sizeof(cs_pccard_products[0]), NULL)) != NULL) {
73113315Simp		if (pp->pp_name != NULL)
74113315Simp			device_set_desc(dev, pp->pp_name);
7571316Simp		return 0;
7671316Simp	}
7771316Simp	return EIO;
7871316Simp}
7971316Simp
8071316Simpstatic int
8171316Simpcs_pccard_probe(device_t dev)
8271316Simp{
8371316Simp	int error;
8471316Simp
8571316Simp	error = cs_cs89x0_probe(dev);
8671316Simp        cs_release_resources(dev);
8771316Simp        return (error);
8871316Simp}
8971316Simp
9071316Simpstatic int
9171316Simpcs_pccard_attach(device_t dev)
9271316Simp{
9371316Simp        struct cs_softc *sc = device_get_softc(dev);
9471316Simp        int error;
9571316Simp
9672940Simp	error = cs_alloc_port(dev, sc->port_rid, CS_89x0_IO_PORTS);
9772940Simp	if (error != 0)
9872940Simp		goto bad;
9971316Simp        error = cs_alloc_irq(dev, sc->irq_rid, 0);
10071316Simp	if (error != 0)
10171316Simp		goto bad;
10271316Simp        error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
10371316Simp	    csintr, sc, &sc->irq_handle);
10471316Simp        if (error != 0)
10571316Simp		goto bad;
10671316Simp
107121816Sbrooks        return (cs_attach(dev));
10871316Simpbad:
10971316Simp	cs_release_resources(dev);
11071316Simp	return (error);
11171316Simp}
11271316Simp
11371316Simpstatic device_method_t cs_pccard_methods[] = {
11471316Simp	/* Device interface */
11571316Simp	DEVMETHOD(device_probe,		pccard_compat_probe),
11671316Simp	DEVMETHOD(device_attach,	pccard_compat_attach),
11771316Simp#ifdef CS_HAS_DETACH
11871316Simp	DEVMETHOD(device_detach,	cs_detach),
11971316Simp#endif
12071316Simp
12171316Simp	/* Card interface */
12271316Simp	DEVMETHOD(card_compat_match,	cs_pccard_match),
12371316Simp	DEVMETHOD(card_compat_probe,	cs_pccard_probe),
12471316Simp	DEVMETHOD(card_compat_attach,	cs_pccard_attach),
12571316Simp
12671316Simp	{ 0, 0 }
12771316Simp};
12871316Simp
12971316Simpstatic driver_t cs_pccard_driver = {
13071316Simp	"cs",
13171316Simp	cs_pccard_methods,
13271316Simp	sizeof(struct cs_softc),
13371316Simp};
13471316Simp
13571316Simpextern devclass_t cs_devclass;
13671316Simp
137113506SmdoddDRIVER_MODULE(cs, pccard, cs_pccard_driver, cs_devclass, 0, 0);
138113506SmdoddMODULE_DEPEND(cs, ether, 1, 1, 1);
139