if_an_isapnp.c revision 1.2 1 /* $NetBSD: if_an_isapnp.c,v 1.2 2001/06/21 14:02:56 onoe Exp $ */
2
3 /*-
4 * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 /*
40 * ISAPnP bus front-end for the Aironet ISA4500/ISA4800 Wireless LAN Adapter.
41 * Unlike WaveLAN, this adapter is attached as an ISA device using an address
42 * decoder hack.
43 */
44
45 #include "opt_inet.h"
46 #include "opt_ns.h"
47 #include "bpfilter.h"
48
49 #ifdef INET
50 #define ANCACHE /* XXX: should be defined elsewhere */
51 #endif
52
53 #include <sys/param.h>
54 #include <sys/systm.h>
55 #include <sys/mbuf.h>
56 #include <sys/malloc.h>
57 #include <sys/kernel.h>
58 #include <sys/socket.h>
59 #include <sys/ioctl.h>
60 #include <sys/errno.h>
61 #include <sys/device.h>
62 #include <sys/callout.h>
63
64 #include <net/if.h>
65 #include <net/if_dl.h>
66 #include <net/if_media.h>
67 #include <net/if_ether.h>
68 #include <net/if_ieee80211.h>
69
70 #if NBPFILTER > 0
71 #include <net/bpf.h>
72 #endif
73
74 #ifdef INET
75 #include <netinet/in.h>
76 #include <netinet/if_inarp.h>
77 #endif
78
79 #ifdef NS
80 #include <netns/ns.h>
81 #include <netns/ns_if.h>
82 #endif
83
84 #include <machine/bus.h>
85 #include <machine/intr.h>
86
87 #include <dev/ic/anreg.h>
88 #include <dev/ic/anvar.h>
89
90 #include <dev/isa/isavar.h>
91
92 #include <dev/isapnp/isapnpreg.h>
93 #include <dev/isapnp/isapnpvar.h>
94 #include <dev/isapnp/isapnpdevs.h>
95
96 int an_isapnp_match(struct device *, struct cfdata *, void *);
97 void an_isapnp_attach(struct device *, struct device *, void *);
98
99 struct an_isapnp_softc {
100 struct an_softc sc_an; /* real "an" softc */
101
102 /* ISA-specific goo. */
103 void *sc_ih; /* interrupt cookie */
104 };
105
106 struct cfattach an_isapnp_ca = {
107 sizeof(struct an_isapnp_softc), an_isapnp_match, an_isapnp_attach
108 };
109
110 int
111 an_isapnp_match(struct device *parent, struct cfdata *match, void *aux)
112 {
113 int pri, variant;
114
115 pri = isapnp_devmatch(aux, &isapnp_an_devinfo, &variant);
116 if (pri && variant > 0)
117 pri = 0;
118 return (pri);
119 }
120
121 void
122 an_isapnp_attach(struct device *parent, struct device *self, void *aux)
123 {
124 struct an_isapnp_softc *isc = (void *) self;
125 struct an_softc *sc = &isc->sc_an;
126 struct isapnp_attach_args *ipa = aux;
127
128 printf("\n");
129
130 if (isapnp_config(ipa->ipa_iot, ipa->ipa_memt, ipa)) {
131 printf("%s: can't configure isapnp resources\n",
132 sc->an_dev.dv_xname);
133 return;
134 }
135
136 sc->an_btag = ipa->ipa_iot;
137 sc->an_bhandle = ipa->ipa_io[0].h;
138
139 printf("%s: %s %s\n", sc->an_dev.dv_xname, ipa->ipa_devident,
140 ipa->ipa_devclass);
141
142 /* This interface is always enabled. */
143 sc->sc_enabled = 1;
144
145 /* Establish the interrupt handler. */
146 isc->sc_ih = isa_intr_establish(ipa->ipa_ic, ipa->ipa_irq[0].num,
147 ipa->ipa_irq[0].type, IPL_NET, an_intr, sc);
148 if (isc->sc_ih == NULL)
149 printf("%s: couldn't establish interrupt handler\n",
150 sc->an_dev.dv_xname);
151
152 if (an_attach(sc) != 0) {
153 printf("%s: failed to attach controller\n",
154 sc->an_dev.dv_xname);
155 isa_intr_disestablish(ipa->ipa_ic, isc->sc_ih);
156 isc->sc_ih = NULL;
157 }
158 }
159