wi.c revision 1.17.2.22 1 1.17.2.22 thorpej /* $NetBSD: wi.c,v 1.17.2.22 2002/12/29 20:49:17 thorpej Exp $ */
2 1.17.2.2 nathanw
3 1.17.2.2 nathanw /*
4 1.17.2.2 nathanw * Copyright (c) 1997, 1998, 1999
5 1.17.2.2 nathanw * Bill Paul <wpaul (at) ctr.columbia.edu>. All rights reserved.
6 1.17.2.2 nathanw *
7 1.17.2.2 nathanw * Redistribution and use in source and binary forms, with or without
8 1.17.2.2 nathanw * modification, are permitted provided that the following conditions
9 1.17.2.2 nathanw * are met:
10 1.17.2.2 nathanw * 1. Redistributions of source code must retain the above copyright
11 1.17.2.2 nathanw * notice, this list of conditions and the following disclaimer.
12 1.17.2.2 nathanw * 2. Redistributions in binary form must reproduce the above copyright
13 1.17.2.2 nathanw * notice, this list of conditions and the following disclaimer in the
14 1.17.2.2 nathanw * documentation and/or other materials provided with the distribution.
15 1.17.2.2 nathanw * 3. All advertising materials mentioning features or use of this software
16 1.17.2.2 nathanw * must display the following acknowledgement:
17 1.17.2.2 nathanw * This product includes software developed by Bill Paul.
18 1.17.2.2 nathanw * 4. Neither the name of the author nor the names of any co-contributors
19 1.17.2.2 nathanw * may be used to endorse or promote products derived from this software
20 1.17.2.2 nathanw * without specific prior written permission.
21 1.17.2.2 nathanw *
22 1.17.2.2 nathanw * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
23 1.17.2.2 nathanw * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.17.2.2 nathanw * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.17.2.2 nathanw * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
26 1.17.2.2 nathanw * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 1.17.2.2 nathanw * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 1.17.2.2 nathanw * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 1.17.2.2 nathanw * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 1.17.2.2 nathanw * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 1.17.2.2 nathanw * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32 1.17.2.2 nathanw * THE POSSIBILITY OF SUCH DAMAGE.
33 1.17.2.2 nathanw */
34 1.17.2.2 nathanw
35 1.17.2.2 nathanw /*
36 1.17.2.2 nathanw * Lucent WaveLAN/IEEE 802.11 PCMCIA driver for NetBSD.
37 1.17.2.2 nathanw *
38 1.17.2.2 nathanw * Original FreeBSD driver written by Bill Paul <wpaul (at) ctr.columbia.edu>
39 1.17.2.2 nathanw * Electrical Engineering Department
40 1.17.2.2 nathanw * Columbia University, New York City
41 1.17.2.2 nathanw */
42 1.17.2.2 nathanw
43 1.17.2.2 nathanw /*
44 1.17.2.2 nathanw * The WaveLAN/IEEE adapter is the second generation of the WaveLAN
45 1.17.2.2 nathanw * from Lucent. Unlike the older cards, the new ones are programmed
46 1.17.2.2 nathanw * entirely via a firmware-driven controller called the Hermes.
47 1.17.2.2 nathanw * Unfortunately, Lucent will not release the Hermes programming manual
48 1.17.2.2 nathanw * without an NDA (if at all). What they do release is an API library
49 1.17.2.2 nathanw * called the HCF (Hardware Control Functions) which is supposed to
50 1.17.2.2 nathanw * do the device-specific operations of a device driver for you. The
51 1.17.2.2 nathanw * publically available version of the HCF library (the 'HCF Light') is
52 1.17.2.2 nathanw * a) extremely gross, b) lacks certain features, particularly support
53 1.17.2.2 nathanw * for 802.11 frames, and c) is contaminated by the GNU Public License.
54 1.17.2.2 nathanw *
55 1.17.2.2 nathanw * This driver does not use the HCF or HCF Light at all. Instead, it
56 1.17.2.2 nathanw * programs the Hermes controller directly, using information gleaned
57 1.17.2.2 nathanw * from the HCF Light code and corresponding documentation.
58 1.17.2.2 nathanw *
59 1.17.2.2 nathanw * This driver supports both the PCMCIA and ISA versions of the
60 1.17.2.2 nathanw * WaveLAN/IEEE cards. Note however that the ISA card isn't really
61 1.17.2.2 nathanw * anything of the sort: it's actually a PCMCIA bridge adapter
62 1.17.2.2 nathanw * that fits into an ISA slot, into which a PCMCIA WaveLAN card is
63 1.17.2.2 nathanw * inserted. Consequently, you need to use the pccard support for
64 1.17.2.2 nathanw * both the ISA and PCMCIA adapters.
65 1.17.2.2 nathanw */
66 1.17.2.2 nathanw
67 1.17.2.2 nathanw /*
68 1.17.2.2 nathanw * FreeBSD driver ported to NetBSD by Bill Sommerfeld in the back of the
69 1.17.2.2 nathanw * Oslo IETF plenary meeting.
70 1.17.2.2 nathanw */
71 1.17.2.2 nathanw
72 1.17.2.8 nathanw #include <sys/cdefs.h>
73 1.17.2.22 thorpej __KERNEL_RCSID(0, "$NetBSD: wi.c,v 1.17.2.22 2002/12/29 20:49:17 thorpej Exp $");
74 1.17.2.8 nathanw
75 1.17.2.2 nathanw #define WI_HERMES_AUTOINC_WAR /* Work around data write autoinc bug. */
76 1.17.2.2 nathanw #define WI_HERMES_STATS_WAR /* Work around stats counter bug. */
77 1.17.2.2 nathanw
78 1.17.2.2 nathanw #include "bpfilter.h"
79 1.17.2.2 nathanw
80 1.17.2.2 nathanw #include <sys/param.h>
81 1.17.2.2 nathanw #include <sys/systm.h>
82 1.17.2.2 nathanw #include <sys/callout.h>
83 1.17.2.2 nathanw #include <sys/device.h>
84 1.17.2.2 nathanw #include <sys/socket.h>
85 1.17.2.2 nathanw #include <sys/mbuf.h>
86 1.17.2.2 nathanw #include <sys/ioctl.h>
87 1.17.2.2 nathanw #include <sys/kernel.h> /* for hz */
88 1.17.2.2 nathanw #include <sys/proc.h>
89 1.17.2.2 nathanw
90 1.17.2.2 nathanw #include <net/if.h>
91 1.17.2.2 nathanw #include <net/if_dl.h>
92 1.17.2.2 nathanw #include <net/if_media.h>
93 1.17.2.2 nathanw #include <net/if_ether.h>
94 1.17.2.2 nathanw #include <net/if_ieee80211.h>
95 1.17.2.2 nathanw
96 1.17.2.2 nathanw #if NBPFILTER > 0
97 1.17.2.2 nathanw #include <net/bpf.h>
98 1.17.2.2 nathanw #include <net/bpfdesc.h>
99 1.17.2.2 nathanw #endif
100 1.17.2.2 nathanw
101 1.17.2.3 nathanw #include <machine/bus.h>
102 1.17.2.2 nathanw
103 1.17.2.2 nathanw #include <dev/ic/wi_ieee.h>
104 1.17.2.2 nathanw #include <dev/ic/wireg.h>
105 1.17.2.2 nathanw #include <dev/ic/wivar.h>
106 1.17.2.2 nathanw
107 1.17.2.19 nathanw static int wi_init(struct ifnet *);
108 1.17.2.19 nathanw static void wi_stop(struct ifnet *, int);
109 1.17.2.19 nathanw static void wi_start(struct ifnet *);
110 1.17.2.19 nathanw static int wi_reset(struct wi_softc *);
111 1.17.2.19 nathanw static void wi_watchdog(struct ifnet *);
112 1.17.2.19 nathanw static int wi_ioctl(struct ifnet *, u_long, caddr_t);
113 1.17.2.19 nathanw static int wi_media_change(struct ifnet *);
114 1.17.2.19 nathanw static void wi_media_status(struct ifnet *, struct ifmediareq *);
115 1.17.2.19 nathanw
116 1.17.2.19 nathanw static void wi_rx_intr(struct wi_softc *);
117 1.17.2.19 nathanw static void wi_tx_intr(struct wi_softc *);
118 1.17.2.19 nathanw static void wi_info_intr(struct wi_softc *);
119 1.17.2.19 nathanw
120 1.17.2.19 nathanw static int wi_get_cfg(struct ifnet *, u_long, caddr_t);
121 1.17.2.19 nathanw static int wi_set_cfg(struct ifnet *, u_long, caddr_t);
122 1.17.2.19 nathanw static int wi_write_txrate(struct wi_softc *);
123 1.17.2.19 nathanw static int wi_write_wep(struct wi_softc *);
124 1.17.2.19 nathanw static int wi_write_multi(struct wi_softc *);
125 1.17.2.19 nathanw static int wi_alloc_fid(struct wi_softc *, int, int *);
126 1.17.2.19 nathanw static void wi_read_nicid(struct wi_softc *);
127 1.17.2.19 nathanw static int wi_write_ssid(struct wi_softc *, int, u_int8_t *, int);
128 1.17.2.19 nathanw
129 1.17.2.19 nathanw static int wi_cmd(struct wi_softc *, int, int, int, int);
130 1.17.2.19 nathanw static int wi_seek_bap(struct wi_softc *, int, int);
131 1.17.2.19 nathanw static int wi_read_bap(struct wi_softc *, int, int, void *, int);
132 1.17.2.19 nathanw static int wi_write_bap(struct wi_softc *, int, int, void *, int);
133 1.17.2.19 nathanw static int wi_read_rid(struct wi_softc *, int, void *, int *);
134 1.17.2.19 nathanw static int wi_write_rid(struct wi_softc *, int, void *, int);
135 1.17.2.19 nathanw
136 1.17.2.19 nathanw static int wi_newstate(void *, enum ieee80211_state);
137 1.17.2.19 nathanw
138 1.17.2.19 nathanw static int wi_scan_ap(struct wi_softc *);
139 1.17.2.19 nathanw static void wi_scan_result(struct wi_softc *, int, int);
140 1.17.2.19 nathanw
141 1.17.2.19 nathanw static inline int
142 1.17.2.19 nathanw wi_write_val(struct wi_softc *sc, int rid, u_int16_t val)
143 1.17.2.19 nathanw {
144 1.17.2.19 nathanw
145 1.17.2.19 nathanw val = htole16(val);
146 1.17.2.19 nathanw return wi_write_rid(sc, rid, &val, sizeof(val));
147 1.17.2.19 nathanw }
148 1.17.2.19 nathanw
149 1.17.2.19 nathanw #ifdef WI_DEBUG
150 1.17.2.19 nathanw int wi_debug = 0;
151 1.17.2.19 nathanw
152 1.17.2.19 nathanw #define DPRINTF(X) if (wi_debug) printf X
153 1.17.2.19 nathanw #define DPRINTF2(X) if (wi_debug > 1) printf X
154 1.17.2.19 nathanw #else
155 1.17.2.19 nathanw #define DPRINTF(X)
156 1.17.2.19 nathanw #define DPRINTF2(X)
157 1.17.2.18 thorpej #endif
158 1.17.2.2 nathanw
159 1.17.2.19 nathanw #define WI_INTRS (WI_EV_RX | WI_EV_ALLOC | WI_EV_INFO)
160 1.17.2.19 nathanw
161 1.17.2.19 nathanw struct wi_card_ident
162 1.17.2.19 nathanw wi_card_ident[] = {
163 1.17.2.16 nathanw /* CARD_ID CARD_NAME FIRM_TYPE */
164 1.17.2.12 nathanw { WI_NIC_LUCENT_ID, WI_NIC_LUCENT_STR, WI_LUCENT },
165 1.17.2.12 nathanw { WI_NIC_SONY_ID, WI_NIC_SONY_STR, WI_LUCENT },
166 1.17.2.12 nathanw { WI_NIC_LUCENT_EMB_ID, WI_NIC_LUCENT_EMB_STR, WI_LUCENT },
167 1.17.2.12 nathanw { WI_NIC_EVB2_ID, WI_NIC_EVB2_STR, WI_INTERSIL },
168 1.17.2.12 nathanw { WI_NIC_HWB3763_ID, WI_NIC_HWB3763_STR, WI_INTERSIL },
169 1.17.2.12 nathanw { WI_NIC_HWB3163_ID, WI_NIC_HWB3163_STR, WI_INTERSIL },
170 1.17.2.12 nathanw { WI_NIC_HWB3163B_ID, WI_NIC_HWB3163B_STR, WI_INTERSIL },
171 1.17.2.12 nathanw { WI_NIC_EVB3_ID, WI_NIC_EVB3_STR, WI_INTERSIL },
172 1.17.2.12 nathanw { WI_NIC_HWB1153_ID, WI_NIC_HWB1153_STR, WI_INTERSIL },
173 1.17.2.12 nathanw { WI_NIC_P2_SST_ID, WI_NIC_P2_SST_STR, WI_INTERSIL },
174 1.17.2.12 nathanw { WI_NIC_EVB2_SST_ID, WI_NIC_EVB2_SST_STR, WI_INTERSIL },
175 1.17.2.12 nathanw { WI_NIC_3842_EVA_ID, WI_NIC_3842_EVA_STR, WI_INTERSIL },
176 1.17.2.12 nathanw { WI_NIC_3842_PCMCIA_AMD_ID, WI_NIC_3842_PCMCIA_STR, WI_INTERSIL },
177 1.17.2.12 nathanw { WI_NIC_3842_PCMCIA_SST_ID, WI_NIC_3842_PCMCIA_STR, WI_INTERSIL },
178 1.17.2.12 nathanw { WI_NIC_3842_PCMCIA_ATM_ID, WI_NIC_3842_PCMCIA_STR, WI_INTERSIL },
179 1.17.2.12 nathanw { WI_NIC_3842_MINI_AMD_ID, WI_NIC_3842_MINI_STR, WI_INTERSIL },
180 1.17.2.12 nathanw { WI_NIC_3842_MINI_SST_ID, WI_NIC_3842_MINI_STR, WI_INTERSIL },
181 1.17.2.12 nathanw { WI_NIC_3842_MINI_ATM_ID, WI_NIC_3842_MINI_STR, WI_INTERSIL },
182 1.17.2.12 nathanw { WI_NIC_3842_PCI_AMD_ID, WI_NIC_3842_PCI_STR, WI_INTERSIL },
183 1.17.2.12 nathanw { WI_NIC_3842_PCI_SST_ID, WI_NIC_3842_PCI_STR, WI_INTERSIL },
184 1.17.2.12 nathanw { WI_NIC_3842_PCI_ATM_ID, WI_NIC_3842_PCI_STR, WI_INTERSIL },
185 1.17.2.12 nathanw { WI_NIC_P3_PCMCIA_AMD_ID, WI_NIC_P3_PCMCIA_STR, WI_INTERSIL },
186 1.17.2.12 nathanw { WI_NIC_P3_PCMCIA_SST_ID, WI_NIC_P3_PCMCIA_STR, WI_INTERSIL },
187 1.17.2.12 nathanw { WI_NIC_P3_MINI_AMD_ID, WI_NIC_P3_MINI_STR, WI_INTERSIL },
188 1.17.2.12 nathanw { WI_NIC_P3_MINI_SST_ID, WI_NIC_P3_MINI_STR, WI_INTERSIL },
189 1.17.2.12 nathanw { 0, NULL, 0 },
190 1.17.2.12 nathanw };
191 1.17.2.12 nathanw
192 1.17.2.2 nathanw int
193 1.17.2.19 nathanw wi_attach(struct wi_softc *sc)
194 1.17.2.2 nathanw {
195 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
196 1.17.2.19 nathanw struct ifnet *ifp = &ic->ic_if;
197 1.17.2.19 nathanw int i, nrate, mword, buflen;
198 1.17.2.19 nathanw u_int8_t r;
199 1.17.2.19 nathanw u_int16_t val;
200 1.17.2.19 nathanw u_int8_t ratebuf[2 + IEEE80211_RATE_SIZE];
201 1.17.2.19 nathanw static const u_int8_t empty_macaddr[IEEE80211_ADDR_LEN] = {
202 1.17.2.2 nathanw 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
203 1.17.2.2 nathanw };
204 1.17.2.2 nathanw int s;
205 1.17.2.2 nathanw
206 1.17.2.2 nathanw s = splnet();
207 1.17.2.2 nathanw
208 1.17.2.2 nathanw /* Make sure interrupts are disabled. */
209 1.17.2.2 nathanw CSR_WRITE_2(sc, WI_INT_EN, 0);
210 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, ~0);
211 1.17.2.2 nathanw
212 1.17.2.2 nathanw /* Reset the NIC. */
213 1.17.2.19 nathanw if (wi_reset(sc) != 0) {
214 1.17.2.19 nathanw splx(s);
215 1.17.2.19 nathanw return 1;
216 1.17.2.19 nathanw }
217 1.17.2.2 nathanw
218 1.17.2.19 nathanw buflen = IEEE80211_ADDR_LEN;
219 1.17.2.19 nathanw if (wi_read_rid(sc, WI_RID_MAC_NODE, ic->ic_myaddr, &buflen) != 0 ||
220 1.17.2.19 nathanw IEEE80211_ADDR_EQ(ic->ic_myaddr, empty_macaddr)) {
221 1.17.2.19 nathanw printf(" could not get mac address, attach failed\n");
222 1.17.2.10 nathanw splx(s);
223 1.17.2.10 nathanw return 1;
224 1.17.2.2 nathanw }
225 1.17.2.2 nathanw
226 1.17.2.19 nathanw printf(" 802.11 address %s\n", ether_sprintf(ic->ic_myaddr));
227 1.17.2.2 nathanw
228 1.17.2.2 nathanw /* Read NIC identification */
229 1.17.2.19 nathanw wi_read_nicid(sc);
230 1.17.2.2 nathanw
231 1.17.2.2 nathanw memcpy(ifp->if_xname, sc->sc_dev.dv_xname, IFNAMSIZ);
232 1.17.2.2 nathanw ifp->if_softc = sc;
233 1.17.2.2 nathanw ifp->if_start = wi_start;
234 1.17.2.2 nathanw ifp->if_ioctl = wi_ioctl;
235 1.17.2.2 nathanw ifp->if_watchdog = wi_watchdog;
236 1.17.2.2 nathanw ifp->if_init = wi_init;
237 1.17.2.2 nathanw ifp->if_stop = wi_stop;
238 1.17.2.19 nathanw ifp->if_flags =
239 1.17.2.19 nathanw IFF_SIMPLEX | IFF_BROADCAST | IFF_MULTICAST | IFF_NOTRAILERS;
240 1.17.2.2 nathanw IFQ_SET_READY(&ifp->if_snd);
241 1.17.2.2 nathanw
242 1.17.2.19 nathanw ic->ic_phytype = IEEE80211_T_DS;
243 1.17.2.19 nathanw ic->ic_opmode = IEEE80211_M_STA;
244 1.17.2.19 nathanw ic->ic_flags = IEEE80211_F_HASPMGT | IEEE80211_F_HASAHDEMO;
245 1.17.2.19 nathanw ic->ic_state = IEEE80211_S_INIT;
246 1.17.2.19 nathanw ic->ic_newstate = wi_newstate;
247 1.17.2.19 nathanw
248 1.17.2.19 nathanw /* Find available channel */
249 1.17.2.19 nathanw buflen = sizeof(val);
250 1.17.2.19 nathanw if (wi_read_rid(sc, WI_RID_CHANNEL_LIST, &val, &buflen) != 0)
251 1.17.2.19 nathanw val = htole16(0x1fff); /* assume 1-11 */
252 1.17.2.19 nathanw for (i = 0; i < 16; i++) {
253 1.17.2.19 nathanw if (isset((u_int8_t*)&val, i))
254 1.17.2.19 nathanw setbit(ic->ic_chan_avail, i + 1);
255 1.17.2.19 nathanw }
256 1.17.2.19 nathanw
257 1.17.2.21 thorpej sc->sc_dbm_adjust = 100; /* default */
258 1.17.2.21 thorpej
259 1.17.2.22 thorpej buflen = sizeof(val);
260 1.17.2.22 thorpej if ((sc->sc_flags & WI_FLAGS_HAS_DBMADJUST) &&
261 1.17.2.21 thorpej wi_read_rid(sc, WI_RID_DBM_ADJUST, &val, &buflen) == 0) {
262 1.17.2.21 thorpej sc->sc_dbm_adjust = le16toh(val);
263 1.17.2.21 thorpej }
264 1.17.2.21 thorpej
265 1.17.2.19 nathanw /* Find default IBSS channel */
266 1.17.2.19 nathanw buflen = sizeof(val);
267 1.17.2.19 nathanw if (wi_read_rid(sc, WI_RID_OWN_CHNL, &val, &buflen) == 0)
268 1.17.2.19 nathanw ic->ic_ibss_chan = le16toh(val);
269 1.17.2.19 nathanw else {
270 1.17.2.19 nathanw /* use lowest available channel */
271 1.17.2.19 nathanw for (i = 0; i < 16; i++) {
272 1.17.2.19 nathanw if (isset(ic->ic_chan_avail, i))
273 1.17.2.19 nathanw break;
274 1.17.2.19 nathanw }
275 1.17.2.19 nathanw ic->ic_ibss_chan = i;
276 1.17.2.19 nathanw }
277 1.17.2.16 nathanw
278 1.17.2.16 nathanw /*
279 1.17.2.16 nathanw * Set flags based on firmware version.
280 1.17.2.16 nathanw */
281 1.17.2.16 nathanw switch (sc->sc_firmware_type) {
282 1.17.2.16 nathanw case WI_LUCENT:
283 1.17.2.19 nathanw sc->sc_flags |= WI_FLAGS_HAS_SYSSCALE;
284 1.17.2.19 nathanw #ifdef WI_HERMES_AUTOINC_WAR
285 1.17.2.19 nathanw /* XXX: not confirmed, but never seen for recent firmware */
286 1.17.2.19 nathanw if (sc->sc_sta_firmware_ver < 40000) {
287 1.17.2.19 nathanw sc->sc_flags |= WI_FLAGS_BUG_AUTOINC;
288 1.17.2.16 nathanw }
289 1.17.2.19 nathanw #endif
290 1.17.2.19 nathanw if (sc->sc_sta_firmware_ver >= 60000)
291 1.17.2.19 nathanw sc->sc_flags |= WI_FLAGS_HAS_MOR;
292 1.17.2.19 nathanw if (sc->sc_sta_firmware_ver >= 60006)
293 1.17.2.19 nathanw ic->ic_flags |= IEEE80211_F_HASIBSS;
294 1.17.2.19 nathanw sc->sc_ibss_port = 1;
295 1.17.2.16 nathanw break;
296 1.17.2.16 nathanw
297 1.17.2.16 nathanw case WI_INTERSIL:
298 1.17.2.21 thorpej sc->sc_flags |= WI_FLAGS_HAS_FRAGTHR;
299 1.17.2.19 nathanw sc->sc_flags |= WI_FLAGS_HAS_ROAMING;
300 1.17.2.19 nathanw sc->sc_flags |= WI_FLAGS_HAS_SYSSCALE;
301 1.17.2.22 thorpej if (sc->sc_sta_firmware_ver > 10101)
302 1.17.2.22 thorpej sc->sc_flags |= WI_FLAGS_HAS_DBMADJUST;
303 1.17.2.16 nathanw if (sc->sc_sta_firmware_ver >= 800) {
304 1.17.2.19 nathanw ic->ic_flags |= IEEE80211_F_HASHOSTAP;
305 1.17.2.19 nathanw ic->ic_flags |= IEEE80211_F_HASIBSS;
306 1.17.2.16 nathanw }
307 1.17.2.19 nathanw sc->sc_ibss_port = 0;
308 1.17.2.16 nathanw break;
309 1.17.2.16 nathanw
310 1.17.2.16 nathanw case WI_SYMBOL:
311 1.17.2.19 nathanw sc->sc_flags |= WI_FLAGS_HAS_DIVERSITY;
312 1.17.2.20 nathanw if (sc->sc_sta_firmware_ver >= 20000)
313 1.17.2.19 nathanw ic->ic_flags |= IEEE80211_F_HASIBSS;
314 1.17.2.19 nathanw sc->sc_ibss_port = 4;
315 1.17.2.16 nathanw break;
316 1.17.2.16 nathanw }
317 1.17.2.10 nathanw
318 1.17.2.2 nathanw /*
319 1.17.2.2 nathanw * Find out if we support WEP on this card.
320 1.17.2.2 nathanw */
321 1.17.2.19 nathanw buflen = sizeof(val);
322 1.17.2.19 nathanw if (wi_read_rid(sc, WI_RID_WEP_AVAIL, &val, &buflen) == 0 &&
323 1.17.2.19 nathanw val != htole16(0))
324 1.17.2.19 nathanw ic->ic_flags |= IEEE80211_F_HASWEP;
325 1.17.2.18 thorpej
326 1.17.2.16 nathanw /* Find supported rates. */
327 1.17.2.19 nathanw buflen = sizeof(ratebuf);
328 1.17.2.19 nathanw if (wi_read_rid(sc, WI_RID_DATA_RATES, ratebuf, &buflen) == 0) {
329 1.17.2.19 nathanw nrate = le16toh(*(u_int16_t *)ratebuf);
330 1.17.2.19 nathanw if (nrate > IEEE80211_RATE_SIZE)
331 1.17.2.19 nathanw nrate = IEEE80211_RATE_SIZE;
332 1.17.2.19 nathanw memcpy(ic->ic_sup_rates, ratebuf + 2, nrate);
333 1.17.2.19 nathanw }
334 1.17.2.19 nathanw buflen = sizeof(val);
335 1.17.2.19 nathanw
336 1.17.2.19 nathanw sc->sc_max_datalen = 2304;
337 1.17.2.19 nathanw sc->sc_rts_thresh = 2347;
338 1.17.2.21 thorpej sc->sc_frag_thresh = 2346;
339 1.17.2.19 nathanw sc->sc_system_scale = 1;
340 1.17.2.19 nathanw sc->sc_cnfauthmode = IEEE80211_AUTH_OPEN;
341 1.17.2.19 nathanw sc->sc_roaming_mode = 1;
342 1.17.2.2 nathanw
343 1.17.2.2 nathanw ifmedia_init(&sc->sc_media, 0, wi_media_change, wi_media_status);
344 1.17.2.19 nathanw printf("%s: supported rates: ", sc->sc_dev.dv_xname);
345 1.17.2.17 nathanw #define ADD(s, o) ifmedia_add(&sc->sc_media, \
346 1.17.2.17 nathanw IFM_MAKEWORD(IFM_IEEE80211, (s), (o), 0), 0, NULL)
347 1.17.2.17 nathanw ADD(IFM_AUTO, 0);
348 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_HASHOSTAP)
349 1.17.2.17 nathanw ADD(IFM_AUTO, IFM_IEEE80211_HOSTAP);
350 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_HASIBSS)
351 1.17.2.17 nathanw ADD(IFM_AUTO, IFM_IEEE80211_ADHOC);
352 1.17.2.17 nathanw ADD(IFM_AUTO, IFM_IEEE80211_ADHOC | IFM_FLAG0);
353 1.17.2.19 nathanw for (i = 0; i < nrate; i++) {
354 1.17.2.19 nathanw r = ic->ic_sup_rates[i];
355 1.17.2.19 nathanw mword = ieee80211_rate2media(r, IEEE80211_T_DS);
356 1.17.2.19 nathanw if (mword == 0)
357 1.17.2.19 nathanw continue;
358 1.17.2.19 nathanw printf("%s%d%sMbps", (i != 0 ? " " : ""),
359 1.17.2.19 nathanw (r & IEEE80211_RATE_VAL) / 2, ((r & 0x1) != 0 ? ".5" : ""));
360 1.17.2.19 nathanw ADD(mword, 0);
361 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_HASHOSTAP)
362 1.17.2.19 nathanw ADD(mword, IFM_IEEE80211_HOSTAP);
363 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_HASIBSS)
364 1.17.2.19 nathanw ADD(mword, IFM_IEEE80211_ADHOC);
365 1.17.2.19 nathanw ADD(mword, IFM_IEEE80211_ADHOC | IFM_FLAG0);
366 1.17.2.16 nathanw }
367 1.17.2.19 nathanw printf("\n");
368 1.17.2.17 nathanw ifmedia_set(&sc->sc_media, IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, 0, 0));
369 1.17.2.2 nathanw #undef ADD
370 1.17.2.2 nathanw
371 1.17.2.2 nathanw /*
372 1.17.2.2 nathanw * Call MI attach routines.
373 1.17.2.2 nathanw */
374 1.17.2.2 nathanw
375 1.17.2.19 nathanw if_attach(ifp);
376 1.17.2.19 nathanw ieee80211_ifattach(ifp);
377 1.17.2.18 thorpej
378 1.17.2.2 nathanw /* Attach is successful. */
379 1.17.2.2 nathanw sc->sc_attached = 1;
380 1.17.2.2 nathanw
381 1.17.2.2 nathanw splx(s);
382 1.17.2.2 nathanw return 0;
383 1.17.2.2 nathanw }
384 1.17.2.2 nathanw
385 1.17.2.19 nathanw int
386 1.17.2.19 nathanw wi_detach(struct wi_softc *sc)
387 1.17.2.18 thorpej {
388 1.17.2.19 nathanw struct ifnet *ifp = &sc->sc_ic.ic_if;
389 1.17.2.19 nathanw int s;
390 1.17.2.19 nathanw
391 1.17.2.19 nathanw if (!sc->sc_attached)
392 1.17.2.19 nathanw return 0;
393 1.17.2.18 thorpej
394 1.17.2.19 nathanw s = splnet();
395 1.17.2.18 thorpej
396 1.17.2.19 nathanw /* Delete all remaining media. */
397 1.17.2.19 nathanw ifmedia_delete_instance(&sc->sc_media, IFM_INST_ANY);
398 1.17.2.18 thorpej
399 1.17.2.19 nathanw ieee80211_ifdetach(ifp);
400 1.17.2.19 nathanw if_detach(ifp);
401 1.17.2.19 nathanw if (sc->sc_enabled) {
402 1.17.2.19 nathanw if (sc->sc_disable)
403 1.17.2.19 nathanw (*sc->sc_disable)(sc);
404 1.17.2.19 nathanw sc->sc_enabled = 0;
405 1.17.2.18 thorpej }
406 1.17.2.19 nathanw splx(s);
407 1.17.2.19 nathanw return 0;
408 1.17.2.18 thorpej }
409 1.17.2.18 thorpej
410 1.17.2.19 nathanw int
411 1.17.2.19 nathanw wi_activate(struct device *self, enum devact act)
412 1.17.2.18 thorpej {
413 1.17.2.19 nathanw struct wi_softc *sc = (struct wi_softc *)self;
414 1.17.2.19 nathanw int rv = 0, s;
415 1.17.2.19 nathanw
416 1.17.2.19 nathanw s = splnet();
417 1.17.2.19 nathanw switch (act) {
418 1.17.2.19 nathanw case DVACT_ACTIVATE:
419 1.17.2.19 nathanw rv = EOPNOTSUPP;
420 1.17.2.19 nathanw break;
421 1.17.2.18 thorpej
422 1.17.2.19 nathanw case DVACT_DEACTIVATE:
423 1.17.2.19 nathanw if_deactivate(&sc->sc_ic.ic_if);
424 1.17.2.19 nathanw break;
425 1.17.2.18 thorpej }
426 1.17.2.19 nathanw splx(s);
427 1.17.2.19 nathanw return rv;
428 1.17.2.19 nathanw }
429 1.17.2.18 thorpej
430 1.17.2.19 nathanw void
431 1.17.2.19 nathanw wi_power(struct wi_softc *sc, int why)
432 1.17.2.19 nathanw {
433 1.17.2.19 nathanw struct ifnet *ifp = &sc->sc_ic.ic_if;
434 1.17.2.19 nathanw int s;
435 1.17.2.19 nathanw
436 1.17.2.19 nathanw s = splnet();
437 1.17.2.19 nathanw switch (why) {
438 1.17.2.19 nathanw case PWR_SUSPEND:
439 1.17.2.19 nathanw case PWR_STANDBY:
440 1.17.2.19 nathanw wi_stop(ifp, 1);
441 1.17.2.19 nathanw break;
442 1.17.2.19 nathanw case PWR_RESUME:
443 1.17.2.19 nathanw if (ifp->if_flags & IFF_UP) {
444 1.17.2.19 nathanw wi_init(ifp);
445 1.17.2.19 nathanw (void)wi_intr(sc);
446 1.17.2.19 nathanw }
447 1.17.2.19 nathanw break;
448 1.17.2.19 nathanw case PWR_SOFTSUSPEND:
449 1.17.2.19 nathanw case PWR_SOFTSTANDBY:
450 1.17.2.19 nathanw case PWR_SOFTRESUME:
451 1.17.2.19 nathanw break;
452 1.17.2.18 thorpej }
453 1.17.2.19 nathanw splx(s);
454 1.17.2.19 nathanw }
455 1.17.2.18 thorpej
456 1.17.2.19 nathanw void
457 1.17.2.19 nathanw wi_shutdown(struct wi_softc *sc)
458 1.17.2.19 nathanw {
459 1.17.2.19 nathanw struct ifnet *ifp = &sc->sc_ic.ic_if;
460 1.17.2.18 thorpej
461 1.17.2.19 nathanw if (sc->sc_attached)
462 1.17.2.19 nathanw wi_stop(ifp, 1);
463 1.17.2.19 nathanw }
464 1.17.2.18 thorpej
465 1.17.2.19 nathanw int
466 1.17.2.19 nathanw wi_intr(void *arg)
467 1.17.2.19 nathanw {
468 1.17.2.19 nathanw int i;
469 1.17.2.19 nathanw struct wi_softc *sc = arg;
470 1.17.2.19 nathanw struct ifnet *ifp = &sc->sc_ic.ic_if;
471 1.17.2.19 nathanw u_int16_t status, raw_status, last_status;
472 1.17.2.18 thorpej
473 1.17.2.19 nathanw if (sc->sc_enabled == 0 ||
474 1.17.2.19 nathanw (sc->sc_dev.dv_flags & DVF_ACTIVE) == 0 ||
475 1.17.2.19 nathanw (ifp->if_flags & IFF_RUNNING) == 0)
476 1.17.2.19 nathanw return 0;
477 1.17.2.18 thorpej
478 1.17.2.19 nathanw if ((ifp->if_flags & IFF_UP) == 0) {
479 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, ~0);
480 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_INT_EN, 0);
481 1.17.2.19 nathanw return 1;
482 1.17.2.19 nathanw }
483 1.17.2.18 thorpej
484 1.17.2.19 nathanw /* maximum 10 loops per interrupt */
485 1.17.2.19 nathanw last_status = 0;
486 1.17.2.19 nathanw for (i = 0; i < 10; i++) {
487 1.17.2.19 nathanw /*
488 1.17.2.19 nathanw * Only believe a status bit when we enter wi_intr, or when
489 1.17.2.19 nathanw * the bit was "off" the last time through the loop. This is
490 1.17.2.19 nathanw * my strategy to avoid racing the hardware/firmware if I
491 1.17.2.19 nathanw * can re-read the event status register more quickly than
492 1.17.2.19 nathanw * it is updated.
493 1.17.2.19 nathanw */
494 1.17.2.19 nathanw raw_status = CSR_READ_2(sc, WI_EVENT_STAT);
495 1.17.2.19 nathanw status = raw_status & ~last_status;
496 1.17.2.19 nathanw if ((status & WI_INTRS) == 0)
497 1.17.2.19 nathanw break;
498 1.17.2.19 nathanw last_status = raw_status;
499 1.17.2.18 thorpej
500 1.17.2.19 nathanw if (status & WI_EV_RX)
501 1.17.2.19 nathanw wi_rx_intr(sc);
502 1.17.2.18 thorpej
503 1.17.2.19 nathanw if (status & WI_EV_ALLOC)
504 1.17.2.19 nathanw wi_tx_intr(sc);
505 1.17.2.18 thorpej
506 1.17.2.19 nathanw if (status & WI_EV_INFO)
507 1.17.2.19 nathanw wi_info_intr(sc);
508 1.17.2.18 thorpej
509 1.17.2.19 nathanw if ((ifp->if_flags & IFF_OACTIVE) == 0 &&
510 1.17.2.19 nathanw (sc->sc_flags & WI_FLAGS_OUTRANGE) == 0 &&
511 1.17.2.19 nathanw !IFQ_IS_EMPTY(&ifp->if_snd))
512 1.17.2.19 nathanw wi_start(ifp);
513 1.17.2.18 thorpej }
514 1.17.2.18 thorpej
515 1.17.2.19 nathanw return 1;
516 1.17.2.19 nathanw }
517 1.17.2.19 nathanw
518 1.17.2.19 nathanw static int
519 1.17.2.19 nathanw wi_init(struct ifnet *ifp)
520 1.17.2.19 nathanw {
521 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
522 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
523 1.17.2.19 nathanw struct wi_joinreq join;
524 1.17.2.19 nathanw int i;
525 1.17.2.19 nathanw int error = 0, wasenabled;
526 1.17.2.19 nathanw
527 1.17.2.19 nathanw DPRINTF(("wi_init: enabled %d\n", sc->sc_enabled));
528 1.17.2.19 nathanw wasenabled = sc->sc_enabled;
529 1.17.2.19 nathanw if (!sc->sc_enabled) {
530 1.17.2.19 nathanw if ((error = (*sc->sc_enable)(sc)) != 0)
531 1.17.2.19 nathanw goto out;
532 1.17.2.19 nathanw sc->sc_enabled = 1;
533 1.17.2.19 nathanw } else
534 1.17.2.19 nathanw wi_stop(ifp, 0);
535 1.17.2.18 thorpej
536 1.17.2.19 nathanw /* Symbol firmware cannot be initialized more than once */
537 1.17.2.19 nathanw if (sc->sc_firmware_type != WI_SYMBOL || !wasenabled) {
538 1.17.2.19 nathanw if ((error = wi_reset(sc)) != 0)
539 1.17.2.19 nathanw goto out;
540 1.17.2.19 nathanw }
541 1.17.2.18 thorpej
542 1.17.2.19 nathanw /* common 802.11 configuration */
543 1.17.2.19 nathanw ic->ic_flags &= ~IEEE80211_F_IBSSON;
544 1.17.2.19 nathanw sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
545 1.17.2.19 nathanw switch (ic->ic_opmode) {
546 1.17.2.19 nathanw case IEEE80211_M_STA:
547 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PORTTYPE, WI_PORTTYPE_BSS);
548 1.17.2.19 nathanw break;
549 1.17.2.19 nathanw case IEEE80211_M_IBSS:
550 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PORTTYPE, sc->sc_ibss_port);
551 1.17.2.19 nathanw ic->ic_flags |= IEEE80211_F_IBSSON;
552 1.17.2.19 nathanw break;
553 1.17.2.19 nathanw case IEEE80211_M_AHDEMO:
554 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PORTTYPE, WI_PORTTYPE_ADHOC);
555 1.17.2.19 nathanw break;
556 1.17.2.19 nathanw case IEEE80211_M_HOSTAP:
557 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PORTTYPE, WI_PORTTYPE_HOSTAP);
558 1.17.2.19 nathanw break;
559 1.17.2.19 nathanw }
560 1.17.2.18 thorpej
561 1.17.2.19 nathanw /* Intersil interprets this RID as joining ESS even in IBSS mode */
562 1.17.2.19 nathanw if (sc->sc_firmware_type == WI_LUCENT &&
563 1.17.2.19 nathanw (ic->ic_flags & IEEE80211_F_IBSSON) && ic->ic_des_esslen > 0)
564 1.17.2.19 nathanw wi_write_val(sc, WI_RID_CREATE_IBSS, 1);
565 1.17.2.19 nathanw else
566 1.17.2.19 nathanw wi_write_val(sc, WI_RID_CREATE_IBSS, 0);
567 1.17.2.19 nathanw wi_write_val(sc, WI_RID_MAX_SLEEP, ic->ic_lintval);
568 1.17.2.19 nathanw wi_write_ssid(sc, WI_RID_DESIRED_SSID, ic->ic_des_essid,
569 1.17.2.19 nathanw ic->ic_des_esslen);
570 1.17.2.19 nathanw wi_write_val(sc, WI_RID_OWN_CHNL, ic->ic_ibss_chan);
571 1.17.2.19 nathanw wi_write_ssid(sc, WI_RID_OWN_SSID, ic->ic_des_essid, ic->ic_des_esslen);
572 1.17.2.19 nathanw IEEE80211_ADDR_COPY(ic->ic_myaddr, LLADDR(ifp->if_sadl));
573 1.17.2.19 nathanw wi_write_rid(sc, WI_RID_MAC_NODE, ic->ic_myaddr, IEEE80211_ADDR_LEN);
574 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PM_ENABLED,
575 1.17.2.19 nathanw (ic->ic_flags & IEEE80211_F_PMGTON) ? 1 : 0);
576 1.17.2.19 nathanw
577 1.17.2.19 nathanw /* not yet common 802.11 configuration */
578 1.17.2.19 nathanw wi_write_val(sc, WI_RID_MAX_DATALEN, sc->sc_max_datalen);
579 1.17.2.19 nathanw wi_write_val(sc, WI_RID_RTS_THRESH, sc->sc_rts_thresh);
580 1.17.2.21 thorpej if (sc->sc_flags & WI_FLAGS_HAS_FRAGTHR)
581 1.17.2.21 thorpej wi_write_val(sc, WI_RID_FRAG_THRESH, sc->sc_frag_thresh);
582 1.17.2.19 nathanw
583 1.17.2.19 nathanw /* driver specific 802.11 configuration */
584 1.17.2.19 nathanw if (sc->sc_flags & WI_FLAGS_HAS_SYSSCALE)
585 1.17.2.19 nathanw wi_write_val(sc, WI_RID_SYSTEM_SCALE, sc->sc_system_scale);
586 1.17.2.19 nathanw if (sc->sc_flags & WI_FLAGS_HAS_ROAMING)
587 1.17.2.19 nathanw wi_write_val(sc, WI_RID_ROAMING_MODE, sc->sc_roaming_mode);
588 1.17.2.19 nathanw if (sc->sc_flags & WI_FLAGS_HAS_MOR)
589 1.17.2.19 nathanw wi_write_val(sc, WI_RID_MICROWAVE_OVEN, sc->sc_microwave_oven);
590 1.17.2.19 nathanw wi_write_txrate(sc);
591 1.17.2.19 nathanw wi_write_ssid(sc, WI_RID_NODENAME, sc->sc_nodename, sc->sc_nodelen);
592 1.17.2.19 nathanw
593 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_HOSTAP &&
594 1.17.2.19 nathanw sc->sc_firmware_type == WI_INTERSIL) {
595 1.17.2.19 nathanw wi_write_val(sc, WI_RID_OWN_BEACON_INT, ic->ic_lintval);
596 1.17.2.19 nathanw wi_write_val(sc, WI_RID_BASIC_RATE, 0x03); /* 1, 2 */
597 1.17.2.19 nathanw wi_write_val(sc, WI_RID_SUPPORT_RATE, 0x0f); /* 1, 2, 5.5, 11 */
598 1.17.2.19 nathanw wi_write_val(sc, WI_RID_DTIM_PERIOD, 1);
599 1.17.2.18 thorpej }
600 1.17.2.18 thorpej
601 1.17.2.19 nathanw /*
602 1.17.2.19 nathanw * Initialize promisc mode.
603 1.17.2.19 nathanw * Being in the Host-AP mode causes a great
604 1.17.2.19 nathanw * deal of pain if primisc mode is set.
605 1.17.2.19 nathanw * Therefore we avoid confusing the firmware
606 1.17.2.19 nathanw * and always reset promisc mode in Host-AP
607 1.17.2.19 nathanw * mode. Host-AP sees all the packets anyway.
608 1.17.2.19 nathanw */
609 1.17.2.19 nathanw if (ic->ic_opmode != IEEE80211_M_HOSTAP &&
610 1.17.2.19 nathanw (ifp->if_flags & IFF_PROMISC) != 0) {
611 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PROMISC, 1);
612 1.17.2.19 nathanw } else {
613 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PROMISC, 0);
614 1.17.2.18 thorpej }
615 1.17.2.18 thorpej
616 1.17.2.19 nathanw /* Configure WEP. */
617 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_HASWEP)
618 1.17.2.19 nathanw wi_write_wep(sc);
619 1.17.2.18 thorpej
620 1.17.2.19 nathanw /* Set multicast filter. */
621 1.17.2.19 nathanw wi_write_multi(sc);
622 1.17.2.18 thorpej
623 1.17.2.19 nathanw if (sc->sc_firmware_type != WI_SYMBOL || !wasenabled) {
624 1.17.2.19 nathanw sc->sc_buflen = IEEE80211_MAX_LEN + sizeof(struct wi_frame);
625 1.17.2.19 nathanw if (sc->sc_firmware_type == WI_SYMBOL)
626 1.17.2.19 nathanw sc->sc_buflen = 1585; /* XXX */
627 1.17.2.19 nathanw for (i = 0; i < WI_NTXBUF; i++) {
628 1.17.2.19 nathanw error = wi_alloc_fid(sc, sc->sc_buflen,
629 1.17.2.19 nathanw &sc->sc_txd[i].d_fid);
630 1.17.2.19 nathanw if (error) {
631 1.17.2.19 nathanw printf("%s: tx buffer allocation failed\n",
632 1.17.2.19 nathanw sc->sc_dev.dv_xname);
633 1.17.2.19 nathanw goto out;
634 1.17.2.19 nathanw }
635 1.17.2.19 nathanw DPRINTF2(("wi_init: txbuf %d allocated %x\n", i,
636 1.17.2.19 nathanw sc->sc_txd[i].d_fid));
637 1.17.2.19 nathanw sc->sc_txd[i].d_len = 0;
638 1.17.2.19 nathanw }
639 1.17.2.18 thorpej }
640 1.17.2.19 nathanw sc->sc_txcur = sc->sc_txnext = 0;
641 1.17.2.18 thorpej
642 1.17.2.19 nathanw /* Enable port 0 */
643 1.17.2.19 nathanw wi_cmd(sc, WI_CMD_ENABLE | WI_PORT0, 0, 0, 0);
644 1.17.2.19 nathanw ifp->if_flags |= IFF_RUNNING;
645 1.17.2.19 nathanw ifp->if_flags &= ~IFF_OACTIVE;
646 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_AHDEMO ||
647 1.17.2.19 nathanw ic->ic_opmode == IEEE80211_M_HOSTAP)
648 1.17.2.19 nathanw wi_newstate(sc, IEEE80211_S_RUN);
649 1.17.2.18 thorpej
650 1.17.2.19 nathanw /* Enable interrupts */
651 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_INT_EN, WI_INTRS);
652 1.17.2.18 thorpej
653 1.17.2.19 nathanw if (!wasenabled &&
654 1.17.2.19 nathanw ic->ic_opmode == IEEE80211_M_HOSTAP &&
655 1.17.2.19 nathanw sc->sc_firmware_type == WI_INTERSIL) {
656 1.17.2.19 nathanw /* XXX: some card need to be re-enabled for hostap */
657 1.17.2.19 nathanw wi_cmd(sc, WI_CMD_DISABLE | WI_PORT0, 0, 0, 0);
658 1.17.2.19 nathanw wi_cmd(sc, WI_CMD_ENABLE | WI_PORT0, 0, 0, 0);
659 1.17.2.19 nathanw }
660 1.17.2.19 nathanw
661 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_STA &&
662 1.17.2.19 nathanw ((ic->ic_flags & IEEE80211_F_DESBSSID) ||
663 1.17.2.19 nathanw ic->ic_des_chan != IEEE80211_CHAN_ANY)) {
664 1.17.2.19 nathanw memset(&join, 0, sizeof(join));
665 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_DESBSSID)
666 1.17.2.19 nathanw IEEE80211_ADDR_COPY(&join.wi_bssid, ic->ic_des_bssid);
667 1.17.2.19 nathanw if (ic->ic_des_chan != IEEE80211_CHAN_ANY)
668 1.17.2.19 nathanw join.wi_chan = htole16(ic->ic_des_chan);
669 1.17.2.22 thorpej /* Lucent firmware does not support the JOIN RID. */
670 1.17.2.22 thorpej if (sc->sc_firmware_type != WI_LUCENT)
671 1.17.2.22 thorpej wi_write_rid(sc, WI_RID_JOIN_REQ, &join, sizeof(join));
672 1.17.2.18 thorpej }
673 1.17.2.18 thorpej
674 1.17.2.19 nathanw out:
675 1.17.2.19 nathanw if (error) {
676 1.17.2.19 nathanw printf("%s: interface not running\n", sc->sc_dev.dv_xname);
677 1.17.2.19 nathanw wi_stop(ifp, 0);
678 1.17.2.19 nathanw }
679 1.17.2.19 nathanw DPRINTF(("wi_init: return %d\n", error));
680 1.17.2.19 nathanw return error;
681 1.17.2.18 thorpej }
682 1.17.2.18 thorpej
683 1.17.2.19 nathanw static void
684 1.17.2.19 nathanw wi_stop(struct ifnet *ifp, int disable)
685 1.17.2.18 thorpej {
686 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
687 1.17.2.18 thorpej
688 1.17.2.19 nathanw DPRINTF(("wi_stop: disable %d\n", disable));
689 1.17.2.19 nathanw ieee80211_new_state(ifp, IEEE80211_S_INIT, -1);
690 1.17.2.19 nathanw if (sc->sc_enabled) {
691 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_INT_EN, 0);
692 1.17.2.19 nathanw wi_cmd(sc, WI_CMD_DISABLE | WI_PORT0, 0, 0, 0);
693 1.17.2.19 nathanw if (disable) {
694 1.17.2.19 nathanw if (sc->sc_disable)
695 1.17.2.19 nathanw (*sc->sc_disable)(sc);
696 1.17.2.19 nathanw sc->sc_enabled = 0;
697 1.17.2.19 nathanw }
698 1.17.2.18 thorpej }
699 1.17.2.18 thorpej
700 1.17.2.19 nathanw sc->sc_tx_timer = 0;
701 1.17.2.19 nathanw sc->sc_scan_timer = 0;
702 1.17.2.19 nathanw sc->sc_naps = 0;
703 1.17.2.19 nathanw ifp->if_flags &= ~(IFF_OACTIVE | IFF_RUNNING);
704 1.17.2.19 nathanw ifp->if_timer = 0;
705 1.17.2.19 nathanw }
706 1.17.2.18 thorpej
707 1.17.2.19 nathanw static void
708 1.17.2.19 nathanw wi_start(struct ifnet *ifp)
709 1.17.2.19 nathanw {
710 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
711 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
712 1.17.2.19 nathanw struct ieee80211_node *ni;
713 1.17.2.19 nathanw struct ieee80211_frame *wh;
714 1.17.2.19 nathanw struct mbuf *m0, *m;
715 1.17.2.19 nathanw struct wi_frame frmhdr;
716 1.17.2.19 nathanw int cur, fid, off;
717 1.17.2.18 thorpej
718 1.17.2.19 nathanw if (ifp->if_flags & IFF_OACTIVE)
719 1.17.2.19 nathanw return;
720 1.17.2.19 nathanw if (sc->sc_flags & WI_FLAGS_OUTRANGE)
721 1.17.2.19 nathanw return;
722 1.17.2.18 thorpej
723 1.17.2.19 nathanw memset(&frmhdr, 0, sizeof(frmhdr));
724 1.17.2.19 nathanw cur = sc->sc_txnext;
725 1.17.2.19 nathanw for (;;) {
726 1.17.2.19 nathanw IF_POLL(&ic->ic_mgtq, m0);
727 1.17.2.19 nathanw if (m0 != NULL) {
728 1.17.2.19 nathanw if (sc->sc_txd[cur].d_len != 0) {
729 1.17.2.19 nathanw ifp->if_flags |= IFF_OACTIVE;
730 1.17.2.19 nathanw break;
731 1.17.2.19 nathanw }
732 1.17.2.19 nathanw IF_DEQUEUE(&ic->ic_mgtq, m0);
733 1.17.2.19 nathanw m_copydata(m0, 4, ETHER_ADDR_LEN * 2,
734 1.17.2.19 nathanw (caddr_t)&frmhdr.wi_ehdr);
735 1.17.2.19 nathanw frmhdr.wi_ehdr.ether_type = 0;
736 1.17.2.19 nathanw wh = mtod(m0, struct ieee80211_frame *);
737 1.17.2.19 nathanw } else {
738 1.17.2.19 nathanw if (ic->ic_state != IEEE80211_S_RUN)
739 1.17.2.19 nathanw break;
740 1.17.2.19 nathanw IFQ_POLL(&ifp->if_snd, m0);
741 1.17.2.19 nathanw if (m0 == NULL)
742 1.17.2.19 nathanw break;
743 1.17.2.19 nathanw if (sc->sc_txd[cur].d_len != 0) {
744 1.17.2.19 nathanw ifp->if_flags |= IFF_OACTIVE;
745 1.17.2.19 nathanw break;
746 1.17.2.19 nathanw }
747 1.17.2.19 nathanw IFQ_DEQUEUE(&ifp->if_snd, m0);
748 1.17.2.19 nathanw ifp->if_opackets++;
749 1.17.2.19 nathanw m_copydata(m0, 0, ETHER_HDR_LEN,
750 1.17.2.19 nathanw (caddr_t)&frmhdr.wi_ehdr);
751 1.17.2.19 nathanw #if NBPFILTER > 0
752 1.17.2.19 nathanw if (ifp->if_bpf)
753 1.17.2.19 nathanw bpf_mtap(ifp->if_bpf, m0);
754 1.17.2.19 nathanw #endif
755 1.17.2.18 thorpej
756 1.17.2.19 nathanw if ((m0 = ieee80211_encap(ifp, m0)) == NULL) {
757 1.17.2.19 nathanw ifp->if_oerrors++;
758 1.17.2.19 nathanw continue;
759 1.17.2.19 nathanw }
760 1.17.2.19 nathanw wh = mtod(m0, struct ieee80211_frame *);
761 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_HOSTAP &&
762 1.17.2.19 nathanw !IEEE80211_IS_MULTICAST(wh->i_addr1) &&
763 1.17.2.19 nathanw (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) ==
764 1.17.2.19 nathanw IEEE80211_FC0_TYPE_DATA &&
765 1.17.2.19 nathanw ((ni = ieee80211_find_node(ic, wh->i_addr1)) ==
766 1.17.2.19 nathanw NULL || ni->ni_associd == 0)) {
767 1.17.2.19 nathanw m_freem(m0);
768 1.17.2.19 nathanw ifp->if_oerrors++;
769 1.17.2.19 nathanw continue;
770 1.17.2.19 nathanw }
771 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_WEPON)
772 1.17.2.19 nathanw wh->i_fc[1] |= IEEE80211_FC1_WEP;
773 1.17.2.18 thorpej
774 1.17.2.19 nathanw }
775 1.17.2.19 nathanw #if NBPFILTER > 0
776 1.17.2.19 nathanw if (ic->ic_rawbpf)
777 1.17.2.19 nathanw bpf_mtap(ic->ic_rawbpf, m0);
778 1.17.2.18 thorpej #endif
779 1.17.2.19 nathanw frmhdr.wi_tx_ctl = htole16(WI_ENC_TX_802_11);
780 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_HOSTAP &&
781 1.17.2.19 nathanw (wh->i_fc[1] & IEEE80211_FC1_WEP)) {
782 1.17.2.19 nathanw if ((m0 = ieee80211_wep_crypt(ifp, m0, 1)) == NULL) {
783 1.17.2.19 nathanw ifp->if_oerrors++;
784 1.17.2.19 nathanw continue;
785 1.17.2.19 nathanw }
786 1.17.2.19 nathanw frmhdr.wi_tx_ctl |= htole16(WI_TXCNTL_NOCRYPT);
787 1.17.2.19 nathanw }
788 1.17.2.19 nathanw m_copydata(m0, 0, sizeof(struct ieee80211_frame),
789 1.17.2.19 nathanw (caddr_t)&frmhdr.wi_whdr);
790 1.17.2.19 nathanw m_adj(m0, sizeof(struct ieee80211_frame));
791 1.17.2.19 nathanw frmhdr.wi_dat_len = htole16(m0->m_pkthdr.len);
792 1.17.2.19 nathanw #if NBPFILTER > 0
793 1.17.2.19 nathanw if (sc->sc_drvbpf) {
794 1.17.2.19 nathanw struct mbuf mb;
795 1.17.2.18 thorpej
796 1.17.2.19 nathanw M_COPY_PKTHDR(&mb, m0);
797 1.17.2.19 nathanw mb.m_data = (caddr_t)&frmhdr;
798 1.17.2.19 nathanw mb.m_len = sizeof(frmhdr);
799 1.17.2.19 nathanw mb.m_next = m0;
800 1.17.2.19 nathanw mb.m_pkthdr.len += mb.m_len;
801 1.17.2.19 nathanw bpf_mtap(sc->sc_drvbpf, &mb);
802 1.17.2.19 nathanw }
803 1.17.2.19 nathanw #endif
804 1.17.2.19 nathanw fid = sc->sc_txd[cur].d_fid;
805 1.17.2.19 nathanw wi_write_bap(sc, fid, 0, &frmhdr, sizeof(frmhdr));
806 1.17.2.19 nathanw off = sizeof(frmhdr);
807 1.17.2.19 nathanw for (m = m0; m != NULL; m = m->m_next) {
808 1.17.2.19 nathanw if (m->m_len == 0)
809 1.17.2.19 nathanw continue;
810 1.17.2.19 nathanw wi_write_bap(sc, fid, off, m->m_data, m->m_len);
811 1.17.2.19 nathanw off += m->m_len;
812 1.17.2.19 nathanw }
813 1.17.2.19 nathanw m_freem(m0);
814 1.17.2.19 nathanw sc->sc_txd[cur].d_len = off;
815 1.17.2.19 nathanw if (sc->sc_txcur == cur) {
816 1.17.2.19 nathanw if (wi_cmd(sc, WI_CMD_TX | WI_RECLAIM, fid, 0, 0)) {
817 1.17.2.19 nathanw printf("%s: xmit failed\n",
818 1.17.2.19 nathanw sc->sc_dev.dv_xname);
819 1.17.2.19 nathanw sc->sc_txd[cur].d_len = 0;
820 1.17.2.19 nathanw continue;
821 1.17.2.19 nathanw }
822 1.17.2.19 nathanw sc->sc_tx_timer = 5;
823 1.17.2.19 nathanw ifp->if_timer = 1;
824 1.17.2.19 nathanw }
825 1.17.2.19 nathanw sc->sc_txnext = cur = (cur + 1) % WI_NTXBUF;
826 1.17.2.19 nathanw }
827 1.17.2.18 thorpej }
828 1.17.2.18 thorpej
829 1.17.2.19 nathanw
830 1.17.2.18 thorpej static int
831 1.17.2.19 nathanw wi_reset(struct wi_softc *sc)
832 1.17.2.18 thorpej {
833 1.17.2.19 nathanw int i, error;
834 1.17.2.18 thorpej
835 1.17.2.19 nathanw DPRINTF(("wi_reset\n"));
836 1.17.2.19 nathanw error = 0;
837 1.17.2.19 nathanw for (i = 0; i < 5; i++) {
838 1.17.2.19 nathanw DELAY(20*1000); /* XXX: way too long! */
839 1.17.2.19 nathanw if ((error = wi_cmd(sc, WI_CMD_INI, 0, 0, 0)) == 0)
840 1.17.2.19 nathanw break;
841 1.17.2.19 nathanw }
842 1.17.2.19 nathanw if (error) {
843 1.17.2.19 nathanw printf("%s: init failed\n", sc->sc_dev.dv_xname);
844 1.17.2.19 nathanw return error;
845 1.17.2.18 thorpej }
846 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_INT_EN, 0);
847 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, ~0);
848 1.17.2.19 nathanw
849 1.17.2.19 nathanw /* Calibrate timer. */
850 1.17.2.19 nathanw wi_write_val(sc, WI_RID_TICK_TIME, 0);
851 1.17.2.19 nathanw return 0;
852 1.17.2.19 nathanw }
853 1.17.2.18 thorpej
854 1.17.2.19 nathanw static void
855 1.17.2.19 nathanw wi_watchdog(struct ifnet *ifp)
856 1.17.2.19 nathanw {
857 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
858 1.17.2.18 thorpej
859 1.17.2.19 nathanw ifp->if_timer = 0;
860 1.17.2.19 nathanw if (!sc->sc_enabled)
861 1.17.2.19 nathanw return;
862 1.17.2.18 thorpej
863 1.17.2.19 nathanw if (sc->sc_tx_timer) {
864 1.17.2.19 nathanw if (--sc->sc_tx_timer == 0) {
865 1.17.2.19 nathanw printf("%s: device timeout\n", ifp->if_xname);
866 1.17.2.19 nathanw ifp->if_oerrors++;
867 1.17.2.19 nathanw wi_init(ifp);
868 1.17.2.19 nathanw return;
869 1.17.2.19 nathanw }
870 1.17.2.19 nathanw ifp->if_timer = 1;
871 1.17.2.19 nathanw }
872 1.17.2.18 thorpej
873 1.17.2.19 nathanw if (sc->sc_scan_timer) {
874 1.17.2.19 nathanw if (--sc->sc_scan_timer <= WI_SCAN_WAIT - WI_SCAN_INQWAIT &&
875 1.17.2.19 nathanw sc->sc_firmware_type == WI_INTERSIL) {
876 1.17.2.19 nathanw DPRINTF(("wi_watchdog: inquire scan\n"));
877 1.17.2.19 nathanw wi_cmd(sc, WI_CMD_INQUIRE, WI_INFO_SCAN_RESULTS, 0, 0);
878 1.17.2.19 nathanw }
879 1.17.2.19 nathanw if (sc->sc_scan_timer)
880 1.17.2.19 nathanw ifp->if_timer = 1;
881 1.17.2.19 nathanw }
882 1.17.2.18 thorpej
883 1.17.2.19 nathanw /* TODO: rate control */
884 1.17.2.19 nathanw ieee80211_watchdog(ifp);
885 1.17.2.18 thorpej }
886 1.17.2.18 thorpej
887 1.17.2.19 nathanw static int
888 1.17.2.19 nathanw wi_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
889 1.17.2.2 nathanw {
890 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
891 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
892 1.17.2.19 nathanw struct ifreq *ifr = (struct ifreq *)data;
893 1.17.2.19 nathanw int s, error = 0;
894 1.17.2.2 nathanw
895 1.17.2.19 nathanw if ((sc->sc_dev.dv_flags & DVF_ACTIVE) == 0)
896 1.17.2.19 nathanw return ENXIO;
897 1.17.2.2 nathanw
898 1.17.2.19 nathanw s = splnet();
899 1.17.2.2 nathanw
900 1.17.2.19 nathanw switch (cmd) {
901 1.17.2.2 nathanw case SIOCSIFFLAGS:
902 1.17.2.2 nathanw if (ifp->if_flags & IFF_UP) {
903 1.17.2.2 nathanw if (sc->sc_enabled) {
904 1.17.2.2 nathanw /*
905 1.17.2.19 nathanw * To avoid rescanning another access point,
906 1.17.2.19 nathanw * do not call wi_init() here. Instead,
907 1.17.2.19 nathanw * only reflect promisc mode settings.
908 1.17.2.2 nathanw */
909 1.17.2.19 nathanw if (ic->ic_opmode != IEEE80211_M_HOSTAP &&
910 1.17.2.19 nathanw (ifp->if_flags & IFF_PROMISC) != 0)
911 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PROMISC, 1);
912 1.17.2.19 nathanw else
913 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PROMISC, 0);
914 1.17.2.19 nathanw } else
915 1.17.2.19 nathanw error = wi_init(ifp);
916 1.17.2.19 nathanw } else if (sc->sc_enabled)
917 1.17.2.19 nathanw wi_stop(ifp, 1);
918 1.17.2.2 nathanw break;
919 1.17.2.2 nathanw case SIOCSIFMEDIA:
920 1.17.2.2 nathanw case SIOCGIFMEDIA:
921 1.17.2.19 nathanw error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
922 1.17.2.2 nathanw break;
923 1.17.2.19 nathanw case SIOCADDMULTI:
924 1.17.2.19 nathanw case SIOCDELMULTI:
925 1.17.2.19 nathanw error = (cmd == SIOCADDMULTI) ?
926 1.17.2.19 nathanw ether_addmulti(ifr, &sc->sc_ic.ic_ec) :
927 1.17.2.19 nathanw ether_delmulti(ifr, &sc->sc_ic.ic_ec);
928 1.17.2.19 nathanw if (error == ENETRESET) {
929 1.17.2.19 nathanw if (sc->sc_enabled) {
930 1.17.2.19 nathanw /* do not rescan */
931 1.17.2.19 nathanw error = wi_write_multi(sc);
932 1.17.2.19 nathanw } else
933 1.17.2.19 nathanw error = 0;
934 1.17.2.2 nathanw }
935 1.17.2.2 nathanw break;
936 1.17.2.19 nathanw case SIOCGIFGENERIC:
937 1.17.2.19 nathanw error = wi_get_cfg(ifp, cmd, data);
938 1.17.2.19 nathanw break;
939 1.17.2.19 nathanw case SIOCSIFGENERIC:
940 1.17.2.19 nathanw error = suser(curproc->p_ucred, &curproc->p_acflag);
941 1.17.2.2 nathanw if (error)
942 1.17.2.2 nathanw break;
943 1.17.2.19 nathanw error = wi_set_cfg(ifp, cmd, data);
944 1.17.2.19 nathanw if (error == ENETRESET) {
945 1.17.2.11 nathanw if (sc->sc_enabled)
946 1.17.2.19 nathanw error = wi_init(ifp);
947 1.17.2.19 nathanw else
948 1.17.2.19 nathanw error = 0;
949 1.17.2.2 nathanw }
950 1.17.2.2 nathanw break;
951 1.17.2.22 thorpej case SIOCS80211BSSID:
952 1.17.2.22 thorpej /* No use pretending that Lucent firmware supports
953 1.17.2.22 thorpej * 802.11 MLME-JOIN.request.
954 1.17.2.22 thorpej */
955 1.17.2.22 thorpej if (sc->sc_firmware_type == WI_LUCENT) {
956 1.17.2.22 thorpej error = ENODEV;
957 1.17.2.22 thorpej break;
958 1.17.2.22 thorpej }
959 1.17.2.22 thorpej /* fall through */
960 1.17.2.2 nathanw default:
961 1.17.2.19 nathanw error = ieee80211_ioctl(ifp, cmd, data);
962 1.17.2.19 nathanw if (error == ENETRESET) {
963 1.17.2.19 nathanw if (sc->sc_enabled)
964 1.17.2.19 nathanw error = wi_init(ifp);
965 1.17.2.19 nathanw else
966 1.17.2.19 nathanw error = 0;
967 1.17.2.19 nathanw }
968 1.17.2.2 nathanw break;
969 1.17.2.2 nathanw }
970 1.17.2.2 nathanw splx(s);
971 1.17.2.19 nathanw return error;
972 1.17.2.2 nathanw }
973 1.17.2.2 nathanw
974 1.17.2.2 nathanw static int
975 1.17.2.19 nathanw wi_media_change(struct ifnet *ifp)
976 1.17.2.2 nathanw {
977 1.17.2.2 nathanw struct wi_softc *sc = ifp->if_softc;
978 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
979 1.17.2.19 nathanw struct ifmedia_entry *ime;
980 1.17.2.19 nathanw enum ieee80211_opmode newmode;
981 1.17.2.19 nathanw int i, rate, error = 0;
982 1.17.2.19 nathanw
983 1.17.2.19 nathanw ime = sc->sc_media.ifm_cur;
984 1.17.2.19 nathanw if (IFM_SUBTYPE(ime->ifm_media) == IFM_AUTO) {
985 1.17.2.19 nathanw i = -1;
986 1.17.2.2 nathanw } else {
987 1.17.2.19 nathanw rate = ieee80211_media2rate(ime->ifm_media, IEEE80211_T_DS);
988 1.17.2.19 nathanw if (rate == 0)
989 1.17.2.19 nathanw return EINVAL;
990 1.17.2.19 nathanw for (i = 0; i < IEEE80211_RATE_SIZE; i++) {
991 1.17.2.19 nathanw if ((ic->ic_sup_rates[i] & IEEE80211_RATE_VAL) == rate)
992 1.17.2.19 nathanw break;
993 1.17.2.2 nathanw }
994 1.17.2.19 nathanw if (i == IEEE80211_RATE_SIZE)
995 1.17.2.19 nathanw return EINVAL;
996 1.17.2.2 nathanw }
997 1.17.2.19 nathanw if (ic->ic_fixed_rate != i) {
998 1.17.2.19 nathanw ic->ic_fixed_rate = i;
999 1.17.2.19 nathanw error = ENETRESET;
1000 1.17.2.2 nathanw }
1001 1.17.2.2 nathanw
1002 1.17.2.19 nathanw if ((ime->ifm_media & IFM_IEEE80211_ADHOC) &&
1003 1.17.2.19 nathanw (ime->ifm_media & IFM_FLAG0))
1004 1.17.2.19 nathanw newmode = IEEE80211_M_AHDEMO;
1005 1.17.2.19 nathanw else if (ime->ifm_media & IFM_IEEE80211_ADHOC)
1006 1.17.2.19 nathanw newmode = IEEE80211_M_IBSS;
1007 1.17.2.19 nathanw else if (ime->ifm_media & IFM_IEEE80211_HOSTAP)
1008 1.17.2.19 nathanw newmode = IEEE80211_M_HOSTAP;
1009 1.17.2.19 nathanw else
1010 1.17.2.19 nathanw newmode = IEEE80211_M_STA;
1011 1.17.2.19 nathanw if (ic->ic_opmode != newmode) {
1012 1.17.2.19 nathanw ic->ic_opmode = newmode;
1013 1.17.2.19 nathanw error = ENETRESET;
1014 1.17.2.2 nathanw }
1015 1.17.2.19 nathanw if (error == ENETRESET) {
1016 1.17.2.19 nathanw if (sc->sc_enabled)
1017 1.17.2.19 nathanw error = wi_init(ifp);
1018 1.17.2.19 nathanw else
1019 1.17.2.19 nathanw error = 0;
1020 1.17.2.2 nathanw }
1021 1.17.2.19 nathanw ifp->if_baudrate = ifmedia_baudrate(sc->sc_media.ifm_cur->ifm_media);
1022 1.17.2.18 thorpej
1023 1.17.2.19 nathanw return error;
1024 1.17.2.16 nathanw }
1025 1.17.2.16 nathanw
1026 1.17.2.2 nathanw static void
1027 1.17.2.19 nathanw wi_media_status(struct ifnet *ifp, struct ifmediareq *imr)
1028 1.17.2.2 nathanw {
1029 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
1030 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1031 1.17.2.19 nathanw u_int16_t val;
1032 1.17.2.19 nathanw int rate, len;
1033 1.17.2.2 nathanw
1034 1.17.2.19 nathanw if (sc->sc_enabled == 0) {
1035 1.17.2.19 nathanw imr->ifm_active = IFM_IEEE80211 | IFM_NONE;
1036 1.17.2.19 nathanw imr->ifm_status = 0;
1037 1.17.2.18 thorpej return;
1038 1.17.2.18 thorpej }
1039 1.17.2.18 thorpej
1040 1.17.2.19 nathanw imr->ifm_status = IFM_AVALID;
1041 1.17.2.19 nathanw imr->ifm_active = IFM_IEEE80211;
1042 1.17.2.19 nathanw if (ic->ic_state == IEEE80211_S_RUN &&
1043 1.17.2.19 nathanw (sc->sc_flags & WI_FLAGS_OUTRANGE) == 0)
1044 1.17.2.19 nathanw imr->ifm_status |= IFM_ACTIVE;
1045 1.17.2.19 nathanw len = sizeof(val);
1046 1.17.2.19 nathanw if (wi_read_rid(sc, WI_RID_CUR_TX_RATE, &val, &len) != 0)
1047 1.17.2.19 nathanw rate = 0;
1048 1.17.2.19 nathanw else {
1049 1.17.2.19 nathanw /* convert to 802.11 rate */
1050 1.17.2.19 nathanw rate = val * 2;
1051 1.17.2.19 nathanw if (sc->sc_firmware_type == WI_LUCENT) {
1052 1.17.2.19 nathanw if (rate == 10)
1053 1.17.2.19 nathanw rate = 11; /* 5.5Mbps */
1054 1.17.2.19 nathanw } else {
1055 1.17.2.19 nathanw if (rate == 4*2)
1056 1.17.2.19 nathanw rate = 11; /* 5.5Mbps */
1057 1.17.2.19 nathanw else if (rate == 8*2)
1058 1.17.2.19 nathanw rate = 22; /* 11Mbps */
1059 1.17.2.19 nathanw }
1060 1.17.2.19 nathanw }
1061 1.17.2.19 nathanw imr->ifm_active |= ieee80211_rate2media(rate, IEEE80211_T_DS);
1062 1.17.2.19 nathanw switch (ic->ic_opmode) {
1063 1.17.2.19 nathanw case IEEE80211_M_STA:
1064 1.17.2.19 nathanw break;
1065 1.17.2.19 nathanw case IEEE80211_M_IBSS:
1066 1.17.2.19 nathanw imr->ifm_active |= IFM_IEEE80211_ADHOC;
1067 1.17.2.19 nathanw break;
1068 1.17.2.19 nathanw case IEEE80211_M_AHDEMO:
1069 1.17.2.19 nathanw imr->ifm_active |= IFM_IEEE80211_ADHOC | IFM_FLAG0;
1070 1.17.2.19 nathanw break;
1071 1.17.2.19 nathanw case IEEE80211_M_HOSTAP:
1072 1.17.2.19 nathanw imr->ifm_active |= IFM_IEEE80211_HOSTAP;
1073 1.17.2.19 nathanw break;
1074 1.17.2.18 thorpej }
1075 1.17.2.19 nathanw }
1076 1.17.2.18 thorpej
1077 1.17.2.19 nathanw static void
1078 1.17.2.19 nathanw wi_rx_intr(struct wi_softc *sc)
1079 1.17.2.19 nathanw {
1080 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1081 1.17.2.19 nathanw struct ifnet *ifp = &ic->ic_if;
1082 1.17.2.19 nathanw struct wi_frame frmhdr;
1083 1.17.2.19 nathanw struct mbuf *m;
1084 1.17.2.19 nathanw struct ieee80211_frame *wh;
1085 1.17.2.19 nathanw int fid, len, off, rssi;
1086 1.17.2.19 nathanw u_int16_t status;
1087 1.17.2.19 nathanw u_int32_t rstamp;
1088 1.17.2.18 thorpej
1089 1.17.2.19 nathanw fid = CSR_READ_2(sc, WI_RX_FID);
1090 1.17.2.18 thorpej
1091 1.17.2.19 nathanw /* First read in the frame header */
1092 1.17.2.19 nathanw if (wi_read_bap(sc, fid, 0, &frmhdr, sizeof(frmhdr))) {
1093 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1094 1.17.2.19 nathanw ifp->if_ierrors++;
1095 1.17.2.19 nathanw DPRINTF(("wi_rx_intr: read fid %x failed\n", fid));
1096 1.17.2.2 nathanw return;
1097 1.17.2.16 nathanw }
1098 1.17.2.16 nathanw
1099 1.17.2.2 nathanw /*
1100 1.17.2.19 nathanw * Drop undecryptable or packets with receive errors here
1101 1.17.2.2 nathanw */
1102 1.17.2.19 nathanw status = le16toh(frmhdr.wi_status);
1103 1.17.2.19 nathanw if (status & WI_STAT_ERRSTAT) {
1104 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1105 1.17.2.19 nathanw ifp->if_ierrors++;
1106 1.17.2.19 nathanw DPRINTF(("wi_rx_intr: fid %x error status %x\n", fid, status));
1107 1.17.2.19 nathanw return;
1108 1.17.2.18 thorpej }
1109 1.17.2.19 nathanw rssi = frmhdr.wi_rx_signal;
1110 1.17.2.19 nathanw rstamp = (le16toh(frmhdr.wi_rx_tstamp0) << 16) |
1111 1.17.2.19 nathanw le16toh(frmhdr.wi_rx_tstamp1);
1112 1.17.2.2 nathanw
1113 1.17.2.19 nathanw len = le16toh(frmhdr.wi_dat_len);
1114 1.17.2.19 nathanw off = ALIGN(sizeof(struct ieee80211_frame));
1115 1.17.2.18 thorpej
1116 1.17.2.19 nathanw MGETHDR(m, M_DONTWAIT, MT_DATA);
1117 1.17.2.19 nathanw if (m == NULL) {
1118 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1119 1.17.2.19 nathanw ifp->if_ierrors++;
1120 1.17.2.19 nathanw DPRINTF(("wi_rx_intr: MGET failed\n"));
1121 1.17.2.19 nathanw return;
1122 1.17.2.19 nathanw }
1123 1.17.2.19 nathanw if (off + len > MHLEN) {
1124 1.17.2.19 nathanw MCLGET(m, M_DONTWAIT);
1125 1.17.2.19 nathanw if ((m->m_flags & M_EXT) == 0) {
1126 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1127 1.17.2.19 nathanw m_freem(m);
1128 1.17.2.19 nathanw ifp->if_ierrors++;
1129 1.17.2.19 nathanw DPRINTF(("wi_rx_intr: MCLGET failed\n"));
1130 1.17.2.19 nathanw return;
1131 1.17.2.19 nathanw }
1132 1.17.2.2 nathanw }
1133 1.17.2.2 nathanw
1134 1.17.2.19 nathanw m->m_data += off - sizeof(struct ieee80211_frame);
1135 1.17.2.19 nathanw memcpy(m->m_data, &frmhdr.wi_whdr, sizeof(struct ieee80211_frame));
1136 1.17.2.19 nathanw wi_read_bap(sc, fid, sizeof(frmhdr),
1137 1.17.2.19 nathanw m->m_data + sizeof(struct ieee80211_frame), len);
1138 1.17.2.19 nathanw m->m_pkthdr.len = m->m_len = sizeof(struct ieee80211_frame) + len;
1139 1.17.2.19 nathanw m->m_pkthdr.rcvif = ifp;
1140 1.17.2.18 thorpej
1141 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1142 1.17.2.18 thorpej
1143 1.17.2.2 nathanw #if NBPFILTER > 0
1144 1.17.2.19 nathanw if (sc->sc_drvbpf) {
1145 1.17.2.19 nathanw struct mbuf mb;
1146 1.17.2.18 thorpej
1147 1.17.2.19 nathanw M_COPY_PKTHDR(&mb, m);
1148 1.17.2.19 nathanw mb.m_data = (caddr_t)&frmhdr;
1149 1.17.2.19 nathanw mb.m_len = sizeof(frmhdr);
1150 1.17.2.19 nathanw mb.m_next = m;
1151 1.17.2.19 nathanw mb.m_pkthdr.len += mb.m_len;
1152 1.17.2.19 nathanw bpf_mtap(sc->sc_drvbpf, &mb);
1153 1.17.2.18 thorpej }
1154 1.17.2.19 nathanw #endif
1155 1.17.2.19 nathanw wh = mtod(m, struct ieee80211_frame *);
1156 1.17.2.19 nathanw if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
1157 1.17.2.19 nathanw /*
1158 1.17.2.19 nathanw * WEP is decrypted by hardware. Clear WEP bit
1159 1.17.2.19 nathanw * header for ieee80211_input().
1160 1.17.2.19 nathanw */
1161 1.17.2.19 nathanw wh->i_fc[1] &= ~IEEE80211_FC1_WEP;
1162 1.17.2.2 nathanw }
1163 1.17.2.19 nathanw ieee80211_input(ifp, m, rssi, rstamp);
1164 1.17.2.2 nathanw }
1165 1.17.2.2 nathanw
1166 1.17.2.2 nathanw static void
1167 1.17.2.19 nathanw wi_tx_intr(struct wi_softc *sc)
1168 1.17.2.2 nathanw {
1169 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1170 1.17.2.19 nathanw struct ifnet *ifp = &ic->ic_if;
1171 1.17.2.19 nathanw int fid, cur;
1172 1.17.2.2 nathanw
1173 1.17.2.19 nathanw fid = CSR_READ_2(sc, WI_ALLOC_FID);
1174 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_ALLOC);
1175 1.17.2.16 nathanw
1176 1.17.2.19 nathanw cur = sc->sc_txcur;
1177 1.17.2.19 nathanw if (sc->sc_txd[cur].d_fid != fid) {
1178 1.17.2.19 nathanw printf("%s: bad alloc %x != %x, cur %d nxt %d\n",
1179 1.17.2.19 nathanw sc->sc_dev.dv_xname, fid, sc->sc_txd[cur].d_fid, cur,
1180 1.17.2.19 nathanw sc->sc_txnext);
1181 1.17.2.18 thorpej return;
1182 1.17.2.19 nathanw }
1183 1.17.2.19 nathanw sc->sc_tx_timer = 0;
1184 1.17.2.19 nathanw sc->sc_txd[cur].d_len = 0;
1185 1.17.2.19 nathanw sc->sc_txcur = cur = (cur + 1) % WI_NTXBUF;
1186 1.17.2.19 nathanw if (sc->sc_txd[cur].d_len == 0)
1187 1.17.2.19 nathanw ifp->if_flags &= ~IFF_OACTIVE;
1188 1.17.2.19 nathanw else {
1189 1.17.2.19 nathanw if (wi_cmd(sc, WI_CMD_TX | WI_RECLAIM, sc->sc_txd[cur].d_fid,
1190 1.17.2.19 nathanw 0, 0)) {
1191 1.17.2.19 nathanw printf("%s: xmit failed\n", sc->sc_dev.dv_xname);
1192 1.17.2.19 nathanw sc->sc_txd[cur].d_len = 0;
1193 1.17.2.19 nathanw } else {
1194 1.17.2.19 nathanw sc->sc_tx_timer = 5;
1195 1.17.2.19 nathanw ifp->if_timer = 1;
1196 1.17.2.2 nathanw }
1197 1.17.2.2 nathanw }
1198 1.17.2.2 nathanw }
1199 1.17.2.2 nathanw
1200 1.17.2.2 nathanw static void
1201 1.17.2.19 nathanw wi_info_intr(struct wi_softc *sc)
1202 1.17.2.2 nathanw {
1203 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1204 1.17.2.19 nathanw struct ifnet *ifp = &ic->ic_if;
1205 1.17.2.19 nathanw int i, fid, len, off;
1206 1.17.2.19 nathanw u_int16_t ltbuf[2];
1207 1.17.2.19 nathanw u_int16_t stat;
1208 1.17.2.19 nathanw u_int32_t *ptr;
1209 1.17.2.19 nathanw
1210 1.17.2.19 nathanw fid = CSR_READ_2(sc, WI_INFO_FID);
1211 1.17.2.19 nathanw wi_read_bap(sc, fid, 0, ltbuf, sizeof(ltbuf));
1212 1.17.2.19 nathanw
1213 1.17.2.19 nathanw switch (le16toh(ltbuf[1])) {
1214 1.17.2.19 nathanw
1215 1.17.2.19 nathanw case WI_INFO_LINK_STAT:
1216 1.17.2.19 nathanw wi_read_bap(sc, fid, sizeof(ltbuf), &stat, sizeof(stat));
1217 1.17.2.19 nathanw DPRINTF(("wi_info_intr: LINK_STAT 0x%x\n", le16toh(stat)));
1218 1.17.2.19 nathanw switch (le16toh(stat)) {
1219 1.17.2.19 nathanw case CONNECTED:
1220 1.17.2.19 nathanw sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
1221 1.17.2.19 nathanw if (ic->ic_state == IEEE80211_S_RUN &&
1222 1.17.2.19 nathanw ic->ic_opmode != IEEE80211_M_IBSS)
1223 1.17.2.19 nathanw break;
1224 1.17.2.19 nathanw /* FALLTHROUGH */
1225 1.17.2.19 nathanw case AP_CHANGE:
1226 1.17.2.19 nathanw ieee80211_new_state(ifp, IEEE80211_S_RUN, -1);
1227 1.17.2.19 nathanw break;
1228 1.17.2.19 nathanw case AP_IN_RANGE:
1229 1.17.2.19 nathanw sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
1230 1.17.2.19 nathanw break;
1231 1.17.2.19 nathanw case AP_OUT_OF_RANGE:
1232 1.17.2.19 nathanw if (sc->sc_firmware_type == WI_SYMBOL &&
1233 1.17.2.19 nathanw sc->sc_scan_timer > 0) {
1234 1.17.2.19 nathanw if (wi_cmd(sc, WI_CMD_INQUIRE,
1235 1.17.2.19 nathanw WI_INFO_HOST_SCAN_RESULTS, 0, 0) != 0)
1236 1.17.2.19 nathanw sc->sc_scan_timer = 0;
1237 1.17.2.19 nathanw break;
1238 1.17.2.19 nathanw }
1239 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_STA)
1240 1.17.2.19 nathanw sc->sc_flags |= WI_FLAGS_OUTRANGE;
1241 1.17.2.19 nathanw break;
1242 1.17.2.19 nathanw case DISCONNECTED:
1243 1.17.2.19 nathanw case ASSOC_FAILED:
1244 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_STA)
1245 1.17.2.19 nathanw ieee80211_new_state(ifp, IEEE80211_S_INIT, -1);
1246 1.17.2.19 nathanw break;
1247 1.17.2.19 nathanw }
1248 1.17.2.19 nathanw break;
1249 1.17.2.2 nathanw
1250 1.17.2.19 nathanw case WI_INFO_COUNTERS:
1251 1.17.2.19 nathanw /* some card versions have a larger stats structure */
1252 1.17.2.19 nathanw len = min(le16toh(ltbuf[0]) - 1, sizeof(sc->sc_stats) / 4);
1253 1.17.2.19 nathanw ptr = (u_int32_t *)&sc->sc_stats;
1254 1.17.2.19 nathanw off = sizeof(ltbuf);
1255 1.17.2.19 nathanw for (i = 0; i < len; i++, off += 2, ptr++) {
1256 1.17.2.19 nathanw wi_read_bap(sc, fid, off, &stat, sizeof(stat));
1257 1.17.2.19 nathanw #ifdef WI_HERMES_STATS_WAR
1258 1.17.2.19 nathanw if (stat & 0xf000)
1259 1.17.2.19 nathanw stat = ~stat;
1260 1.17.2.19 nathanw #endif
1261 1.17.2.19 nathanw *ptr += stat;
1262 1.17.2.19 nathanw }
1263 1.17.2.19 nathanw ifp->if_collisions = sc->sc_stats.wi_tx_single_retries +
1264 1.17.2.19 nathanw sc->sc_stats.wi_tx_multi_retries +
1265 1.17.2.19 nathanw sc->sc_stats.wi_tx_retry_limit;
1266 1.17.2.19 nathanw break;
1267 1.17.2.2 nathanw
1268 1.17.2.19 nathanw case WI_INFO_SCAN_RESULTS:
1269 1.17.2.19 nathanw case WI_INFO_HOST_SCAN_RESULTS:
1270 1.17.2.19 nathanw wi_scan_result(sc, fid, le16toh(ltbuf[0]));
1271 1.17.2.19 nathanw break;
1272 1.17.2.2 nathanw
1273 1.17.2.19 nathanw default:
1274 1.17.2.19 nathanw DPRINTF(("wi_info_intr: got fid %x type %x len %d\n", fid,
1275 1.17.2.19 nathanw le16toh(ltbuf[1]), le16toh(ltbuf[0])));
1276 1.17.2.19 nathanw break;
1277 1.17.2.19 nathanw }
1278 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_INFO);
1279 1.17.2.2 nathanw }
1280 1.17.2.2 nathanw
1281 1.17.2.19 nathanw /*
1282 1.17.2.19 nathanw * Allocate a region of memory inside the NIC and zero
1283 1.17.2.19 nathanw * it out.
1284 1.17.2.19 nathanw */
1285 1.17.2.19 nathanw static int
1286 1.17.2.19 nathanw wi_write_multi(struct wi_softc *sc)
1287 1.17.2.2 nathanw {
1288 1.17.2.19 nathanw struct ifnet *ifp = &sc->sc_ic.ic_if;
1289 1.17.2.19 nathanw int n = 0;
1290 1.17.2.19 nathanw struct wi_mcast mlist;
1291 1.17.2.19 nathanw struct ether_multi *enm;
1292 1.17.2.19 nathanw struct ether_multistep estep;
1293 1.17.2.2 nathanw
1294 1.17.2.19 nathanw if ((ifp->if_flags & IFF_PROMISC) != 0) {
1295 1.17.2.19 nathanw allmulti:
1296 1.17.2.19 nathanw ifp->if_flags |= IFF_ALLMULTI;
1297 1.17.2.19 nathanw memset(&mlist, 0, sizeof(mlist));
1298 1.17.2.19 nathanw return wi_write_rid(sc, WI_RID_MCAST_LIST, &mlist,
1299 1.17.2.19 nathanw sizeof(mlist));
1300 1.17.2.2 nathanw }
1301 1.17.2.2 nathanw
1302 1.17.2.19 nathanw n = 0;
1303 1.17.2.19 nathanw ETHER_FIRST_MULTI(estep, &sc->sc_ic.ic_ec, enm);
1304 1.17.2.19 nathanw while (enm != NULL) {
1305 1.17.2.19 nathanw /* Punt on ranges or too many multicast addresses. */
1306 1.17.2.19 nathanw if (!IEEE80211_ADDR_EQ(enm->enm_addrlo, enm->enm_addrhi) ||
1307 1.17.2.19 nathanw n >= sizeof(mlist) / sizeof(mlist.wi_mcast[0]))
1308 1.17.2.19 nathanw goto allmulti;
1309 1.17.2.2 nathanw
1310 1.17.2.19 nathanw IEEE80211_ADDR_COPY(&mlist.wi_mcast[n], enm->enm_addrlo);
1311 1.17.2.19 nathanw n++;
1312 1.17.2.19 nathanw ETHER_NEXT_MULTI(estep, enm);
1313 1.17.2.2 nathanw }
1314 1.17.2.19 nathanw ifp->if_flags &= ~IFF_ALLMULTI;
1315 1.17.2.19 nathanw return wi_write_rid(sc, WI_RID_MCAST_LIST, &mlist,
1316 1.17.2.19 nathanw IEEE80211_ADDR_LEN * n);
1317 1.17.2.2 nathanw }
1318 1.17.2.2 nathanw
1319 1.17.2.19 nathanw
1320 1.17.2.2 nathanw static void
1321 1.17.2.19 nathanw wi_read_nicid(sc)
1322 1.17.2.2 nathanw struct wi_softc *sc;
1323 1.17.2.2 nathanw {
1324 1.17.2.19 nathanw struct wi_card_ident *id;
1325 1.17.2.19 nathanw char *p;
1326 1.17.2.19 nathanw int len;
1327 1.17.2.19 nathanw u_int16_t ver[4];
1328 1.17.2.2 nathanw
1329 1.17.2.2 nathanw /* getting chip identity */
1330 1.17.2.19 nathanw memset(ver, 0, sizeof(ver));
1331 1.17.2.19 nathanw len = sizeof(ver);
1332 1.17.2.19 nathanw wi_read_rid(sc, WI_RID_CARD_ID, ver, &len);
1333 1.17.2.2 nathanw printf("%s: using ", sc->sc_dev.dv_xname);
1334 1.17.2.19 nathanw DPRINTF2(("wi_read_nicid: CARD_ID: %x %x %x %x\n", le16toh(ver[0]), le16toh(ver[1]), le16toh(ver[2]), le16toh(ver[3])));
1335 1.17.2.12 nathanw
1336 1.17.2.12 nathanw sc->sc_firmware_type = WI_NOTYPE;
1337 1.17.2.12 nathanw for (id = wi_card_ident; id->card_name != NULL; id++) {
1338 1.17.2.19 nathanw if (le16toh(ver[0]) == id->card_id) {
1339 1.17.2.12 nathanw printf("%s", id->card_name);
1340 1.17.2.12 nathanw sc->sc_firmware_type = id->firm_type;
1341 1.17.2.12 nathanw break;
1342 1.17.2.12 nathanw }
1343 1.17.2.12 nathanw }
1344 1.17.2.12 nathanw if (sc->sc_firmware_type == WI_NOTYPE) {
1345 1.17.2.19 nathanw if (le16toh(ver[0]) & 0x8000) {
1346 1.17.2.11 nathanw printf("Unknown PRISM2 chip");
1347 1.17.2.11 nathanw sc->sc_firmware_type = WI_INTERSIL;
1348 1.17.2.11 nathanw } else {
1349 1.17.2.11 nathanw printf("Unknown Lucent chip");
1350 1.17.2.11 nathanw sc->sc_firmware_type = WI_LUCENT;
1351 1.17.2.11 nathanw }
1352 1.17.2.2 nathanw }
1353 1.17.2.2 nathanw
1354 1.17.2.12 nathanw /* get primary firmware version (Only Prism chips) */
1355 1.17.2.12 nathanw if (sc->sc_firmware_type != WI_LUCENT) {
1356 1.17.2.19 nathanw memset(ver, 0, sizeof(ver));
1357 1.17.2.19 nathanw len = sizeof(ver);
1358 1.17.2.19 nathanw wi_read_rid(sc, WI_RID_PRI_IDENTITY, ver, &len);
1359 1.17.2.19 nathanw sc->sc_pri_firmware_ver = le16toh(ver[2]) * 10000 +
1360 1.17.2.19 nathanw le16toh(ver[3]) * 100 + le16toh(ver[1]);
1361 1.17.2.19 nathanw DPRINTF2(("wi_read_nicid: PRI_ID: %x %x %x %x\n", le16toh(ver[0]), le16toh(ver[1]), le16toh(ver[2]), le16toh(ver[3])));
1362 1.17.2.12 nathanw }
1363 1.17.2.12 nathanw
1364 1.17.2.12 nathanw /* get station firmware version */
1365 1.17.2.19 nathanw memset(ver, 0, sizeof(ver));
1366 1.17.2.19 nathanw len = sizeof(ver);
1367 1.17.2.19 nathanw wi_read_rid(sc, WI_RID_STA_IDENTITY, ver, &len);
1368 1.17.2.19 nathanw sc->sc_sta_firmware_ver = le16toh(ver[2]) * 10000 +
1369 1.17.2.19 nathanw le16toh(ver[3]) * 100 + le16toh(ver[1]);
1370 1.17.2.19 nathanw DPRINTF2(("wi_read_nicid: STA_ID: %x %x %x %x\n", le16toh(ver[0]), le16toh(ver[1]), le16toh(ver[2]), le16toh(ver[3])));
1371 1.17.2.11 nathanw if (sc->sc_firmware_type == WI_INTERSIL &&
1372 1.17.2.19 nathanw (sc->sc_sta_firmware_ver == 10102 ||
1373 1.17.2.19 nathanw sc->sc_sta_firmware_ver == 20102)) {
1374 1.17.2.19 nathanw char ident[12];
1375 1.17.2.19 nathanw memset(ident, 0, sizeof(ident));
1376 1.17.2.19 nathanw len = sizeof(ident);
1377 1.17.2.12 nathanw /* value should be the format like "V2.00-11" */
1378 1.17.2.19 nathanw if (wi_read_rid(sc, WI_RID_SYMBOL_IDENTITY, ident, &len) == 0 &&
1379 1.17.2.19 nathanw *(p = (char *)ident) >= 'A' &&
1380 1.17.2.11 nathanw p[2] == '.' && p[5] == '-' && p[8] == '\0') {
1381 1.17.2.11 nathanw sc->sc_firmware_type = WI_SYMBOL;
1382 1.17.2.12 nathanw sc->sc_sta_firmware_ver = (p[1] - '0') * 10000 +
1383 1.17.2.11 nathanw (p[3] - '0') * 1000 + (p[4] - '0') * 100 +
1384 1.17.2.11 nathanw (p[6] - '0') * 10 + (p[7] - '0');
1385 1.17.2.11 nathanw }
1386 1.17.2.19 nathanw DPRINTF2(("wi_read_nicid: SYMBOL_ID: %x %x %x %x\n", le16toh(ident[0]), le16toh(ident[1]), le16toh(ident[2]), le16toh(ident[3])));
1387 1.17.2.11 nathanw }
1388 1.17.2.12 nathanw
1389 1.17.2.12 nathanw printf("\n%s: %s Firmware: ", sc->sc_dev.dv_xname,
1390 1.17.2.12 nathanw sc->sc_firmware_type == WI_LUCENT ? "Lucent" :
1391 1.17.2.12 nathanw (sc->sc_firmware_type == WI_SYMBOL ? "Symbol" : "Intersil"));
1392 1.17.2.12 nathanw if (sc->sc_firmware_type != WI_LUCENT) /* XXX */
1393 1.17.2.19 nathanw printf("Primary (%u.%u.%u), ",
1394 1.17.2.19 nathanw sc->sc_pri_firmware_ver / 10000,
1395 1.17.2.12 nathanw (sc->sc_pri_firmware_ver % 10000) / 100,
1396 1.17.2.12 nathanw sc->sc_pri_firmware_ver % 100);
1397 1.17.2.12 nathanw printf("Station (%u.%u.%u)\n",
1398 1.17.2.19 nathanw sc->sc_sta_firmware_ver / 10000,
1399 1.17.2.19 nathanw (sc->sc_sta_firmware_ver % 10000) / 100,
1400 1.17.2.12 nathanw sc->sc_sta_firmware_ver % 100);
1401 1.17.2.19 nathanw }
1402 1.17.2.19 nathanw
1403 1.17.2.19 nathanw static int
1404 1.17.2.19 nathanw wi_write_ssid(struct wi_softc *sc, int rid, u_int8_t *buf, int buflen)
1405 1.17.2.19 nathanw {
1406 1.17.2.19 nathanw struct wi_ssid ssid;
1407 1.17.2.2 nathanw
1408 1.17.2.19 nathanw if (buflen > IEEE80211_NWID_LEN)
1409 1.17.2.19 nathanw return ENOBUFS;
1410 1.17.2.19 nathanw memset(&ssid, 0, sizeof(ssid));
1411 1.17.2.19 nathanw ssid.wi_len = htole16(buflen);
1412 1.17.2.19 nathanw memcpy(ssid.wi_ssid, buf, buflen);
1413 1.17.2.19 nathanw return wi_write_rid(sc, rid, &ssid, sizeof(ssid));
1414 1.17.2.2 nathanw }
1415 1.17.2.2 nathanw
1416 1.17.2.19 nathanw static int
1417 1.17.2.19 nathanw wi_get_cfg(struct ifnet *ifp, u_long cmd, caddr_t data)
1418 1.17.2.2 nathanw {
1419 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
1420 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1421 1.17.2.19 nathanw struct ifreq *ifr = (struct ifreq *)data;
1422 1.17.2.19 nathanw struct wi_req wreq;
1423 1.17.2.19 nathanw int len, n, error;
1424 1.17.2.2 nathanw
1425 1.17.2.19 nathanw error = copyin(ifr->ifr_data, &wreq, sizeof(wreq));
1426 1.17.2.19 nathanw if (error)
1427 1.17.2.19 nathanw return error;
1428 1.17.2.19 nathanw len = (wreq.wi_len - 1) * 2;
1429 1.17.2.19 nathanw if (len < sizeof(u_int16_t))
1430 1.17.2.19 nathanw return ENOSPC;
1431 1.17.2.19 nathanw if (len > sizeof(wreq.wi_val))
1432 1.17.2.19 nathanw len = sizeof(wreq.wi_val);
1433 1.17.2.19 nathanw
1434 1.17.2.19 nathanw switch (wreq.wi_type) {
1435 1.17.2.19 nathanw
1436 1.17.2.19 nathanw case WI_RID_IFACE_STATS:
1437 1.17.2.19 nathanw memcpy(wreq.wi_val, &sc->sc_stats, sizeof(sc->sc_stats));
1438 1.17.2.19 nathanw if (len < sizeof(sc->sc_stats))
1439 1.17.2.19 nathanw error = ENOSPC;
1440 1.17.2.19 nathanw else
1441 1.17.2.19 nathanw len = sizeof(sc->sc_stats);
1442 1.17.2.19 nathanw break;
1443 1.17.2.2 nathanw
1444 1.17.2.19 nathanw case WI_RID_ENCRYPTION:
1445 1.17.2.19 nathanw case WI_RID_TX_CRYPT_KEY:
1446 1.17.2.19 nathanw case WI_RID_DEFLT_CRYPT_KEYS:
1447 1.17.2.19 nathanw case WI_RID_TX_RATE:
1448 1.17.2.21 thorpej return ieee80211_cfgget(ifp, cmd, data);
1449 1.17.2.2 nathanw
1450 1.17.2.19 nathanw case WI_RID_MICROWAVE_OVEN:
1451 1.17.2.19 nathanw if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_MOR)) {
1452 1.17.2.19 nathanw error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1453 1.17.2.19 nathanw &len);
1454 1.17.2.19 nathanw break;
1455 1.17.2.19 nathanw }
1456 1.17.2.19 nathanw wreq.wi_val[0] = htole16(sc->sc_microwave_oven);
1457 1.17.2.19 nathanw len = sizeof(u_int16_t);
1458 1.17.2.19 nathanw break;
1459 1.17.2.19 nathanw
1460 1.17.2.22 thorpej case WI_RID_DBM_ADJUST:
1461 1.17.2.22 thorpej if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_DBMADJUST)) {
1462 1.17.2.22 thorpej error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1463 1.17.2.22 thorpej &len);
1464 1.17.2.22 thorpej break;
1465 1.17.2.22 thorpej }
1466 1.17.2.22 thorpej wreq.wi_val[0] = htole16(sc->sc_dbm_adjust);
1467 1.17.2.22 thorpej len = sizeof(u_int16_t);
1468 1.17.2.22 thorpej break;
1469 1.17.2.22 thorpej
1470 1.17.2.19 nathanw case WI_RID_ROAMING_MODE:
1471 1.17.2.19 nathanw if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_ROAMING)) {
1472 1.17.2.19 nathanw error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1473 1.17.2.19 nathanw &len);
1474 1.17.2.19 nathanw break;
1475 1.17.2.19 nathanw }
1476 1.17.2.19 nathanw wreq.wi_val[0] = htole16(sc->sc_roaming_mode);
1477 1.17.2.19 nathanw len = sizeof(u_int16_t);
1478 1.17.2.19 nathanw break;
1479 1.17.2.19 nathanw
1480 1.17.2.19 nathanw case WI_RID_SYSTEM_SCALE:
1481 1.17.2.19 nathanw if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_SYSSCALE)) {
1482 1.17.2.19 nathanw error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1483 1.17.2.19 nathanw &len);
1484 1.17.2.19 nathanw break;
1485 1.17.2.19 nathanw }
1486 1.17.2.19 nathanw wreq.wi_val[0] = htole16(sc->sc_system_scale);
1487 1.17.2.19 nathanw len = sizeof(u_int16_t);
1488 1.17.2.19 nathanw break;
1489 1.17.2.19 nathanw
1490 1.17.2.21 thorpej case WI_RID_FRAG_THRESH:
1491 1.17.2.21 thorpej if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_FRAGTHR)) {
1492 1.17.2.21 thorpej error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1493 1.17.2.21 thorpej &len);
1494 1.17.2.21 thorpej break;
1495 1.17.2.21 thorpej }
1496 1.17.2.21 thorpej wreq.wi_val[0] = htole16(sc->sc_frag_thresh);
1497 1.17.2.21 thorpej len = sizeof(u_int16_t);
1498 1.17.2.21 thorpej break;
1499 1.17.2.21 thorpej
1500 1.17.2.19 nathanw case WI_RID_READ_APS:
1501 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_HOSTAP)
1502 1.17.2.19 nathanw return ieee80211_cfgget(ifp, cmd, data);
1503 1.17.2.19 nathanw if (sc->sc_scan_timer > 0) {
1504 1.17.2.19 nathanw error = EINPROGRESS;
1505 1.17.2.19 nathanw break;
1506 1.17.2.19 nathanw }
1507 1.17.2.19 nathanw n = sc->sc_naps;
1508 1.17.2.19 nathanw if (len < sizeof(n)) {
1509 1.17.2.19 nathanw error = ENOSPC;
1510 1.17.2.19 nathanw break;
1511 1.17.2.19 nathanw }
1512 1.17.2.19 nathanw if (len < sizeof(n) + sizeof(struct wi_apinfo) * n)
1513 1.17.2.19 nathanw n = (len - sizeof(n)) / sizeof(struct wi_apinfo);
1514 1.17.2.19 nathanw len = sizeof(n) + sizeof(struct wi_apinfo) * n;
1515 1.17.2.19 nathanw memcpy(wreq.wi_val, &n, sizeof(n));
1516 1.17.2.19 nathanw memcpy((caddr_t)wreq.wi_val + sizeof(n), sc->sc_aps,
1517 1.17.2.19 nathanw sizeof(struct wi_apinfo) * n);
1518 1.17.2.19 nathanw break;
1519 1.17.2.19 nathanw
1520 1.17.2.19 nathanw default:
1521 1.17.2.19 nathanw if (sc->sc_enabled) {
1522 1.17.2.19 nathanw error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1523 1.17.2.19 nathanw &len);
1524 1.17.2.19 nathanw break;
1525 1.17.2.19 nathanw }
1526 1.17.2.19 nathanw switch (wreq.wi_type) {
1527 1.17.2.19 nathanw case WI_RID_MAX_DATALEN:
1528 1.17.2.19 nathanw wreq.wi_val[0] = htole16(sc->sc_max_datalen);
1529 1.17.2.19 nathanw len = sizeof(u_int16_t);
1530 1.17.2.19 nathanw break;
1531 1.17.2.19 nathanw case WI_RID_RTS_THRESH:
1532 1.17.2.19 nathanw wreq.wi_val[0] = htole16(sc->sc_rts_thresh);
1533 1.17.2.19 nathanw len = sizeof(u_int16_t);
1534 1.17.2.19 nathanw break;
1535 1.17.2.19 nathanw case WI_RID_CNFAUTHMODE:
1536 1.17.2.19 nathanw wreq.wi_val[0] = htole16(sc->sc_cnfauthmode);
1537 1.17.2.19 nathanw len = sizeof(u_int16_t);
1538 1.17.2.19 nathanw break;
1539 1.17.2.19 nathanw case WI_RID_NODENAME:
1540 1.17.2.19 nathanw if (len < sc->sc_nodelen + sizeof(u_int16_t)) {
1541 1.17.2.19 nathanw error = ENOSPC;
1542 1.17.2.19 nathanw break;
1543 1.17.2.19 nathanw }
1544 1.17.2.19 nathanw len = sc->sc_nodelen + sizeof(u_int16_t);
1545 1.17.2.19 nathanw wreq.wi_val[0] = htole16((sc->sc_nodelen + 1) / 2);
1546 1.17.2.19 nathanw memcpy(&wreq.wi_val[1], sc->sc_nodename,
1547 1.17.2.19 nathanw sc->sc_nodelen);
1548 1.17.2.19 nathanw break;
1549 1.17.2.19 nathanw default:
1550 1.17.2.19 nathanw return ieee80211_cfgget(ifp, cmd, data);
1551 1.17.2.19 nathanw }
1552 1.17.2.19 nathanw break;
1553 1.17.2.2 nathanw }
1554 1.17.2.19 nathanw if (error)
1555 1.17.2.19 nathanw return error;
1556 1.17.2.19 nathanw wreq.wi_len = (len + 1) / 2 + 1;
1557 1.17.2.19 nathanw return copyout(&wreq, ifr->ifr_data, (wreq.wi_len + 1) * 2);
1558 1.17.2.2 nathanw }
1559 1.17.2.2 nathanw
1560 1.17.2.19 nathanw static int
1561 1.17.2.19 nathanw wi_set_cfg(struct ifnet *ifp, u_long cmd, caddr_t data)
1562 1.17.2.2 nathanw {
1563 1.17.2.19 nathanw struct wi_softc *sc = ifp->if_softc;
1564 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1565 1.17.2.19 nathanw struct ifreq *ifr = (struct ifreq *)data;
1566 1.17.2.19 nathanw struct wi_req wreq;
1567 1.17.2.19 nathanw struct mbuf *m;
1568 1.17.2.19 nathanw int i, len, error;
1569 1.17.2.2 nathanw
1570 1.17.2.19 nathanw error = copyin(ifr->ifr_data, &wreq, sizeof(wreq));
1571 1.17.2.19 nathanw if (error)
1572 1.17.2.19 nathanw return error;
1573 1.17.2.19 nathanw len = (wreq.wi_len - 1) * 2;
1574 1.17.2.19 nathanw switch (wreq.wi_type) {
1575 1.17.2.22 thorpej case WI_RID_DBM_ADJUST:
1576 1.17.2.22 thorpej return ENODEV;
1577 1.17.2.22 thorpej
1578 1.17.2.19 nathanw case WI_RID_NODENAME:
1579 1.17.2.19 nathanw if (le16toh(wreq.wi_val[0]) * 2 > len ||
1580 1.17.2.19 nathanw le16toh(wreq.wi_val[0]) > sizeof(sc->sc_nodename)) {
1581 1.17.2.19 nathanw error = ENOSPC;
1582 1.17.2.19 nathanw break;
1583 1.17.2.19 nathanw }
1584 1.17.2.19 nathanw if (sc->sc_enabled) {
1585 1.17.2.19 nathanw error = wi_write_rid(sc, wreq.wi_type, wreq.wi_val,
1586 1.17.2.19 nathanw len);
1587 1.17.2.19 nathanw if (error)
1588 1.17.2.19 nathanw break;
1589 1.17.2.19 nathanw }
1590 1.17.2.19 nathanw sc->sc_nodelen = le16toh(wreq.wi_val[0]) * 2;
1591 1.17.2.19 nathanw memcpy(sc->sc_nodename, &wreq.wi_val[1], sc->sc_nodelen);
1592 1.17.2.19 nathanw break;
1593 1.17.2.2 nathanw
1594 1.17.2.19 nathanw case WI_RID_MICROWAVE_OVEN:
1595 1.17.2.19 nathanw case WI_RID_ROAMING_MODE:
1596 1.17.2.19 nathanw case WI_RID_SYSTEM_SCALE:
1597 1.17.2.21 thorpej case WI_RID_FRAG_THRESH:
1598 1.17.2.19 nathanw if (wreq.wi_type == WI_RID_MICROWAVE_OVEN &&
1599 1.17.2.19 nathanw (sc->sc_flags & WI_FLAGS_HAS_MOR) == 0)
1600 1.17.2.19 nathanw break;
1601 1.17.2.19 nathanw if (wreq.wi_type == WI_RID_ROAMING_MODE &&
1602 1.17.2.19 nathanw (sc->sc_flags & WI_FLAGS_HAS_ROAMING) == 0)
1603 1.17.2.19 nathanw break;
1604 1.17.2.19 nathanw if (wreq.wi_type == WI_RID_SYSTEM_SCALE &&
1605 1.17.2.19 nathanw (sc->sc_flags & WI_FLAGS_HAS_SYSSCALE) == 0)
1606 1.17.2.19 nathanw break;
1607 1.17.2.21 thorpej if (wreq.wi_type == WI_RID_FRAG_THRESH &&
1608 1.17.2.21 thorpej (sc->sc_flags & WI_FLAGS_HAS_FRAGTHR) == 0)
1609 1.17.2.21 thorpej break;
1610 1.17.2.19 nathanw /* FALLTHROUGH */
1611 1.17.2.19 nathanw case WI_RID_RTS_THRESH:
1612 1.17.2.19 nathanw case WI_RID_CNFAUTHMODE:
1613 1.17.2.19 nathanw case WI_RID_MAX_DATALEN:
1614 1.17.2.2 nathanw if (sc->sc_enabled) {
1615 1.17.2.19 nathanw error = wi_write_rid(sc, wreq.wi_type, wreq.wi_val,
1616 1.17.2.19 nathanw sizeof(u_int16_t));
1617 1.17.2.19 nathanw if (error)
1618 1.17.2.19 nathanw break;
1619 1.17.2.19 nathanw }
1620 1.17.2.19 nathanw switch (wreq.wi_type) {
1621 1.17.2.21 thorpej case WI_RID_FRAG_THRESH:
1622 1.17.2.21 thorpej sc->sc_frag_thresh = le16toh(wreq.wi_val[0]);
1623 1.17.2.21 thorpej break;
1624 1.17.2.19 nathanw case WI_RID_RTS_THRESH:
1625 1.17.2.19 nathanw sc->sc_rts_thresh = le16toh(wreq.wi_val[0]);
1626 1.17.2.19 nathanw break;
1627 1.17.2.19 nathanw case WI_RID_MICROWAVE_OVEN:
1628 1.17.2.19 nathanw sc->sc_microwave_oven = le16toh(wreq.wi_val[0]);
1629 1.17.2.19 nathanw break;
1630 1.17.2.19 nathanw case WI_RID_ROAMING_MODE:
1631 1.17.2.19 nathanw sc->sc_roaming_mode = le16toh(wreq.wi_val[0]);
1632 1.17.2.19 nathanw break;
1633 1.17.2.19 nathanw case WI_RID_SYSTEM_SCALE:
1634 1.17.2.19 nathanw sc->sc_system_scale = le16toh(wreq.wi_val[0]);
1635 1.17.2.19 nathanw break;
1636 1.17.2.19 nathanw case WI_RID_CNFAUTHMODE:
1637 1.17.2.19 nathanw sc->sc_cnfauthmode = le16toh(wreq.wi_val[0]);
1638 1.17.2.19 nathanw break;
1639 1.17.2.19 nathanw case WI_RID_MAX_DATALEN:
1640 1.17.2.19 nathanw sc->sc_max_datalen = le16toh(wreq.wi_val[0]);
1641 1.17.2.19 nathanw break;
1642 1.17.2.19 nathanw }
1643 1.17.2.19 nathanw break;
1644 1.17.2.19 nathanw
1645 1.17.2.19 nathanw case WI_RID_TX_RATE:
1646 1.17.2.19 nathanw switch (le16toh(wreq.wi_val[0])) {
1647 1.17.2.19 nathanw case 3:
1648 1.17.2.19 nathanw ic->ic_fixed_rate = -1;
1649 1.17.2.19 nathanw break;
1650 1.17.2.19 nathanw default:
1651 1.17.2.19 nathanw for (i = 0; i < IEEE80211_RATE_SIZE; i++) {
1652 1.17.2.19 nathanw if ((ic->ic_sup_rates[i] & IEEE80211_RATE_VAL)
1653 1.17.2.19 nathanw / 2 == le16toh(wreq.wi_val[0]))
1654 1.17.2.19 nathanw break;
1655 1.17.2.19 nathanw }
1656 1.17.2.19 nathanw if (i == IEEE80211_RATE_SIZE)
1657 1.17.2.19 nathanw return EINVAL;
1658 1.17.2.19 nathanw ic->ic_fixed_rate = i;
1659 1.17.2.2 nathanw }
1660 1.17.2.19 nathanw if (sc->sc_enabled)
1661 1.17.2.19 nathanw error = wi_write_txrate(sc);
1662 1.17.2.2 nathanw break;
1663 1.17.2.19 nathanw
1664 1.17.2.19 nathanw case WI_RID_SCAN_APS:
1665 1.17.2.19 nathanw if (sc->sc_enabled && ic->ic_opmode != IEEE80211_M_HOSTAP)
1666 1.17.2.19 nathanw error = wi_scan_ap(sc);
1667 1.17.2.2 nathanw break;
1668 1.17.2.19 nathanw
1669 1.17.2.19 nathanw case WI_RID_MGMT_XMIT:
1670 1.17.2.19 nathanw if (!sc->sc_enabled) {
1671 1.17.2.19 nathanw error = ENETDOWN;
1672 1.17.2.19 nathanw break;
1673 1.17.2.19 nathanw }
1674 1.17.2.19 nathanw if (ic->ic_mgtq.ifq_len > 5) {
1675 1.17.2.19 nathanw error = EAGAIN;
1676 1.17.2.19 nathanw break;
1677 1.17.2.19 nathanw }
1678 1.17.2.19 nathanw /* XXX wi_len looks in u_int8_t, not in u_int16_t */
1679 1.17.2.19 nathanw m = m_devget((char *)&wreq.wi_val, wreq.wi_len, 0, ifp, NULL);
1680 1.17.2.19 nathanw if (m == NULL) {
1681 1.17.2.19 nathanw error = ENOMEM;
1682 1.17.2.19 nathanw break;
1683 1.17.2.19 nathanw }
1684 1.17.2.19 nathanw IF_ENQUEUE(&ic->ic_mgtq, m);
1685 1.17.2.19 nathanw break;
1686 1.17.2.19 nathanw
1687 1.17.2.19 nathanw default:
1688 1.17.2.19 nathanw if (sc->sc_enabled) {
1689 1.17.2.19 nathanw error = wi_write_rid(sc, wreq.wi_type, wreq.wi_val,
1690 1.17.2.19 nathanw len);
1691 1.17.2.19 nathanw if (error)
1692 1.17.2.19 nathanw break;
1693 1.17.2.19 nathanw }
1694 1.17.2.19 nathanw error = ieee80211_cfgset(ifp, cmd, data);
1695 1.17.2.2 nathanw break;
1696 1.17.2.2 nathanw }
1697 1.17.2.19 nathanw return error;
1698 1.17.2.2 nathanw }
1699 1.17.2.2 nathanw
1700 1.17.2.2 nathanw static int
1701 1.17.2.19 nathanw wi_write_txrate(struct wi_softc *sc)
1702 1.17.2.2 nathanw {
1703 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1704 1.17.2.19 nathanw int i;
1705 1.17.2.19 nathanw u_int16_t rate;
1706 1.17.2.2 nathanw
1707 1.17.2.19 nathanw if (ic->ic_fixed_rate < 0)
1708 1.17.2.19 nathanw rate = 0; /* auto */
1709 1.17.2.19 nathanw else
1710 1.17.2.19 nathanw rate = (ic->ic_sup_rates[ic->ic_fixed_rate] &
1711 1.17.2.19 nathanw IEEE80211_RATE_VAL) / 2;
1712 1.17.2.2 nathanw
1713 1.17.2.19 nathanw /* rate: 0, 1, 2, 5, 11 */
1714 1.17.2.2 nathanw
1715 1.17.2.19 nathanw switch (sc->sc_firmware_type) {
1716 1.17.2.19 nathanw case WI_LUCENT:
1717 1.17.2.19 nathanw if (rate == 0)
1718 1.17.2.19 nathanw rate = 3; /* auto */
1719 1.17.2.19 nathanw break;
1720 1.17.2.19 nathanw default:
1721 1.17.2.21 thorpej /* Choose a bit according to this table.
1722 1.17.2.21 thorpej *
1723 1.17.2.21 thorpej * bit | data rate
1724 1.17.2.21 thorpej * ----+-------------------
1725 1.17.2.21 thorpej * 0 | 1Mbps
1726 1.17.2.21 thorpej * 1 | 2Mbps
1727 1.17.2.21 thorpej * 2 | 5.5Mbps
1728 1.17.2.21 thorpej * 3 | 11Mbps
1729 1.17.2.21 thorpej */
1730 1.17.2.19 nathanw for (i = 8; i > 0; i >>= 1) {
1731 1.17.2.19 nathanw if (rate >= i)
1732 1.17.2.19 nathanw break;
1733 1.17.2.19 nathanw }
1734 1.17.2.19 nathanw if (i == 0)
1735 1.17.2.19 nathanw rate = 0xf; /* auto */
1736 1.17.2.19 nathanw else
1737 1.17.2.19 nathanw rate = i;
1738 1.17.2.19 nathanw break;
1739 1.17.2.19 nathanw }
1740 1.17.2.19 nathanw return wi_write_val(sc, WI_RID_TX_RATE, rate);
1741 1.17.2.2 nathanw }
1742 1.17.2.2 nathanw
1743 1.17.2.2 nathanw static int
1744 1.17.2.19 nathanw wi_write_wep(struct wi_softc *sc)
1745 1.17.2.2 nathanw {
1746 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
1747 1.17.2.19 nathanw int error = 0;
1748 1.17.2.19 nathanw int i, keylen;
1749 1.17.2.19 nathanw u_int16_t val;
1750 1.17.2.19 nathanw struct wi_key wkey[IEEE80211_WEP_NKID];
1751 1.17.2.2 nathanw
1752 1.17.2.19 nathanw switch (sc->sc_firmware_type) {
1753 1.17.2.19 nathanw case WI_LUCENT:
1754 1.17.2.19 nathanw val = (ic->ic_flags & IEEE80211_F_WEPON) ? 1 : 0;
1755 1.17.2.19 nathanw error = wi_write_val(sc, WI_RID_ENCRYPTION, val);
1756 1.17.2.19 nathanw if (error)
1757 1.17.2.19 nathanw break;
1758 1.17.2.19 nathanw error = wi_write_val(sc, WI_RID_TX_CRYPT_KEY, ic->ic_wep_txkey);
1759 1.17.2.19 nathanw if (error)
1760 1.17.2.19 nathanw break;
1761 1.17.2.19 nathanw memset(wkey, 0, sizeof(wkey));
1762 1.17.2.19 nathanw for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1763 1.17.2.19 nathanw keylen = ic->ic_nw_keys[i].wk_len;
1764 1.17.2.19 nathanw wkey[i].wi_keylen = htole16(keylen);
1765 1.17.2.19 nathanw memcpy(wkey[i].wi_keydat, ic->ic_nw_keys[i].wk_key,
1766 1.17.2.19 nathanw keylen);
1767 1.17.2.19 nathanw }
1768 1.17.2.19 nathanw error = wi_write_rid(sc, WI_RID_DEFLT_CRYPT_KEYS,
1769 1.17.2.19 nathanw wkey, sizeof(wkey));
1770 1.17.2.2 nathanw break;
1771 1.17.2.16 nathanw
1772 1.17.2.19 nathanw case WI_INTERSIL:
1773 1.17.2.19 nathanw case WI_SYMBOL:
1774 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_WEPON) {
1775 1.17.2.19 nathanw /*
1776 1.17.2.19 nathanw * ONLY HWB3163 EVAL-CARD Firmware version
1777 1.17.2.19 nathanw * less than 0.8 variant2
1778 1.17.2.19 nathanw *
1779 1.17.2.19 nathanw * If promiscuous mode disable, Prism2 chip
1780 1.17.2.19 nathanw * does not work with WEP .
1781 1.17.2.19 nathanw * It is under investigation for details.
1782 1.17.2.19 nathanw * (ichiro (at) netbsd.org)
1783 1.17.2.19 nathanw */
1784 1.17.2.19 nathanw if (sc->sc_firmware_type == WI_INTERSIL &&
1785 1.17.2.19 nathanw sc->sc_sta_firmware_ver < 802 ) {
1786 1.17.2.19 nathanw /* firm ver < 0.8 variant 2 */
1787 1.17.2.19 nathanw wi_write_val(sc, WI_RID_PROMISC, 1);
1788 1.17.2.19 nathanw }
1789 1.17.2.19 nathanw wi_write_val(sc, WI_RID_CNFAUTHMODE,
1790 1.17.2.19 nathanw sc->sc_cnfauthmode);
1791 1.17.2.19 nathanw val = PRIVACY_INVOKED | EXCLUDE_UNENCRYPTED;
1792 1.17.2.19 nathanw /*
1793 1.17.2.19 nathanw * Encryption firmware has a bug for HostAP mode.
1794 1.17.2.19 nathanw */
1795 1.17.2.19 nathanw if (sc->sc_firmware_type == WI_INTERSIL &&
1796 1.17.2.19 nathanw ic->ic_opmode == IEEE80211_M_HOSTAP)
1797 1.17.2.19 nathanw val |= HOST_ENCRYPT;
1798 1.17.2.19 nathanw } else {
1799 1.17.2.19 nathanw wi_write_val(sc, WI_RID_CNFAUTHMODE,
1800 1.17.2.19 nathanw IEEE80211_AUTH_OPEN);
1801 1.17.2.19 nathanw val = HOST_ENCRYPT | HOST_DECRYPT;
1802 1.17.2.19 nathanw }
1803 1.17.2.19 nathanw error = wi_write_val(sc, WI_RID_P2_ENCRYPTION, val);
1804 1.17.2.19 nathanw if (error)
1805 1.17.2.19 nathanw break;
1806 1.17.2.19 nathanw error = wi_write_val(sc, WI_RID_P2_TX_CRYPT_KEY,
1807 1.17.2.19 nathanw ic->ic_wep_txkey);
1808 1.17.2.19 nathanw if (error)
1809 1.17.2.19 nathanw break;
1810 1.17.2.19 nathanw /*
1811 1.17.2.19 nathanw * It seems that the firmware accept 104bit key only if
1812 1.17.2.19 nathanw * all the keys have 104bit length. We get the length of
1813 1.17.2.19 nathanw * the transmit key and use it for all other keys.
1814 1.17.2.19 nathanw * Perhaps we should use software WEP for such situation.
1815 1.17.2.19 nathanw */
1816 1.17.2.19 nathanw keylen = ic->ic_nw_keys[ic->ic_wep_txkey].wk_len;
1817 1.17.2.19 nathanw if (keylen > IEEE80211_WEP_KEYLEN)
1818 1.17.2.19 nathanw keylen = 13; /* 104bit keys */
1819 1.17.2.19 nathanw else
1820 1.17.2.19 nathanw keylen = IEEE80211_WEP_KEYLEN;
1821 1.17.2.19 nathanw for (i = 0; i < IEEE80211_WEP_NKID; i++) {
1822 1.17.2.19 nathanw error = wi_write_rid(sc, WI_RID_P2_CRYPT_KEY0 + i,
1823 1.17.2.19 nathanw ic->ic_nw_keys[i].wk_key, keylen);
1824 1.17.2.19 nathanw if (error)
1825 1.17.2.19 nathanw break;
1826 1.17.2.19 nathanw }
1827 1.17.2.2 nathanw break;
1828 1.17.2.2 nathanw }
1829 1.17.2.19 nathanw return error;
1830 1.17.2.2 nathanw }
1831 1.17.2.2 nathanw
1832 1.17.2.19 nathanw /* Must be called at proper protection level! */
1833 1.17.2.2 nathanw static int
1834 1.17.2.19 nathanw wi_cmd(struct wi_softc *sc, int cmd, int val0, int val1, int val2)
1835 1.17.2.2 nathanw {
1836 1.17.2.19 nathanw int i, status;
1837 1.17.2.2 nathanw
1838 1.17.2.19 nathanw /* wait for the busy bit to clear */
1839 1.17.2.19 nathanw for (i = 0; ; i++) {
1840 1.17.2.19 nathanw if ((CSR_READ_2(sc, WI_COMMAND) & WI_CMD_BUSY) == 0)
1841 1.17.2.19 nathanw break;
1842 1.17.2.19 nathanw if (i == WI_TIMEOUT) {
1843 1.17.2.19 nathanw printf("%s: wi_cmd: BUSY did not clear, "
1844 1.17.2.19 nathanw "cmd=0x%x, prev=0x%x\n", sc->sc_dev.dv_xname,
1845 1.17.2.19 nathanw cmd, CSR_READ_2(sc, WI_COMMAND));
1846 1.17.2.19 nathanw return EIO;
1847 1.17.2.19 nathanw }
1848 1.17.2.19 nathanw DELAY(1);
1849 1.17.2.2 nathanw }
1850 1.17.2.2 nathanw
1851 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_PARAM0, val0);
1852 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_PARAM1, val1);
1853 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_PARAM2, val2);
1854 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_COMMAND, cmd);
1855 1.17.2.19 nathanw
1856 1.17.2.19 nathanw if (cmd == WI_CMD_INI) {
1857 1.17.2.19 nathanw /* XXX: should sleep here. */
1858 1.17.2.19 nathanw DELAY(100*1000);
1859 1.17.2.19 nathanw }
1860 1.17.2.19 nathanw /* wait for the cmd completed bit */
1861 1.17.2.19 nathanw for (i = 0; i < WI_TIMEOUT; i++) {
1862 1.17.2.19 nathanw if (CSR_READ_2(sc, WI_EVENT_STAT) & WI_EV_CMD)
1863 1.17.2.19 nathanw break;
1864 1.17.2.19 nathanw DELAY(1);
1865 1.17.2.2 nathanw }
1866 1.17.2.2 nathanw
1867 1.17.2.19 nathanw status = CSR_READ_2(sc, WI_STATUS);
1868 1.17.2.19 nathanw
1869 1.17.2.19 nathanw /* Ack the command */
1870 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_CMD);
1871 1.17.2.2 nathanw
1872 1.17.2.19 nathanw if (i == WI_TIMEOUT) {
1873 1.17.2.19 nathanw printf("%s: command timed out, cmd=0x%x, arg=0x%x\n",
1874 1.17.2.19 nathanw sc->sc_dev.dv_xname, cmd, val0);
1875 1.17.2.19 nathanw return ETIMEDOUT;
1876 1.17.2.19 nathanw }
1877 1.17.2.19 nathanw
1878 1.17.2.19 nathanw if (status & WI_STAT_CMD_RESULT) {
1879 1.17.2.19 nathanw printf("%s: command failed, cmd=0x%x, arg=0x%x\n",
1880 1.17.2.19 nathanw sc->sc_dev.dv_xname, cmd, val0);
1881 1.17.2.19 nathanw return EIO;
1882 1.17.2.19 nathanw }
1883 1.17.2.19 nathanw return 0;
1884 1.17.2.2 nathanw }
1885 1.17.2.2 nathanw
1886 1.17.2.19 nathanw static int
1887 1.17.2.19 nathanw wi_seek_bap(struct wi_softc *sc, int id, int off)
1888 1.17.2.2 nathanw {
1889 1.17.2.19 nathanw int i, status;
1890 1.17.2.2 nathanw
1891 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_SEL0, id);
1892 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_OFF0, off);
1893 1.17.2.2 nathanw
1894 1.17.2.19 nathanw for (i = 0; ; i++) {
1895 1.17.2.19 nathanw status = CSR_READ_2(sc, WI_OFF0);
1896 1.17.2.19 nathanw if ((status & WI_OFF_BUSY) == 0)
1897 1.17.2.18 thorpej break;
1898 1.17.2.19 nathanw if (i == WI_TIMEOUT) {
1899 1.17.2.19 nathanw printf("%s: timeout in wi_seek to %x/%x\n",
1900 1.17.2.19 nathanw sc->sc_dev.dv_xname, id, off);
1901 1.17.2.19 nathanw sc->sc_bap_off = WI_OFF_ERR; /* invalidate */
1902 1.17.2.19 nathanw return ETIMEDOUT;
1903 1.17.2.18 thorpej }
1904 1.17.2.19 nathanw DELAY(1);
1905 1.17.2.18 thorpej }
1906 1.17.2.19 nathanw if (status & WI_OFF_ERR) {
1907 1.17.2.19 nathanw printf("%s: failed in wi_seek to %x/%x\n",
1908 1.17.2.19 nathanw sc->sc_dev.dv_xname, id, off);
1909 1.17.2.19 nathanw sc->sc_bap_off = WI_OFF_ERR; /* invalidate */
1910 1.17.2.19 nathanw return EIO;
1911 1.17.2.18 thorpej }
1912 1.17.2.19 nathanw sc->sc_bap_id = id;
1913 1.17.2.19 nathanw sc->sc_bap_off = off;
1914 1.17.2.19 nathanw return 0;
1915 1.17.2.2 nathanw }
1916 1.17.2.2 nathanw
1917 1.17.2.2 nathanw static int
1918 1.17.2.19 nathanw wi_read_bap(struct wi_softc *sc, int id, int off, void *buf, int buflen)
1919 1.17.2.2 nathanw {
1920 1.17.2.19 nathanw int error, cnt;
1921 1.17.2.2 nathanw
1922 1.17.2.19 nathanw if (buflen == 0)
1923 1.17.2.19 nathanw return 0;
1924 1.17.2.19 nathanw if (id != sc->sc_bap_id || off != sc->sc_bap_off) {
1925 1.17.2.19 nathanw if ((error = wi_seek_bap(sc, id, off)) != 0)
1926 1.17.2.2 nathanw return error;
1927 1.17.2.2 nathanw }
1928 1.17.2.19 nathanw cnt = (buflen + 1) / 2;
1929 1.17.2.19 nathanw CSR_READ_MULTI_STREAM_2(sc, WI_DATA0, (u_int16_t *)buf, cnt);
1930 1.17.2.19 nathanw sc->sc_bap_off += cnt * 2;
1931 1.17.2.19 nathanw return 0;
1932 1.17.2.19 nathanw }
1933 1.17.2.2 nathanw
1934 1.17.2.19 nathanw static int
1935 1.17.2.19 nathanw wi_write_bap(struct wi_softc *sc, int id, int off, void *buf, int buflen)
1936 1.17.2.19 nathanw {
1937 1.17.2.19 nathanw int error, cnt;
1938 1.17.2.2 nathanw
1939 1.17.2.19 nathanw if (buflen == 0)
1940 1.17.2.19 nathanw return 0;
1941 1.17.2.2 nathanw
1942 1.17.2.19 nathanw #ifdef WI_HERMES_AUTOINC_WAR
1943 1.17.2.19 nathanw again:
1944 1.17.2.19 nathanw #endif
1945 1.17.2.19 nathanw if (id != sc->sc_bap_id || off != sc->sc_bap_off) {
1946 1.17.2.19 nathanw if ((error = wi_seek_bap(sc, id, off)) != 0)
1947 1.17.2.2 nathanw return error;
1948 1.17.2.2 nathanw }
1949 1.17.2.19 nathanw cnt = (buflen + 1) / 2;
1950 1.17.2.19 nathanw CSR_WRITE_MULTI_STREAM_2(sc, WI_DATA0, (u_int16_t *)buf, cnt);
1951 1.17.2.19 nathanw sc->sc_bap_off += cnt * 2;
1952 1.17.2.2 nathanw
1953 1.17.2.19 nathanw #ifdef WI_HERMES_AUTOINC_WAR
1954 1.17.2.19 nathanw /*
1955 1.17.2.19 nathanw * According to the comments in the HCF Light code, there is a bug
1956 1.17.2.19 nathanw * in the Hermes (or possibly in certain Hermes firmware revisions)
1957 1.17.2.19 nathanw * where the chip's internal autoincrement counter gets thrown off
1958 1.17.2.19 nathanw * during data writes: the autoincrement is missed, causing one
1959 1.17.2.19 nathanw * data word to be overwritten and subsequent words to be written to
1960 1.17.2.19 nathanw * the wrong memory locations. The end result is that we could end
1961 1.17.2.19 nathanw * up transmitting bogus frames without realizing it. The workaround
1962 1.17.2.19 nathanw * for this is to write a couple of extra guard words after the end
1963 1.17.2.19 nathanw * of the transfer, then attempt to read then back. If we fail to
1964 1.17.2.19 nathanw * locate the guard words where we expect them, we preform the
1965 1.17.2.19 nathanw * transfer over again.
1966 1.17.2.19 nathanw */
1967 1.17.2.19 nathanw if ((sc->sc_flags & WI_FLAGS_BUG_AUTOINC) && (id & 0xf000) == 0) {
1968 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_DATA0, 0x1234);
1969 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_DATA0, 0x5678);
1970 1.17.2.19 nathanw wi_seek_bap(sc, id, sc->sc_bap_off);
1971 1.17.2.19 nathanw sc->sc_bap_off = WI_OFF_ERR; /* invalidate */
1972 1.17.2.19 nathanw if (CSR_READ_2(sc, WI_DATA0) != 0x1234 ||
1973 1.17.2.19 nathanw CSR_READ_2(sc, WI_DATA0) != 0x5678) {
1974 1.17.2.19 nathanw printf("%s: detect auto increment bug, try again\n",
1975 1.17.2.19 nathanw sc->sc_dev.dv_xname);
1976 1.17.2.19 nathanw goto again;
1977 1.17.2.19 nathanw }
1978 1.17.2.19 nathanw }
1979 1.17.2.19 nathanw #endif
1980 1.17.2.2 nathanw return 0;
1981 1.17.2.2 nathanw }
1982 1.17.2.2 nathanw
1983 1.17.2.2 nathanw static int
1984 1.17.2.19 nathanw wi_alloc_fid(struct wi_softc *sc, int len, int *idp)
1985 1.17.2.2 nathanw {
1986 1.17.2.19 nathanw int i;
1987 1.17.2.2 nathanw
1988 1.17.2.19 nathanw if (wi_cmd(sc, WI_CMD_ALLOC_MEM, len, 0, 0)) {
1989 1.17.2.19 nathanw printf("%s: failed to allocate %d bytes on NIC\n",
1990 1.17.2.19 nathanw sc->sc_dev.dv_xname, len);
1991 1.17.2.19 nathanw return ENOMEM;
1992 1.17.2.2 nathanw }
1993 1.17.2.19 nathanw
1994 1.17.2.19 nathanw for (i = 0; i < WI_TIMEOUT; i++) {
1995 1.17.2.19 nathanw if (CSR_READ_2(sc, WI_EVENT_STAT) & WI_EV_ALLOC)
1996 1.17.2.19 nathanw break;
1997 1.17.2.19 nathanw if (i == WI_TIMEOUT) {
1998 1.17.2.19 nathanw printf("%s: timeout in alloc\n", sc->sc_dev.dv_xname);
1999 1.17.2.19 nathanw return ETIMEDOUT;
2000 1.17.2.19 nathanw }
2001 1.17.2.19 nathanw DELAY(1);
2002 1.17.2.19 nathanw }
2003 1.17.2.19 nathanw *idp = CSR_READ_2(sc, WI_ALLOC_FID);
2004 1.17.2.19 nathanw CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_ALLOC);
2005 1.17.2.2 nathanw return 0;
2006 1.17.2.2 nathanw }
2007 1.17.2.2 nathanw
2008 1.17.2.2 nathanw static int
2009 1.17.2.19 nathanw wi_read_rid(struct wi_softc *sc, int rid, void *buf, int *buflenp)
2010 1.17.2.2 nathanw {
2011 1.17.2.19 nathanw int error, len;
2012 1.17.2.19 nathanw u_int16_t ltbuf[2];
2013 1.17.2.2 nathanw
2014 1.17.2.19 nathanw /* Tell the NIC to enter record read mode. */
2015 1.17.2.19 nathanw error = wi_cmd(sc, WI_CMD_ACCESS | WI_ACCESS_READ, rid, 0, 0);
2016 1.17.2.19 nathanw if (error)
2017 1.17.2.19 nathanw return error;
2018 1.17.2.2 nathanw
2019 1.17.2.19 nathanw error = wi_read_bap(sc, rid, 0, ltbuf, sizeof(ltbuf));
2020 1.17.2.19 nathanw if (error)
2021 1.17.2.19 nathanw return error;
2022 1.17.2.2 nathanw
2023 1.17.2.19 nathanw if (le16toh(ltbuf[1]) != rid) {
2024 1.17.2.19 nathanw printf("%s: record read mismatch, rid=%x, got=%x\n",
2025 1.17.2.19 nathanw sc->sc_dev.dv_xname, rid, le16toh(ltbuf[1]));
2026 1.17.2.19 nathanw return EIO;
2027 1.17.2.19 nathanw }
2028 1.17.2.19 nathanw len = (le16toh(ltbuf[0]) - 1) * 2; /* already got rid */
2029 1.17.2.19 nathanw if (*buflenp < len) {
2030 1.17.2.19 nathanw printf("%s: record buffer is too small, "
2031 1.17.2.19 nathanw "rid=%x, size=%d, len=%d\n",
2032 1.17.2.19 nathanw sc->sc_dev.dv_xname, rid, *buflenp, len);
2033 1.17.2.19 nathanw return ENOSPC;
2034 1.17.2.19 nathanw }
2035 1.17.2.19 nathanw *buflenp = len;
2036 1.17.2.19 nathanw return wi_read_bap(sc, rid, sizeof(ltbuf), buf, len);
2037 1.17.2.2 nathanw }
2038 1.17.2.2 nathanw
2039 1.17.2.2 nathanw static int
2040 1.17.2.19 nathanw wi_write_rid(struct wi_softc *sc, int rid, void *buf, int buflen)
2041 1.17.2.2 nathanw {
2042 1.17.2.19 nathanw int error;
2043 1.17.2.19 nathanw u_int16_t ltbuf[2];
2044 1.17.2.2 nathanw
2045 1.17.2.19 nathanw ltbuf[0] = htole16((buflen + 1) / 2 + 1); /* includes rid */
2046 1.17.2.19 nathanw ltbuf[1] = htole16(rid);
2047 1.17.2.19 nathanw
2048 1.17.2.19 nathanw error = wi_write_bap(sc, rid, 0, ltbuf, sizeof(ltbuf));
2049 1.17.2.19 nathanw if (error)
2050 1.17.2.19 nathanw return error;
2051 1.17.2.19 nathanw error = wi_write_bap(sc, rid, sizeof(ltbuf), buf, buflen);
2052 1.17.2.19 nathanw if (error)
2053 1.17.2.19 nathanw return error;
2054 1.17.2.2 nathanw
2055 1.17.2.19 nathanw return wi_cmd(sc, WI_CMD_ACCESS | WI_ACCESS_WRITE, rid, 0, 0);
2056 1.17.2.2 nathanw }
2057 1.17.2.18 thorpej
2058 1.17.2.18 thorpej static int
2059 1.17.2.19 nathanw wi_newstate(void *arg, enum ieee80211_state nstate)
2060 1.17.2.18 thorpej {
2061 1.17.2.19 nathanw struct wi_softc *sc = arg;
2062 1.17.2.19 nathanw struct ieee80211com *ic = &sc->sc_ic;
2063 1.17.2.19 nathanw struct ieee80211_node *ni = &ic->ic_bss;
2064 1.17.2.19 nathanw int i, buflen;
2065 1.17.2.19 nathanw u_int16_t val;
2066 1.17.2.19 nathanw struct wi_ssid ssid;
2067 1.17.2.19 nathanw enum ieee80211_state ostate;
2068 1.17.2.19 nathanw #ifdef WI_DEBUG
2069 1.17.2.19 nathanw static const char *stname[] =
2070 1.17.2.19 nathanw { "INIT", "SCAN", "AUTH", "ASSOC", "RUN" };
2071 1.17.2.19 nathanw #endif /* WI_DEBUG */
2072 1.17.2.19 nathanw
2073 1.17.2.19 nathanw ostate = ic->ic_state;
2074 1.17.2.19 nathanw DPRINTF(("wi_newstate: %s -> %s\n", stname[ostate], stname[nstate]));
2075 1.17.2.19 nathanw
2076 1.17.2.19 nathanw ic->ic_state = nstate;
2077 1.17.2.19 nathanw switch (nstate) {
2078 1.17.2.19 nathanw case IEEE80211_S_INIT:
2079 1.17.2.19 nathanw ic->ic_flags &= ~IEEE80211_F_SIBSS;
2080 1.17.2.19 nathanw sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
2081 1.17.2.19 nathanw return 0;
2082 1.17.2.18 thorpej
2083 1.17.2.19 nathanw case IEEE80211_S_RUN:
2084 1.17.2.19 nathanw sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
2085 1.17.2.19 nathanw buflen = IEEE80211_ADDR_LEN;
2086 1.17.2.19 nathanw wi_read_rid(sc, WI_RID_CURRENT_BSSID, ni->ni_bssid, &buflen);
2087 1.17.2.19 nathanw IEEE80211_ADDR_COPY(ni->ni_macaddr, ni->ni_bssid);
2088 1.17.2.19 nathanw buflen = sizeof(val);
2089 1.17.2.19 nathanw wi_read_rid(sc, WI_RID_CURRENT_CHAN, &val, &buflen);
2090 1.17.2.19 nathanw ni->ni_chan = le16toh(val);
2091 1.17.2.19 nathanw
2092 1.17.2.19 nathanw if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
2093 1.17.2.19 nathanw ni->ni_esslen = ic->ic_des_esslen;
2094 1.17.2.19 nathanw memcpy(ni->ni_essid, ic->ic_des_essid, ni->ni_esslen);
2095 1.17.2.19 nathanw ni->ni_nrate = 0;
2096 1.17.2.19 nathanw for (i = 0; i < IEEE80211_RATE_SIZE; i++) {
2097 1.17.2.19 nathanw if (ic->ic_sup_rates[i])
2098 1.17.2.19 nathanw ni->ni_rates[ni->ni_nrate++] =
2099 1.17.2.19 nathanw ic->ic_sup_rates[i];
2100 1.17.2.19 nathanw }
2101 1.17.2.19 nathanw ni->ni_intval = ic->ic_lintval;
2102 1.17.2.19 nathanw ni->ni_capinfo = IEEE80211_CAPINFO_ESS;
2103 1.17.2.19 nathanw if (ic->ic_flags & IEEE80211_F_WEPON)
2104 1.17.2.19 nathanw ni->ni_capinfo |= IEEE80211_CAPINFO_PRIVACY;
2105 1.17.2.19 nathanw } else {
2106 1.17.2.19 nathanw buflen = sizeof(ssid);
2107 1.17.2.19 nathanw wi_read_rid(sc, WI_RID_CURRENT_SSID, &ssid, &buflen);
2108 1.17.2.19 nathanw ni->ni_esslen = le16toh(ssid.wi_len);
2109 1.17.2.19 nathanw if (ni->ni_esslen > IEEE80211_NWID_LEN)
2110 1.17.2.19 nathanw ni->ni_esslen = IEEE80211_NWID_LEN; /*XXX*/
2111 1.17.2.19 nathanw memcpy(ni->ni_essid, ssid.wi_ssid, ni->ni_esslen);
2112 1.17.2.18 thorpej }
2113 1.17.2.19 nathanw break;
2114 1.17.2.18 thorpej
2115 1.17.2.19 nathanw case IEEE80211_S_SCAN:
2116 1.17.2.19 nathanw case IEEE80211_S_AUTH:
2117 1.17.2.19 nathanw case IEEE80211_S_ASSOC:
2118 1.17.2.18 thorpej break;
2119 1.17.2.19 nathanw }
2120 1.17.2.19 nathanw
2121 1.17.2.19 nathanw /* skip standard ieee80211 handling */
2122 1.17.2.19 nathanw return EINPROGRESS;
2123 1.17.2.19 nathanw }
2124 1.17.2.19 nathanw
2125 1.17.2.19 nathanw static int
2126 1.17.2.19 nathanw wi_scan_ap(struct wi_softc *sc)
2127 1.17.2.19 nathanw {
2128 1.17.2.19 nathanw int error = 0;
2129 1.17.2.19 nathanw u_int16_t val[2];
2130 1.17.2.19 nathanw
2131 1.17.2.19 nathanw if (!sc->sc_enabled)
2132 1.17.2.19 nathanw return ENXIO;
2133 1.17.2.19 nathanw switch (sc->sc_firmware_type) {
2134 1.17.2.19 nathanw case WI_LUCENT:
2135 1.17.2.19 nathanw (void)wi_cmd(sc, WI_CMD_INQUIRE, WI_INFO_SCAN_RESULTS, 0, 0);
2136 1.17.2.19 nathanw break;
2137 1.17.2.19 nathanw case WI_INTERSIL:
2138 1.17.2.19 nathanw val[0] = 0x3fff; /* channel */
2139 1.17.2.19 nathanw val[1] = 0x000f; /* tx rate */
2140 1.17.2.19 nathanw error = wi_write_rid(sc, WI_RID_SCAN_REQ, val, sizeof(val));
2141 1.17.2.19 nathanw break;
2142 1.17.2.19 nathanw case WI_SYMBOL:
2143 1.17.2.19 nathanw /*
2144 1.17.2.19 nathanw * XXX only supported on 3.x ?
2145 1.17.2.19 nathanw */
2146 1.17.2.19 nathanw val[0] = BSCAN_BCAST | BSCAN_ONETIME;
2147 1.17.2.19 nathanw error = wi_write_rid(sc, WI_RID_BCAST_SCAN_REQ,
2148 1.17.2.19 nathanw val, sizeof(val[0]));
2149 1.17.2.18 thorpej break;
2150 1.17.2.18 thorpej }
2151 1.17.2.19 nathanw if (error == 0) {
2152 1.17.2.19 nathanw sc->sc_scan_timer = WI_SCAN_WAIT;
2153 1.17.2.19 nathanw sc->sc_ic.ic_if.if_timer = 1;
2154 1.17.2.19 nathanw DPRINTF(("wi_scan_ap: start scanning\n"));
2155 1.17.2.19 nathanw }
2156 1.17.2.18 thorpej return error;
2157 1.17.2.18 thorpej }
2158 1.17.2.18 thorpej
2159 1.17.2.19 nathanw static void
2160 1.17.2.19 nathanw wi_scan_result(struct wi_softc *sc, int fid, int cnt)
2161 1.17.2.18 thorpej {
2162 1.17.2.19 nathanw int i, naps, off, szbuf;
2163 1.17.2.19 nathanw struct wi_scan_header ws_hdr; /* Prism2 header */
2164 1.17.2.19 nathanw struct wi_scan_data_p2 ws_dat; /* Prism2 scantable*/
2165 1.17.2.19 nathanw struct wi_apinfo *ap;
2166 1.17.2.19 nathanw
2167 1.17.2.19 nathanw off = sizeof(u_int16_t) * 2;
2168 1.17.2.19 nathanw memset(&ws_hdr, 0, sizeof(ws_hdr));
2169 1.17.2.19 nathanw switch (sc->sc_firmware_type) {
2170 1.17.2.19 nathanw case WI_INTERSIL:
2171 1.17.2.19 nathanw wi_read_bap(sc, fid, off, &ws_hdr, sizeof(ws_hdr));
2172 1.17.2.19 nathanw off += sizeof(ws_hdr);
2173 1.17.2.19 nathanw szbuf = sizeof(struct wi_scan_data_p2);
2174 1.17.2.19 nathanw break;
2175 1.17.2.19 nathanw case WI_SYMBOL:
2176 1.17.2.19 nathanw szbuf = sizeof(struct wi_scan_data_p2) + 6;
2177 1.17.2.19 nathanw break;
2178 1.17.2.19 nathanw case WI_LUCENT:
2179 1.17.2.19 nathanw szbuf = sizeof(struct wi_scan_data);
2180 1.17.2.18 thorpej break;
2181 1.17.2.18 thorpej }
2182 1.17.2.19 nathanw naps = (cnt * 2 + 2 - off) / szbuf;
2183 1.17.2.19 nathanw if (naps > MAXAPINFO)
2184 1.17.2.19 nathanw naps = MAXAPINFO;
2185 1.17.2.19 nathanw sc->sc_naps = naps;
2186 1.17.2.19 nathanw /* Read Data */
2187 1.17.2.19 nathanw ap = sc->sc_aps;
2188 1.17.2.19 nathanw memset(&ws_dat, 0, sizeof(ws_dat));
2189 1.17.2.19 nathanw for (i = 0; i < naps; i++, ap++) {
2190 1.17.2.19 nathanw wi_read_bap(sc, fid, off, &ws_dat,
2191 1.17.2.19 nathanw (sizeof(ws_dat) < szbuf ? sizeof(ws_dat) : szbuf));
2192 1.17.2.19 nathanw DPRINTF2(("wi_scan_result: #%d: off %d bssid %s\n", i, off,
2193 1.17.2.19 nathanw ether_sprintf(ws_dat.wi_bssid)));
2194 1.17.2.19 nathanw off += szbuf;
2195 1.17.2.19 nathanw ap->scanreason = le16toh(ws_hdr.wi_reason);
2196 1.17.2.19 nathanw memcpy(ap->bssid, ws_dat.wi_bssid, sizeof(ap->bssid));
2197 1.17.2.19 nathanw ap->channel = le16toh(ws_dat.wi_chid);
2198 1.17.2.19 nathanw ap->signal = le16toh(ws_dat.wi_signal);
2199 1.17.2.19 nathanw ap->noise = le16toh(ws_dat.wi_noise);
2200 1.17.2.19 nathanw ap->quality = ap->signal - ap->noise;
2201 1.17.2.19 nathanw ap->capinfo = le16toh(ws_dat.wi_capinfo);
2202 1.17.2.19 nathanw ap->interval = le16toh(ws_dat.wi_interval);
2203 1.17.2.19 nathanw ap->rate = le16toh(ws_dat.wi_rate);
2204 1.17.2.19 nathanw ap->namelen = le16toh(ws_dat.wi_namelen);
2205 1.17.2.19 nathanw if (ap->namelen > sizeof(ap->name))
2206 1.17.2.19 nathanw ap->namelen = sizeof(ap->name);
2207 1.17.2.19 nathanw memcpy(ap->name, ws_dat.wi_name, ap->namelen);
2208 1.17.2.19 nathanw }
2209 1.17.2.19 nathanw /* Done scanning */
2210 1.17.2.19 nathanw sc->sc_scan_timer = 0;
2211 1.17.2.19 nathanw DPRINTF(("wi_scan_result: scan complete: ap %d\n", naps));
2212 1.17.2.18 thorpej }
2213