if_atu.c revision 1.9 1 1.9 itojun /* $NetBSD: if_atu.c,v 1.9 2005/03/03 08:10:35 itojun Exp $ */
2 1.1 joff /* $OpenBSD: if_atu.c,v 1.48 2004/12/30 01:53:21 dlg Exp $ */
3 1.1 joff /*
4 1.1 joff * Copyright (c) 2003, 2004
5 1.1 joff * Daan Vreeken <Danovitsch (at) Vitsch.net>. All rights reserved.
6 1.1 joff *
7 1.1 joff * Redistribution and use in source and binary forms, with or without
8 1.1 joff * modification, are permitted provided that the following conditions
9 1.1 joff * are met:
10 1.1 joff * 1. Redistributions of source code must retain the above copyright
11 1.1 joff * notice, this list of conditions and the following disclaimer.
12 1.1 joff * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 joff * notice, this list of conditions and the following disclaimer in the
14 1.1 joff * documentation and/or other materials provided with the distribution.
15 1.1 joff * 3. All advertising materials mentioning features or use of this software
16 1.1 joff * must display the following acknowledgement:
17 1.1 joff * This product includes software developed by Daan Vreeken.
18 1.1 joff * 4. Neither the name of the author nor the names of any co-contributors
19 1.1 joff * may be used to endorse or promote products derived from this software
20 1.1 joff * without specific prior written permission.
21 1.1 joff *
22 1.1 joff * THIS SOFTWARE IS PROVIDED BY Daan Vreeken AND CONTRIBUTORS ``AS IS'' AND
23 1.1 joff * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 joff * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 joff * ARE DISCLAIMED. IN NO EVENT SHALL Daan Vreeken OR THE VOICES IN HIS HEAD
26 1.1 joff * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 1.1 joff * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 1.1 joff * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 1.1 joff * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 1.1 joff * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 1.1 joff * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32 1.1 joff * THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 joff */
34 1.1 joff
35 1.1 joff /*
36 1.1 joff * Atmel AT76c503 / AT76c503a / AT76c505 / AT76c505a USB WLAN driver
37 1.1 joff * version 0.5 - 2004-08-03
38 1.1 joff *
39 1.1 joff * Originally written by Daan Vreeken <Danovitsch @ Vitsch . net>
40 1.1 joff * http://vitsch.net/bsd/atuwi
41 1.1 joff *
42 1.1 joff * Contributed to by :
43 1.1 joff * Chris Whitehouse, Alistair Phillips, Peter Pilka, Martijn van Buul,
44 1.1 joff * Suihong Liang, Arjan van Leeuwen, Stuart Walsh
45 1.1 joff *
46 1.1 joff * Ported to OpenBSD by Theo de Raadt and David Gwynne.
47 1.1 joff * Ported to NetBSD by Jesse Off
48 1.1 joff */
49 1.1 joff
50 1.1 joff #include <sys/cdefs.h>
51 1.9 itojun __KERNEL_RCSID(0, "$NetBSD: if_atu.c,v 1.9 2005/03/03 08:10:35 itojun Exp $");
52 1.1 joff
53 1.1 joff #include "bpfilter.h"
54 1.1 joff
55 1.1 joff #include <sys/param.h>
56 1.1 joff #include <sys/sockio.h>
57 1.1 joff #include <sys/mbuf.h>
58 1.1 joff #include <sys/kernel.h>
59 1.1 joff #include <sys/socket.h>
60 1.1 joff #include <sys/systm.h>
61 1.1 joff #include <sys/malloc.h>
62 1.1 joff #include <sys/kthread.h>
63 1.1 joff #include <sys/queue.h>
64 1.1 joff #include <sys/device.h>
65 1.1 joff
66 1.1 joff #include <machine/bus.h>
67 1.1 joff
68 1.1 joff #include <dev/usb/usb.h>
69 1.1 joff #include <dev/usb/usbdi.h>
70 1.1 joff #include <dev/usb/usbdi_util.h>
71 1.1 joff #include <dev/usb/usbdivar.h>
72 1.1 joff
73 1.1 joff #include <dev/usb/usbdevs.h>
74 1.1 joff
75 1.1 joff #include <dev/microcode/atmel/atmel_intersil_fw.h>
76 1.1 joff #include <dev/microcode/atmel/atmel_rfmd2958-smc_fw.h>
77 1.1 joff #include <dev/microcode/atmel/atmel_rfmd2958_fw.h>
78 1.1 joff #include <dev/microcode/atmel/atmel_rfmd_fw.h>
79 1.1 joff
80 1.1 joff #if NBPFILTER > 0
81 1.1 joff #include <net/bpf.h>
82 1.6 joff #include <net/bpfdesc.h>
83 1.1 joff #endif
84 1.1 joff
85 1.1 joff #include <net/if.h>
86 1.1 joff #include <net/if_dl.h>
87 1.1 joff #include <net/if_media.h>
88 1.1 joff #include <net/if_ether.h>
89 1.1 joff
90 1.1 joff #ifdef INET
91 1.1 joff #include <netinet/in.h>
92 1.1 joff #include <netinet/if_ether.h>
93 1.1 joff #endif
94 1.1 joff
95 1.1 joff #include <net80211/ieee80211_var.h>
96 1.1 joff #include <net80211/ieee80211_radiotap.h>
97 1.1 joff
98 1.1 joff #ifdef USB_DEBUG
99 1.1 joff #define ATU_DEBUG
100 1.1 joff #endif
101 1.1 joff
102 1.1 joff #include <dev/usb/if_atureg.h>
103 1.1 joff
104 1.1 joff #ifdef ATU_DEBUG
105 1.1 joff #define DPRINTF(x) do { if (atudebug) printf x; } while (0)
106 1.1 joff #define DPRINTFN(n,x) do { if (atudebug>(n)) printf x; } while (0)
107 1.1 joff int atudebug = 1;
108 1.1 joff #else
109 1.1 joff #define DPRINTF(x)
110 1.1 joff #define DPRINTFN(n,x)
111 1.1 joff #endif
112 1.1 joff
113 1.1 joff /*
114 1.1 joff * Various supported device vendors/products/radio type.
115 1.1 joff */
116 1.1 joff struct atu_type atu_devs[] = {
117 1.1 joff { USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_BW002,
118 1.1 joff RadioRFMD, ATU_NO_QUIRK },
119 1.1 joff { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D6050,
120 1.1 joff RadioRFMD, ATU_NO_QUIRK },
121 1.1 joff { USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_AT76C503A,
122 1.1 joff RadioIntersil, ATU_NO_QUIRK },
123 1.1 joff { USB_VENDOR_LEXAR, USB_PRODUCT_LEXAR_2662WAR,
124 1.1 joff RadioRFMD, ATU_NO_QUIRK },
125 1.1 joff { USB_VENDOR_LINKSYS2, USB_PRODUCT_LINKSYS2_WUSB11,
126 1.1 joff RadioRFMD, ATU_NO_QUIRK },
127 1.1 joff { USB_VENDOR_LINKSYS3, USB_PRODUCT_LINKSYS3_WUSB11V28,
128 1.1 joff RadioRFMD2958, ATU_NO_QUIRK },
129 1.1 joff { USB_VENDOR_NETGEAR2, USB_PRODUCT_NETGEAR2_MA101B,
130 1.1 joff RadioRFMD, ATU_NO_QUIRK },
131 1.1 joff { USB_VENDOR_ACERP, USB_PRODUCT_ACERP_AWL400,
132 1.1 joff RadioRFMD, ATU_NO_QUIRK },
133 1.1 joff { USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_WL1130,
134 1.1 joff RadioRFMD2958, ATU_NO_QUIRK },
135 1.1 joff { USB_VENDOR_LINKSYS3, USB_PRODUCT_LINKSYS3_WUSB11V28,
136 1.1 joff RadioRFMD2958, ATU_NO_QUIRK },
137 1.1 joff { USB_VENDOR_AINCOMM, USB_PRODUCT_AINCOMM_AWU2000B,
138 1.1 joff RadioRFMD2958, ATU_NO_QUIRK },
139 1.1 joff /* SMC2662 V.4 */
140 1.1 joff { USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_AT76C505A,
141 1.1 joff RadioRFMD2958_SMC, ATU_QUIRK_NO_REMAP | ATU_QUIRK_FW_DELAY },
142 1.1 joff { USB_VENDOR_ACERP, USB_PRODUCT_ACERP_AWL300,
143 1.1 joff RadioIntersil, ATU_NO_QUIRK },
144 1.8 itojun #if 0
145 1.7 itojun { USB_VENDOR_OQO, USB_PRODUCT_OQO_WIFI01,
146 1.9 itojun RadioRFMD2958_SMC, ATU_QUIRK_NO_REMAP | ATU_QUIRK_FW_DELAY },
147 1.8 itojun #endif
148 1.1 joff };
149 1.1 joff
150 1.1 joff struct atu_radfirm {
151 1.1 joff enum atu_radio_type atur_type;
152 1.1 joff unsigned char *atur_internal;
153 1.1 joff size_t atur_internal_sz;
154 1.1 joff unsigned char *atur_external;
155 1.1 joff size_t atur_external_sz;
156 1.1 joff } atu_radfirm[] = {
157 1.5 perry { RadioRFMD,
158 1.1 joff atmel_fw_rfmd_int, sizeof(atmel_fw_rfmd_int),
159 1.1 joff atmel_fw_rfmd_ext, sizeof(atmel_fw_rfmd_ext) },
160 1.1 joff { RadioRFMD2958,
161 1.1 joff atmel_fw_rfmd2958_int, sizeof(atmel_fw_rfmd2958_int),
162 1.1 joff atmel_fw_rfmd2958_ext, sizeof(atmel_fw_rfmd2958_ext) },
163 1.1 joff { RadioRFMD2958_SMC,
164 1.1 joff atmel_fw_rfmd2958_smc_int, sizeof(atmel_fw_rfmd2958_smc_int),
165 1.1 joff atmel_fw_rfmd2958_smc_ext, sizeof(atmel_fw_rfmd2958_smc_ext) },
166 1.1 joff { RadioIntersil,
167 1.1 joff atmel_fw_intersil_int, sizeof(atmel_fw_intersil_int),
168 1.1 joff atmel_fw_intersil_ext, sizeof(atmel_fw_intersil_ext) }
169 1.1 joff };
170 1.1 joff
171 1.1 joff int atu_newbuf(struct atu_softc *, struct atu_chain *, struct mbuf *);
172 1.1 joff void atu_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
173 1.1 joff void atu_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
174 1.1 joff void atu_start(struct ifnet *);
175 1.1 joff int atu_ioctl(struct ifnet *, u_long, caddr_t);
176 1.1 joff int atu_init(struct ifnet *);
177 1.1 joff void atu_stop(struct ifnet *, int);
178 1.1 joff void atu_watchdog(struct ifnet *);
179 1.1 joff usbd_status atu_usb_request(struct atu_softc *sc, u_int8_t type,
180 1.1 joff u_int8_t request, u_int16_t value, u_int16_t index,
181 1.1 joff u_int16_t length, u_int8_t *data);
182 1.1 joff int atu_send_command(struct atu_softc *sc, u_int8_t *command, int size);
183 1.1 joff int atu_get_cmd_status(struct atu_softc *sc, u_int8_t cmd,
184 1.1 joff u_int8_t *status);
185 1.1 joff int atu_wait_completion(struct atu_softc *sc, u_int8_t cmd,
186 1.1 joff u_int8_t *status);
187 1.1 joff int atu_send_mib(struct atu_softc *sc, u_int8_t type,
188 1.1 joff u_int8_t size, u_int8_t index, void *data);
189 1.1 joff int atu_get_mib(struct atu_softc *sc, u_int8_t type,
190 1.1 joff u_int8_t size, u_int8_t index, u_int8_t *buf);
191 1.1 joff #if 0
192 1.1 joff int atu_start_ibss(struct atu_softc *sc);
193 1.1 joff #endif
194 1.1 joff int atu_start_scan(struct atu_softc *sc);
195 1.1 joff int atu_switch_radio(struct atu_softc *sc, int state);
196 1.1 joff int atu_initial_config(struct atu_softc *sc);
197 1.1 joff int atu_join(struct atu_softc *sc, struct ieee80211_node *node);
198 1.1 joff int8_t atu_get_dfu_state(struct atu_softc *sc);
199 1.1 joff u_int8_t atu_get_opmode(struct atu_softc *sc, u_int8_t *mode);
200 1.1 joff void atu_internal_firmware(struct device *);
201 1.1 joff void atu_external_firmware(struct device *);
202 1.1 joff int atu_get_card_config(struct atu_softc *sc);
203 1.1 joff int atu_media_change(struct ifnet *ifp);
204 1.1 joff void atu_media_status(struct ifnet *ifp, struct ifmediareq *req);
205 1.1 joff int atu_tx_list_init(struct atu_softc *);
206 1.1 joff int atu_rx_list_init(struct atu_softc *);
207 1.1 joff void atu_xfer_list_free(struct atu_softc *sc, struct atu_chain *ch,
208 1.1 joff int listlen);
209 1.1 joff
210 1.1 joff #ifdef ATU_DEBUG
211 1.1 joff void atu_debug_print(struct atu_softc *sc);
212 1.1 joff #endif
213 1.1 joff
214 1.1 joff void atu_task(void *);
215 1.1 joff int atu_newstate(struct ieee80211com *, enum ieee80211_state, int);
216 1.1 joff int atu_tx_start(struct atu_softc *, struct ieee80211_node *,
217 1.1 joff struct atu_chain *, struct mbuf *);
218 1.1 joff void atu_complete_attach(struct atu_softc *);
219 1.1 joff u_int8_t atu_calculate_padding(int);
220 1.1 joff
221 1.1 joff USB_DECLARE_DRIVER(atu);
222 1.1 joff
223 1.1 joff usbd_status
224 1.1 joff atu_usb_request(struct atu_softc *sc, u_int8_t type,
225 1.1 joff u_int8_t request, u_int16_t value, u_int16_t index, u_int16_t length,
226 1.1 joff u_int8_t *data)
227 1.1 joff {
228 1.1 joff usb_device_request_t req;
229 1.1 joff usbd_xfer_handle xfer;
230 1.1 joff usbd_status err;
231 1.1 joff int total_len = 0, s;
232 1.1 joff
233 1.1 joff req.bmRequestType = type;
234 1.1 joff req.bRequest = request;
235 1.1 joff USETW(req.wValue, value);
236 1.1 joff USETW(req.wIndex, index);
237 1.1 joff USETW(req.wLength, length);
238 1.1 joff
239 1.1 joff #ifdef ATU_DEBUG
240 1.1 joff if (atudebug) {
241 1.1 joff DPRINTFN(20, ("%s: req=%02x val=%02x ind=%02x "
242 1.1 joff "len=%02x\n", USBDEVNAME(sc->atu_dev), request,
243 1.1 joff value, index, length));
244 1.1 joff }
245 1.1 joff #endif /* ATU_DEBUG */
246 1.1 joff
247 1.1 joff s = splnet();
248 1.1 joff
249 1.1 joff xfer = usbd_alloc_xfer(sc->atu_udev);
250 1.1 joff usbd_setup_default_xfer(xfer, sc->atu_udev, 0, 500000, &req, data,
251 1.1 joff length, USBD_SHORT_XFER_OK, 0);
252 1.1 joff
253 1.1 joff err = usbd_sync_transfer(xfer);
254 1.1 joff
255 1.1 joff usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
256 1.1 joff
257 1.1 joff #ifdef ATU_DEBUG
258 1.1 joff if (atudebug) {
259 1.1 joff if (type & UT_READ) {
260 1.1 joff DPRINTFN(20, ("%s: transfered 0x%x bytes in\n",
261 1.1 joff USBDEVNAME(sc->atu_dev), total_len));
262 1.1 joff } else {
263 1.1 joff if (total_len != length)
264 1.1 joff DPRINTF(("%s: wrote only %x bytes\n",
265 1.1 joff USBDEVNAME(sc->atu_dev), total_len));
266 1.1 joff }
267 1.1 joff }
268 1.1 joff #endif /* ATU_DEBUG */
269 1.1 joff
270 1.1 joff usbd_free_xfer(xfer);
271 1.1 joff
272 1.1 joff splx(s);
273 1.1 joff return(err);
274 1.1 joff }
275 1.1 joff
276 1.1 joff int
277 1.1 joff atu_send_command(struct atu_softc *sc, u_int8_t *command, int size)
278 1.1 joff {
279 1.1 joff return atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e, 0x0000,
280 1.1 joff 0x0000, size, command);
281 1.1 joff }
282 1.1 joff
283 1.1 joff int
284 1.1 joff atu_get_cmd_status(struct atu_softc *sc, u_int8_t cmd, u_int8_t *status)
285 1.1 joff {
286 1.1 joff /*
287 1.1 joff * all other drivers (including Windoze) request 40 bytes of status
288 1.1 joff * and get a short-xfer of just 6 bytes. we can save 34 bytes of
289 1.1 joff * buffer if we just request those 6 bytes in the first place :)
290 1.1 joff */
291 1.1 joff /*
292 1.1 joff return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x22, cmd,
293 1.1 joff 0x0000, 40, status);
294 1.1 joff */
295 1.1 joff return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x22, cmd,
296 1.1 joff 0x0000, 6, status);
297 1.1 joff }
298 1.1 joff
299 1.1 joff int
300 1.1 joff atu_wait_completion(struct atu_softc *sc, u_int8_t cmd, u_int8_t *status)
301 1.1 joff {
302 1.1 joff int idle_count = 0, err;
303 1.1 joff u_int8_t statusreq[6];
304 1.1 joff
305 1.1 joff DPRINTFN(15, ("%s: wait-completion: cmd=%02x\n",
306 1.1 joff USBDEVNAME(sc->atu_dev), cmd));
307 1.1 joff
308 1.1 joff while (1) {
309 1.1 joff err = atu_get_cmd_status(sc, cmd, statusreq);
310 1.1 joff if (err)
311 1.1 joff return err;
312 1.1 joff
313 1.1 joff #ifdef ATU_DEBUG
314 1.1 joff if (atudebug) {
315 1.1 joff DPRINTFN(20, ("%s: status=%s cmd=%02x\n",
316 1.1 joff USBDEVNAME(sc->atu_dev),
317 1.1 joff ether_sprintf(statusreq), cmd));
318 1.1 joff }
319 1.1 joff #endif /* ATU_DEBUG */
320 1.1 joff
321 1.1 joff /*
322 1.1 joff * during normal operations waiting on STATUS_IDLE
323 1.1 joff * will never happen more than once
324 1.1 joff */
325 1.1 joff if ((statusreq[5] == STATUS_IDLE) && (idle_count++ > 20)) {
326 1.1 joff DPRINTF(("%s: idle_count > 20!\n",
327 1.1 joff USBDEVNAME(sc->atu_dev)));
328 1.1 joff return 0;
329 1.1 joff }
330 1.1 joff
331 1.1 joff if ((statusreq[5] != STATUS_IN_PROGRESS) &&
332 1.1 joff (statusreq[5] != STATUS_IDLE)) {
333 1.1 joff if (status != NULL)
334 1.1 joff *status = statusreq[5];
335 1.1 joff return 0;
336 1.1 joff }
337 1.1 joff usbd_delay_ms(sc->atu_udev, 25);
338 1.1 joff }
339 1.1 joff }
340 1.1 joff
341 1.1 joff int
342 1.1 joff atu_send_mib(struct atu_softc *sc, u_int8_t type, u_int8_t size,
343 1.1 joff u_int8_t index, void *data)
344 1.1 joff {
345 1.1 joff int err;
346 1.1 joff struct atu_cmd_set_mib request;
347 1.1 joff
348 1.1 joff /*
349 1.1 joff * We don't construct a MIB packet first and then memcpy it into an
350 1.1 joff * Atmel-command-packet, we just construct it the right way at once :)
351 1.1 joff */
352 1.1 joff
353 1.1 joff memset(&request, 0, sizeof(request));
354 1.1 joff
355 1.1 joff request.AtCmd = CMD_SET_MIB;
356 1.1 joff USETW(request.AtSize, size + 4);
357 1.1 joff
358 1.1 joff request.MIBType = type;
359 1.1 joff request.MIBSize = size;
360 1.1 joff request.MIBIndex = index;
361 1.1 joff request.MIBReserved = 0;
362 1.1 joff
363 1.1 joff /*
364 1.1 joff * For 1 and 2 byte requests we assume a direct value,
365 1.1 joff * everything bigger than 2 bytes we assume a pointer to the data
366 1.1 joff */
367 1.1 joff switch (size) {
368 1.1 joff case 0:
369 1.1 joff break;
370 1.1 joff case 1:
371 1.1 joff request.data[0]=(long)data & 0x000000ff;
372 1.1 joff break;
373 1.1 joff case 2:
374 1.1 joff request.data[0]=(long)data & 0x000000ff;
375 1.1 joff request.data[1]=(long)data >> 8;
376 1.1 joff break;
377 1.1 joff default:
378 1.1 joff memcpy(request.data, data, size);
379 1.1 joff break;
380 1.1 joff }
381 1.1 joff
382 1.1 joff err = atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e, 0x0000,
383 1.1 joff 0x0000, size+8, (uByte *)&request);
384 1.1 joff if (err)
385 1.1 joff return (err);
386 1.1 joff
387 1.1 joff DPRINTFN(15, ("%s: sendmib : waitcompletion...\n",
388 1.1 joff USBDEVNAME(sc->atu_dev)));
389 1.1 joff return atu_wait_completion(sc, CMD_SET_MIB, NULL);
390 1.1 joff }
391 1.1 joff
392 1.1 joff int
393 1.1 joff atu_get_mib(struct atu_softc *sc, u_int8_t type, u_int8_t size,
394 1.1 joff u_int8_t index, u_int8_t *buf)
395 1.1 joff {
396 1.1 joff
397 1.1 joff /* linux/at76c503.c - 478 */
398 1.1 joff return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x033,
399 1.1 joff type << 8, index, size, buf);
400 1.1 joff }
401 1.1 joff
402 1.1 joff #if 0
403 1.1 joff int
404 1.1 joff atu_start_ibss(struct atu_softc *sc)
405 1.1 joff {
406 1.1 joff int err;
407 1.1 joff struct atu_cmd_start_ibss Request;
408 1.1 joff
409 1.1 joff Request.Cmd = CMD_START_IBSS;
410 1.1 joff Request.Reserved = 0;
411 1.1 joff Request.Size = sizeof(Request) - 4;
412 1.1 joff
413 1.1 joff memset(Request.BSSID, 0x00, sizeof(Request.BSSID));
414 1.1 joff memset(Request.SSID, 0x00, sizeof(Request.SSID));
415 1.1 joff memcpy(Request.SSID, sc->atu_ssid, sc->atu_ssidlen);
416 1.1 joff Request.SSIDSize = sc->atu_ssidlen;
417 1.1 joff if (sc->atu_desired_channel != IEEE80211_CHAN_ANY)
418 1.1 joff Request.Channel = (u_int8_t)sc->atu_desired_channel;
419 1.1 joff else
420 1.1 joff Request.Channel = ATU_DEFAULT_CHANNEL;
421 1.1 joff Request.BSSType = AD_HOC_MODE;
422 1.1 joff memset(Request.Res, 0x00, sizeof(Request.Res));
423 1.1 joff
424 1.1 joff /* Write config to adapter */
425 1.1 joff err = atu_send_command(sc, (u_int8_t *)&Request, sizeof(Request));
426 1.1 joff if (err) {
427 1.1 joff DPRINTF(("%s: start ibss failed!\n",
428 1.1 joff USBDEVNAME(sc->atu_dev)));
429 1.1 joff return err;
430 1.1 joff }
431 1.1 joff
432 1.1 joff /* Wait for the adapter to do it's thing */
433 1.1 joff err = atu_wait_completion(sc, CMD_START_IBSS, NULL);
434 1.1 joff if (err) {
435 1.1 joff DPRINTF(("%s: error waiting for start_ibss\n",
436 1.1 joff USBDEVNAME(sc->atu_dev)));
437 1.1 joff return err;
438 1.1 joff }
439 1.1 joff
440 1.1 joff /* Get the current BSSID */
441 1.1 joff err = atu_get_mib(sc, MIB_MAC_MGMT__CURRENT_BSSID, sc->atu_bssid);
442 1.1 joff if (err) {
443 1.1 joff DPRINTF(("%s: could not get BSSID!\n",
444 1.1 joff USBDEVNAME(sc->atu_dev)));
445 1.1 joff return err;
446 1.1 joff }
447 1.1 joff
448 1.1 joff DPRINTF(("%s: started a new IBSS (BSSID=%s)\n",
449 1.1 joff USBDEVNAME(sc->atu_dev), ether_sprintf(sc->atu_bssid)));
450 1.1 joff return 0;
451 1.1 joff }
452 1.1 joff #endif
453 1.1 joff
454 1.1 joff int
455 1.1 joff atu_start_scan(struct atu_softc *sc)
456 1.1 joff {
457 1.1 joff struct atu_cmd_do_scan Scan;
458 1.1 joff usbd_status err;
459 1.1 joff int Cnt;
460 1.1 joff
461 1.1 joff memset(&Scan, 0, sizeof(Scan));
462 1.1 joff
463 1.1 joff Scan.Cmd = CMD_START_SCAN;
464 1.1 joff Scan.Reserved = 0;
465 1.1 joff USETW(Scan.Size, sizeof(Scan) - 4);
466 1.1 joff
467 1.1 joff /* use the broadcast BSSID (in active scan) */
468 1.1 joff for (Cnt=0; Cnt<6; Cnt++)
469 1.1 joff Scan.BSSID[Cnt] = 0xff;
470 1.1 joff
471 1.1 joff memset(Scan.SSID, 0x00, sizeof(Scan.SSID));
472 1.1 joff memcpy(Scan.SSID, sc->atu_ssid, sc->atu_ssidlen);
473 1.1 joff Scan.SSID_Len = sc->atu_ssidlen;
474 1.1 joff
475 1.1 joff /* default values for scan */
476 1.1 joff Scan.ScanType = ATU_SCAN_ACTIVE;
477 1.1 joff if (sc->atu_desired_channel != IEEE80211_CHAN_ANY)
478 1.1 joff Scan.Channel = (u_int8_t)sc->atu_desired_channel;
479 1.1 joff else
480 1.1 joff Scan.Channel = sc->atu_channel;
481 1.1 joff
482 1.1 joff /* we like scans to be quick :) */
483 1.1 joff /* the time we wait before sending probe's */
484 1.1 joff USETW(Scan.ProbeDelay, 0);
485 1.1 joff /* the time we stay on one channel */
486 1.1 joff USETW(Scan.MinChannelTime, 100);
487 1.1 joff USETW(Scan.MaxChannelTime, 200);
488 1.1 joff /* wether or not we scan all channels */
489 1.1 joff Scan.InternationalScan = 0xc1;
490 1.1 joff
491 1.1 joff #ifdef ATU_DEBUG
492 1.1 joff if (atudebug) {
493 1.1 joff DPRINTFN(20, ("%s: scan cmd len=%02lx\n",
494 1.2 joff USBDEVNAME(sc->atu_dev), (unsigned long)sizeof(Scan)));
495 1.1 joff }
496 1.1 joff #endif /* ATU_DEBUG */
497 1.1 joff
498 1.1 joff /* Write config to adapter */
499 1.1 joff err = atu_send_command(sc, (u_int8_t *)&Scan, sizeof(Scan));
500 1.1 joff if (err)
501 1.1 joff return err;
502 1.1 joff
503 1.1 joff /*
504 1.1 joff * We don't wait for the command to finish... the mgmt-thread will do
505 1.1 joff * that for us
506 1.1 joff */
507 1.1 joff /*
508 1.1 joff err = atu_wait_completion(sc, CMD_START_SCAN, NULL);
509 1.1 joff if (err)
510 1.1 joff return err;
511 1.1 joff */
512 1.1 joff return 0;
513 1.1 joff }
514 1.1 joff
515 1.1 joff int
516 1.1 joff atu_switch_radio(struct atu_softc *sc, int state)
517 1.1 joff {
518 1.1 joff usbd_status err;
519 1.1 joff struct atu_cmd CmdRadio;
520 1.1 joff
521 1.1 joff if (sc->atu_radio == RadioIntersil) {
522 1.1 joff /*
523 1.1 joff * Intersil doesn't seem to need/support switching the radio
524 1.1 joff * on/off
525 1.1 joff */
526 1.1 joff return 0;
527 1.1 joff }
528 1.1 joff
529 1.1 joff memset(&CmdRadio, 0, sizeof(CmdRadio));
530 1.1 joff CmdRadio.Cmd = CMD_RADIO_ON;
531 1.1 joff
532 1.1 joff if (sc->atu_radio_on != state) {
533 1.1 joff if (state == 0)
534 1.1 joff CmdRadio.Cmd = CMD_RADIO_OFF;
535 1.1 joff
536 1.1 joff err = atu_send_command(sc, (u_int8_t *)&CmdRadio,
537 1.1 joff sizeof(CmdRadio));
538 1.1 joff if (err)
539 1.1 joff return err;
540 1.1 joff
541 1.1 joff err = atu_wait_completion(sc, CmdRadio.Cmd, NULL);
542 1.1 joff if (err)
543 1.1 joff return err;
544 1.1 joff
545 1.1 joff DPRINTFN(10, ("%s: radio turned %s\n",
546 1.1 joff USBDEVNAME(sc->atu_dev), state ? "on" : "off"));
547 1.1 joff sc->atu_radio_on = state;
548 1.1 joff }
549 1.1 joff return 0;
550 1.1 joff }
551 1.1 joff
552 1.1 joff int
553 1.1 joff atu_initial_config(struct atu_softc *sc)
554 1.1 joff {
555 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
556 1.6 joff u_int32_t i;
557 1.1 joff usbd_status err;
558 1.1 joff /* u_int8_t rates[4] = {0x82, 0x84, 0x8B, 0x96};*/
559 1.1 joff u_int8_t rates[4] = {0x82, 0x04, 0x0B, 0x16};
560 1.1 joff struct atu_cmd_card_config cmd;
561 1.1 joff u_int8_t reg_domain;
562 1.1 joff
563 1.1 joff DPRINTFN(10, ("%s: sending mac-addr\n", USBDEVNAME(sc->atu_dev)));
564 1.1 joff err = atu_send_mib(sc, MIB_MAC_ADDR__ADDR, ic->ic_myaddr);
565 1.1 joff if (err) {
566 1.1 joff DPRINTF(("%s: error setting mac-addr\n",
567 1.1 joff USBDEVNAME(sc->atu_dev)));
568 1.1 joff return err;
569 1.1 joff }
570 1.1 joff
571 1.1 joff /*
572 1.1 joff DPRINTF(("%s: sending reg-domain\n", USBDEVNAME(sc->atu_dev)));
573 1.1 joff err = atu_send_mib(sc, MIB_PHY__REG_DOMAIN, NR(0x30));
574 1.1 joff if (err) {
575 1.1 joff DPRINTF(("%s: error setting mac-addr\n",
576 1.1 joff USBDEVNAME(sc->atu_dev)));
577 1.1 joff return err;
578 1.1 joff }
579 1.1 joff */
580 1.1 joff
581 1.1 joff memset(&cmd, 0, sizeof(cmd));
582 1.1 joff cmd.Cmd = CMD_STARTUP;
583 1.1 joff cmd.Reserved = 0;
584 1.1 joff USETW(cmd.Size, sizeof(cmd) - 4);
585 1.1 joff
586 1.1 joff if (sc->atu_desired_channel != IEEE80211_CHAN_ANY)
587 1.1 joff cmd.Channel = (u_int8_t)sc->atu_desired_channel;
588 1.1 joff else
589 1.1 joff cmd.Channel = sc->atu_channel;
590 1.1 joff cmd.AutoRateFallback = 1;
591 1.1 joff memcpy(cmd.BasicRateSet, rates, 4);
592 1.1 joff
593 1.1 joff /* ShortRetryLimit should be 7 according to 802.11 spec */
594 1.1 joff cmd.ShortRetryLimit = 7;
595 1.1 joff USETW(cmd.RTS_Threshold, 2347);
596 1.1 joff USETW(cmd.FragThreshold, 2346);
597 1.1 joff
598 1.1 joff /* Doesn't seem to work, but we'll set it to 1 anyway */
599 1.1 joff cmd.PromiscuousMode = 1;
600 1.1 joff
601 1.1 joff /* this goes into the beacon we transmit */
602 1.6 joff if (ic->ic_flags & IEEE80211_F_PRIVACY)
603 1.6 joff cmd.PrivacyInvoked = 1;
604 1.6 joff else
605 1.1 joff cmd.PrivacyInvoked = 0;
606 1.1 joff
607 1.1 joff cmd.ExcludeUnencrypted = 0;
608 1.6 joff
609 1.6 joff switch (ic->ic_nw_keys[ic->ic_wep_txkey].wk_len) {
610 1.6 joff case 5:
611 1.6 joff cmd.EncryptionType = ATU_WEP_40BITS;
612 1.6 joff break;
613 1.6 joff case 13:
614 1.6 joff cmd.EncryptionType = ATU_WEP_104BITS;
615 1.6 joff break;
616 1.6 joff default:
617 1.6 joff cmd.EncryptionType = ATU_WEP_OFF;
618 1.6 joff break;
619 1.6 joff }
620 1.6 joff
621 1.6 joff
622 1.6 joff cmd.WEP_DefaultKeyID = ic->ic_wep_txkey;
623 1.6 joff for (i = 0; i < IEEE80211_WEP_NKID; i++) {
624 1.6 joff memcpy(cmd.WEP_DefaultKey[i], ic->ic_nw_keys[i].wk_key,
625 1.6 joff ic->ic_nw_keys[i].wk_len);
626 1.6 joff }
627 1.1 joff
628 1.1 joff /* Setting the SSID here doesn't seem to do anything */
629 1.1 joff memset(cmd.SSID, 0, sizeof(cmd.SSID));
630 1.1 joff memcpy(cmd.SSID, sc->atu_ssid, sc->atu_ssidlen);
631 1.1 joff cmd.SSID_Len = sc->atu_ssidlen;
632 1.1 joff
633 1.1 joff cmd.ShortPreamble = 0;
634 1.1 joff USETW(cmd.BeaconPeriod, 100);
635 1.1 joff /* cmd.BeaconPeriod = 65535; */
636 1.1 joff
637 1.1 joff /*
638 1.1 joff * TODO:
639 1.1 joff * read reg domain MIB_PHY @ 0x17 (1 byte), (reply = 0x30)
640 1.1 joff * we should do something usefull with this info. right now it's just
641 1.1 joff * ignored
642 1.1 joff */
643 1.1 joff err = atu_get_mib(sc, MIB_PHY__REG_DOMAIN, ®_domain);
644 1.1 joff if (err) {
645 1.1 joff DPRINTF(("%s: could not get regdomain!\n",
646 1.1 joff USBDEVNAME(sc->atu_dev)));
647 1.1 joff } else {
648 1.1 joff DPRINTF(("%s: in reg domain 0x%x according to the "
649 1.1 joff "adapter\n", USBDEVNAME(sc->atu_dev), reg_domain));
650 1.1 joff }
651 1.1 joff
652 1.1 joff #ifdef ATU_DEBUG
653 1.1 joff if (atudebug) {
654 1.1 joff DPRINTFN(20, ("%s: configlen=%02lx\n", USBDEVNAME(sc->atu_dev),
655 1.2 joff (unsigned long)sizeof(cmd)));
656 1.1 joff }
657 1.1 joff #endif /* ATU_DEBUG */
658 1.1 joff
659 1.1 joff /* Windoze : driver says exclude-unencrypted=1 & encr-type=1 */
660 1.1 joff
661 1.1 joff err = atu_send_command(sc, (u_int8_t *)&cmd, sizeof(cmd));
662 1.1 joff if (err)
663 1.1 joff return err;
664 1.1 joff err = atu_wait_completion(sc, CMD_STARTUP, NULL);
665 1.1 joff if (err)
666 1.1 joff return err;
667 1.1 joff
668 1.1 joff /* Turn on radio now */
669 1.1 joff err = atu_switch_radio(sc, 1);
670 1.1 joff if (err)
671 1.1 joff return err;
672 1.1 joff
673 1.1 joff /* preamble type = short */
674 1.1 joff err = atu_send_mib(sc, MIB_LOCAL__PREAMBLE, NR(PREAMBLE_SHORT));
675 1.1 joff if (err)
676 1.1 joff return err;
677 1.1 joff
678 1.1 joff /* frag = 1536 */
679 1.1 joff err = atu_send_mib(sc, MIB_MAC__FRAG, NR(2346));
680 1.1 joff if (err)
681 1.1 joff return err;
682 1.1 joff
683 1.1 joff /* rts = 1536 */
684 1.1 joff err = atu_send_mib(sc, MIB_MAC__RTS, NR(2347));
685 1.1 joff if (err)
686 1.1 joff return err;
687 1.1 joff
688 1.1 joff /* auto rate fallback = 1 */
689 1.1 joff err = atu_send_mib(sc, MIB_LOCAL__AUTO_RATE_FALLBACK, NR(1));
690 1.1 joff if (err)
691 1.1 joff return err;
692 1.1 joff
693 1.1 joff /* power mode = full on, no power saving */
694 1.1 joff err = atu_send_mib(sc, MIB_MAC_MGMT__POWER_MODE,
695 1.1 joff NR(POWER_MODE_ACTIVE));
696 1.1 joff if (err)
697 1.1 joff return err;
698 1.1 joff
699 1.1 joff DPRINTFN(10, ("%s: completed initial config\n",
700 1.1 joff USBDEVNAME(sc->atu_dev)));
701 1.1 joff return 0;
702 1.1 joff }
703 1.1 joff
704 1.1 joff int
705 1.1 joff atu_join(struct atu_softc *sc, struct ieee80211_node *node)
706 1.1 joff {
707 1.1 joff struct atu_cmd_join join;
708 1.1 joff u_int8_t status;
709 1.1 joff usbd_status err;
710 1.1 joff
711 1.1 joff memset(&join, 0, sizeof(join));
712 1.1 joff
713 1.1 joff join.Cmd = CMD_JOIN;
714 1.1 joff join.Reserved = 0x00;
715 1.1 joff USETW(join.Size, sizeof(join) - 4);
716 1.1 joff
717 1.1 joff DPRINTFN(15, ("%s: pre-join sc->atu_bssid=%s\n",
718 1.1 joff USBDEVNAME(sc->atu_dev), ether_sprintf(sc->atu_bssid)));
719 1.1 joff DPRINTFN(15, ("%s: mode=%d\n", USBDEVNAME(sc->atu_dev),
720 1.1 joff sc->atu_mode));
721 1.1 joff memcpy(join.bssid, node->ni_bssid, IEEE80211_ADDR_LEN);
722 1.1 joff memset(join.essid, 0x00, 32);
723 1.1 joff memcpy(join.essid, node->ni_essid, node->ni_esslen);
724 1.1 joff join.essid_size = node->ni_esslen;
725 1.1 joff if (node->ni_capinfo & IEEE80211_CAPINFO_IBSS)
726 1.1 joff join.bss_type = AD_HOC_MODE;
727 1.1 joff else
728 1.1 joff join.bss_type = INFRASTRUCTURE_MODE;
729 1.1 joff join.channel = ieee80211_chan2ieee(&sc->sc_ic, node->ni_chan);
730 1.1 joff
731 1.1 joff USETW(join.timeout, ATU_JOIN_TIMEOUT);
732 1.1 joff join.reserved = 0x00;
733 1.1 joff
734 1.1 joff DPRINTFN(10, ("%s: trying to join BSSID=%s\n",
735 1.1 joff USBDEVNAME(sc->atu_dev), ether_sprintf(join.bssid)));
736 1.1 joff err = atu_send_command(sc, (u_int8_t *)&join, sizeof(join));
737 1.1 joff if (err) {
738 1.1 joff DPRINTF(("%s: ERROR trying to join IBSS\n",
739 1.1 joff USBDEVNAME(sc->atu_dev)));
740 1.1 joff return err;
741 1.1 joff }
742 1.1 joff err = atu_wait_completion(sc, CMD_JOIN, &status);
743 1.1 joff if (err) {
744 1.1 joff DPRINTF(("%s: error joining BSS!\n",
745 1.1 joff USBDEVNAME(sc->atu_dev)));
746 1.1 joff return err;
747 1.1 joff }
748 1.1 joff if (status != STATUS_COMPLETE) {
749 1.1 joff DPRINTF(("%s: error joining... [status=%02x]\n",
750 1.1 joff USBDEVNAME(sc->atu_dev), status));
751 1.1 joff return status;
752 1.1 joff } else {
753 1.1 joff DPRINTFN(10, ("%s: joined BSS\n", USBDEVNAME(sc->atu_dev)));
754 1.1 joff }
755 1.1 joff return err;
756 1.1 joff }
757 1.1 joff
758 1.1 joff /*
759 1.1 joff * Get the state of the DFU unit
760 1.1 joff */
761 1.1 joff int8_t
762 1.1 joff atu_get_dfu_state(struct atu_softc *sc)
763 1.1 joff {
764 1.1 joff u_int8_t state;
765 1.1 joff
766 1.1 joff if (atu_usb_request(sc, DFU_GETSTATE, 0, 0, 1, &state))
767 1.1 joff return -1;
768 1.1 joff return state;
769 1.1 joff }
770 1.1 joff
771 1.1 joff /*
772 1.1 joff * Get MAC opmode
773 1.1 joff */
774 1.1 joff u_int8_t
775 1.1 joff atu_get_opmode(struct atu_softc *sc, u_int8_t *mode)
776 1.1 joff {
777 1.1 joff
778 1.1 joff return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x33, 0x0001,
779 1.1 joff 0x0000, 1, mode);
780 1.1 joff }
781 1.1 joff
782 1.1 joff /*
783 1.1 joff * Upload the internal firmware into the device
784 1.1 joff */
785 1.1 joff void
786 1.1 joff atu_internal_firmware(struct device *arg)
787 1.1 joff {
788 1.1 joff struct atu_softc *sc = (struct atu_softc *)arg;
789 1.1 joff u_char state, *ptr = NULL, *firm = NULL, status[6];
790 1.1 joff int block_size, block = 0, err, i;
791 1.1 joff size_t bytes_left = 0;
792 1.1 joff
793 1.1 joff /*
794 1.1 joff * Uploading firmware is done with the DFU (Device Firmware Upgrade)
795 1.1 joff * interface. See "Universal Serial Bus - Device Class Specification
796 1.1 joff * for Device Firmware Upgrade" pdf for details of the protocol.
797 1.1 joff * Maybe this could be moved to a seperate 'firmware driver' once more
798 1.1 joff * device drivers need it... For now we'll just do it here.
799 1.1 joff *
800 1.1 joff * Just for your information, the Atmel's DFU descriptor looks like
801 1.1 joff * this:
802 1.1 joff *
803 1.1 joff * 07 size
804 1.1 joff * 21 type
805 1.1 joff * 01 capabilities : only firmware download, need reset
806 1.1 joff * after download
807 1.1 joff * 13 05 detach timeout : max 1299ms between DFU_DETACH and
808 1.1 joff * reset
809 1.1 joff * 00 04 max bytes of firmware per transaction : 1024
810 1.1 joff */
811 1.1 joff
812 1.1 joff /* Choose the right firmware for the device */
813 1.1 joff for (i = 0; i < sizeof(atu_radfirm)/sizeof(atu_radfirm[0]); i++)
814 1.1 joff if (sc->atu_radio == atu_radfirm[i].atur_type) {
815 1.1 joff firm = atu_radfirm[i].atur_internal;
816 1.1 joff bytes_left = atu_radfirm[i].atur_internal_sz;
817 1.1 joff }
818 1.1 joff
819 1.1 joff if (firm == NULL) {
820 1.1 joff printf("%s: no firmware found\n", USBDEVNAME(sc->atu_dev));
821 1.1 joff return;
822 1.1 joff }
823 1.1 joff
824 1.1 joff ptr = firm;
825 1.1 joff state = atu_get_dfu_state(sc);
826 1.1 joff
827 1.1 joff while (block >= 0 && state > 0) {
828 1.1 joff switch (state) {
829 1.1 joff case DFUState_DnLoadSync:
830 1.1 joff /* get DFU status */
831 1.1 joff err = atu_usb_request(sc, DFU_GETSTATUS, 0, 0 , 6,
832 1.1 joff status);
833 1.1 joff if (err) {
834 1.1 joff DPRINTF(("%s: dfu_getstatus failed!\n",
835 1.1 joff USBDEVNAME(sc->atu_dev)));
836 1.1 joff return;
837 1.1 joff }
838 1.1 joff /* success means state => DnLoadIdle */
839 1.1 joff state = DFUState_DnLoadIdle;
840 1.1 joff continue;
841 1.1 joff break;
842 1.1 joff
843 1.1 joff case DFUState_DFUIdle:
844 1.1 joff case DFUState_DnLoadIdle:
845 1.1 joff if (bytes_left>=DFU_MaxBlockSize)
846 1.1 joff block_size = DFU_MaxBlockSize;
847 1.1 joff else
848 1.1 joff block_size = bytes_left;
849 1.1 joff DPRINTFN(15, ("%s: firmware block %d\n",
850 1.1 joff USBDEVNAME(sc->atu_dev), block));
851 1.1 joff
852 1.1 joff err = atu_usb_request(sc, DFU_DNLOAD, block++, 0,
853 1.1 joff block_size, ptr);
854 1.1 joff if (err) {
855 1.1 joff DPRINTF(("%s: dfu_dnload failed\n",
856 1.1 joff USBDEVNAME(sc->atu_dev)));
857 1.1 joff return;
858 1.1 joff }
859 1.1 joff
860 1.1 joff ptr += block_size;
861 1.1 joff bytes_left -= block_size;
862 1.1 joff if (block_size == 0)
863 1.1 joff block = -1;
864 1.1 joff break;
865 1.1 joff
866 1.1 joff default:
867 1.1 joff usbd_delay_ms(sc->atu_udev, 100);
868 1.1 joff DPRINTFN(20, ("%s: sleeping for a while\n",
869 1.1 joff USBDEVNAME(sc->atu_dev)));
870 1.1 joff break;
871 1.1 joff }
872 1.1 joff
873 1.1 joff state = atu_get_dfu_state(sc);
874 1.1 joff }
875 1.1 joff
876 1.1 joff if (state != DFUState_ManifestSync) {
877 1.1 joff DPRINTF(("%s: state != manifestsync... eek!\n",
878 1.1 joff USBDEVNAME(sc->atu_dev)));
879 1.1 joff }
880 1.1 joff
881 1.1 joff err = atu_usb_request(sc, DFU_GETSTATUS, 0, 0, 6, status);
882 1.1 joff if (err) {
883 1.1 joff DPRINTF(("%s: dfu_getstatus failed!\n",
884 1.1 joff USBDEVNAME(sc->atu_dev)));
885 1.1 joff return;
886 1.1 joff }
887 1.1 joff
888 1.1 joff DPRINTFN(15, ("%s: sending remap\n", USBDEVNAME(sc->atu_dev)));
889 1.1 joff err = atu_usb_request(sc, DFU_REMAP, 0, 0, 0, NULL);
890 1.1 joff if ((err) && (! sc->atu_quirk & ATU_QUIRK_NO_REMAP)) {
891 1.1 joff DPRINTF(("%s: remap failed!\n", USBDEVNAME(sc->atu_dev)));
892 1.1 joff return;
893 1.1 joff }
894 1.1 joff
895 1.1 joff /* after a lot of trying and measuring I found out the device needs
896 1.1 joff * about 56 miliseconds after sending the remap command before
897 1.1 joff * it's ready to communicate again. So we'll wait just a little bit
898 1.1 joff * longer than that to be sure...
899 1.1 joff */
900 1.1 joff usbd_delay_ms(sc->atu_udev, 56+100);
901 1.1 joff
902 1.1 joff printf("%s: reattaching after firmware upload\n",
903 1.1 joff USBDEVNAME(sc->atu_dev));
904 1.1 joff usb_needs_reattach(sc->atu_udev);
905 1.1 joff }
906 1.1 joff
907 1.1 joff void
908 1.1 joff atu_external_firmware(struct device *arg)
909 1.1 joff {
910 1.1 joff struct atu_softc *sc = (struct atu_softc *)arg;
911 1.1 joff u_char *ptr = NULL, *firm = NULL;
912 1.1 joff int block_size, block = 0, err, i;
913 1.1 joff size_t bytes_left = 0;
914 1.1 joff
915 1.1 joff for (i = 0; i < sizeof(atu_radfirm)/sizeof(atu_radfirm[0]); i++)
916 1.1 joff if (sc->atu_radio == atu_radfirm[i].atur_type) {
917 1.1 joff firm = atu_radfirm[i].atur_external;
918 1.1 joff bytes_left = atu_radfirm[i].atur_external_sz;
919 1.1 joff }
920 1.1 joff
921 1.1 joff if (firm == NULL) {
922 1.1 joff printf("%s: no firmware found\n", USBDEVNAME(sc->atu_dev));
923 1.1 joff return;
924 1.1 joff }
925 1.1 joff ptr = firm;
926 1.1 joff
927 1.1 joff while (bytes_left) {
928 1.1 joff if (bytes_left > 1024)
929 1.1 joff block_size = 1024;
930 1.1 joff else
931 1.1 joff block_size = bytes_left;
932 1.1 joff
933 1.1 joff DPRINTFN(15, ("%s: block:%d size:%d\n",
934 1.1 joff USBDEVNAME(sc->atu_dev), block, block_size));
935 1.1 joff err = atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e,
936 1.1 joff 0x0802, block, block_size, ptr);
937 1.1 joff if (err) {
938 1.1 joff DPRINTF(("%s: could not load external firmware "
939 1.1 joff "block\n", USBDEVNAME(sc->atu_dev)));
940 1.1 joff return;
941 1.1 joff }
942 1.1 joff
943 1.1 joff ptr += block_size;
944 1.1 joff block++;
945 1.1 joff bytes_left -= block_size;
946 1.1 joff }
947 1.1 joff
948 1.1 joff err = atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e, 0x0802,
949 1.1 joff block, 0, NULL);
950 1.1 joff if (err) {
951 1.1 joff DPRINTF(("%s: could not load last zero-length firmware "
952 1.1 joff "block\n", USBDEVNAME(sc->atu_dev)));
953 1.1 joff return;
954 1.1 joff }
955 1.1 joff
956 1.1 joff /*
957 1.1 joff * The SMC2662w V.4 seems to require some time to do it's thing with
958 1.1 joff * the external firmware... 20 ms isn't enough, but 21 ms works 100
959 1.1 joff * times out of 100 tries. We'll wait a bit longer just to be sure
960 1.1 joff */
961 1.1 joff if (sc->atu_quirk & ATU_QUIRK_FW_DELAY)
962 1.1 joff usbd_delay_ms(sc->atu_udev, 21 + 100);
963 1.1 joff
964 1.1 joff DPRINTFN(10, ("%s: external firmware upload done\n",
965 1.1 joff USBDEVNAME(sc->atu_dev)));
966 1.1 joff /* complete configuration after the firmwares have been uploaded */
967 1.1 joff atu_complete_attach(sc);
968 1.1 joff }
969 1.1 joff
970 1.1 joff int
971 1.1 joff atu_get_card_config(struct atu_softc *sc)
972 1.1 joff {
973 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
974 1.1 joff struct atu_rfmd_conf rfmd_conf;
975 1.1 joff struct atu_intersil_conf intersil_conf;
976 1.1 joff int err;
977 1.1 joff
978 1.1 joff switch (sc->atu_radio) {
979 1.1 joff
980 1.1 joff case RadioRFMD:
981 1.1 joff case RadioRFMD2958:
982 1.1 joff case RadioRFMD2958_SMC:
983 1.1 joff err = atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x33,
984 1.1 joff 0x0a02, 0x0000, sizeof(rfmd_conf),
985 1.1 joff (u_int8_t *)&rfmd_conf);
986 1.1 joff if (err) {
987 1.1 joff DPRINTF(("%s: could not get rfmd config!\n",
988 1.1 joff USBDEVNAME(sc->atu_dev)));
989 1.1 joff return err;
990 1.1 joff }
991 1.1 joff memcpy(ic->ic_myaddr, rfmd_conf.MACAddr, IEEE80211_ADDR_LEN);
992 1.1 joff break;
993 1.1 joff
994 1.1 joff case RadioIntersil:
995 1.1 joff err = atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x33,
996 1.1 joff 0x0902, 0x0000, sizeof(intersil_conf),
997 1.1 joff (u_int8_t *)&intersil_conf);
998 1.1 joff if (err) {
999 1.1 joff DPRINTF(("%s: could not get intersil config!\n",
1000 1.1 joff USBDEVNAME(sc->atu_dev)));
1001 1.1 joff return err;
1002 1.1 joff }
1003 1.1 joff memcpy(ic->ic_myaddr, intersil_conf.MACAddr,
1004 1.1 joff IEEE80211_ADDR_LEN);
1005 1.1 joff break;
1006 1.1 joff }
1007 1.1 joff return 0;
1008 1.1 joff }
1009 1.1 joff
1010 1.1 joff /*
1011 1.1 joff * Probe for an AT76c503 chip.
1012 1.1 joff */
1013 1.1 joff USB_MATCH(atu)
1014 1.1 joff {
1015 1.1 joff USB_MATCH_START(atu, uaa);
1016 1.1 joff int i;
1017 1.1 joff
1018 1.1 joff if (!uaa->iface)
1019 1.1 joff return(UMATCH_NONE);
1020 1.1 joff
1021 1.1 joff for (i = 0; i < sizeof(atu_devs)/sizeof(atu_devs[0]); i++) {
1022 1.1 joff struct atu_type *t = &atu_devs[i];
1023 1.1 joff
1024 1.1 joff if (uaa->vendor == t->atu_vid &&
1025 1.1 joff uaa->product == t->atu_pid) {
1026 1.1 joff return(UMATCH_VENDOR_PRODUCT);
1027 1.1 joff }
1028 1.1 joff }
1029 1.1 joff return(UMATCH_NONE);
1030 1.1 joff }
1031 1.1 joff
1032 1.1 joff int
1033 1.1 joff atu_media_change(struct ifnet *ifp)
1034 1.1 joff {
1035 1.1 joff struct atu_softc *sc = ifp->if_softc;
1036 1.6 joff struct ieee80211com *ic = &sc->sc_ic;
1037 1.6 joff int err, s;
1038 1.1 joff
1039 1.1 joff DPRINTFN(10, ("%s: atu_media_change\n", USBDEVNAME(sc->atu_dev)));
1040 1.1 joff
1041 1.1 joff err = ieee80211_media_change(ifp);
1042 1.1 joff if (err == ENETRESET) {
1043 1.1 joff if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) ==
1044 1.6 joff (IFF_RUNNING|IFF_UP)) {
1045 1.6 joff s = splnet();
1046 1.6 joff ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
1047 1.6 joff atu_initial_config(sc);
1048 1.6 joff ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
1049 1.6 joff splx(s);
1050 1.6 joff }
1051 1.1 joff err = 0;
1052 1.1 joff }
1053 1.1 joff
1054 1.1 joff return (err);
1055 1.1 joff }
1056 1.1 joff
1057 1.1 joff void
1058 1.1 joff atu_media_status(struct ifnet *ifp, struct ifmediareq *req)
1059 1.1 joff {
1060 1.1 joff #ifdef ATU_DEBUG
1061 1.1 joff struct atu_softc *sc = ifp->if_softc;
1062 1.1 joff #endif /* ATU_DEBUG */
1063 1.1 joff
1064 1.1 joff DPRINTFN(10, ("%s: atu_media_status\n", USBDEVNAME(sc->atu_dev)));
1065 1.1 joff
1066 1.1 joff ieee80211_media_status(ifp, req);
1067 1.1 joff }
1068 1.1 joff
1069 1.1 joff void
1070 1.1 joff atu_task(void *arg)
1071 1.1 joff {
1072 1.1 joff struct atu_softc *sc = (struct atu_softc *)arg;
1073 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
1074 1.1 joff usbd_status err;
1075 1.1 joff int s;
1076 1.1 joff
1077 1.1 joff DPRINTFN(10, ("%s: atu_task\n", USBDEVNAME(sc->atu_dev)));
1078 1.1 joff
1079 1.1 joff if (sc->sc_state != ATU_S_OK)
1080 1.1 joff return;
1081 1.1 joff
1082 1.1 joff switch (sc->sc_cmd) {
1083 1.1 joff case ATU_C_SCAN:
1084 1.1 joff
1085 1.1 joff err = atu_start_scan(sc);
1086 1.1 joff if (err) {
1087 1.6 joff DPRINTFN(1, ("%s: atu_task: couldn't start scan!\n",
1088 1.1 joff USBDEVNAME(sc->atu_dev)));
1089 1.1 joff return;
1090 1.1 joff }
1091 1.1 joff
1092 1.1 joff err = atu_wait_completion(sc, CMD_START_SCAN, NULL);
1093 1.1 joff if (err) {
1094 1.6 joff DPRINTF(("%s: atu_task: error waiting for scan\n",
1095 1.1 joff USBDEVNAME(sc->atu_dev)));
1096 1.1 joff return;
1097 1.1 joff }
1098 1.1 joff
1099 1.1 joff DPRINTF(("%s: ==========================> END OF SCAN!\n",
1100 1.1 joff USBDEVNAME(sc->atu_dev)));
1101 1.1 joff
1102 1.1 joff s = splnet();
1103 1.1 joff /* ieee80211_next_scan(ifp); */
1104 1.1 joff ieee80211_end_scan(ic);
1105 1.1 joff splx(s);
1106 1.1 joff
1107 1.1 joff DPRINTF(("%s: ----------------------======> END OF SCAN2!\n",
1108 1.1 joff USBDEVNAME(sc->atu_dev)));
1109 1.1 joff break;
1110 1.1 joff
1111 1.1 joff case ATU_C_JOIN:
1112 1.1 joff atu_join(sc, ic->ic_bss);
1113 1.1 joff }
1114 1.1 joff }
1115 1.1 joff
1116 1.1 joff int
1117 1.1 joff atu_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
1118 1.1 joff {
1119 1.1 joff struct ifnet *ifp = &ic->ic_if;
1120 1.1 joff struct atu_softc *sc = ifp->if_softc;
1121 1.1 joff enum ieee80211_state ostate = ic->ic_state;
1122 1.1 joff
1123 1.1 joff DPRINTFN(10, ("%s: atu_newstate: %s -> %s\n", USBDEVNAME(sc->atu_dev),
1124 1.1 joff ieee80211_state_name[ostate], ieee80211_state_name[nstate]));
1125 1.1 joff
1126 1.1 joff switch (nstate) {
1127 1.1 joff case IEEE80211_S_SCAN:
1128 1.1 joff memcpy(ic->ic_chan_scan, ic->ic_chan_active,
1129 1.1 joff sizeof(ic->ic_chan_active));
1130 1.1 joff ieee80211_free_allnodes(ic);
1131 1.1 joff
1132 1.1 joff /* tell the event thread that we want a scan */
1133 1.1 joff sc->sc_cmd = ATU_C_SCAN;
1134 1.1 joff usb_add_task(sc->atu_udev, &sc->sc_task);
1135 1.1 joff
1136 1.1 joff /* handle this ourselves */
1137 1.1 joff ic->ic_state = nstate;
1138 1.1 joff return (0);
1139 1.1 joff
1140 1.1 joff case IEEE80211_S_AUTH:
1141 1.1 joff case IEEE80211_S_RUN:
1142 1.1 joff if (ostate == IEEE80211_S_SCAN) {
1143 1.1 joff sc->sc_cmd = ATU_C_JOIN;
1144 1.1 joff usb_add_task(sc->atu_udev, &sc->sc_task);
1145 1.1 joff }
1146 1.1 joff break;
1147 1.1 joff default:
1148 1.1 joff /* nothing to do */
1149 1.1 joff break;
1150 1.1 joff }
1151 1.1 joff
1152 1.1 joff return (*sc->sc_newstate)(ic, nstate, arg);
1153 1.1 joff }
1154 1.1 joff
1155 1.1 joff /*
1156 1.1 joff * Attach the interface. Allocate softc structures, do
1157 1.1 joff * setup and ethernet/BPF attach.
1158 1.1 joff */
1159 1.1 joff USB_ATTACH(atu)
1160 1.1 joff {
1161 1.1 joff USB_ATTACH_START(atu, sc, uaa);
1162 1.1 joff char devinfo[1024];
1163 1.1 joff usbd_status err;
1164 1.1 joff usbd_device_handle dev = uaa->device;
1165 1.1 joff u_int8_t mode, channel;
1166 1.1 joff int i;
1167 1.1 joff
1168 1.1 joff sc->sc_state = ATU_S_UNCONFIG;
1169 1.1 joff
1170 1.1 joff usbd_devinfo(uaa->device, 0, devinfo, sizeof devinfo);
1171 1.1 joff USB_ATTACH_SETUP;
1172 1.1 joff printf("%s: %s\n", USBDEVNAME(sc->atu_dev), devinfo);
1173 1.1 joff
1174 1.1 joff err = usbd_set_config_no(dev, ATU_CONFIG_NO, 1);
1175 1.1 joff if (err) {
1176 1.1 joff printf("%s: setting config no failed\n",
1177 1.1 joff USBDEVNAME(sc->atu_dev));
1178 1.1 joff USB_ATTACH_ERROR_RETURN;
1179 1.1 joff }
1180 1.1 joff
1181 1.1 joff err = usbd_device2interface_handle(dev, ATU_IFACE_IDX, &sc->atu_iface);
1182 1.1 joff if (err) {
1183 1.1 joff printf("%s: getting interface handle failed\n",
1184 1.1 joff USBDEVNAME(sc->atu_dev));
1185 1.1 joff USB_ATTACH_ERROR_RETURN;
1186 1.1 joff }
1187 1.1 joff
1188 1.1 joff sc->atu_unit = self->dv_unit;
1189 1.1 joff sc->atu_udev = dev;
1190 1.1 joff
1191 1.1 joff /*
1192 1.1 joff * look up the radio_type for the device
1193 1.1 joff * basically does the same as USB_MATCH
1194 1.1 joff */
1195 1.1 joff for (i = 0; i < sizeof(atu_devs)/sizeof(atu_devs[0]); i++) {
1196 1.1 joff struct atu_type *t = &atu_devs[i];
1197 1.1 joff
1198 1.1 joff if (uaa->vendor == t->atu_vid &&
1199 1.1 joff uaa->product == t->atu_pid) {
1200 1.1 joff sc->atu_radio = t->atu_radio;
1201 1.1 joff sc->atu_quirk = t->atu_quirk;
1202 1.1 joff }
1203 1.1 joff }
1204 1.1 joff
1205 1.1 joff /*
1206 1.1 joff * Check in the interface descriptor if we're in DFU mode
1207 1.1 joff * If we're in DFU mode, we upload the external firmware
1208 1.1 joff * If we're not, the PC must have rebooted without power-cycling
1209 1.1 joff * the device.. I've tried this out, a reboot only requeres the
1210 1.1 joff * external firmware to be reloaded :)
1211 1.1 joff *
1212 1.1 joff * Hmm. The at76c505a doesn't report a DFU descriptor when it's
1213 1.1 joff * in DFU mode... Let's just try to get the opmode
1214 1.1 joff */
1215 1.1 joff err = atu_get_opmode(sc, &mode);
1216 1.1 joff DPRINTFN(20, ("%s: opmode: %d\n", USBDEVNAME(sc->atu_dev), mode));
1217 1.1 joff if (err || (mode != MODE_NETCARD && mode != MODE_NOFLASHNETCARD)) {
1218 1.1 joff DPRINTF(("%s: starting internal firmware download\n",
1219 1.1 joff USBDEVNAME(sc->atu_dev)));
1220 1.1 joff
1221 1.1 joff atu_internal_firmware((struct device *)sc);
1222 1.1 joff /*
1223 1.1 joff * atu_internal_firmware will cause a reset of the device
1224 1.1 joff * so we don't want to do any more configuration after this
1225 1.1 joff * point.
1226 1.1 joff */
1227 1.1 joff USB_ATTACH_SUCCESS_RETURN;
1228 1.1 joff }
1229 1.1 joff
1230 1.1 joff uaa->iface = sc->atu_iface;
1231 1.1 joff
1232 1.1 joff if (mode != MODE_NETCARD) {
1233 1.1 joff DPRINTFN(15, ("%s: device needs external firmware\n",
1234 1.1 joff USBDEVNAME(sc->atu_dev)));
1235 1.1 joff
1236 1.1 joff if (mode != MODE_NOFLASHNETCARD) {
1237 1.1 joff DPRINTF(("%s: unexpected opmode=%d\n",
1238 1.1 joff USBDEVNAME(sc->atu_dev), mode));
1239 1.1 joff }
1240 1.1 joff
1241 1.1 joff /*
1242 1.1 joff * There is no difference in opmode before and after external
1243 1.1 joff * firmware upload with the SMC2662 V.4 . So instead we'll try
1244 1.1 joff * to read the channel number. If we succeed, external
1245 1.1 joff * firmwaremust have been already uploaded...
1246 1.1 joff */
1247 1.1 joff if (sc->atu_radio != RadioIntersil) {
1248 1.1 joff err = atu_get_mib(sc, MIB_PHY__CHANNEL, &channel);
1249 1.1 joff if (!err) {
1250 1.1 joff DPRINTF(("%s: external firmware has already"
1251 1.1 joff " been downloaded\n",
1252 1.1 joff USBDEVNAME(sc->atu_dev)));
1253 1.1 joff atu_complete_attach(sc);
1254 1.1 joff USB_ATTACH_SUCCESS_RETURN;
1255 1.1 joff }
1256 1.1 joff }
1257 1.1 joff
1258 1.1 joff atu_external_firmware((struct device *)sc);
1259 1.1 joff
1260 1.1 joff /*
1261 1.1 joff * atu_external_firmware will call atu_complete_attach after
1262 1.1 joff * it's finished so we can just return.
1263 1.1 joff */
1264 1.1 joff } else {
1265 1.1 joff /* all the firmwares are in place, so complete the attach */
1266 1.1 joff atu_complete_attach(sc);
1267 1.1 joff }
1268 1.1 joff
1269 1.1 joff USB_ATTACH_SUCCESS_RETURN;
1270 1.1 joff }
1271 1.1 joff
1272 1.1 joff void
1273 1.1 joff atu_complete_attach(struct atu_softc *sc)
1274 1.1 joff {
1275 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
1276 1.1 joff struct ifnet *ifp = &ic->ic_if;
1277 1.1 joff usb_interface_descriptor_t *id;
1278 1.1 joff usb_endpoint_descriptor_t *ed;
1279 1.1 joff usbd_status err;
1280 1.1 joff int i;
1281 1.1 joff #ifdef ATU_DEBUG
1282 1.1 joff struct atu_fw fw;
1283 1.1 joff #endif
1284 1.1 joff
1285 1.1 joff id = usbd_get_interface_descriptor(sc->atu_iface);
1286 1.1 joff
1287 1.1 joff /* Find endpoints. */
1288 1.1 joff for (i = 0; i < id->bNumEndpoints; i++) {
1289 1.1 joff ed = usbd_interface2endpoint_descriptor(sc->atu_iface, i);
1290 1.1 joff if (!ed) {
1291 1.1 joff DPRINTF(("%s: num_endp:%d\n", USBDEVNAME(sc->atu_dev),
1292 1.1 joff sc->atu_iface->idesc->bNumEndpoints));
1293 1.1 joff DPRINTF(("%s: couldn't get ep %d\n",
1294 1.1 joff USBDEVNAME(sc->atu_dev), i));
1295 1.1 joff return;
1296 1.1 joff }
1297 1.1 joff if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
1298 1.1 joff UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
1299 1.1 joff sc->atu_ed[ATU_ENDPT_RX] = ed->bEndpointAddress;
1300 1.1 joff } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
1301 1.1 joff UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
1302 1.1 joff sc->atu_ed[ATU_ENDPT_TX] = ed->bEndpointAddress;
1303 1.1 joff }
1304 1.1 joff }
1305 1.1 joff
1306 1.1 joff /* read device config & get MAC address */
1307 1.1 joff err = atu_get_card_config(sc);
1308 1.1 joff if (err) {
1309 1.1 joff printf("\n%s: could not get card cfg!\n",
1310 1.1 joff USBDEVNAME(sc->atu_dev));
1311 1.1 joff return;
1312 1.1 joff }
1313 1.1 joff
1314 1.1 joff #ifdef ATU_DEBUG
1315 1.1 joff /* DEBUG : try to get firmware version */
1316 1.1 joff err = atu_get_mib(sc, MIB_FW_VERSION, sizeof(fw), 0,
1317 1.1 joff (u_int8_t *)&fw);
1318 1.1 joff if (!err) {
1319 1.1 joff DPRINTFN(15, ("%s: firmware: maj:%d min:%d patch:%d "
1320 1.1 joff "build:%d\n", USBDEVNAME(sc->atu_dev), fw.major, fw.minor,
1321 1.1 joff fw.patch, fw.build));
1322 1.1 joff } else {
1323 1.1 joff DPRINTF(("%s: get firmware version failed\n",
1324 1.1 joff USBDEVNAME(sc->atu_dev)));
1325 1.1 joff }
1326 1.1 joff #endif /* ATU_DEBUG */
1327 1.1 joff
1328 1.1 joff /* Show the world our MAC address */
1329 1.1 joff printf("%s: MAC address %s\n", USBDEVNAME(sc->atu_dev),
1330 1.1 joff ether_sprintf(ic->ic_myaddr));
1331 1.1 joff
1332 1.1 joff sc->atu_cdata.atu_tx_inuse = 0;
1333 1.1 joff sc->atu_encrypt = ATU_WEP_OFF;
1334 1.1 joff sc->atu_wepkeylen = ATU_WEP_104BITS;
1335 1.1 joff sc->atu_wepkey = 0;
1336 1.1 joff
1337 1.1 joff bzero(sc->atu_bssid, ETHER_ADDR_LEN);
1338 1.1 joff sc->atu_ssidlen = strlen(ATU_DEFAULT_SSID);
1339 1.1 joff memcpy(sc->atu_ssid, ATU_DEFAULT_SSID, sc->atu_ssidlen);
1340 1.1 joff sc->atu_channel = ATU_DEFAULT_CHANNEL;
1341 1.1 joff sc->atu_desired_channel = IEEE80211_CHAN_ANY;
1342 1.1 joff sc->atu_mode = INFRASTRUCTURE_MODE;
1343 1.1 joff
1344 1.1 joff ic->ic_softc = sc;
1345 1.1 joff ic->ic_phytype = IEEE80211_T_DS;
1346 1.1 joff ic->ic_opmode = IEEE80211_M_STA;
1347 1.1 joff ic->ic_state = IEEE80211_S_INIT;
1348 1.1 joff #ifdef FIXME
1349 1.1 joff ic->ic_caps = IEEE80211_C_IBSS | IEEE80211_C_WEP | IEEE80211_C_SCANALL;
1350 1.1 joff #else
1351 1.1 joff ic->ic_caps = IEEE80211_C_IBSS | IEEE80211_C_WEP;
1352 1.1 joff #endif
1353 1.1 joff
1354 1.1 joff i = 0;
1355 1.1 joff ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 2;
1356 1.1 joff ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 4;
1357 1.1 joff ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 11;
1358 1.1 joff ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 22;
1359 1.1 joff ic->ic_sup_rates[IEEE80211_MODE_11B].rs_nrates = i;
1360 1.1 joff
1361 1.1 joff for (i = 1; i <= 14; i++) {
1362 1.1 joff ic->ic_channels[i].ic_flags = IEEE80211_CHAN_B |
1363 1.1 joff IEEE80211_CHAN_PASSIVE;
1364 1.1 joff ic->ic_channels[i].ic_freq = ieee80211_ieee2mhz(i,
1365 1.1 joff ic->ic_channels[i].ic_flags);
1366 1.1 joff }
1367 1.1 joff
1368 1.1 joff ic->ic_ibss_chan = &ic->ic_channels[0];
1369 1.1 joff
1370 1.1 joff ifp->if_softc = sc;
1371 1.1 joff memcpy(ifp->if_xname, USBDEVNAME(sc->atu_dev), IFNAMSIZ);
1372 1.1 joff ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1373 1.1 joff ifp->if_init = atu_init;
1374 1.1 joff ifp->if_stop = atu_stop;
1375 1.1 joff ifp->if_start = atu_start;
1376 1.1 joff ifp->if_ioctl = atu_ioctl;
1377 1.1 joff ifp->if_watchdog = atu_watchdog;
1378 1.1 joff ifp->if_mtu = ATU_DEFAULT_MTU;
1379 1.1 joff IFQ_SET_READY(&ifp->if_snd);
1380 1.1 joff
1381 1.1 joff /* Call MI attach routine. */
1382 1.1 joff if_attach(ifp);
1383 1.1 joff ieee80211_ifattach(ifp);
1384 1.1 joff
1385 1.1 joff sc->sc_newstate = ic->ic_newstate;
1386 1.1 joff ic->ic_newstate = atu_newstate;
1387 1.1 joff
1388 1.1 joff /* setup ifmedia interface */
1389 1.1 joff ieee80211_media_init(ifp, atu_media_change, atu_media_status);
1390 1.1 joff
1391 1.1 joff usb_init_task(&sc->sc_task, atu_task, sc);
1392 1.1 joff
1393 1.1 joff sc->sc_state = ATU_S_OK;
1394 1.1 joff }
1395 1.1 joff
1396 1.1 joff USB_DETACH(atu)
1397 1.1 joff {
1398 1.1 joff USB_DETACH_START(atu, sc);
1399 1.1 joff struct ifnet *ifp = &sc->sc_ic.ic_if;
1400 1.1 joff
1401 1.1 joff DPRINTFN(10, ("%s: atu_detach state=%d\n", USBDEVNAME(sc->atu_dev),
1402 1.1 joff sc->sc_state));
1403 1.1 joff
1404 1.1 joff if (sc->sc_state != ATU_S_UNCONFIG) {
1405 1.1 joff atu_stop(ifp, 1);
1406 1.1 joff
1407 1.1 joff ieee80211_ifdetach(ifp);
1408 1.1 joff if_detach(ifp);
1409 1.1 joff }
1410 1.1 joff
1411 1.1 joff return(0);
1412 1.1 joff }
1413 1.1 joff
1414 1.1 joff int
1415 1.1 joff atu_activate(device_ptr_t self, enum devact act)
1416 1.1 joff {
1417 1.1 joff struct atu_softc *sc = (struct atu_softc *)self;
1418 1.1 joff
1419 1.1 joff switch (act) {
1420 1.1 joff case DVACT_ACTIVATE:
1421 1.1 joff return (EOPNOTSUPP);
1422 1.1 joff break;
1423 1.1 joff case DVACT_DEACTIVATE:
1424 1.1 joff if (sc->sc_state != ATU_S_UNCONFIG) {
1425 1.1 joff if_deactivate(&sc->atu_ec.ec_if);
1426 1.1 joff sc->sc_state = ATU_S_DEAD;
1427 1.1 joff }
1428 1.1 joff break;
1429 1.1 joff }
1430 1.1 joff return (0);
1431 1.1 joff }
1432 1.1 joff
1433 1.1 joff /*
1434 1.1 joff * Initialize an RX descriptor and attach an MBUF cluster.
1435 1.1 joff */
1436 1.1 joff int
1437 1.1 joff atu_newbuf(struct atu_softc *sc, struct atu_chain *c, struct mbuf *m)
1438 1.1 joff {
1439 1.1 joff struct mbuf *m_new = NULL;
1440 1.1 joff
1441 1.1 joff if (m == NULL) {
1442 1.1 joff MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1443 1.1 joff if (m_new == NULL) {
1444 1.1 joff DPRINTF(("%s: no memory for rx list\n",
1445 1.1 joff USBDEVNAME(sc->atu_dev)));
1446 1.1 joff return(ENOBUFS);
1447 1.1 joff }
1448 1.1 joff
1449 1.1 joff MCLGET(m_new, M_DONTWAIT);
1450 1.1 joff if (!(m_new->m_flags & M_EXT)) {
1451 1.1 joff DPRINTF(("%s: no memory for rx list\n",
1452 1.1 joff USBDEVNAME(sc->atu_dev)));
1453 1.1 joff m_freem(m_new);
1454 1.1 joff return(ENOBUFS);
1455 1.1 joff }
1456 1.1 joff m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1457 1.1 joff } else {
1458 1.1 joff m_new = m;
1459 1.1 joff m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1460 1.1 joff m_new->m_data = m_new->m_ext.ext_buf;
1461 1.1 joff }
1462 1.1 joff c->atu_mbuf = m_new;
1463 1.1 joff return(0);
1464 1.1 joff }
1465 1.1 joff
1466 1.1 joff int
1467 1.1 joff atu_rx_list_init(struct atu_softc *sc)
1468 1.1 joff {
1469 1.1 joff struct atu_cdata *cd = &sc->atu_cdata;
1470 1.1 joff struct atu_chain *c;
1471 1.1 joff int i;
1472 1.1 joff
1473 1.1 joff DPRINTFN(15, ("%s: atu_rx_list_init: enter\n",
1474 1.1 joff USBDEVNAME(sc->atu_dev)));
1475 1.1 joff
1476 1.1 joff for (i = 0; i < ATU_RX_LIST_CNT; i++) {
1477 1.1 joff c = &cd->atu_rx_chain[i];
1478 1.1 joff c->atu_sc = sc;
1479 1.1 joff c->atu_idx = i;
1480 1.1 joff if (c->atu_xfer == NULL) {
1481 1.1 joff c->atu_xfer = usbd_alloc_xfer(sc->atu_udev);
1482 1.1 joff if (c->atu_xfer == NULL)
1483 1.1 joff return (ENOBUFS);
1484 1.1 joff c->atu_buf = usbd_alloc_buffer(c->atu_xfer,
1485 1.1 joff ATU_RX_BUFSZ);
1486 1.1 joff if (c->atu_buf == NULL) /* XXX free xfer */
1487 1.1 joff return (ENOBUFS);
1488 1.1 joff if (atu_newbuf(sc, c, NULL) == ENOBUFS) /* XXX free? */
1489 1.1 joff return(ENOBUFS);
1490 1.1 joff }
1491 1.1 joff }
1492 1.1 joff return (0);
1493 1.1 joff }
1494 1.1 joff
1495 1.1 joff int
1496 1.1 joff atu_tx_list_init(struct atu_softc *sc)
1497 1.1 joff {
1498 1.1 joff struct atu_cdata *cd = &sc->atu_cdata;
1499 1.1 joff struct atu_chain *c;
1500 1.1 joff int i;
1501 1.1 joff
1502 1.1 joff DPRINTFN(15, ("%s: atu_tx_list_init\n",
1503 1.1 joff USBDEVNAME(sc->atu_dev)));
1504 1.1 joff
1505 1.1 joff SLIST_INIT(&cd->atu_tx_free);
1506 1.1 joff sc->atu_cdata.atu_tx_inuse = 0;
1507 1.1 joff
1508 1.1 joff for (i = 0; i < ATU_TX_LIST_CNT; i++) {
1509 1.1 joff c = &cd->atu_tx_chain[i];
1510 1.1 joff c->atu_sc = sc;
1511 1.1 joff c->atu_idx = i;
1512 1.1 joff if (c->atu_xfer == NULL) {
1513 1.1 joff c->atu_xfer = usbd_alloc_xfer(sc->atu_udev);
1514 1.1 joff if (c->atu_xfer == NULL)
1515 1.1 joff return(ENOBUFS);
1516 1.1 joff c->atu_mbuf = NULL;
1517 1.1 joff c->atu_buf = usbd_alloc_buffer(c->atu_xfer,
1518 1.1 joff ATU_TX_BUFSZ);
1519 1.1 joff if (c->atu_buf == NULL)
1520 1.1 joff return(ENOBUFS); /* XXX free xfer */
1521 1.1 joff SLIST_INSERT_HEAD(&cd->atu_tx_free, c, atu_list);
1522 1.1 joff }
1523 1.1 joff }
1524 1.1 joff return(0);
1525 1.1 joff }
1526 1.1 joff
1527 1.1 joff void
1528 1.1 joff atu_xfer_list_free(struct atu_softc *sc, struct atu_chain *ch,
1529 1.1 joff int listlen)
1530 1.1 joff {
1531 1.1 joff int i;
1532 1.1 joff
1533 1.1 joff /* Free resources. */
1534 1.1 joff for (i = 0; i < listlen; i++) {
1535 1.1 joff if (ch[i].atu_buf != NULL)
1536 1.1 joff ch[i].atu_buf = NULL;
1537 1.1 joff if (ch[i].atu_mbuf != NULL) {
1538 1.1 joff m_freem(ch[i].atu_mbuf);
1539 1.1 joff ch[i].atu_mbuf = NULL;
1540 1.1 joff }
1541 1.1 joff if (ch[i].atu_xfer != NULL) {
1542 1.1 joff usbd_free_xfer(ch[i].atu_xfer);
1543 1.1 joff ch[i].atu_xfer = NULL;
1544 1.1 joff }
1545 1.1 joff }
1546 1.1 joff }
1547 1.1 joff
1548 1.1 joff /*
1549 1.1 joff * A frame has been uploaded: pass the resulting mbuf chain up to
1550 1.1 joff * the higher level protocols.
1551 1.1 joff */
1552 1.1 joff void
1553 1.1 joff atu_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
1554 1.1 joff {
1555 1.1 joff struct atu_chain *c = (struct atu_chain *)priv;
1556 1.1 joff struct atu_softc *sc = c->atu_sc;
1557 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
1558 1.1 joff struct ifnet *ifp = &ic->ic_if;
1559 1.1 joff struct atu_rx_hdr *h;
1560 1.1 joff struct ieee80211_frame *wh;
1561 1.1 joff struct ieee80211_node *ni;
1562 1.1 joff struct mbuf *m;
1563 1.1 joff u_int32_t len;
1564 1.1 joff int s;
1565 1.1 joff
1566 1.1 joff DPRINTFN(25, ("%s: atu_rxeof\n", USBDEVNAME(sc->atu_dev)));
1567 1.1 joff
1568 1.1 joff if (sc->sc_state != ATU_S_OK)
1569 1.1 joff return;
1570 1.1 joff
1571 1.1 joff if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) != (IFF_RUNNING|IFF_UP))
1572 1.1 joff goto done;
1573 1.1 joff
1574 1.1 joff if (status != USBD_NORMAL_COMPLETION) {
1575 1.1 joff DPRINTF(("%s: status != USBD_NORMAL_COMPLETION\n",
1576 1.1 joff USBDEVNAME(sc->atu_dev)));
1577 1.1 joff if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
1578 1.1 joff return;
1579 1.1 joff }
1580 1.1 joff #if 0
1581 1.1 joff if (status == USBD_IOERROR) {
1582 1.1 joff DPRINTF(("%s: rx: EEK! lost device?\n",
1583 1.1 joff USBDEVNAME(sc->atu_dev)));
1584 1.1 joff
1585 1.1 joff /*
1586 1.1 joff * My experience with USBD_IOERROR is that trying to
1587 1.1 joff * restart the transfer will always fail and we'll
1588 1.1 joff * keep on looping restarting transfers untill someone
1589 1.1 joff * pulls the plug of the device.
1590 1.1 joff * So we don't restart the transfer, but just let it
1591 1.1 joff * die... If someone knows of a situation where we can
1592 1.1 joff * recover from USBD_IOERROR, let me know.
1593 1.1 joff */
1594 1.1 joff splx(s);
1595 1.1 joff return;
1596 1.1 joff }
1597 1.1 joff #endif /* 0 */
1598 1.1 joff
1599 1.1 joff if (usbd_ratecheck(&sc->atu_rx_notice)) {
1600 1.1 joff DPRINTF(("%s: usb error on rx: %s\n",
1601 1.1 joff USBDEVNAME(sc->atu_dev), usbd_errstr(status)));
1602 1.1 joff }
1603 1.1 joff if (status == USBD_STALLED)
1604 1.1 joff usbd_clear_endpoint_stall(
1605 1.1 joff sc->atu_ep[ATU_ENDPT_RX]);
1606 1.1 joff goto done;
1607 1.1 joff }
1608 1.1 joff
1609 1.1 joff usbd_get_xfer_status(xfer, NULL, NULL, &len, NULL);
1610 1.1 joff
1611 1.1 joff if (len <= 1) {
1612 1.1 joff DPRINTF(("%s: atu_rxeof: too short\n",
1613 1.1 joff USBDEVNAME(sc->atu_dev)));
1614 1.1 joff goto done;
1615 1.1 joff }
1616 1.1 joff
1617 1.1 joff h = (struct atu_rx_hdr *)c->atu_buf;
1618 1.1 joff len = UGETW(h->length) - 4; /* XXX magic number */
1619 1.1 joff
1620 1.1 joff m = c->atu_mbuf;
1621 1.1 joff memcpy(mtod(m, char *), c->atu_buf + ATU_RX_HDRLEN, len);
1622 1.1 joff m->m_pkthdr.rcvif = ifp;
1623 1.1 joff m->m_pkthdr.len = m->m_len = len;
1624 1.1 joff
1625 1.1 joff wh = mtod(m, struct ieee80211_frame *);
1626 1.1 joff ni = ieee80211_find_rxnode(ic, wh);
1627 1.1 joff
1628 1.1 joff ifp->if_ipackets++;
1629 1.1 joff
1630 1.1 joff s = splnet();
1631 1.1 joff
1632 1.1 joff if (atu_newbuf(sc, c, NULL) == ENOBUFS) {
1633 1.1 joff ifp->if_ierrors++;
1634 1.1 joff goto done1; /* XXX if we can't allocate, why restart it? */
1635 1.1 joff }
1636 1.1 joff
1637 1.6 joff if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
1638 1.6 joff /*
1639 1.6 joff * WEP is decrypted by hardware. Clear WEP bit
1640 1.6 joff * header for ieee80211_input().
1641 1.6 joff */
1642 1.6 joff wh->i_fc[1] &= ~IEEE80211_FC1_WEP;
1643 1.6 joff }
1644 1.1 joff
1645 1.1 joff ieee80211_input(ifp, m, ni, h->rssi, UGETDW(h->rx_time));
1646 1.1 joff
1647 1.3 joff ieee80211_release_node(ic, ni);
1648 1.1 joff done1:
1649 1.1 joff splx(s);
1650 1.1 joff done:
1651 1.1 joff /* Setup new transfer. */
1652 1.1 joff usbd_setup_xfer(c->atu_xfer, sc->atu_ep[ATU_ENDPT_RX], c, c->atu_buf,
1653 1.1 joff ATU_RX_BUFSZ, USBD_SHORT_XFER_OK | USBD_NO_COPY, USBD_NO_TIMEOUT,
1654 1.1 joff atu_rxeof);
1655 1.1 joff usbd_transfer(c->atu_xfer);
1656 1.1 joff }
1657 1.1 joff
1658 1.1 joff /*
1659 1.1 joff * A frame was downloaded to the chip. It's safe for us to clean up
1660 1.1 joff * the list buffers.
1661 1.1 joff */
1662 1.1 joff void
1663 1.1 joff atu_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
1664 1.1 joff {
1665 1.1 joff struct atu_chain *c = (struct atu_chain *)priv;
1666 1.1 joff struct atu_softc *sc = c->atu_sc;
1667 1.1 joff struct ifnet *ifp = &sc->sc_ic.ic_if;
1668 1.1 joff usbd_status err;
1669 1.1 joff int s;
1670 1.1 joff
1671 1.1 joff DPRINTFN(25, ("%s: atu_txeof status=%d\n", USBDEVNAME(sc->atu_dev),
1672 1.1 joff status));
1673 1.1 joff
1674 1.6 joff if (c->atu_mbuf) {
1675 1.6 joff m_freem(c->atu_mbuf);
1676 1.6 joff c->atu_mbuf = NULL;
1677 1.6 joff }
1678 1.6 joff
1679 1.1 joff if (status != USBD_NORMAL_COMPLETION) {
1680 1.1 joff if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
1681 1.1 joff return;
1682 1.1 joff
1683 1.1 joff DPRINTF(("%s: usb error on tx: %s\n", USBDEVNAME(sc->atu_dev),
1684 1.1 joff usbd_errstr(status)));
1685 1.1 joff if (status == USBD_STALLED)
1686 1.1 joff usbd_clear_endpoint_stall(sc->atu_ep[ATU_ENDPT_TX]);
1687 1.1 joff return;
1688 1.1 joff }
1689 1.1 joff
1690 1.1 joff usbd_get_xfer_status(c->atu_xfer, NULL, NULL, NULL, &err);
1691 1.1 joff
1692 1.1 joff if (err)
1693 1.1 joff ifp->if_oerrors++;
1694 1.1 joff else
1695 1.1 joff ifp->if_opackets++;
1696 1.1 joff
1697 1.1 joff s = splnet();
1698 1.1 joff SLIST_INSERT_HEAD(&sc->atu_cdata.atu_tx_free, c, atu_list);
1699 1.1 joff sc->atu_cdata.atu_tx_inuse--;
1700 1.1 joff if (sc->atu_cdata.atu_tx_inuse == 0)
1701 1.1 joff ifp->if_timer = 0;
1702 1.1 joff ifp->if_flags &= ~IFF_OACTIVE;
1703 1.1 joff splx(s);
1704 1.1 joff
1705 1.1 joff atu_start(ifp);
1706 1.1 joff }
1707 1.1 joff
1708 1.1 joff u_int8_t
1709 1.1 joff atu_calculate_padding(int size)
1710 1.1 joff {
1711 1.1 joff size %= 64;
1712 1.1 joff
1713 1.1 joff if (size < 50)
1714 1.1 joff return (50 - size);
1715 1.1 joff if (size >=61)
1716 1.1 joff return (64 + 50 - size);
1717 1.1 joff return (0);
1718 1.1 joff }
1719 1.1 joff
1720 1.1 joff int
1721 1.1 joff atu_tx_start(struct atu_softc *sc, struct ieee80211_node *ni,
1722 1.1 joff struct atu_chain *c, struct mbuf *m)
1723 1.1 joff {
1724 1.1 joff int len;
1725 1.1 joff struct atu_tx_hdr *h;
1726 1.1 joff usbd_status err;
1727 1.1 joff u_int8_t pad;
1728 1.1 joff
1729 1.1 joff DPRINTFN(25, ("%s: atu_tx_start\n", USBDEVNAME(sc->atu_dev)));
1730 1.1 joff
1731 1.1 joff /* Don't try to send when we're shutting down the driver */
1732 1.6 joff if (sc->sc_state != ATU_S_OK) {
1733 1.6 joff m_freem(m);
1734 1.1 joff return(EIO);
1735 1.6 joff }
1736 1.1 joff
1737 1.1 joff /*
1738 1.1 joff * Copy the mbuf data into a contiguous buffer, leaving
1739 1.1 joff * enough room for the atmel headers
1740 1.1 joff */
1741 1.1 joff len = m->m_pkthdr.len;
1742 1.1 joff
1743 1.1 joff m_copydata(m, 0, m->m_pkthdr.len, c->atu_buf + ATU_TX_HDRLEN);
1744 1.1 joff
1745 1.1 joff h = (struct atu_tx_hdr *)c->atu_buf;
1746 1.1 joff memset(h, 0, ATU_TX_HDRLEN);
1747 1.1 joff USETW(h->length, len);
1748 1.1 joff h->tx_rate = 4; /* XXX rate = auto */
1749 1.1 joff len += ATU_TX_HDRLEN;
1750 1.1 joff
1751 1.1 joff pad = atu_calculate_padding(len);
1752 1.1 joff len += pad;
1753 1.1 joff h->padding = pad;
1754 1.1 joff
1755 1.1 joff c->atu_length = len;
1756 1.1 joff c->atu_mbuf = m;
1757 1.1 joff
1758 1.1 joff usbd_setup_xfer(c->atu_xfer, sc->atu_ep[ATU_ENDPT_TX],
1759 1.1 joff c, c->atu_buf, c->atu_length, USBD_NO_COPY, ATU_TX_TIMEOUT,
1760 1.1 joff atu_txeof);
1761 1.1 joff
1762 1.1 joff /* Let's get this thing into the air! */
1763 1.1 joff c->atu_in_xfer = 1;
1764 1.1 joff err = usbd_transfer(c->atu_xfer);
1765 1.1 joff if (err != USBD_IN_PROGRESS) {
1766 1.6 joff DPRINTFN(25, ("%s: atu_tx_start, err=%d",
1767 1.6 joff USBDEVNAME(sc->atu_dev), err));
1768 1.6 joff c->atu_mbuf = NULL;
1769 1.6 joff m_freem(m);
1770 1.1 joff return(EIO);
1771 1.1 joff }
1772 1.1 joff
1773 1.1 joff return (0);
1774 1.1 joff }
1775 1.1 joff
1776 1.1 joff void
1777 1.1 joff atu_start(struct ifnet *ifp)
1778 1.1 joff {
1779 1.1 joff struct atu_softc *sc = ifp->if_softc;
1780 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
1781 1.1 joff struct atu_cdata *cd = &sc->atu_cdata;
1782 1.1 joff struct ieee80211_node *ni;
1783 1.1 joff struct ieee80211_frame *wh;
1784 1.1 joff struct atu_chain *c;
1785 1.1 joff struct mbuf *m = NULL;
1786 1.1 joff int s;
1787 1.1 joff
1788 1.1 joff DPRINTFN(25, ("%s: atu_start: enter\n", USBDEVNAME(sc->atu_dev)));
1789 1.1 joff
1790 1.3 joff if ((ifp->if_flags & IFF_RUNNING) == 0) {
1791 1.3 joff return;
1792 1.3 joff }
1793 1.1 joff if (ifp->if_flags & IFF_OACTIVE) {
1794 1.1 joff DPRINTFN(30, ("%s: atu_start: IFF_OACTIVE\n",
1795 1.1 joff USBDEVNAME(sc->atu_dev)));
1796 1.1 joff return;
1797 1.1 joff }
1798 1.1 joff
1799 1.1 joff for (;;) {
1800 1.1 joff /* grab a TX buffer */
1801 1.1 joff s = splnet();
1802 1.1 joff c = SLIST_FIRST(&cd->atu_tx_free);
1803 1.1 joff if (c != NULL) {
1804 1.1 joff SLIST_REMOVE_HEAD(&cd->atu_tx_free, atu_list);
1805 1.1 joff cd->atu_tx_inuse++;
1806 1.1 joff if (cd->atu_tx_inuse == ATU_TX_LIST_CNT)
1807 1.1 joff ifp->if_flags |= IFF_OACTIVE;
1808 1.1 joff }
1809 1.1 joff splx(s);
1810 1.1 joff if (c == NULL) {
1811 1.1 joff DPRINTFN(10, ("%s: out of tx xfers\n",
1812 1.1 joff USBDEVNAME(sc->atu_dev)));
1813 1.1 joff ifp->if_flags |= IFF_OACTIVE;
1814 1.1 joff break;
1815 1.1 joff }
1816 1.1 joff
1817 1.1 joff /*
1818 1.1 joff * Poll the management queue for frames, it has priority over
1819 1.1 joff * normal data frames.
1820 1.1 joff */
1821 1.1 joff IF_DEQUEUE(&ic->ic_mgtq, m);
1822 1.1 joff if (m == NULL) {
1823 1.1 joff DPRINTFN(10, ("%s: atu_start: data packet\n",
1824 1.1 joff USBDEVNAME(sc->atu_dev)));
1825 1.1 joff if (ic->ic_state != IEEE80211_S_RUN) {
1826 1.1 joff DPRINTFN(25, ("%s: no data till running\n",
1827 1.1 joff USBDEVNAME(sc->atu_dev)));
1828 1.1 joff /* put the xfer back on the list */
1829 1.1 joff s = splnet();
1830 1.1 joff SLIST_INSERT_HEAD(&cd->atu_tx_free, c,
1831 1.1 joff atu_list);
1832 1.1 joff cd->atu_tx_inuse--;
1833 1.1 joff splx(s);
1834 1.1 joff break;
1835 1.1 joff }
1836 1.1 joff
1837 1.3 joff IFQ_DEQUEUE(&ifp->if_snd, m);
1838 1.1 joff if (m == NULL) {
1839 1.1 joff DPRINTFN(25, ("%s: nothing to send\n",
1840 1.1 joff USBDEVNAME(sc->atu_dev)));
1841 1.1 joff s = splnet();
1842 1.1 joff SLIST_INSERT_HEAD(&cd->atu_tx_free, c,
1843 1.1 joff atu_list);
1844 1.1 joff cd->atu_tx_inuse--;
1845 1.1 joff splx(s);
1846 1.1 joff break;
1847 1.1 joff }
1848 1.6 joff #if NBPFILTER > 0
1849 1.6 joff if (ifp->if_bpf)
1850 1.6 joff bpf_mtap(ifp->if_bpf, m);
1851 1.6 joff #endif
1852 1.1 joff
1853 1.1 joff m = ieee80211_encap(ifp, m, &ni);
1854 1.1 joff if (m == NULL)
1855 1.1 joff goto bad;
1856 1.1 joff wh = mtod(m, struct ieee80211_frame *);
1857 1.1 joff } else {
1858 1.1 joff DPRINTFN(25, ("%s: atu_start: mgmt packet\n",
1859 1.1 joff USBDEVNAME(sc->atu_dev)));
1860 1.1 joff
1861 1.1 joff /*
1862 1.1 joff * Hack! The referenced node pointer is in the
1863 1.1 joff * rcvif field of the packet header. This is
1864 1.1 joff * placed there by ieee80211_mgmt_output because
1865 1.1 joff * we need to hold the reference with the frame
1866 1.1 joff * and there's no other way (other than packet
1867 1.1 joff * tags which we consider too expensive to use)
1868 1.1 joff * to pass it along.
1869 1.1 joff */
1870 1.1 joff ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
1871 1.1 joff m->m_pkthdr.rcvif = NULL;
1872 1.1 joff
1873 1.1 joff wh = mtod(m, struct ieee80211_frame *);
1874 1.1 joff /* sc->sc_stats.ast_tx_mgmt++; */
1875 1.1 joff }
1876 1.1 joff
1877 1.6 joff #if NBPFILTER > 0
1878 1.6 joff if (ic->ic_rawbpf)
1879 1.6 joff bpf_mtap(ic->ic_rawbpf, m);
1880 1.6 joff #endif
1881 1.6 joff
1882 1.1 joff if (atu_tx_start(sc, ni, c, m)) {
1883 1.1 joff bad:
1884 1.1 joff s = splnet();
1885 1.1 joff SLIST_INSERT_HEAD(&cd->atu_tx_free, c,
1886 1.1 joff atu_list);
1887 1.1 joff cd->atu_tx_inuse--;
1888 1.1 joff splx(s);
1889 1.1 joff /* ifp_if_oerrors++; */
1890 1.3 joff if (ni != NULL)
1891 1.1 joff ieee80211_release_node(ic, ni);
1892 1.1 joff continue;
1893 1.1 joff }
1894 1.1 joff ifp->if_timer = 5;
1895 1.1 joff }
1896 1.1 joff }
1897 1.1 joff
1898 1.1 joff int
1899 1.1 joff atu_init(struct ifnet *ifp)
1900 1.1 joff {
1901 1.1 joff struct atu_softc *sc = ifp->if_softc;
1902 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
1903 1.1 joff struct atu_chain *c;
1904 1.1 joff usbd_status err;
1905 1.1 joff int i, s;
1906 1.1 joff
1907 1.1 joff s = splnet();
1908 1.1 joff
1909 1.1 joff DPRINTFN(10, ("%s: atu_init\n", USBDEVNAME(sc->atu_dev)));
1910 1.1 joff
1911 1.1 joff if (ifp->if_flags & IFF_RUNNING) {
1912 1.1 joff splx(s);
1913 1.1 joff return(0);
1914 1.1 joff }
1915 1.1 joff
1916 1.1 joff /* Init TX ring */
1917 1.1 joff if (atu_tx_list_init(sc))
1918 1.1 joff printf("%s: tx list init failed\n", USBDEVNAME(sc->atu_dev));
1919 1.1 joff
1920 1.1 joff /* Init RX ring */
1921 1.1 joff if (atu_rx_list_init(sc))
1922 1.1 joff printf("%s: rx list init failed\n", USBDEVNAME(sc->atu_dev));
1923 1.1 joff
1924 1.1 joff /* Load the multicast filter. */
1925 1.1 joff /*atu_setmulti(sc); */
1926 1.1 joff
1927 1.1 joff /* Open RX and TX pipes. */
1928 1.1 joff err = usbd_open_pipe(sc->atu_iface, sc->atu_ed[ATU_ENDPT_RX],
1929 1.1 joff USBD_EXCLUSIVE_USE, &sc->atu_ep[ATU_ENDPT_RX]);
1930 1.1 joff if (err) {
1931 1.1 joff DPRINTF(("%s: open rx pipe failed: %s\n",
1932 1.1 joff USBDEVNAME(sc->atu_dev), usbd_errstr(err)));
1933 1.1 joff splx(s);
1934 1.1 joff return(EIO);
1935 1.1 joff }
1936 1.1 joff
1937 1.1 joff err = usbd_open_pipe(sc->atu_iface, sc->atu_ed[ATU_ENDPT_TX],
1938 1.1 joff USBD_EXCLUSIVE_USE, &sc->atu_ep[ATU_ENDPT_TX]);
1939 1.1 joff if (err) {
1940 1.1 joff DPRINTF(("%s: open tx pipe failed: %s\n",
1941 1.1 joff USBDEVNAME(sc->atu_dev), usbd_errstr(err)));
1942 1.1 joff splx(s);
1943 1.1 joff return(EIO);
1944 1.1 joff }
1945 1.1 joff
1946 1.1 joff /* Start up the receive pipe. */
1947 1.1 joff for (i = 0; i < ATU_RX_LIST_CNT; i++) {
1948 1.1 joff c = &sc->atu_cdata.atu_rx_chain[i];
1949 1.1 joff
1950 1.1 joff usbd_setup_xfer(c->atu_xfer, sc->atu_ep[ATU_ENDPT_RX], c,
1951 1.1 joff c->atu_buf, ATU_RX_BUFSZ, USBD_SHORT_XFER_OK | USBD_NO_COPY,
1952 1.1 joff USBD_NO_TIMEOUT, atu_rxeof);
1953 1.1 joff usbd_transfer(c->atu_xfer);
1954 1.1 joff }
1955 1.1 joff
1956 1.1 joff DPRINTFN(10, ("%s: starting up using MAC=%s\n",
1957 1.1 joff USBDEVNAME(sc->atu_dev), ether_sprintf(ic->ic_myaddr)));
1958 1.1 joff
1959 1.1 joff /* Do initial setup */
1960 1.1 joff err = atu_initial_config(sc);
1961 1.1 joff if (err) {
1962 1.1 joff DPRINTF(("%s: initial config failed!\n",
1963 1.1 joff USBDEVNAME(sc->atu_dev)));
1964 1.1 joff splx(s);
1965 1.1 joff return(EIO);
1966 1.1 joff }
1967 1.1 joff DPRINTFN(10, ("%s: initialised transceiver\n",
1968 1.1 joff USBDEVNAME(sc->atu_dev)));
1969 1.1 joff
1970 1.1 joff /* sc->atu_rxfilt = ATU_RXFILT_UNICAST|ATU_RXFILT_BROADCAST; */
1971 1.1 joff
1972 1.1 joff /* If we want promiscuous mode, set the allframes bit. */
1973 1.1 joff /*
1974 1.1 joff if (ifp->if_flags & IFF_PROMISC)
1975 1.1 joff sc->atu_rxfilt |= ATU_RXFILT_PROMISC;
1976 1.1 joff */
1977 1.1 joff
1978 1.1 joff ifp->if_flags |= IFF_RUNNING;
1979 1.1 joff ifp->if_flags &= ~IFF_OACTIVE;
1980 1.1 joff splx(s);
1981 1.1 joff
1982 1.1 joff /* XXX the following HAS to be replaced */
1983 1.1 joff s = splnet();
1984 1.1 joff err = ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
1985 1.1 joff if (err)
1986 1.1 joff DPRINTFN(1, ("%s: atu_init: error calling "
1987 1.1 joff "ieee80211_net_state", USBDEVNAME(sc->atu_dev)));
1988 1.1 joff splx(s);
1989 1.1 joff
1990 1.1 joff return 0;
1991 1.1 joff }
1992 1.1 joff
1993 1.1 joff #ifdef ATU_DEBUG
1994 1.1 joff void
1995 1.1 joff atu_debug_print(struct atu_softc *sc)
1996 1.1 joff {
1997 1.1 joff usbd_status err;
1998 1.1 joff u_int8_t tmp[32];
1999 1.1 joff
2000 1.1 joff /* DEBUG */
2001 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_MGMT__CURRENT_BSSID, tmp)))
2002 1.1 joff return;
2003 1.1 joff DPRINTF(("%s: DEBUG: current BSSID=%s\n", USBDEVNAME(sc->atu_dev),
2004 1.1 joff ether_sprintf(tmp)));
2005 1.1 joff
2006 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_MGMT__BEACON_PERIOD, tmp)))
2007 1.1 joff return;
2008 1.1 joff DPRINTF(("%s: DEBUG: beacon period=%d\n", USBDEVNAME(sc->atu_dev),
2009 1.1 joff tmp[0]));
2010 1.1 joff
2011 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_WEP__PRIVACY_INVOKED, tmp)))
2012 1.1 joff return;
2013 1.1 joff DPRINTF(("%s: DEBUG: privacy invoked=%d\n", USBDEVNAME(sc->atu_dev),
2014 1.1 joff tmp[0]));
2015 1.1 joff
2016 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_WEP__ENCR_LEVEL, tmp)))
2017 1.1 joff return;
2018 1.1 joff DPRINTF(("%s: DEBUG: encr_level=%d\n", USBDEVNAME(sc->atu_dev),
2019 1.1 joff tmp[0]));
2020 1.1 joff
2021 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_WEP__ICV_ERROR_COUNT, tmp)))
2022 1.1 joff return;
2023 1.1 joff DPRINTF(("%s: DEBUG: icv error count=%d\n", USBDEVNAME(sc->atu_dev),
2024 1.1 joff *(short *)tmp));
2025 1.1 joff
2026 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_WEP__EXCLUDED_COUNT, tmp)))
2027 1.1 joff return;
2028 1.1 joff DPRINTF(("%s: DEBUG: wep excluded count=%d\n",
2029 1.1 joff USBDEVNAME(sc->atu_dev), *(short *)tmp));
2030 1.1 joff
2031 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_MGMT__POWER_MODE, tmp)))
2032 1.1 joff return;
2033 1.1 joff DPRINTF(("%s: DEBUG: power mode=%d\n", USBDEVNAME(sc->atu_dev),
2034 1.1 joff tmp[0]));
2035 1.1 joff
2036 1.1 joff if ((err = atu_get_mib(sc, MIB_PHY__CHANNEL, tmp)))
2037 1.1 joff return;
2038 1.1 joff DPRINTF(("%s: DEBUG: channel=%d\n", USBDEVNAME(sc->atu_dev), tmp[0]));
2039 1.1 joff
2040 1.1 joff if ((err = atu_get_mib(sc, MIB_PHY__REG_DOMAIN, tmp)))
2041 1.1 joff return;
2042 1.1 joff DPRINTF(("%s: DEBUG: reg domain=%d\n", USBDEVNAME(sc->atu_dev),
2043 1.1 joff tmp[0]));
2044 1.1 joff
2045 1.1 joff if ((err = atu_get_mib(sc, MIB_LOCAL__SSID_SIZE, tmp)))
2046 1.1 joff return;
2047 1.1 joff DPRINTF(("%s: DEBUG: ssid size=%d\n", USBDEVNAME(sc->atu_dev),
2048 1.1 joff tmp[0]));
2049 1.1 joff
2050 1.1 joff if ((err = atu_get_mib(sc, MIB_LOCAL__BEACON_ENABLE, tmp)))
2051 1.1 joff return;
2052 1.1 joff DPRINTF(("%s: DEBUG: beacon enable=%d\n", USBDEVNAME(sc->atu_dev),
2053 1.1 joff tmp[0]));
2054 1.1 joff
2055 1.1 joff if ((err = atu_get_mib(sc, MIB_LOCAL__AUTO_RATE_FALLBACK, tmp)))
2056 1.1 joff return;
2057 1.1 joff DPRINTF(("%s: DEBUG: auto rate fallback=%d\n",
2058 1.1 joff USBDEVNAME(sc->atu_dev), tmp[0]));
2059 1.1 joff
2060 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_ADDR__ADDR, tmp)))
2061 1.1 joff return;
2062 1.1 joff DPRINTF(("%s: DEBUG: mac addr=%s\n", USBDEVNAME(sc->atu_dev),
2063 1.1 joff ether_sprintf(tmp)));
2064 1.1 joff
2065 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC__DESIRED_SSID, tmp)))
2066 1.1 joff return;
2067 1.1 joff DPRINTF(("%s: DEBUG: desired ssid=%s\n", USBDEVNAME(sc->atu_dev),
2068 1.1 joff tmp));
2069 1.1 joff
2070 1.1 joff if ((err = atu_get_mib(sc, MIB_MAC_MGMT__CURRENT_ESSID, tmp)))
2071 1.1 joff return;
2072 1.1 joff DPRINTF(("%s: DEBUG: current ESSID=%s\n", USBDEVNAME(sc->atu_dev),
2073 1.1 joff tmp));
2074 1.1 joff }
2075 1.1 joff #endif /* ATU_DEBUG */
2076 1.1 joff
2077 1.1 joff int
2078 1.1 joff atu_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
2079 1.1 joff {
2080 1.1 joff struct atu_softc *sc = ifp->if_softc;
2081 1.1 joff struct ifreq *ifr = (struct ifreq *)data;
2082 1.1 joff struct ieee80211com *ic = &sc->sc_ic;
2083 1.1 joff int err = 0, s;
2084 1.1 joff
2085 1.1 joff s = splnet();
2086 1.1 joff switch (command) {
2087 1.1 joff case SIOCSIFMEDIA:
2088 1.1 joff case SIOCGIFMEDIA:
2089 1.1 joff err = ifmedia_ioctl(ifp, ifr, &ic->ic_media, command);
2090 1.1 joff break;
2091 1.1 joff
2092 1.1 joff default:
2093 1.1 joff DPRINTFN(15, ("%s: ieee80211_ioctl (%lu)\n",
2094 1.1 joff USBDEVNAME(sc->atu_dev), command));
2095 1.1 joff err = ieee80211_ioctl(ifp, command, data);
2096 1.1 joff break;
2097 1.1 joff }
2098 1.1 joff
2099 1.1 joff if (err == ENETRESET) {
2100 1.1 joff if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) ==
2101 1.1 joff (IFF_RUNNING|IFF_UP)) {
2102 1.6 joff DPRINTF(("%s: atu_ioctl(): netreset %lu\n",
2103 1.6 joff USBDEVNAME(sc->atu_dev), command));
2104 1.6 joff ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
2105 1.6 joff atu_initial_config(sc);
2106 1.6 joff ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
2107 1.1 joff }
2108 1.1 joff err = 0;
2109 1.1 joff }
2110 1.1 joff
2111 1.1 joff splx(s);
2112 1.1 joff return (err);
2113 1.1 joff }
2114 1.1 joff
2115 1.1 joff void
2116 1.1 joff atu_watchdog(struct ifnet *ifp)
2117 1.1 joff {
2118 1.1 joff struct atu_softc *sc = ifp->if_softc;
2119 1.1 joff struct atu_chain *c;
2120 1.1 joff usbd_status stat;
2121 1.1 joff int cnt, s;
2122 1.1 joff
2123 1.1 joff DPRINTF(("%s: atu_watchdog\n", USBDEVNAME(sc->atu_dev)));
2124 1.1 joff
2125 1.1 joff ifp->if_timer = 0;
2126 1.1 joff
2127 1.3 joff if (sc->sc_state != ATU_S_OK || (ifp->if_flags & IFF_RUNNING) == 0)
2128 1.1 joff return;
2129 1.1 joff
2130 1.1 joff sc = ifp->if_softc;
2131 1.1 joff s = splnet();
2132 1.1 joff ifp->if_oerrors++;
2133 1.1 joff DPRINTF(("%s: watchdog timeout\n", USBDEVNAME(sc->atu_dev)));
2134 1.1 joff
2135 1.1 joff /*
2136 1.1 joff * TODO:
2137 1.1 joff * we should change this since we have multiple TX tranfers...
2138 1.1 joff */
2139 1.1 joff for (cnt = 0; cnt < ATU_TX_LIST_CNT; cnt++) {
2140 1.1 joff c = &sc->atu_cdata.atu_tx_chain[cnt];
2141 1.1 joff if (c->atu_in_xfer) {
2142 1.1 joff usbd_get_xfer_status(c->atu_xfer, NULL, NULL, NULL,
2143 1.1 joff &stat);
2144 1.1 joff atu_txeof(c->atu_xfer, c, stat);
2145 1.1 joff }
2146 1.1 joff }
2147 1.1 joff
2148 1.6 joff if (!IFQ_IS_EMPTY(&ifp->if_snd))
2149 1.1 joff atu_start(ifp);
2150 1.1 joff splx(s);
2151 1.1 joff
2152 1.1 joff ieee80211_watchdog(ifp);
2153 1.1 joff }
2154 1.1 joff
2155 1.1 joff /*
2156 1.1 joff * Stop the adapter and free any mbufs allocated to the
2157 1.1 joff * RX and TX lists.
2158 1.1 joff */
2159 1.1 joff void
2160 1.1 joff atu_stop(struct ifnet *ifp, int disable)
2161 1.1 joff {
2162 1.1 joff struct atu_softc *sc = ifp->if_softc;
2163 1.6 joff struct ieee80211com *ic = &sc->sc_ic;
2164 1.1 joff struct atu_cdata *cd;
2165 1.1 joff usbd_status err;
2166 1.1 joff int s;
2167 1.1 joff
2168 1.1 joff s = splnet();
2169 1.4 joff ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
2170 1.1 joff ifp->if_timer = 0;
2171 1.1 joff
2172 1.6 joff usb_rem_task(sc->atu_udev, &sc->sc_task);
2173 1.6 joff ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
2174 1.6 joff
2175 1.1 joff /* Stop transfers. */
2176 1.1 joff if (sc->atu_ep[ATU_ENDPT_RX] != NULL) {
2177 1.1 joff err = usbd_abort_pipe(sc->atu_ep[ATU_ENDPT_RX]);
2178 1.1 joff if (err) {
2179 1.1 joff DPRINTF(("%s: abort rx pipe failed: %s\n",
2180 1.1 joff USBDEVNAME(sc->atu_dev), usbd_errstr(err)));
2181 1.1 joff }
2182 1.1 joff err = usbd_close_pipe(sc->atu_ep[ATU_ENDPT_RX]);
2183 1.1 joff if (err) {
2184 1.1 joff DPRINTF(("%s: close rx pipe failed: %s\n",
2185 1.1 joff USBDEVNAME(sc->atu_dev), usbd_errstr(err)));
2186 1.1 joff }
2187 1.1 joff sc->atu_ep[ATU_ENDPT_RX] = NULL;
2188 1.1 joff }
2189 1.1 joff
2190 1.1 joff if (sc->atu_ep[ATU_ENDPT_TX] != NULL) {
2191 1.1 joff err = usbd_abort_pipe(sc->atu_ep[ATU_ENDPT_TX]);
2192 1.1 joff if (err) {
2193 1.1 joff DPRINTF(("%s: abort tx pipe failed: %s\n",
2194 1.1 joff USBDEVNAME(sc->atu_dev), usbd_errstr(err)));
2195 1.1 joff }
2196 1.1 joff err = usbd_close_pipe(sc->atu_ep[ATU_ENDPT_TX]);
2197 1.1 joff if (err) {
2198 1.1 joff DPRINTF(("%s: close tx pipe failed: %s\n",
2199 1.1 joff USBDEVNAME(sc->atu_dev), usbd_errstr(err)));
2200 1.1 joff }
2201 1.1 joff sc->atu_ep[ATU_ENDPT_TX] = NULL;
2202 1.1 joff }
2203 1.1 joff
2204 1.1 joff /* Free RX/TX/MGMT list resources. */
2205 1.1 joff cd = &sc->atu_cdata;
2206 1.1 joff atu_xfer_list_free(sc, cd->atu_rx_chain, ATU_RX_LIST_CNT);
2207 1.1 joff atu_xfer_list_free(sc, cd->atu_tx_chain, ATU_TX_LIST_CNT);
2208 1.1 joff
2209 1.1 joff /* Let's be nice and turn off the radio before we leave */
2210 1.1 joff atu_switch_radio(sc, 0);
2211 1.1 joff
2212 1.1 joff splx(s);
2213 1.1 joff }
2214