if_cs_pccard.c revision 139749
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 139749 2005-01-06 01:43:34Z 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>
4871316Simp
4971316Simp#include "card_if.h"
50129764Simp#include "pccarddevs.h"
5171316Simp
5271316Simpstatic const struct pccard_product cs_pccard_products[] = {
5386394Simp	PCMCIA_CARD(IBM, ETHERJET, 0),
5471316Simp	{ NULL }
5571316Simp};
5671316Simpstatic int
5771316Simpcs_pccard_match(device_t dev)
5871316Simp{
5971316Simp	const struct pccard_product *pp;
6071316Simp
6171316Simp	if ((pp = pccard_product_lookup(dev, cs_pccard_products,
6271316Simp	    sizeof(cs_pccard_products[0]), NULL)) != NULL) {
63113315Simp		if (pp->pp_name != NULL)
64113315Simp			device_set_desc(dev, pp->pp_name);
6571316Simp		return 0;
6671316Simp	}
6771316Simp	return EIO;
6871316Simp}
6971316Simp
7071316Simpstatic int
7171316Simpcs_pccard_probe(device_t dev)
7271316Simp{
7371316Simp	int error;
7471316Simp
7571316Simp	error = cs_cs89x0_probe(dev);
7671316Simp        cs_release_resources(dev);
7771316Simp        return (error);
7871316Simp}
7971316Simp
8071316Simpstatic int
8171316Simpcs_pccard_attach(device_t dev)
8271316Simp{
8371316Simp        struct cs_softc *sc = device_get_softc(dev);
8471316Simp        int error;
8571316Simp
8672940Simp	error = cs_alloc_port(dev, sc->port_rid, CS_89x0_IO_PORTS);
8772940Simp	if (error != 0)
8872940Simp		goto bad;
8971316Simp        error = cs_alloc_irq(dev, sc->irq_rid, 0);
9071316Simp	if (error != 0)
9171316Simp		goto bad;
9271316Simp        error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
9371316Simp	    csintr, sc, &sc->irq_handle);
9471316Simp        if (error != 0)
9571316Simp		goto bad;
9671316Simp
97121816Sbrooks        return (cs_attach(dev));
9871316Simpbad:
9971316Simp	cs_release_resources(dev);
10071316Simp	return (error);
10171316Simp}
10271316Simp
10371316Simpstatic device_method_t cs_pccard_methods[] = {
10471316Simp	/* Device interface */
10571316Simp	DEVMETHOD(device_probe,		pccard_compat_probe),
10671316Simp	DEVMETHOD(device_attach,	pccard_compat_attach),
10771316Simp#ifdef CS_HAS_DETACH
10871316Simp	DEVMETHOD(device_detach,	cs_detach),
10971316Simp#endif
11071316Simp
11171316Simp	/* Card interface */
11271316Simp	DEVMETHOD(card_compat_match,	cs_pccard_match),
11371316Simp	DEVMETHOD(card_compat_probe,	cs_pccard_probe),
11471316Simp	DEVMETHOD(card_compat_attach,	cs_pccard_attach),
11571316Simp
11671316Simp	{ 0, 0 }
11771316Simp};
11871316Simp
11971316Simpstatic driver_t cs_pccard_driver = {
12071316Simp	"cs",
12171316Simp	cs_pccard_methods,
12271316Simp	sizeof(struct cs_softc),
12371316Simp};
12471316Simp
12571316Simpextern devclass_t cs_devclass;
12671316Simp
127113506SmdoddDRIVER_MODULE(cs, pccard, cs_pccard_driver, cs_devclass, 0, 0);
128113506SmdoddMODULE_DEPEND(cs, ether, 1, 1, 1);
129