Merge branch 'upstream-fixes' into upstream
[deliverable/linux.git] / drivers / net / wireless / zd1211rw / zd_mac.c
1 /* zd_mac.c
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17
18 #include <linux/netdevice.h>
19 #include <linux/etherdevice.h>
20 #include <linux/wireless.h>
21 #include <linux/usb.h>
22 #include <linux/jiffies.h>
23 #include <net/ieee80211_radiotap.h>
24
25 #include "zd_def.h"
26 #include "zd_chip.h"
27 #include "zd_mac.h"
28 #include "zd_ieee80211.h"
29 #include "zd_netdev.h"
30 #include "zd_rf.h"
31 #include "zd_util.h"
32
33 static void ieee_init(struct ieee80211_device *ieee);
34 static void softmac_init(struct ieee80211softmac_device *sm);
35
36 int zd_mac_init(struct zd_mac *mac,
37 struct net_device *netdev,
38 struct usb_interface *intf)
39 {
40 struct ieee80211_device *ieee = zd_netdev_ieee80211(netdev);
41
42 memset(mac, 0, sizeof(*mac));
43 spin_lock_init(&mac->lock);
44 mac->netdev = netdev;
45
46 ieee_init(ieee);
47 softmac_init(ieee80211_priv(netdev));
48 zd_chip_init(&mac->chip, netdev, intf);
49 return 0;
50 }
51
52 static int reset_channel(struct zd_mac *mac)
53 {
54 int r;
55 unsigned long flags;
56 const struct channel_range *range;
57
58 spin_lock_irqsave(&mac->lock, flags);
59 range = zd_channel_range(mac->regdomain);
60 if (!range->start) {
61 r = -EINVAL;
62 goto out;
63 }
64 mac->requested_channel = range->start;
65 r = 0;
66 out:
67 spin_unlock_irqrestore(&mac->lock, flags);
68 return r;
69 }
70
71 int zd_mac_init_hw(struct zd_mac *mac, u8 device_type)
72 {
73 int r;
74 struct zd_chip *chip = &mac->chip;
75 u8 addr[ETH_ALEN];
76 u8 default_regdomain;
77
78 r = zd_chip_enable_int(chip);
79 if (r)
80 goto out;
81 r = zd_chip_init_hw(chip, device_type);
82 if (r)
83 goto disable_int;
84
85 zd_get_e2p_mac_addr(chip, addr);
86 r = zd_write_mac_addr(chip, addr);
87 if (r)
88 goto disable_int;
89 ZD_ASSERT(!irqs_disabled());
90 spin_lock_irq(&mac->lock);
91 memcpy(mac->netdev->dev_addr, addr, ETH_ALEN);
92 spin_unlock_irq(&mac->lock);
93
94 r = zd_read_regdomain(chip, &default_regdomain);
95 if (r)
96 goto disable_int;
97 if (!zd_regdomain_supported(default_regdomain)) {
98 dev_dbg_f(zd_mac_dev(mac),
99 "Regulatory Domain %#04x is not supported.\n",
100 default_regdomain);
101 r = -EINVAL;
102 goto disable_int;
103 }
104 spin_lock_irq(&mac->lock);
105 mac->regdomain = mac->default_regdomain = default_regdomain;
106 spin_unlock_irq(&mac->lock);
107 r = reset_channel(mac);
108 if (r)
109 goto disable_int;
110
111 /* We must inform the device that we are doing encryption/decryption in
112 * software at the moment. */
113 r = zd_set_encryption_type(chip, ENC_SNIFFER);
114 if (r)
115 goto disable_int;
116
117 r = zd_geo_init(zd_mac_to_ieee80211(mac), mac->regdomain);
118 if (r)
119 goto disable_int;
120
121 r = 0;
122 disable_int:
123 zd_chip_disable_int(chip);
124 out:
125 return r;
126 }
127
128 void zd_mac_clear(struct zd_mac *mac)
129 {
130 zd_chip_clear(&mac->chip);
131 ZD_ASSERT(!spin_is_locked(&mac->lock));
132 ZD_MEMCLEAR(mac, sizeof(struct zd_mac));
133 }
134
135 static int reset_mode(struct zd_mac *mac)
136 {
137 struct ieee80211_device *ieee = zd_mac_to_ieee80211(mac);
138 struct zd_ioreq32 ioreqs[3] = {
139 { CR_RX_FILTER, STA_RX_FILTER },
140 { CR_SNIFFER_ON, 0U },
141 };
142
143 if (ieee->iw_mode == IW_MODE_MONITOR) {
144 ioreqs[0].value = 0xffffffff;
145 ioreqs[1].value = 0x1;
146 ioreqs[2].value = ENC_SNIFFER;
147 }
148
149 return zd_iowrite32a(&mac->chip, ioreqs, 3);
150 }
151
152 int zd_mac_open(struct net_device *netdev)
153 {
154 struct zd_mac *mac = zd_netdev_mac(netdev);
155 struct zd_chip *chip = &mac->chip;
156 int r;
157
158 r = zd_chip_enable_int(chip);
159 if (r < 0)
160 goto out;
161
162 r = zd_chip_set_basic_rates(chip, CR_RATES_80211B | CR_RATES_80211G);
163 if (r < 0)
164 goto disable_int;
165 r = reset_mode(mac);
166 if (r)
167 goto disable_int;
168 r = zd_chip_switch_radio_on(chip);
169 if (r < 0)
170 goto disable_int;
171 r = zd_chip_set_channel(chip, mac->requested_channel);
172 if (r < 0)
173 goto disable_radio;
174 r = zd_chip_enable_rx(chip);
175 if (r < 0)
176 goto disable_radio;
177 r = zd_chip_enable_hwint(chip);
178 if (r < 0)
179 goto disable_rx;
180
181 ieee80211softmac_start(netdev);
182 return 0;
183 disable_rx:
184 zd_chip_disable_rx(chip);
185 disable_radio:
186 zd_chip_switch_radio_off(chip);
187 disable_int:
188 zd_chip_disable_int(chip);
189 out:
190 return r;
191 }
192
193 int zd_mac_stop(struct net_device *netdev)
194 {
195 struct zd_mac *mac = zd_netdev_mac(netdev);
196 struct zd_chip *chip = &mac->chip;
197
198 netif_stop_queue(netdev);
199
200 /*
201 * The order here deliberately is a little different from the open()
202 * method, since we need to make sure there is no opportunity for RX
203 * frames to be processed by softmac after we have stopped it.
204 */
205
206 zd_chip_disable_rx(chip);
207 ieee80211softmac_stop(netdev);
208
209 zd_chip_disable_hwint(chip);
210 zd_chip_switch_radio_off(chip);
211 zd_chip_disable_int(chip);
212
213 return 0;
214 }
215
216 int zd_mac_set_mac_address(struct net_device *netdev, void *p)
217 {
218 int r;
219 unsigned long flags;
220 struct sockaddr *addr = p;
221 struct zd_mac *mac = zd_netdev_mac(netdev);
222 struct zd_chip *chip = &mac->chip;
223
224 if (!is_valid_ether_addr(addr->sa_data))
225 return -EADDRNOTAVAIL;
226
227 dev_dbg_f(zd_mac_dev(mac),
228 "Setting MAC to " MAC_FMT "\n", MAC_ARG(addr->sa_data));
229
230 r = zd_write_mac_addr(chip, addr->sa_data);
231 if (r)
232 return r;
233
234 spin_lock_irqsave(&mac->lock, flags);
235 memcpy(netdev->dev_addr, addr->sa_data, ETH_ALEN);
236 spin_unlock_irqrestore(&mac->lock, flags);
237
238 return 0;
239 }
240
241 int zd_mac_set_regdomain(struct zd_mac *mac, u8 regdomain)
242 {
243 int r;
244 u8 channel;
245
246 ZD_ASSERT(!irqs_disabled());
247 spin_lock_irq(&mac->lock);
248 if (regdomain == 0) {
249 regdomain = mac->default_regdomain;
250 }
251 if (!zd_regdomain_supported(regdomain)) {
252 spin_unlock_irq(&mac->lock);
253 return -EINVAL;
254 }
255 mac->regdomain = regdomain;
256 channel = mac->requested_channel;
257 spin_unlock_irq(&mac->lock);
258
259 r = zd_geo_init(zd_mac_to_ieee80211(mac), regdomain);
260 if (r)
261 return r;
262 if (!zd_regdomain_supports_channel(regdomain, channel)) {
263 r = reset_channel(mac);
264 if (r)
265 return r;
266 }
267
268 return 0;
269 }
270
271 u8 zd_mac_get_regdomain(struct zd_mac *mac)
272 {
273 unsigned long flags;
274 u8 regdomain;
275
276 spin_lock_irqsave(&mac->lock, flags);
277 regdomain = mac->regdomain;
278 spin_unlock_irqrestore(&mac->lock, flags);
279 return regdomain;
280 }
281
282 static void set_channel(struct net_device *netdev, u8 channel)
283 {
284 struct zd_mac *mac = zd_netdev_mac(netdev);
285
286 dev_dbg_f(zd_mac_dev(mac), "channel %d\n", channel);
287
288 zd_chip_set_channel(&mac->chip, channel);
289 }
290
291 /* TODO: Should not work in Managed mode. */
292 int zd_mac_request_channel(struct zd_mac *mac, u8 channel)
293 {
294 unsigned long lock_flags;
295 struct ieee80211_device *ieee = zd_mac_to_ieee80211(mac);
296
297 if (ieee->iw_mode == IW_MODE_INFRA)
298 return -EPERM;
299
300 spin_lock_irqsave(&mac->lock, lock_flags);
301 if (!zd_regdomain_supports_channel(mac->regdomain, channel)) {
302 spin_unlock_irqrestore(&mac->lock, lock_flags);
303 return -EINVAL;
304 }
305 mac->requested_channel = channel;
306 spin_unlock_irqrestore(&mac->lock, lock_flags);
307 if (netif_running(mac->netdev))
308 return zd_chip_set_channel(&mac->chip, channel);
309 else
310 return 0;
311 }
312
313 int zd_mac_get_channel(struct zd_mac *mac, u8 *channel, u8 *flags)
314 {
315 struct ieee80211_device *ieee = zd_mac_to_ieee80211(mac);
316
317 *channel = zd_chip_get_channel(&mac->chip);
318 if (ieee->iw_mode != IW_MODE_INFRA) {
319 spin_lock_irq(&mac->lock);
320 *flags = *channel == mac->requested_channel ?
321 MAC_FIXED_CHANNEL : 0;
322 spin_unlock(&mac->lock);
323 } else {
324 *flags = 0;
325 }
326 dev_dbg_f(zd_mac_dev(mac), "channel %u flags %u\n", *channel, *flags);
327 return 0;
328 }
329
330 /* If wrong rate is given, we are falling back to the slowest rate: 1MBit/s */
331 static u8 cs_typed_rate(u8 cs_rate)
332 {
333 static const u8 typed_rates[16] = {
334 [ZD_CS_CCK_RATE_1M] = ZD_CS_CCK|ZD_CS_CCK_RATE_1M,
335 [ZD_CS_CCK_RATE_2M] = ZD_CS_CCK|ZD_CS_CCK_RATE_2M,
336 [ZD_CS_CCK_RATE_5_5M] = ZD_CS_CCK|ZD_CS_CCK_RATE_5_5M,
337 [ZD_CS_CCK_RATE_11M] = ZD_CS_CCK|ZD_CS_CCK_RATE_11M,
338 [ZD_OFDM_RATE_6M] = ZD_CS_OFDM|ZD_OFDM_RATE_6M,
339 [ZD_OFDM_RATE_9M] = ZD_CS_OFDM|ZD_OFDM_RATE_9M,
340 [ZD_OFDM_RATE_12M] = ZD_CS_OFDM|ZD_OFDM_RATE_12M,
341 [ZD_OFDM_RATE_18M] = ZD_CS_OFDM|ZD_OFDM_RATE_18M,
342 [ZD_OFDM_RATE_24M] = ZD_CS_OFDM|ZD_OFDM_RATE_24M,
343 [ZD_OFDM_RATE_36M] = ZD_CS_OFDM|ZD_OFDM_RATE_36M,
344 [ZD_OFDM_RATE_48M] = ZD_CS_OFDM|ZD_OFDM_RATE_48M,
345 [ZD_OFDM_RATE_54M] = ZD_CS_OFDM|ZD_OFDM_RATE_54M,
346 };
347
348 ZD_ASSERT(ZD_CS_RATE_MASK == 0x0f);
349 return typed_rates[cs_rate & ZD_CS_RATE_MASK];
350 }
351
352 /* Fallback to lowest rate, if rate is unknown. */
353 static u8 rate_to_cs_rate(u8 rate)
354 {
355 switch (rate) {
356 case IEEE80211_CCK_RATE_2MB:
357 return ZD_CS_CCK_RATE_2M;
358 case IEEE80211_CCK_RATE_5MB:
359 return ZD_CS_CCK_RATE_5_5M;
360 case IEEE80211_CCK_RATE_11MB:
361 return ZD_CS_CCK_RATE_11M;
362 case IEEE80211_OFDM_RATE_6MB:
363 return ZD_OFDM_RATE_6M;
364 case IEEE80211_OFDM_RATE_9MB:
365 return ZD_OFDM_RATE_9M;
366 case IEEE80211_OFDM_RATE_12MB:
367 return ZD_OFDM_RATE_12M;
368 case IEEE80211_OFDM_RATE_18MB:
369 return ZD_OFDM_RATE_18M;
370 case IEEE80211_OFDM_RATE_24MB:
371 return ZD_OFDM_RATE_24M;
372 case IEEE80211_OFDM_RATE_36MB:
373 return ZD_OFDM_RATE_36M;
374 case IEEE80211_OFDM_RATE_48MB:
375 return ZD_OFDM_RATE_48M;
376 case IEEE80211_OFDM_RATE_54MB:
377 return ZD_OFDM_RATE_54M;
378 }
379 return ZD_CS_CCK_RATE_1M;
380 }
381
382 int zd_mac_set_mode(struct zd_mac *mac, u32 mode)
383 {
384 struct ieee80211_device *ieee;
385
386 switch (mode) {
387 case IW_MODE_AUTO:
388 case IW_MODE_ADHOC:
389 case IW_MODE_INFRA:
390 mac->netdev->type = ARPHRD_ETHER;
391 break;
392 case IW_MODE_MONITOR:
393 mac->netdev->type = ARPHRD_IEEE80211_RADIOTAP;
394 break;
395 default:
396 dev_dbg_f(zd_mac_dev(mac), "wrong mode %u\n", mode);
397 return -EINVAL;
398 }
399
400 ieee = zd_mac_to_ieee80211(mac);
401 ZD_ASSERT(!irqs_disabled());
402 spin_lock_irq(&ieee->lock);
403 ieee->iw_mode = mode;
404 spin_unlock_irq(&ieee->lock);
405
406 if (netif_running(mac->netdev))
407 return reset_mode(mac);
408
409 return 0;
410 }
411
412 int zd_mac_get_mode(struct zd_mac *mac, u32 *mode)
413 {
414 unsigned long flags;
415 struct ieee80211_device *ieee;
416
417 ieee = zd_mac_to_ieee80211(mac);
418 spin_lock_irqsave(&ieee->lock, flags);
419 *mode = ieee->iw_mode;
420 spin_unlock_irqrestore(&ieee->lock, flags);
421 return 0;
422 }
423
424 int zd_mac_get_range(struct zd_mac *mac, struct iw_range *range)
425 {
426 int i;
427 const struct channel_range *channel_range;
428 u8 regdomain;
429
430 memset(range, 0, sizeof(*range));
431
432 /* FIXME: Not so important and depends on the mode. For 802.11g
433 * usually this value is used. It seems to be that Bit/s number is
434 * given here.
435 */
436 range->throughput = 27 * 1000 * 1000;
437
438 range->max_qual.qual = 100;
439 range->max_qual.level = 100;
440
441 /* FIXME: Needs still to be tuned. */
442 range->avg_qual.qual = 71;
443 range->avg_qual.level = 80;
444
445 /* FIXME: depends on standard? */
446 range->min_rts = 256;
447 range->max_rts = 2346;
448
449 range->min_frag = MIN_FRAG_THRESHOLD;
450 range->max_frag = MAX_FRAG_THRESHOLD;
451
452 range->max_encoding_tokens = WEP_KEYS;
453 range->num_encoding_sizes = 2;
454 range->encoding_size[0] = 5;
455 range->encoding_size[1] = WEP_KEY_LEN;
456
457 range->we_version_compiled = WIRELESS_EXT;
458 range->we_version_source = 20;
459
460 ZD_ASSERT(!irqs_disabled());
461 spin_lock_irq(&mac->lock);
462 regdomain = mac->regdomain;
463 spin_unlock_irq(&mac->lock);
464 channel_range = zd_channel_range(regdomain);
465
466 range->num_channels = channel_range->end - channel_range->start;
467 range->old_num_channels = range->num_channels;
468 range->num_frequency = range->num_channels;
469 range->old_num_frequency = range->num_frequency;
470
471 for (i = 0; i < range->num_frequency; i++) {
472 struct iw_freq *freq = &range->freq[i];
473 freq->i = channel_range->start + i;
474 zd_channel_to_freq(freq, freq->i);
475 }
476
477 return 0;
478 }
479
480 static int zd_calc_tx_length_us(u8 *service, u8 cs_rate, u16 tx_length)
481 {
482 static const u8 rate_divisor[] = {
483 [ZD_CS_CCK_RATE_1M] = 1,
484 [ZD_CS_CCK_RATE_2M] = 2,
485 [ZD_CS_CCK_RATE_5_5M] = 11, /* bits must be doubled */
486 [ZD_CS_CCK_RATE_11M] = 11,
487 [ZD_OFDM_RATE_6M] = 6,
488 [ZD_OFDM_RATE_9M] = 9,
489 [ZD_OFDM_RATE_12M] = 12,
490 [ZD_OFDM_RATE_18M] = 18,
491 [ZD_OFDM_RATE_24M] = 24,
492 [ZD_OFDM_RATE_36M] = 36,
493 [ZD_OFDM_RATE_48M] = 48,
494 [ZD_OFDM_RATE_54M] = 54,
495 };
496
497 u32 bits = (u32)tx_length * 8;
498 u32 divisor;
499
500 divisor = rate_divisor[cs_rate];
501 if (divisor == 0)
502 return -EINVAL;
503
504 switch (cs_rate) {
505 case ZD_CS_CCK_RATE_5_5M:
506 bits = (2*bits) + 10; /* round up to the next integer */
507 break;
508 case ZD_CS_CCK_RATE_11M:
509 if (service) {
510 u32 t = bits % 11;
511 *service &= ~ZD_PLCP_SERVICE_LENGTH_EXTENSION;
512 if (0 < t && t <= 3) {
513 *service |= ZD_PLCP_SERVICE_LENGTH_EXTENSION;
514 }
515 }
516 bits += 10; /* round up to the next integer */
517 break;
518 }
519
520 return bits/divisor;
521 }
522
523 enum {
524 R2M_SHORT_PREAMBLE = 0x01,
525 R2M_11A = 0x02,
526 };
527
528 static u8 cs_rate_to_modulation(u8 cs_rate, int flags)
529 {
530 u8 modulation;
531
532 modulation = cs_typed_rate(cs_rate);
533 if (flags & R2M_SHORT_PREAMBLE) {
534 switch (ZD_CS_RATE(modulation)) {
535 case ZD_CS_CCK_RATE_2M:
536 case ZD_CS_CCK_RATE_5_5M:
537 case ZD_CS_CCK_RATE_11M:
538 modulation |= ZD_CS_CCK_PREA_SHORT;
539 return modulation;
540 }
541 }
542 if (flags & R2M_11A) {
543 if (ZD_CS_TYPE(modulation) == ZD_CS_OFDM)
544 modulation |= ZD_CS_OFDM_MODE_11A;
545 }
546 return modulation;
547 }
548
549 static void cs_set_modulation(struct zd_mac *mac, struct zd_ctrlset *cs,
550 struct ieee80211_hdr_4addr *hdr)
551 {
552 struct ieee80211softmac_device *softmac = ieee80211_priv(mac->netdev);
553 u16 ftype = WLAN_FC_GET_TYPE(le16_to_cpu(hdr->frame_ctl));
554 u8 rate, cs_rate;
555 int is_mgt = (ftype == IEEE80211_FTYPE_MGMT) != 0;
556
557 /* FIXME: 802.11a? short preamble? */
558 rate = ieee80211softmac_suggest_txrate(softmac,
559 is_multicast_ether_addr(hdr->addr1), is_mgt);
560
561 cs_rate = rate_to_cs_rate(rate);
562 cs->modulation = cs_rate_to_modulation(cs_rate, 0);
563 }
564
565 static void cs_set_control(struct zd_mac *mac, struct zd_ctrlset *cs,
566 struct ieee80211_hdr_4addr *header)
567 {
568 unsigned int tx_length = le16_to_cpu(cs->tx_length);
569 u16 fctl = le16_to_cpu(header->frame_ctl);
570 u16 ftype = WLAN_FC_GET_TYPE(fctl);
571 u16 stype = WLAN_FC_GET_STYPE(fctl);
572
573 /*
574 * CONTROL:
575 * - start at 0x00
576 * - if fragment 0, enable bit 0
577 * - if backoff needed, enable bit 0
578 * - if burst (backoff not needed) disable bit 0
579 * - if multicast, enable bit 1
580 * - if PS-POLL frame, enable bit 2
581 * - if in INDEPENDENT_BSS mode and zd1205_DestPowerSave, then enable
582 * bit 4 (FIXME: wtf)
583 * - if frag_len > RTS threshold, set bit 5 as long if it isnt
584 * multicast or mgt
585 * - if bit 5 is set, and we are in OFDM mode, unset bit 5 and set bit
586 * 7
587 */
588
589 cs->control = 0;
590
591 /* First fragment */
592 if (WLAN_GET_SEQ_FRAG(le16_to_cpu(header->seq_ctl)) == 0)
593 cs->control |= ZD_CS_NEED_RANDOM_BACKOFF;
594
595 /* Multicast */
596 if (is_multicast_ether_addr(header->addr1))
597 cs->control |= ZD_CS_MULTICAST;
598
599 /* PS-POLL */
600 if (stype == IEEE80211_STYPE_PSPOLL)
601 cs->control |= ZD_CS_PS_POLL_FRAME;
602
603 if (!is_multicast_ether_addr(header->addr1) &&
604 ftype != IEEE80211_FTYPE_MGMT &&
605 tx_length > zd_netdev_ieee80211(mac->netdev)->rts)
606 {
607 /* FIXME: check the logic */
608 if (ZD_CS_TYPE(cs->modulation) == ZD_CS_OFDM) {
609 /* 802.11g */
610 cs->control |= ZD_CS_SELF_CTS;
611 } else { /* 802.11b */
612 cs->control |= ZD_CS_RTS;
613 }
614 }
615
616 /* FIXME: Management frame? */
617 }
618
619 static int fill_ctrlset(struct zd_mac *mac,
620 struct ieee80211_txb *txb,
621 int frag_num)
622 {
623 int r;
624 struct sk_buff *skb = txb->fragments[frag_num];
625 struct ieee80211_hdr_4addr *hdr =
626 (struct ieee80211_hdr_4addr *) skb->data;
627 unsigned int frag_len = skb->len + IEEE80211_FCS_LEN;
628 unsigned int next_frag_len;
629 unsigned int packet_length;
630 struct zd_ctrlset *cs = (struct zd_ctrlset *)
631 skb_push(skb, sizeof(struct zd_ctrlset));
632
633 if (frag_num+1 < txb->nr_frags) {
634 next_frag_len = txb->fragments[frag_num+1]->len +
635 IEEE80211_FCS_LEN;
636 } else {
637 next_frag_len = 0;
638 }
639 ZD_ASSERT(frag_len <= 0xffff);
640 ZD_ASSERT(next_frag_len <= 0xffff);
641
642 cs_set_modulation(mac, cs, hdr);
643
644 cs->tx_length = cpu_to_le16(frag_len);
645
646 cs_set_control(mac, cs, hdr);
647
648 packet_length = frag_len + sizeof(struct zd_ctrlset) + 10;
649 ZD_ASSERT(packet_length <= 0xffff);
650 /* ZD1211B: Computing the length difference this way, gives us
651 * flexibility to compute the packet length.
652 */
653 cs->packet_length = cpu_to_le16(mac->chip.is_zd1211b ?
654 packet_length - frag_len : packet_length);
655
656 /*
657 * CURRENT LENGTH:
658 * - transmit frame length in microseconds
659 * - seems to be derived from frame length
660 * - see Cal_Us_Service() in zdinlinef.h
661 * - if macp->bTxBurstEnable is enabled, then multiply by 4
662 * - bTxBurstEnable is never set in the vendor driver
663 *
664 * SERVICE:
665 * - "for PLCP configuration"
666 * - always 0 except in some situations at 802.11b 11M
667 * - see line 53 of zdinlinef.h
668 */
669 cs->service = 0;
670 r = zd_calc_tx_length_us(&cs->service, ZD_CS_RATE(cs->modulation),
671 le16_to_cpu(cs->tx_length));
672 if (r < 0)
673 return r;
674 cs->current_length = cpu_to_le16(r);
675
676 if (next_frag_len == 0) {
677 cs->next_frame_length = 0;
678 } else {
679 r = zd_calc_tx_length_us(NULL, ZD_CS_RATE(cs->modulation),
680 next_frag_len);
681 if (r < 0)
682 return r;
683 cs->next_frame_length = cpu_to_le16(r);
684 }
685
686 return 0;
687 }
688
689 static int zd_mac_tx(struct zd_mac *mac, struct ieee80211_txb *txb, int pri)
690 {
691 int i, r;
692
693 for (i = 0; i < txb->nr_frags; i++) {
694 struct sk_buff *skb = txb->fragments[i];
695
696 r = fill_ctrlset(mac, txb, i);
697 if (r)
698 return r;
699 r = zd_usb_tx(&mac->chip.usb, skb->data, skb->len);
700 if (r)
701 return r;
702 }
703
704 /* FIXME: shouldn't this be handled by the upper layers? */
705 mac->netdev->trans_start = jiffies;
706
707 ieee80211_txb_free(txb);
708 return 0;
709 }
710
711 struct zd_rt_hdr {
712 struct ieee80211_radiotap_header rt_hdr;
713 u8 rt_flags;
714 u8 rt_rate;
715 u16 rt_channel;
716 u16 rt_chbitmask;
717 };
718
719 static void fill_rt_header(void *buffer, struct zd_mac *mac,
720 const struct ieee80211_rx_stats *stats,
721 const struct rx_status *status)
722 {
723 struct zd_rt_hdr *hdr = buffer;
724
725 hdr->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
726 hdr->rt_hdr.it_pad = 0;
727 hdr->rt_hdr.it_len = cpu_to_le16(sizeof(struct zd_rt_hdr));
728 hdr->rt_hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
729 (1 << IEEE80211_RADIOTAP_CHANNEL) |
730 (1 << IEEE80211_RADIOTAP_RATE));
731
732 hdr->rt_flags = 0;
733 if (status->decryption_type & (ZD_RX_WEP64|ZD_RX_WEP128|ZD_RX_WEP256))
734 hdr->rt_flags |= IEEE80211_RADIOTAP_F_WEP;
735
736 hdr->rt_rate = stats->rate / 5;
737
738 /* FIXME: 802.11a */
739 hdr->rt_channel = cpu_to_le16(ieee80211chan2mhz(
740 _zd_chip_get_channel(&mac->chip)));
741 hdr->rt_chbitmask = cpu_to_le16(IEEE80211_CHAN_2GHZ |
742 ((status->frame_status & ZD_RX_FRAME_MODULATION_MASK) ==
743 ZD_RX_OFDM ? IEEE80211_CHAN_OFDM : IEEE80211_CHAN_CCK));
744 }
745
746 /* Returns 1 if the data packet is for us and 0 otherwise. */
747 static int is_data_packet_for_us(struct ieee80211_device *ieee,
748 struct ieee80211_hdr_4addr *hdr)
749 {
750 struct net_device *netdev = ieee->dev;
751 u16 fc = le16_to_cpu(hdr->frame_ctl);
752
753 ZD_ASSERT(WLAN_FC_GET_TYPE(fc) == IEEE80211_FTYPE_DATA);
754
755 switch (ieee->iw_mode) {
756 case IW_MODE_ADHOC:
757 if ((fc & (IEEE80211_FCTL_TODS|IEEE80211_FCTL_FROMDS)) != 0 ||
758 memcmp(hdr->addr3, ieee->bssid, ETH_ALEN) != 0)
759 return 0;
760 break;
761 case IW_MODE_AUTO:
762 case IW_MODE_INFRA:
763 if ((fc & (IEEE80211_FCTL_TODS|IEEE80211_FCTL_FROMDS)) !=
764 IEEE80211_FCTL_FROMDS ||
765 memcmp(hdr->addr2, ieee->bssid, ETH_ALEN) != 0)
766 return 0;
767 break;
768 default:
769 ZD_ASSERT(ieee->iw_mode != IW_MODE_MONITOR);
770 return 0;
771 }
772
773 return memcmp(hdr->addr1, netdev->dev_addr, ETH_ALEN) == 0 ||
774 is_multicast_ether_addr(hdr->addr1) ||
775 (netdev->flags & IFF_PROMISC);
776 }
777
778 /* Filters receiving packets. If it returns 1 send it to ieee80211_rx, if 0
779 * return. If an error is detected -EINVAL is returned. ieee80211_rx_mgt() is
780 * called here.
781 *
782 * It has been based on ieee80211_rx_any.
783 */
784 static int filter_rx(struct ieee80211_device *ieee,
785 const u8 *buffer, unsigned int length,
786 struct ieee80211_rx_stats *stats)
787 {
788 struct ieee80211_hdr_4addr *hdr;
789 u16 fc;
790
791 if (ieee->iw_mode == IW_MODE_MONITOR)
792 return 1;
793
794 hdr = (struct ieee80211_hdr_4addr *)buffer;
795 fc = le16_to_cpu(hdr->frame_ctl);
796 if ((fc & IEEE80211_FCTL_VERS) != 0)
797 return -EINVAL;
798
799 switch (WLAN_FC_GET_TYPE(fc)) {
800 case IEEE80211_FTYPE_MGMT:
801 if (length < sizeof(struct ieee80211_hdr_3addr))
802 return -EINVAL;
803 ieee80211_rx_mgt(ieee, hdr, stats);
804 return 0;
805 case IEEE80211_FTYPE_CTL:
806 /* Ignore invalid short buffers */
807 return 0;
808 case IEEE80211_FTYPE_DATA:
809 if (length < sizeof(struct ieee80211_hdr_3addr))
810 return -EINVAL;
811 return is_data_packet_for_us(ieee, hdr);
812 }
813
814 return -EINVAL;
815 }
816
817 static void update_qual_rssi(struct zd_mac *mac,
818 const u8 *buffer, unsigned int length,
819 u8 qual_percent, u8 rssi_percent)
820 {
821 unsigned long flags;
822 struct ieee80211_hdr_3addr *hdr;
823 int i;
824
825 hdr = (struct ieee80211_hdr_3addr *)buffer;
826 if (length < offsetof(struct ieee80211_hdr_3addr, addr3))
827 return;
828 if (memcmp(hdr->addr2, zd_mac_to_ieee80211(mac)->bssid, ETH_ALEN) != 0)
829 return;
830
831 spin_lock_irqsave(&mac->lock, flags);
832 i = mac->stats_count % ZD_MAC_STATS_BUFFER_SIZE;
833 mac->qual_buffer[i] = qual_percent;
834 mac->rssi_buffer[i] = rssi_percent;
835 mac->stats_count++;
836 spin_unlock_irqrestore(&mac->lock, flags);
837 }
838
839 static int fill_rx_stats(struct ieee80211_rx_stats *stats,
840 const struct rx_status **pstatus,
841 struct zd_mac *mac,
842 const u8 *buffer, unsigned int length)
843 {
844 const struct rx_status *status;
845
846 *pstatus = status = zd_tail(buffer, length, sizeof(struct rx_status));
847 if (status->frame_status & ZD_RX_ERROR) {
848 /* FIXME: update? */
849 return -EINVAL;
850 }
851 memset(stats, 0, sizeof(struct ieee80211_rx_stats));
852 stats->len = length - (ZD_PLCP_HEADER_SIZE + IEEE80211_FCS_LEN +
853 + sizeof(struct rx_status));
854 /* FIXME: 802.11a */
855 stats->freq = IEEE80211_24GHZ_BAND;
856 stats->received_channel = _zd_chip_get_channel(&mac->chip);
857 stats->rssi = zd_rx_strength_percent(status->signal_strength);
858 stats->signal = zd_rx_qual_percent(buffer,
859 length - sizeof(struct rx_status),
860 status);
861 stats->mask = IEEE80211_STATMASK_RSSI | IEEE80211_STATMASK_SIGNAL;
862 stats->rate = zd_rx_rate(buffer, status);
863 if (stats->rate)
864 stats->mask |= IEEE80211_STATMASK_RATE;
865
866 return 0;
867 }
868
869 int zd_mac_rx(struct zd_mac *mac, const u8 *buffer, unsigned int length)
870 {
871 int r;
872 struct ieee80211_device *ieee = zd_mac_to_ieee80211(mac);
873 struct ieee80211_rx_stats stats;
874 const struct rx_status *status;
875 struct sk_buff *skb;
876
877 if (length < ZD_PLCP_HEADER_SIZE + IEEE80211_1ADDR_LEN +
878 IEEE80211_FCS_LEN + sizeof(struct rx_status))
879 return -EINVAL;
880
881 r = fill_rx_stats(&stats, &status, mac, buffer, length);
882 if (r)
883 return r;
884
885 length -= ZD_PLCP_HEADER_SIZE+IEEE80211_FCS_LEN+
886 sizeof(struct rx_status);
887 buffer += ZD_PLCP_HEADER_SIZE;
888
889 update_qual_rssi(mac, buffer, length, stats.signal, stats.rssi);
890
891 r = filter_rx(ieee, buffer, length, &stats);
892 if (r <= 0)
893 return r;
894
895 skb = dev_alloc_skb(sizeof(struct zd_rt_hdr) + length);
896 if (!skb)
897 return -ENOMEM;
898 if (ieee->iw_mode == IW_MODE_MONITOR)
899 fill_rt_header(skb_put(skb, sizeof(struct zd_rt_hdr)), mac,
900 &stats, status);
901 memcpy(skb_put(skb, length), buffer, length);
902
903 r = ieee80211_rx(ieee, skb, &stats);
904 if (!r) {
905 ZD_ASSERT(in_irq());
906 dev_kfree_skb_irq(skb);
907 }
908 return 0;
909 }
910
911 static int netdev_tx(struct ieee80211_txb *txb, struct net_device *netdev,
912 int pri)
913 {
914 return zd_mac_tx(zd_netdev_mac(netdev), txb, pri);
915 }
916
917 static void set_security(struct net_device *netdev,
918 struct ieee80211_security *sec)
919 {
920 struct ieee80211_device *ieee = zd_netdev_ieee80211(netdev);
921 struct ieee80211_security *secinfo = &ieee->sec;
922 int keyidx;
923
924 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev)), "\n");
925
926 for (keyidx = 0; keyidx<WEP_KEYS; keyidx++)
927 if (sec->flags & (1<<keyidx)) {
928 secinfo->encode_alg[keyidx] = sec->encode_alg[keyidx];
929 secinfo->key_sizes[keyidx] = sec->key_sizes[keyidx];
930 memcpy(secinfo->keys[keyidx], sec->keys[keyidx],
931 SCM_KEY_LEN);
932 }
933
934 if (sec->flags & SEC_ACTIVE_KEY) {
935 secinfo->active_key = sec->active_key;
936 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev)),
937 " .active_key = %d\n", sec->active_key);
938 }
939 if (sec->flags & SEC_UNICAST_GROUP) {
940 secinfo->unicast_uses_group = sec->unicast_uses_group;
941 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev)),
942 " .unicast_uses_group = %d\n",
943 sec->unicast_uses_group);
944 }
945 if (sec->flags & SEC_LEVEL) {
946 secinfo->level = sec->level;
947 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev)),
948 " .level = %d\n", sec->level);
949 }
950 if (sec->flags & SEC_ENABLED) {
951 secinfo->enabled = sec->enabled;
952 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev)),
953 " .enabled = %d\n", sec->enabled);
954 }
955 if (sec->flags & SEC_ENCRYPT) {
956 secinfo->encrypt = sec->encrypt;
957 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev)),
958 " .encrypt = %d\n", sec->encrypt);
959 }
960 if (sec->flags & SEC_AUTH_MODE) {
961 secinfo->auth_mode = sec->auth_mode;
962 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev)),
963 " .auth_mode = %d\n", sec->auth_mode);
964 }
965 }
966
967 static void ieee_init(struct ieee80211_device *ieee)
968 {
969 ieee->mode = IEEE_B | IEEE_G;
970 ieee->freq_band = IEEE80211_24GHZ_BAND;
971 ieee->modulation = IEEE80211_OFDM_MODULATION | IEEE80211_CCK_MODULATION;
972 ieee->tx_headroom = sizeof(struct zd_ctrlset);
973 ieee->set_security = set_security;
974 ieee->hard_start_xmit = netdev_tx;
975
976 /* Software encryption/decryption for now */
977 ieee->host_build_iv = 0;
978 ieee->host_encrypt = 1;
979 ieee->host_decrypt = 1;
980
981 /* FIXME: default to managed mode, until ieee80211 and zd1211rw can
982 * correctly support AUTO */
983 ieee->iw_mode = IW_MODE_INFRA;
984 }
985
986 static void softmac_init(struct ieee80211softmac_device *sm)
987 {
988 sm->set_channel = set_channel;
989 }
990
991 struct iw_statistics *zd_mac_get_wireless_stats(struct net_device *ndev)
992 {
993 struct zd_mac *mac = zd_netdev_mac(ndev);
994 struct iw_statistics *iw_stats = &mac->iw_stats;
995 unsigned int i, count, qual_total, rssi_total;
996
997 memset(iw_stats, 0, sizeof(struct iw_statistics));
998 /* We are not setting the status, because ieee->state is not updated
999 * at all and this driver doesn't track authentication state.
1000 */
1001 spin_lock_irq(&mac->lock);
1002 count = mac->stats_count < ZD_MAC_STATS_BUFFER_SIZE ?
1003 mac->stats_count : ZD_MAC_STATS_BUFFER_SIZE;
1004 qual_total = rssi_total = 0;
1005 for (i = 0; i < count; i++) {
1006 qual_total += mac->qual_buffer[i];
1007 rssi_total += mac->rssi_buffer[i];
1008 }
1009 spin_unlock_irq(&mac->lock);
1010 iw_stats->qual.updated = IW_QUAL_NOISE_INVALID;
1011 if (count > 0) {
1012 iw_stats->qual.qual = qual_total / count;
1013 iw_stats->qual.level = rssi_total / count;
1014 iw_stats->qual.updated |=
1015 IW_QUAL_QUAL_UPDATED|IW_QUAL_LEVEL_UPDATED;
1016 } else {
1017 iw_stats->qual.updated |=
1018 IW_QUAL_QUAL_INVALID|IW_QUAL_LEVEL_INVALID;
1019 }
1020 /* TODO: update counter */
1021 return iw_stats;
1022 }
1023
1024 #ifdef DEBUG
1025 static const char* decryption_types[] = {
1026 [ZD_RX_NO_WEP] = "none",
1027 [ZD_RX_WEP64] = "WEP64",
1028 [ZD_RX_TKIP] = "TKIP",
1029 [ZD_RX_AES] = "AES",
1030 [ZD_RX_WEP128] = "WEP128",
1031 [ZD_RX_WEP256] = "WEP256",
1032 };
1033
1034 static const char *decryption_type_string(u8 type)
1035 {
1036 const char *s;
1037
1038 if (type < ARRAY_SIZE(decryption_types)) {
1039 s = decryption_types[type];
1040 } else {
1041 s = NULL;
1042 }
1043 return s ? s : "unknown";
1044 }
1045
1046 static int is_ofdm(u8 frame_status)
1047 {
1048 return (frame_status & ZD_RX_OFDM);
1049 }
1050
1051 void zd_dump_rx_status(const struct rx_status *status)
1052 {
1053 const char* modulation;
1054 u8 quality;
1055
1056 if (is_ofdm(status->frame_status)) {
1057 modulation = "ofdm";
1058 quality = status->signal_quality_ofdm;
1059 } else {
1060 modulation = "cck";
1061 quality = status->signal_quality_cck;
1062 }
1063 pr_debug("rx status %s strength %#04x qual %#04x decryption %s\n",
1064 modulation, status->signal_strength, quality,
1065 decryption_type_string(status->decryption_type));
1066 if (status->frame_status & ZD_RX_ERROR) {
1067 pr_debug("rx error %s%s%s%s%s%s\n",
1068 (status->frame_status & ZD_RX_TIMEOUT_ERROR) ?
1069 "timeout " : "",
1070 (status->frame_status & ZD_RX_FIFO_OVERRUN_ERROR) ?
1071 "fifo " : "",
1072 (status->frame_status & ZD_RX_DECRYPTION_ERROR) ?
1073 "decryption " : "",
1074 (status->frame_status & ZD_RX_CRC32_ERROR) ?
1075 "crc32 " : "",
1076 (status->frame_status & ZD_RX_NO_ADDR1_MATCH_ERROR) ?
1077 "addr1 " : "",
1078 (status->frame_status & ZD_RX_CRC16_ERROR) ?
1079 "crc16" : "");
1080 }
1081 }
1082 #endif /* DEBUG */
This page took 0.052061 seconds and 6 git commands to generate.