if_cs_pccard.c revision 113506
1/*
2 * Copyright (c) 1999 M. Warner Losh <imp@village.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 * $FreeBSD: head/sys/dev/cs/if_cs_pccard.c 113506 2003-04-15 06:37:30Z mdodd $
26 */
27
28#include <sys/param.h>
29#include <sys/systm.h>
30#include <sys/kernel.h>
31#include <sys/socket.h>
32
33#include <sys/module.h>
34#include <sys/bus.h>
35
36#include <machine/bus.h>
37#include <machine/resource.h>
38
39#include <net/ethernet.h>
40#include <net/if.h>
41#include <net/if_arp.h>
42
43#include <dev/cs/if_csvar.h>
44#include <dev/cs/if_csreg.h>
45#include <dev/pccard/pccardvar.h>
46#include <dev/pccard/pccarddevs.h>
47
48#include "card_if.h"
49
50static const struct pccard_product cs_pccard_products[] = {
51	PCMCIA_CARD(IBM, ETHERJET, 0),
52	{ NULL }
53};
54static int
55cs_pccard_match(device_t dev)
56{
57	const struct pccard_product *pp;
58
59	if ((pp = pccard_product_lookup(dev, cs_pccard_products,
60	    sizeof(cs_pccard_products[0]), NULL)) != NULL) {
61		if (pp->pp_name != NULL)
62			device_set_desc(dev, pp->pp_name);
63		return 0;
64	}
65	return EIO;
66}
67
68static int
69cs_pccard_probe(device_t dev)
70{
71	int error;
72
73	error = cs_cs89x0_probe(dev);
74        cs_release_resources(dev);
75        return (error);
76}
77
78static int
79cs_pccard_attach(device_t dev)
80{
81        struct cs_softc *sc = device_get_softc(dev);
82        int flags = device_get_flags(dev);
83        int error;
84
85	error = cs_alloc_port(dev, sc->port_rid, CS_89x0_IO_PORTS);
86	if (error != 0)
87		goto bad;
88        error = cs_alloc_irq(dev, sc->irq_rid, 0);
89	if (error != 0)
90		goto bad;
91        error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
92	    csintr, sc, &sc->irq_handle);
93        if (error != 0)
94		goto bad;
95
96        return (cs_attach(sc, device_get_unit(dev), flags));
97bad:
98	cs_release_resources(dev);
99	return (error);
100}
101
102static device_method_t cs_pccard_methods[] = {
103	/* Device interface */
104	DEVMETHOD(device_probe,		pccard_compat_probe),
105	DEVMETHOD(device_attach,	pccard_compat_attach),
106#ifdef CS_HAS_DETACH
107	DEVMETHOD(device_detach,	cs_detach),
108#endif
109
110	/* Card interface */
111	DEVMETHOD(card_compat_match,	cs_pccard_match),
112	DEVMETHOD(card_compat_probe,	cs_pccard_probe),
113	DEVMETHOD(card_compat_attach,	cs_pccard_attach),
114
115	{ 0, 0 }
116};
117
118static driver_t cs_pccard_driver = {
119	"cs",
120	cs_pccard_methods,
121	sizeof(struct cs_softc),
122};
123
124extern devclass_t cs_devclass;
125
126DRIVER_MODULE(cs, pccard, cs_pccard_driver, cs_devclass, 0, 0);
127MODULE_DEPEND(cs, pccard, 1, 1, 1);
128MODULE_DEPEND(cs, ether, 1, 1, 1);
129