blob: f19add2c3cac0124f67972793e9c803846ad76df [file] [log] [blame]
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -05001/*
2 * mac80211 glue code for mac80211 Prism54 drivers
3 *
4 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
5 * Copyright (c) 2007-2009, Christian Lamparter <chunkeey@web.de>
6 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
7 *
8 * Based on:
9 * - the islsm (softmac prism54) driver, which is:
10 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
11 * - stlc45xx driver
12 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18
19#include <linux/init.h>
20#include <linux/firmware.h>
21#include <linux/etherdevice.h>
22
23#include <net/mac80211.h>
24
25#include "p54.h"
26#include "lmac.h"
27
28static int modparam_nohwcrypt;
29module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
30MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
31MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
32MODULE_DESCRIPTION("Softmac Prism54 common code");
33MODULE_LICENSE("GPL");
34MODULE_ALIAS("prism54common");
35
36static void p54_sta_notify(struct ieee80211_hw *dev, struct ieee80211_vif *vif,
37 enum sta_notify_cmd notify_cmd,
38 struct ieee80211_sta *sta)
39{
40 struct p54_common *priv = dev->priv;
41 switch (notify_cmd) {
42 case STA_NOTIFY_ADD:
43 case STA_NOTIFY_REMOVE:
44 /*
45 * Notify the firmware that we don't want or we don't
46 * need to buffer frames for this station anymore.
47 */
48
49 p54_sta_unlock(priv, sta->addr);
50 break;
51 case STA_NOTIFY_AWAKE:
52 /* update the firmware's filter table */
53 p54_sta_unlock(priv, sta->addr);
54 break;
55 default:
56 break;
57 }
58}
59
60static int p54_set_tim(struct ieee80211_hw *dev, struct ieee80211_sta *sta,
61 bool set)
62{
63 struct p54_common *priv = dev->priv;
64
65 return p54_update_beacon_tim(priv, sta->aid, set);
66}
67
Christian Lampartere0f114e2009-07-07 19:08:07 +020068u8 *p54_find_ie(struct sk_buff *skb, u8 ie)
69{
70 struct ieee80211_mgmt *mgmt = (void *)skb->data;
71 u8 *pos, *end;
72
73 if (skb->len <= sizeof(mgmt))
74 return NULL;
75
76 pos = (u8 *)mgmt->u.beacon.variable;
77 end = skb->data + skb->len;
78 while (pos < end) {
79 if (pos + 2 + pos[1] > end)
80 return NULL;
81
82 if (pos[0] == ie)
83 return pos;
84
85 pos += 2 + pos[1];
86 }
87 return NULL;
88}
89
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -050090static int p54_beacon_format_ie_tim(struct sk_buff *skb)
91{
92 /*
93 * the good excuse for this mess is ... the firmware.
94 * The dummy TIM MUST be at the end of the beacon frame,
95 * because it'll be overwritten!
96 */
Christian Lampartere0f114e2009-07-07 19:08:07 +020097 u8 *tim;
98 u8 dtim_len;
99 u8 dtim_period;
100 u8 *next;
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500101
Christian Lampartere0f114e2009-07-07 19:08:07 +0200102 tim = p54_find_ie(skb, WLAN_EID_TIM);
103 if (!tim)
104 return 0;
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500105
Christian Lampartere0f114e2009-07-07 19:08:07 +0200106 dtim_len = tim[1];
107 dtim_period = tim[3];
108 next = tim + 2 + dtim_len;
109
110 if (dtim_len < 3)
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500111 return -EINVAL;
112
Christian Lampartere0f114e2009-07-07 19:08:07 +0200113 memmove(tim, next, skb_tail_pointer(skb) - next);
114 tim = skb_tail_pointer(skb) - (dtim_len + 2);
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500115
Christian Lampartere0f114e2009-07-07 19:08:07 +0200116 /* add the dummy at the end */
117 tim[0] = WLAN_EID_TIM;
118 tim[1] = 3;
119 tim[2] = 0;
120 tim[3] = dtim_period;
121 tim[4] = 0;
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500122
Christian Lampartere0f114e2009-07-07 19:08:07 +0200123 if (dtim_len > 3)
124 skb_trim(skb, skb->len - (dtim_len - 3));
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500125
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500126 return 0;
127}
128
129static int p54_beacon_update(struct p54_common *priv,
130 struct ieee80211_vif *vif)
131{
132 struct sk_buff *beacon;
133 __le32 old_beacon_req_id;
134 int ret;
135
136 beacon = ieee80211_beacon_get(priv->hw, vif);
137 if (!beacon)
138 return -ENOMEM;
139 ret = p54_beacon_format_ie_tim(beacon);
140 if (ret)
141 return ret;
142
143 old_beacon_req_id = priv->beacon_req_id;
144 priv->beacon_req_id = GET_REQ_ID(beacon);
145
146 ret = p54_tx_80211(priv->hw, beacon);
147 if (ret) {
148 priv->beacon_req_id = old_beacon_req_id;
149 return -ENOSPC;
150 }
151
152 priv->tsf_high32 = 0;
153 priv->tsf_low32 = 0;
154
155 return 0;
156}
157
158static int p54_start(struct ieee80211_hw *dev)
159{
160 struct p54_common *priv = dev->priv;
161 int err;
162
163 mutex_lock(&priv->conf_mutex);
164 err = priv->open(dev);
165 if (err)
166 goto out;
167 P54_SET_QUEUE(priv->qos_params[0], 0x0002, 0x0003, 0x0007, 47);
168 P54_SET_QUEUE(priv->qos_params[1], 0x0002, 0x0007, 0x000f, 94);
169 P54_SET_QUEUE(priv->qos_params[2], 0x0003, 0x000f, 0x03ff, 0);
170 P54_SET_QUEUE(priv->qos_params[3], 0x0007, 0x000f, 0x03ff, 0);
171 err = p54_set_edcf(priv);
172 if (err)
173 goto out;
174
175 memset(priv->bssid, ~0, ETH_ALEN);
176 priv->mode = NL80211_IFTYPE_MONITOR;
177 err = p54_setup_mac(priv);
178 if (err) {
179 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
180 goto out;
181 }
182
183 queue_delayed_work(dev->workqueue, &priv->work, 0);
184
185 priv->softled_state = 0;
186 err = p54_set_leds(priv);
187
188out:
189 mutex_unlock(&priv->conf_mutex);
190 return err;
191}
192
193static void p54_stop(struct ieee80211_hw *dev)
194{
195 struct p54_common *priv = dev->priv;
196 int i;
197
198 mutex_lock(&priv->conf_mutex);
199 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
200 priv->softled_state = 0;
201 p54_set_leds(priv);
202
203 cancel_delayed_work_sync(&priv->work);
204
205 priv->stop(dev);
206 skb_queue_purge(&priv->tx_pending);
207 skb_queue_purge(&priv->tx_queue);
208 for (i = 0; i < P54_QUEUE_NUM; i++) {
209 priv->tx_stats[i].count = 0;
210 priv->tx_stats[i].len = 0;
211 }
212
213 priv->beacon_req_id = cpu_to_le32(0);
214 priv->tsf_high32 = priv->tsf_low32 = 0;
215 mutex_unlock(&priv->conf_mutex);
216}
217
218static int p54_add_interface(struct ieee80211_hw *dev,
219 struct ieee80211_if_init_conf *conf)
220{
221 struct p54_common *priv = dev->priv;
222
223 mutex_lock(&priv->conf_mutex);
224 if (priv->mode != NL80211_IFTYPE_MONITOR) {
225 mutex_unlock(&priv->conf_mutex);
226 return -EOPNOTSUPP;
227 }
228
229 priv->vif = conf->vif;
230
231 switch (conf->type) {
232 case NL80211_IFTYPE_STATION:
233 case NL80211_IFTYPE_ADHOC:
234 case NL80211_IFTYPE_AP:
235 case NL80211_IFTYPE_MESH_POINT:
236 priv->mode = conf->type;
237 break;
238 default:
239 mutex_unlock(&priv->conf_mutex);
240 return -EOPNOTSUPP;
241 }
242
243 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
244 p54_setup_mac(priv);
245 mutex_unlock(&priv->conf_mutex);
246 return 0;
247}
248
249static void p54_remove_interface(struct ieee80211_hw *dev,
250 struct ieee80211_if_init_conf *conf)
251{
252 struct p54_common *priv = dev->priv;
253
254 mutex_lock(&priv->conf_mutex);
255 priv->vif = NULL;
256 if (priv->beacon_req_id) {
257 p54_tx_cancel(priv, priv->beacon_req_id);
258 priv->beacon_req_id = cpu_to_le32(0);
259 }
260 priv->mode = NL80211_IFTYPE_MONITOR;
261 memset(priv->mac_addr, 0, ETH_ALEN);
262 memset(priv->bssid, 0, ETH_ALEN);
263 p54_setup_mac(priv);
264 mutex_unlock(&priv->conf_mutex);
265}
266
267static int p54_config(struct ieee80211_hw *dev, u32 changed)
268{
269 int ret = 0;
270 struct p54_common *priv = dev->priv;
271 struct ieee80211_conf *conf = &dev->conf;
272
273 mutex_lock(&priv->conf_mutex);
274 if (changed & IEEE80211_CONF_CHANGE_POWER)
275 priv->output_power = conf->power_level << 2;
276 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
277 ret = p54_scan(priv, P54_SCAN_EXIT, 0);
278 if (ret)
279 goto out;
280 }
281 if (changed & IEEE80211_CONF_CHANGE_PS) {
282 ret = p54_set_ps(priv);
283 if (ret)
284 goto out;
285 }
286
287out:
288 mutex_unlock(&priv->conf_mutex);
289 return ret;
290}
291
292static void p54_configure_filter(struct ieee80211_hw *dev,
293 unsigned int changed_flags,
294 unsigned int *total_flags,
295 int mc_count, struct dev_mc_list *mclist)
296{
297 struct p54_common *priv = dev->priv;
298
299 *total_flags &= FIF_PROMISC_IN_BSS |
300 FIF_OTHER_BSS;
301
302 priv->filter_flags = *total_flags;
303
304 if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS))
305 p54_setup_mac(priv);
306}
307
308static int p54_conf_tx(struct ieee80211_hw *dev, u16 queue,
309 const struct ieee80211_tx_queue_params *params)
310{
311 struct p54_common *priv = dev->priv;
312 int ret;
313
314 mutex_lock(&priv->conf_mutex);
315 if ((params) && !(queue > 4)) {
316 P54_SET_QUEUE(priv->qos_params[queue], params->aifs,
317 params->cw_min, params->cw_max, params->txop);
318 ret = p54_set_edcf(priv);
319 } else
320 ret = -EINVAL;
321 mutex_unlock(&priv->conf_mutex);
322 return ret;
323}
324
325static void p54_work(struct work_struct *work)
326{
327 struct p54_common *priv = container_of(work, struct p54_common,
328 work.work);
329
330 if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
331 return ;
332
333 /*
334 * TODO: walk through tx_queue and do the following tasks
335 * 1. initiate bursts.
336 * 2. cancel stuck frames / reset the device if necessary.
337 */
338
339 p54_fetch_statistics(priv);
340}
341
342static int p54_get_stats(struct ieee80211_hw *dev,
343 struct ieee80211_low_level_stats *stats)
344{
345 struct p54_common *priv = dev->priv;
346
347 memcpy(stats, &priv->stats, sizeof(*stats));
348 return 0;
349}
350
351static int p54_get_tx_stats(struct ieee80211_hw *dev,
352 struct ieee80211_tx_queue_stats *stats)
353{
354 struct p54_common *priv = dev->priv;
355
356 memcpy(stats, &priv->tx_stats[P54_QUEUE_DATA],
357 sizeof(stats[0]) * dev->queues);
358 return 0;
359}
360
361static void p54_bss_info_changed(struct ieee80211_hw *dev,
362 struct ieee80211_vif *vif,
363 struct ieee80211_bss_conf *info,
364 u32 changed)
365{
366 struct p54_common *priv = dev->priv;
367
368 mutex_lock(&priv->conf_mutex);
369 if (changed & BSS_CHANGED_BSSID) {
370 memcpy(priv->bssid, info->bssid, ETH_ALEN);
371 p54_setup_mac(priv);
372 }
373
374 if (changed & BSS_CHANGED_BEACON) {
375 p54_scan(priv, P54_SCAN_EXIT, 0);
376 p54_setup_mac(priv);
377 p54_beacon_update(priv, vif);
378 p54_set_edcf(priv);
379 }
380
381 if (changed & (BSS_CHANGED_ERP_SLOT | BSS_CHANGED_BEACON)) {
382 priv->use_short_slot = info->use_short_slot;
383 p54_set_edcf(priv);
384 }
385 if (changed & BSS_CHANGED_BASIC_RATES) {
386 if (dev->conf.channel->band == IEEE80211_BAND_5GHZ)
387 priv->basic_rate_mask = (info->basic_rates << 4);
388 else
389 priv->basic_rate_mask = info->basic_rates;
390 p54_setup_mac(priv);
391 if (priv->fw_var >= 0x500)
392 p54_scan(priv, P54_SCAN_EXIT, 0);
393 }
394 if (changed & BSS_CHANGED_ASSOC) {
395 if (info->assoc) {
396 priv->aid = info->aid;
397 priv->wakeup_timer = info->beacon_int *
398 info->dtim_period * 5;
399 p54_setup_mac(priv);
Christian Lampartere0f114e2009-07-07 19:08:07 +0200400 } else {
401 priv->wakeup_timer = 500;
402 priv->aid = 0;
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500403 }
404 }
405
406 mutex_unlock(&priv->conf_mutex);
407}
408
409static int p54_set_key(struct ieee80211_hw *dev, enum set_key_cmd cmd,
410 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
411 struct ieee80211_key_conf *key)
412{
413 struct p54_common *priv = dev->priv;
414 int slot, ret = 0;
415 u8 algo = 0;
416 u8 *addr = NULL;
417
418 if (modparam_nohwcrypt)
419 return -EOPNOTSUPP;
420
421 mutex_lock(&priv->conf_mutex);
422 if (cmd == SET_KEY) {
423 switch (key->alg) {
424 case ALG_TKIP:
425 if (!(priv->privacy_caps & (BR_DESC_PRIV_CAP_MICHAEL |
426 BR_DESC_PRIV_CAP_TKIP))) {
427 ret = -EOPNOTSUPP;
428 goto out_unlock;
429 }
430 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
431 algo = P54_CRYPTO_TKIPMICHAEL;
432 break;
433 case ALG_WEP:
434 if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_WEP)) {
435 ret = -EOPNOTSUPP;
436 goto out_unlock;
437 }
438 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
439 algo = P54_CRYPTO_WEP;
440 break;
441 case ALG_CCMP:
442 if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_AESCCMP)) {
443 ret = -EOPNOTSUPP;
444 goto out_unlock;
445 }
446 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
447 algo = P54_CRYPTO_AESCCMP;
448 break;
449 default:
450 ret = -EOPNOTSUPP;
451 goto out_unlock;
452 }
453 slot = bitmap_find_free_region(priv->used_rxkeys,
454 priv->rx_keycache_size, 0);
455
456 if (slot < 0) {
457 /*
458 * The device supports the choosen algorithm, but the
459 * firmware does not provide enough key slots to store
460 * all of them.
461 * But encryption offload for outgoing frames is always
462 * possible, so we just pretend that the upload was
463 * successful and do the decryption in software.
464 */
465
466 /* mark the key as invalid. */
467 key->hw_key_idx = 0xff;
468 goto out_unlock;
469 }
470 } else {
471 slot = key->hw_key_idx;
472
473 if (slot == 0xff) {
474 /* This key was not uploaded into the rx key cache. */
475
476 goto out_unlock;
477 }
478
479 bitmap_release_region(priv->used_rxkeys, slot, 0);
480 algo = 0;
481 }
482
483 if (sta)
484 addr = sta->addr;
485
486 ret = p54_upload_key(priv, algo, slot, key->keyidx,
487 key->keylen, addr, key->key);
488 if (ret) {
489 bitmap_release_region(priv->used_rxkeys, slot, 0);
490 ret = -EOPNOTSUPP;
491 goto out_unlock;
492 }
493
494 key->hw_key_idx = slot;
495
496out_unlock:
497 mutex_unlock(&priv->conf_mutex);
498 return ret;
499}
500
501static const struct ieee80211_ops p54_ops = {
502 .tx = p54_tx_80211,
503 .start = p54_start,
504 .stop = p54_stop,
505 .add_interface = p54_add_interface,
506 .remove_interface = p54_remove_interface,
507 .set_tim = p54_set_tim,
508 .sta_notify = p54_sta_notify,
509 .set_key = p54_set_key,
510 .config = p54_config,
511 .bss_info_changed = p54_bss_info_changed,
512 .configure_filter = p54_configure_filter,
513 .conf_tx = p54_conf_tx,
514 .get_stats = p54_get_stats,
515 .get_tx_stats = p54_get_tx_stats
516};
517
518struct ieee80211_hw *p54_init_common(size_t priv_data_len)
519{
520 struct ieee80211_hw *dev;
521 struct p54_common *priv;
522
523 dev = ieee80211_alloc_hw(priv_data_len, &p54_ops);
524 if (!dev)
525 return NULL;
526
527 priv = dev->priv;
528 priv->hw = dev;
529 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
530 priv->basic_rate_mask = 0x15f;
531 spin_lock_init(&priv->tx_stats_lock);
532 skb_queue_head_init(&priv->tx_queue);
533 skb_queue_head_init(&priv->tx_pending);
534 dev->flags = IEEE80211_HW_RX_INCLUDES_FCS |
535 IEEE80211_HW_SIGNAL_DBM |
Christian Lampartere0f114e2009-07-07 19:08:07 +0200536 IEEE80211_HW_SUPPORTS_PS |
537 IEEE80211_HW_PS_NULLFUNC_STACK |
538 IEEE80211_HW_BEACON_FILTER |
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500539 IEEE80211_HW_NOISE_DBM;
540
541 dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
542 BIT(NL80211_IFTYPE_ADHOC) |
543 BIT(NL80211_IFTYPE_AP) |
544 BIT(NL80211_IFTYPE_MESH_POINT);
545
546 dev->channel_change_time = 1000; /* TODO: find actual value */
547 priv->tx_stats[P54_QUEUE_BEACON].limit = 1;
548 priv->tx_stats[P54_QUEUE_FWSCAN].limit = 1;
549 priv->tx_stats[P54_QUEUE_MGMT].limit = 3;
550 priv->tx_stats[P54_QUEUE_CAB].limit = 3;
551 priv->tx_stats[P54_QUEUE_DATA].limit = 5;
552 dev->queues = 1;
553 priv->noise = -94;
554 /*
555 * We support at most 8 tries no matter which rate they're at,
556 * we cannot support max_rates * max_rate_tries as we set it
557 * here, but setting it correctly to 4/2 or so would limit us
558 * artificially if the RC algorithm wants just two rates, so
559 * let's say 4/7, we'll redistribute it at TX time, see the
560 * comments there.
561 */
562 dev->max_rates = 4;
563 dev->max_rate_tries = 7;
564 dev->extra_tx_headroom = sizeof(struct p54_hdr) + 4 +
565 sizeof(struct p54_tx_data);
566
567 mutex_init(&priv->conf_mutex);
568 mutex_init(&priv->eeprom_mutex);
569 init_completion(&priv->eeprom_comp);
570 INIT_DELAYED_WORK(&priv->work, p54_work);
571
572 return dev;
573}
574EXPORT_SYMBOL_GPL(p54_init_common);
575
576int p54_register_common(struct ieee80211_hw *dev, struct device *pdev)
577{
578 struct p54_common *priv = dev->priv;
579 int err;
580
581 err = ieee80211_register_hw(dev);
582 if (err) {
583 dev_err(pdev, "Cannot register device (%d).\n", err);
584 return err;
585 }
586
587#ifdef CONFIG_P54_LEDS
588 err = p54_init_leds(priv);
589 if (err)
590 return err;
591#endif /* CONFIG_P54_LEDS */
592
593 dev_info(pdev, "is registered as '%s'\n", wiphy_name(dev->wiphy));
594 return 0;
595}
596EXPORT_SYMBOL_GPL(p54_register_common);
597
598void p54_free_common(struct ieee80211_hw *dev)
599{
600 struct p54_common *priv = dev->priv;
Christian Lamparter1a9b6672009-07-11 01:22:26 +0200601 unsigned int i;
602
603 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
604 kfree(priv->band_table[i]);
Christian Lamparter0ac0d6c2009-06-23 10:38:49 -0500605
606 kfree(priv->iq_autocal);
607 kfree(priv->output_limit);
608 kfree(priv->curve_data);
609 kfree(priv->used_rxkeys);
610 priv->iq_autocal = NULL;
611 priv->output_limit = NULL;
612 priv->curve_data = NULL;
613 priv->used_rxkeys = NULL;
614 ieee80211_free_hw(dev);
615}
616EXPORT_SYMBOL_GPL(p54_free_common);
617
618void p54_unregister_common(struct ieee80211_hw *dev)
619{
620 struct p54_common *priv = dev->priv;
621
622#ifdef CONFIG_P54_LEDS
623 p54_unregister_leds(priv);
624#endif /* CONFIG_P54_LEDS */
625
626 ieee80211_unregister_hw(dev);
627 mutex_destroy(&priv->conf_mutex);
628 mutex_destroy(&priv->eeprom_mutex);
629}
630EXPORT_SYMBOL_GPL(p54_unregister_common);