aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/cw1200/sta.c
blob: 07bed75b7450b75a996fbb8ac0abcf039305a2c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
/*
 * Mac80211 STA API for ST-Ericsson CW1200 drivers
 *
 * Copyright (c) 2010, ST-Ericsson
 * Author: Dmitry Tarnyagin <dmitry.tarnyagin@stericsson.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/vmalloc.h>
#include <linux/sched.h>
#include <linux/firmware.h>

#include "cw1200.h"
#include "sta.h"
#include "fwio.h"
#include "bh.h"

static int cw1200_cancel_scan(struct cw1200_common *priv);

static inline void __cw1200_free_event_queue(struct list_head *list)
{
	while (!list_empty(list)) {
		struct cw1200_wsm_event *event =
			list_first_entry(list, struct cw1200_wsm_event,
			link);
		list_del(&event->link);
		kfree(event);
	}
}

/* ******************************************************************** */
/* STA API								*/

int cw1200_start(struct ieee80211_hw *dev)
{
	struct cw1200_common *priv = dev->priv;
	int ret = 0;

	mutex_lock(&priv->conf_mutex);

	/* default ECDA */
	WSM_EDCA_SET(&priv->edca, 0, 0x0002, 0x0003, 0x0007, 47);
	WSM_EDCA_SET(&priv->edca, 1, 0x0002, 0x0007, 0x000f, 94);
	WSM_EDCA_SET(&priv->edca, 2, 0x0003, 0x000f, 0x03ff, 0);
	WSM_EDCA_SET(&priv->edca, 3, 0x0007, 0x000f, 0x03ff, 0);
	ret = wsm_set_edca_params(priv, &priv->edca);
	if (WARN_ON(ret))
		goto out;

	memset(priv->bssid, ~0, ETH_ALEN);
	memcpy(priv->mac_addr, dev->wiphy->perm_addr, ETH_ALEN);
	priv->mode = NL80211_IFTYPE_MONITOR;
	priv->softled_state = 0;
	priv->wep_default_key_id = -1;

	priv->cqm_link_loss_count = 60;
	priv->cqm_beacon_loss_count = 20;

	ret = cw1200_setup_mac(priv);
	if (WARN_ON(ret))
		goto out;

	/* err = cw1200_set_leds(priv); */

out:
	mutex_unlock(&priv->conf_mutex);
	return ret;
}

void cw1200_stop(struct ieee80211_hw *dev)
{
	struct cw1200_common *priv = dev->priv;
	unsigned long flags;
	LIST_HEAD(list);
	int i;

	wsm_lock_tx(priv);

	while (down_trylock(&priv->scan.lock)) {
		/* Scan is in progress. Force it to stop. */
		priv->scan.req = NULL;
		schedule();
	}
	up(&priv->scan.lock);

	mutex_lock(&priv->conf_mutex);
	cw1200_free_keys(priv);
	priv->mode = NL80211_IFTYPE_UNSPECIFIED;
	mutex_unlock(&priv->conf_mutex);

	cancel_delayed_work_sync(&priv->scan.probe_work);
	cancel_delayed_work_sync(&priv->scan.timeout);
	cancel_delayed_work_sync(&priv->join_timeout);
	cancel_delayed_work_sync(&priv->bss_loss_work);
	cancel_delayed_work_sync(&priv->connection_loss_work);
#ifdef CW1200_FIRMWARE_DOES_NOT_SUPPORT_KEEPALIVE
	cancel_delayed_work_sync(&priv->keep_alive_work);
#endif
	switch (priv->join_status) {
	case CW1200_JOIN_STATUS_STA:
		queue_work(priv->workqueue, &priv->unjoin_work);
		break;
	case CW1200_JOIN_STATUS_AP:
		wsm_reset(priv, true);
		wsm_unlock_tx(priv);
		break;
	default:
		wsm_unlock_tx(priv);
	}
	flush_workqueue(priv->workqueue);
	mutex_lock(&priv->conf_mutex);

	priv->softled_state = 0;
	/* cw1200_set_leds(priv); */

	spin_lock_irqsave(&priv->event_queue_lock, flags);
	list_splice_init(&priv->event_queue, &list);
	spin_unlock_irqrestore(&priv->event_queue_lock, flags);
	__cw1200_free_event_queue(&list);

	priv->delayed_link_loss = 0;

	priv->join_status = CW1200_JOIN_STATUS_MONITOR;

	/* TODO: Complete deinitialization */

	for (i = 0; i < 4; i++)
		cw1200_queue_clear(&priv->tx_queue[i]);

	/* HACK! */
	if (atomic_xchg(&priv->tx_lock, 1) != 1)
		printk(KERN_DEBUG "[STA] TX is force-unlocked due to stop " \
			"request.\n");

	wsm_unlock_tx(priv);

	mutex_unlock(&priv->conf_mutex);
}

int cw1200_add_interface(struct ieee80211_hw *dev,
			 struct ieee80211_vif *vif)
{
	int ret;
	struct cw1200_common *priv = dev->priv;
	/* __le32 auto_calibration_mode = __cpu_to_le32(1); */

	mutex_lock(&priv->conf_mutex);

	if (priv->mode != NL80211_IFTYPE_MONITOR) {
		mutex_unlock(&priv->conf_mutex);
		return -EOPNOTSUPP;
	}

	switch (vif->type) {
	case NL80211_IFTYPE_STATION:
	case NL80211_IFTYPE_ADHOC:
	case NL80211_IFTYPE_MESH_POINT:
	case NL80211_IFTYPE_AP:
		priv->mode = vif->type;
		break;
	default:
		mutex_unlock(&priv->conf_mutex);
		return -EOPNOTSUPP;
	}

	priv->vif = vif;
	memcpy(priv->mac_addr, vif->addr, ETH_ALEN);

	ret = WARN_ON(cw1200_setup_mac(priv));
	/* Enable auto-calibration */
	/* Exception in subsequent channel switch; disabled.
	WARN_ON(wsm_write_mib(priv, WSM_MIB_ID_SET_AUTO_CALIBRATION_MODE,
		&auto_calibration_mode, sizeof(auto_calibration_mode)));
	*/

	mutex_unlock(&priv->conf_mutex);
	return ret;
}

void cw1200_remove_interface(struct ieee80211_hw *dev,
			     struct ieee80211_vif *vif)
{
	struct cw1200_common *priv = dev->priv;

	mutex_lock(&priv->conf_mutex);

	priv->vif = NULL;
	priv->mode = NL80211_IFTYPE_MONITOR;
	memset(priv->mac_addr, 0, ETH_ALEN);
	memset(priv->bssid, 0, ETH_ALEN);
	WARN_ON(wsm_reset(priv, 1));
	cw1200_free_keys(priv);
	cw1200_setup_mac(priv);

	mutex_unlock(&priv->conf_mutex);
}

int cw1200_config(struct ieee80211_hw *dev, u32 changed)
{
	int ret = 0;
	struct cw1200_common *priv = dev->priv;
	struct ieee80211_conf *conf = &dev->conf;

	mutex_lock(&priv->conf_mutex);
	/* TODO: IEEE80211_CONF_CHANGE_QOS */
	if (changed & IEEE80211_CONF_CHANGE_POWER) {
		priv->output_power = conf->power_level;
		printk(KERN_DEBUG "[STA] TX power: %d\n", priv->output_power);
		WARN_ON(wsm_set_output_power(priv, priv->output_power * 10));
	}

	if (changed & IEEE80211_CONF_CHANGE_LISTEN_INTERVAL) {
		/* TODO: Not sure. Needs to be verified. */
		/* TODO: DTIM skipping */
		int dtim_interval = conf->ps_dtim_period;
		int listen_interval = conf->listen_interval;
		if (dtim_interval < 1)
			dtim_interval = 1;
		if (listen_interval < dtim_interval)
			listen_interval = 0;
		/* TODO: max_sleep_period is not supported
		 * and silently skipped. */
		printk(KERN_DEBUG "[STA] DTIM %d, listen %d\n",
			dtim_interval, listen_interval);
		WARN_ON(wsm_set_beacon_wakeup_period(priv,
			dtim_interval, listen_interval));
	}


	if ((changed & IEEE80211_CONF_CHANGE_CHANNEL) &&
		(priv->channel != conf->channel)) {
		struct wsm_switch_channel channel = {
			.newChannelNumber = conf->channel->hw_value
		};
		cw1200_cancel_scan(priv);
		printk(KERN_DEBUG "[STA] Freq %d (wsm ch: %d).\n",
			conf->channel->center_freq, conf->channel->hw_value);
		WARN_ON(wait_event_interruptible_timeout(
			priv->channel_switch_done,
			!priv->channel_switch_in_progress, 3 * HZ) <= 0);
		WARN_ON(wsm_switch_channel(priv, &channel));
		priv->channel = conf->channel;
	}

	if (changed & IEEE80211_CONF_CHANGE_PS) {
		priv->powersave_mode.pmMode =
				(conf->flags & IEEE80211_CONF_PS) ?
				WSM_PSM_PS : WSM_PSM_ACTIVE;
		WARN_ON(wsm_set_pm(priv, &priv->powersave_mode));
	}

	if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
		/* TBD: It looks like it's transparent
		 * there's a monitor interface present -- use this
		 * to determine for example whether to calculate
		 * timestamps for packets or not, do not use instead
		 * of filter flags! */
	}

	if (changed & IEEE80211_CONF_CHANGE_IDLE) {
		struct wsm_operational_mode mode = {
			/* TODO: wsm_power_mode_quiescent is more efficient,
			 *  but it requires AI to get device on again. */
			.power_mode = (conf->flags & IEEE80211_CONF_IDLE) ?
				wsm_power_mode_doze : wsm_power_mode_active
		};
		WARN_ON(wsm_set_operational_mode(priv, &mode));
	}

	if (changed & IEEE80211_CONF_CHANGE_RETRY_LIMITS) {
		unsigned long flags;
		printk(KERN_DEBUG "[STA] Retry limits: %d (long), " \
			"%d (short).\n",
			conf->long_frame_max_tx_count,
			conf->short_frame_max_tx_count);
		spin_lock_irqsave(&priv->tx_policy_cache.lock, flags);
		priv->long_frame_max_tx_count = conf->long_frame_max_tx_count;
		priv->short_frame_max_tx_count =
			(conf->short_frame_max_tx_count < 0x0F) ?
			conf->short_frame_max_tx_count : 0x0F;
		priv->hw->max_rate_tries = priv->short_frame_max_tx_count;
		spin_unlock_irqrestore(&priv->tx_policy_cache.lock, flags);
		/* TBD: I think we don't need tx_policy_force_upload().
		 * Outdated policies will leave cache in a normal way. */
		/* WARN_ON(tx_policy_force_upload(priv)); */
	}
	mutex_unlock(&priv->conf_mutex);
	return ret;
}

void cw1200_configure_filter(struct ieee80211_hw *dev,
			     unsigned int changed_flags,
			     unsigned int *total_flags,
			     u64 multicast)
{
#if 0
	struct cw1200_common *priv = dev->priv;
	struct wsm_rx_filter filter = {
		.promiscuous = (*total_flags & FIF_PROMISC_IN_BSS) ? 1 : 0,
		.bssid = (*total_flags & FIF_OTHER_BSS) ? 1 : 0,
		.fcs = (*total_flags & FIF_FCSFAIL) ? 1 : 0,
	};
	struct wsm_beacon_filter_control bf_control = {
		.enabled = 0,
		.bcn_count = (*total_flags &
			(FIF_BCN_PRBRESP_PROMISC | FIF_PROMISC_IN_BSS)) ?
			1 : 0,
	};
#endif

	*total_flags &= FIF_PROMISC_IN_BSS |
			FIF_OTHER_BSS |
			FIF_FCSFAIL |
			FIF_BCN_PRBRESP_PROMISC;

#if 0
	/* FIXME: FW behaves strange if promiscuous mode is enabled. */
	WARN_ON(wsm_set_rx_filter(priv, &filter));
	WARN_ON(wsm_beacon_filter_control(priv, &bf_control));
#endif
}

int cw1200_conf_tx(struct ieee80211_hw *dev, u16 queue,
		   const struct ieee80211_tx_queue_params *params)
{
	struct cw1200_common *priv = dev->priv;
	int ret = 0;

	mutex_lock(&priv->conf_mutex);

	if (queue < dev->queues) {
		WSM_EDCA_SET(&priv->edca, queue, params->aifs,
			params->cw_min, params->cw_max, params->txop);
		ret = wsm_set_edca_params(priv, &priv->edca);
	} else
		ret = -EINVAL;

	mutex_unlock(&priv->conf_mutex);
	return ret;
}

int cw1200_get_stats(struct ieee80211_hw *dev,
		     struct ieee80211_low_level_stats *stats)
{
	struct cw1200_common *priv = dev->priv;

	memcpy(stats, &priv->stats, sizeof(*stats));
	return 0;
}

/*
int cw1200_get_tx_stats(struct ieee80211_hw *dev,
			struct ieee80211_tx_queue_stats *stats)
{
	int i;
	struct cw1200_common *priv = dev->priv;

	for (i = 0; i < dev->queues; ++i)
		cw1200_queue_get_stats(&priv->tx_queue[i], &stats[i]);

	return 0;
}
*/

int cw1200_set_key(struct ieee80211_hw *dev, enum set_key_cmd cmd,
		   struct ieee80211_vif *vif, struct ieee80211_sta *sta,
		   struct ieee80211_key_conf *key)
{
	int ret = -EOPNOTSUPP;
	struct cw1200_common *priv = dev->priv;

	mutex_lock(&priv->conf_mutex);

	if (cmd == SET_KEY) {
		u8 *peer_addr = NULL;
		int pairwise = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) ?
			1 : 0;
		int idx = cw1200_alloc_key(priv);
		struct wsm_add_key *wsm_key = &priv->keys[idx];

		if (idx < 0) {
			ret = -EINVAL;
			goto finally;
		}

		BUG_ON(pairwise && !sta);
		if (sta)
			peer_addr = sta->addr;

		switch (key->cipher) {
		case WLAN_CIPHER_SUITE_WEP40:
		case WLAN_CIPHER_SUITE_WEP104:
			if (key->keylen > 16) {
				cw1200_free_key(priv, idx);
				ret = -EINVAL;
				goto finally;
			}

			if (pairwise) {
				wsm_key->type = WSM_KEY_TYPE_WEP_PAIRWISE;
				memcpy(wsm_key->wepPairwiseKey.peerAddress,
					 peer_addr, ETH_ALEN);
				memcpy(wsm_key->wepPairwiseKey.keyData,
					&key->key[0], key->keylen);
				wsm_key->wepPairwiseKey.keyLength = key->keylen;
			} else {
				wsm_key->type = WSM_KEY_TYPE_WEP_DEFAULT;
				memcpy(wsm_key->wepGroupKey.keyData,
					&key->key[0], key->keylen);
				wsm_key->wepGroupKey.keyLength = key->keylen;
				wsm_key->wepGroupKey.keyId = key->keyidx;
			}
			break;
		case WLAN_CIPHER_SUITE_TKIP:
			if (pairwise) {
				wsm_key->type = WSM_KEY_TYPE_TKIP_PAIRWISE;
				memcpy(wsm_key->tkipPairwiseKey.peerAddress,
					peer_addr, ETH_ALEN);
				memcpy(wsm_key->tkipPairwiseKey.tkipKeyData,
					&key->key[0],  16);
				memcpy(wsm_key->tkipPairwiseKey.txMicKey,
					&key->key[16],  8);
				memcpy(wsm_key->tkipPairwiseKey.rxMicKey,
					&key->key[24],  8);
			} else {
				wsm_key->type = WSM_KEY_TYPE_TKIP_GROUP;
				memcpy(wsm_key->tkipGroupKey.tkipKeyData,
					&key->key[0],  16);
				memcpy(wsm_key->tkipGroupKey.rxMicKey,
					&key->key[24],  8);

				/* TODO: Where can I find TKIP SEQ? */
				memset(wsm_key->tkipGroupKey.rxSeqCounter,
					0,		8);
				wsm_key->tkipGroupKey.keyId = key->keyidx;
			}
			break;
		case WLAN_CIPHER_SUITE_CCMP:
			if (pairwise) {
				wsm_key->type = WSM_KEY_TYPE_AES_PAIRWISE;
				memcpy(wsm_key->aesPairwiseKey.peerAddress,
					peer_addr, ETH_ALEN);
				memcpy(wsm_key->aesPairwiseKey.aesKeyData,
					&key->key[0],  16);
			} else {
				wsm_key->type = WSM_KEY_TYPE_AES_GROUP;
				memcpy(wsm_key->aesGroupKey.aesKeyData,
					&key->key[0],  16);
				/* TODO: Where can I find AES SEQ? */
				memset(wsm_key->aesGroupKey.rxSeqCounter,
					0,              8);
				wsm_key->aesGroupKey.keyId = key->keyidx;
			}
			break;
#if 0
		case WLAN_CIPHER_SUITE_WAPI:
			if (pairwise) {
				wsm_key->type = WSM_KEY_TYPE_WAPI_PAIRWISE;
				memcpy(wsm_key->wapiPairwiseKey.peerAddress,
					peer_addr, ETH_ALEN);
				memcpy(wsm_key->wapiPairwiseKey.wapiKeyData,
					&key->key[0],  16);
				memcpy(wsm_key->wapiPairwiseKey.micKeyData,
					&key->key[16], 16);
				wsm_key->wapiPairwiseKey.keyId = key->keyidx;
			} else {
				wsm_key->type = WSM_KEY_TYPE_WAPI_GROUP;
				memcpy(wsm_key->wapiGroupKey.wapiKeyData,
					&key->key[0],  16);
				memcpy(wsm_key->wapiGroupKey.micKeyData,
					&key->key[16], 16);
				wsm_key->wapiGroupKey.keyId = key->keyidx;
			}
			break;
#endif
		default:
			WARN_ON(1);
			cw1200_free_key(priv, idx);
			ret = -EOPNOTSUPP;
			goto finally;
		}
		ret = WARN_ON(wsm_add_key(priv, wsm_key));
		if (!ret)
			key->hw_key_idx = idx;
		else
			cw1200_free_key(priv, idx);
	} else if (cmd == DISABLE_KEY) {
		struct wsm_remove_key wsm_key = {
			.entryIndex = key->hw_key_idx,
		};

		if (wsm_key.entryIndex > WSM_KEY_MAX_INDEX) {
			ret = -EINVAL;
			goto finally;
		}

		cw1200_free_key(priv, wsm_key.entryIndex);
		ret = wsm_remove_key(priv, &wsm_key);
	} else {
		BUG_ON("Unsupported command");
	}

finally:
	mutex_unlock(&priv->conf_mutex);
	return ret;
}

void cw1200_wep_key_work(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, wep_key_work);
	__le32 wep_default_key_id = __cpu_to_le32(
		priv->wep_default_key_id);

	printk(KERN_DEBUG "[STA] Setting default WEP key: %d\n",
		priv->wep_default_key_id);
	wsm_flush_tx(priv);
	WARN_ON(wsm_write_mib(priv, WSM_MIB_ID_DOT11_WEP_DEFAULT_KEY_ID,
		&wep_default_key_id, sizeof(wep_default_key_id)));
	wsm_unlock_tx(priv);
}

int cw1200_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
{
	int ret;
	__le32 val32;

	if (value != (u32) -1)
		val32 = __cpu_to_le32(value);
	else
		val32 = 0; /* disabled */

	/* mutex_lock(&priv->conf_mutex); */
	ret = WARN_ON(wsm_write_mib(hw->priv, WSM_MIB_ID_DOT11_RTS_THRESHOLD,
		&val32, sizeof(val32)));
	/* mutex_unlock(&priv->conf_mutex); */
	return ret;
}

/* ******************************************************************** */
/* WSM callbacks							*/

/* TODO: move to txrx.c */
void cw1200_rx_cb(struct cw1200_common *priv,
		  struct wsm_rx *arg,
		  struct sk_buff **skb_p)
{
	struct sk_buff *skb = *skb_p;
	struct ieee80211_rx_status *hdr = IEEE80211_SKB_RXCB(skb);
	hdr->flag = 0;

	if (unlikely(arg->status)) {
		if (arg->status == WSM_STATUS_MICFAILURE) {
			printk(KERN_DEBUG "[RX] MIC failure.\n");
			hdr->flag |= RX_FLAG_MMIC_ERROR;
		} else if (arg->status == WSM_STATUS_NO_KEY_FOUND) {
			printk(KERN_DEBUG "[RX] No key found.\n");
			return;
		} else {
			printk(KERN_DEBUG "[RX] Receive failure: %d.\n",
				arg->status);
			return;
		}
	}

	if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED)) {
		/* STA is stopped. */
		return;
	}

	hdr->mactime = 0; /* Not supported by WSM */
	hdr->freq = ieee80211_channel_to_frequency(arg->channelNumber);
	hdr->band = (hdr->freq >= 5000) ?
		IEEE80211_BAND_5GHZ : IEEE80211_BAND_2GHZ;
	hdr->rate_idx = arg->rxedRate;
	if (hdr->rate_idx >= 4) /* TODO: Use common convert function. */
		hdr->rate_idx -= 2;
	hdr->signal = (s8)arg->rcpiRssi;
	hdr->antenna = 0;

	if (arg->flags & 0x07)
		hdr->flag |= RX_FLAG_DECRYPTED;
	if (arg->flags & BIT(14))
		hdr->flag |= RX_FLAG_HT;
#if 0
	/* Wrong: ACK could be disable for this ACL */
	if (arg->flags & BIT(16))
		priv->last_activity_time = jiffies;
#endif

#if 0
	print_hex_dump_bytes("RX: ", DUMP_PREFIX_NONE,
		skb->data, skb->len);
#endif

	/* Not that we really need _irqsafe variant here,
	 * but it offloads realtime bh thread and improve
	 * system performance. */
	ieee80211_rx_irqsafe(priv->hw, skb);
	*skb_p = NULL;
}

void cw1200_free_event_queue(struct cw1200_common *priv)
{
	unsigned long flags;
	LIST_HEAD(list);

	spin_lock_irqsave(&priv->event_queue_lock, flags);
	list_splice_init(&priv->event_queue, &list);
	spin_unlock_irqrestore(&priv->event_queue_lock, flags);

	__cw1200_free_event_queue(&list);
}

void cw1200_event_handler(struct work_struct *work)
{
	unsigned long flags;
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, event_handler);
	struct cw1200_wsm_event *event;
	LIST_HEAD(list);

	spin_lock_irqsave(&priv->event_queue_lock, flags);
	list_splice_init(&priv->event_queue, &list);
	spin_unlock_irqrestore(&priv->event_queue_lock, flags);

	list_for_each_entry(event, &list, link) {
		switch (event->evt.eventId) {
		case WSM_EVENT_ERROR:
			/* I even don't know what is it about.. */
			STUB();
			break;
		case WSM_EVENT_BSS_LOST:
		{
			printk(KERN_DEBUG "[CQM] BSS lost.\n");
			cancel_delayed_work_sync(&priv->bss_loss_work);
			cancel_delayed_work_sync(&priv->connection_loss_work);
			if (!down_trylock(&priv->scan.lock)) {
				up(&priv->scan.lock);
				priv->delayed_link_loss = 0;
				queue_delayed_work(priv->workqueue,
						&priv->bss_loss_work, 0);
			} else {
				/* Scan is in progress. Delay reporting. */
				/* Scan complete will trigger bss_loss_work */
				priv->delayed_link_loss = 1;
				/* Also we're starting watchdog. */
				queue_delayed_work(priv->workqueue,
						&priv->bss_loss_work, 10 * HZ);
			}
			break;
		}
		case WSM_EVENT_BSS_REGAINED:
		{
			printk(KERN_DEBUG "[CQM] BSS regained.\n");
			priv->delayed_link_loss = 0;
			cancel_delayed_work_sync(&priv->bss_loss_work);
			cancel_delayed_work_sync(&priv->connection_loss_work);
			break;
		}
		case WSM_EVENT_RADAR_DETECTED:
			STUB();
			break;
		case WSM_EVENT_RCPI_RSSI:
		{
			int rssi = (int)(s8)(event->evt.eventData & 0xFF);
			int cqm_evt = (rssi <= priv->cqm_rssi_thold) ?
				NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW :
				NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH;
			printk(KERN_DEBUG "[CQM] RSSI event: %d", rssi);
			ieee80211_cqm_rssi_notify(priv->vif, cqm_evt,
								GFP_KERNEL);
			break;
		}
		case WSM_EVENT_BT_INACTIVE:
			STUB();
			break;
		case WSM_EVENT_BT_ACTIVE:
			STUB();
			break;
		}
	}
	__cw1200_free_event_queue(&list);
}

void cw1200_bss_loss_work(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, bss_loss_work.work);
	int timeout; /* in beacons */

	timeout = priv->cqm_link_loss_count -
		priv->cqm_beacon_loss_count;

	if (priv->cqm_beacon_loss_count) {
		printk(KERN_DEBUG "[CQM] Beacon loss.\n");
		if (timeout <= 0)
			timeout = 0;
#ifdef USE_STE_EXTENSIONS
		ieee80211_cqm_beacon_miss_notify(priv->vif, GFP_KERNEL);
#endif
	} else {
		timeout = 0;
	}

	cancel_delayed_work_sync(&priv->connection_loss_work);
	queue_delayed_work(priv->workqueue,
		&priv->connection_loss_work,
		timeout * HZ / 10);
}

void cw1200_connection_loss_work(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common,
				connection_loss_work.work);
	printk(KERN_DEBUG "[CQM] Reporting connection loss.\n");
	ieee80211_connection_loss(priv->vif);
}

#ifdef CW1200_FIRMWARE_DOES_NOT_SUPPORT_KEEPALIVE
void cw1200_keep_alive_work(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, keep_alive_work.work);
	unsigned long now = jiffies;
	unsigned long delta = now - priv->last_activity_time;
	unsigned long tmo = 30 * HZ;

	if (delta >= tmo) {
		printk(KERN_DEBUG "[CQM] Keep-alive ping.\n");
		STUB();
		/* TODO: Do a keep-alive ping :) */
		priv->last_activity_time = now;
	} else {
		tmo -= delta;
	}
	queue_delayed_work(priv->workqueue,
		&priv->keep_alive_work, tmo);
}
#endif

void cw1200_tx_failure_work(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, tx_failure_work);
	printk(KERN_DEBUG "[CQM] Reporting TX failure.\n");
#ifdef USE_STE_EXTENSIONS
	ieee80211_cqm_tx_fail_notify(priv->vif, GFP_KERNEL);
#else
	(void)priv;
#endif
}

/* ******************************************************************** */
/* Internal API								*/

int cw1200_setup_mac(struct cw1200_common *priv)
{
	/* TBD: Do you know how to assing MAC address without
	 * annoying uploading RX data? */
	u8 prev_mac[ETH_ALEN];

	/* NOTE: There is a bug in FW: it reports signal
	* as RSSI if RSSI subscription is enabled.
	* It's not enough to set WSM_RCPI_RSSI_USE_RSSI. */
	struct wsm_rcpi_rssi_threshold threshold = {
		.rssiRcpiMode = WSM_RCPI_RSSI_USE_RSSI |
		WSM_RCPI_RSSI_THRESHOLD_ENABLE |
		WSM_RCPI_RSSI_DONT_USE_UPPER |
		WSM_RCPI_RSSI_DONT_USE_LOWER,
		.rollingAverageCount = 16,
	};
	int ret = 0;

	if (wsm_get_station_id(priv, &prev_mac[0])
	    || memcmp(prev_mac, priv->mac_addr, ETH_ALEN)) {
		const char *sdd_path = NULL;
		const struct firmware *firmware = NULL;
		struct wsm_configuration cfg = {
			.dot11StationId = &priv->mac_addr[0],
		};

		switch (priv->hw_revision) {
		case CW1200_HW_REV_CUT10:
			sdd_path = SDD_FILE_10;
			break;
		case CW1200_HW_REV_CUT11:
			sdd_path = SDD_FILE_11;
			break;
		case CW1200_HW_REV_CUT20:
			sdd_path = SDD_FILE_20;
			break;
		default:
			BUG_ON(1);
		}

		ret = request_firmware(&firmware,
			sdd_path, priv->pdev);

		if (unlikely(ret)) {
			cw1200_dbg(CW1200_DBG_ERROR,
				"%s: can't load sdd file %s.\n",
				__func__, sdd_path);
			return ret;
		}

		cfg.dpdData = firmware->data;
		cfg.dpdData_size = firmware->size;
		ret = WARN_ON(wsm_configuration(priv, &cfg));

		release_firmware(firmware);
	}
	if (ret)
		return ret;

	/* Configure RSSI/SCPI reporting as RSSI. */
	WARN_ON(wsm_set_rcpi_rssi_threshold(priv, &threshold));

	/* TODO: */
	switch (priv->mode) {
	case NL80211_IFTYPE_STATION:
	case NL80211_IFTYPE_MONITOR:
	case NL80211_IFTYPE_AP:
		break;
	case NL80211_IFTYPE_ADHOC:
	case NL80211_IFTYPE_MESH_POINT:
		/* TODO: Not verified yet. */
		STUB();
		break;
	}

	return 0;
}

void cw1200_join_work(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, join_work);
	const struct wsm_tx *wsm = priv->join_pending_frame;
	const u8 *frame = (u8 *)&wsm[1];
	const u8 *bssid = &frame[4]; /* AP SSID in a 802.11 frame */
	struct cfg80211_bss *bss;
	const u8 *ssidie;
	const u8 *dtimie;
	const struct ieee80211_tim_ie *tim = NULL;
	u8 queueId = wsm_queue_id_to_linux(wsm->queueId);

	cancel_delayed_work_sync(&priv->join_timeout);

	bss = cfg80211_get_bss(priv->hw->wiphy, NULL, bssid, NULL, 0, 0, 0);
	if (!bss) {
		priv->join_pending_frame = NULL;
		cw1200_queue_remove(&priv->tx_queue[queueId],
			priv, __le32_to_cpu(wsm->packetID));
		return;
	}
	ssidie = cfg80211_find_ie(WLAN_EID_SSID,
		bss->information_elements,
		bss->len_information_elements);
	dtimie = cfg80211_find_ie(WLAN_EID_TIM,
		bss->information_elements,
		bss->len_information_elements);
	if (dtimie)
		tim = (struct ieee80211_tim_ie *)&dtimie[2];

	mutex_lock(&priv->conf_mutex);
	{
		struct wsm_join join = {
			.mode = (bss->capability & WLAN_CAPABILITY_IBSS) ?
				WSM_JOIN_MODE_IBSS : WSM_JOIN_MODE_BSS,
			.preambleType = WSM_JOIN_PREAMBLE_SHORT,
			.probeForJoin = 1,
			/* dtimPeriod will be updated after association */
			.dtimPeriod = 1,
			.beaconInterval = bss->beacon_interval,
			/* basicRateSet will be updated after association */
			.basicRateSet = 7,
		};

		if (tim && tim->dtim_period > 1) {
			join.dtimPeriod = tim->dtim_period;
			priv->join_dtim_period = tim->dtim_period;
			printk(KERN_DEBUG "[STA] Join DTIM: %d\n",
				join.dtimPeriod);
		}

		priv->join_pending_frame = NULL;
		BUG_ON(!wsm);
		BUG_ON(!priv->channel);

		join.channelNumber = priv->channel->hw_value;
		join.band = (priv->channel->band == IEEE80211_BAND_5GHZ) ?
			WSM_PHY_BAND_5G : WSM_PHY_BAND_2_4G;

		memcpy(&join.bssid[0], bssid, sizeof(join.bssid));
		memcpy(&priv->join_bssid[0], bssid, sizeof(priv->join_bssid));

		if (ssidie) {
			join.ssidLength = ssidie[1];
			if (WARN_ON(join.ssidLength > sizeof(join.ssid)))
				join.ssidLength = sizeof(join.ssid);
			memcpy(&join.ssid[0], &ssidie[2], join.ssidLength);
		}

		wsm_flush_tx(priv);

		/* TX block_ack can use only 3 TX buffers,
		 * which is /slightly/ :) unefficient => disabled.
		 * RX block ACK is enabled for everything but voice.
		 * TODO: Verify video lags, change 0x3F -> 0x0F
		 * if necessary. */
		WARN_ON(wsm_set_block_ack_policy(priv, 0x00, 0x3F));

#ifdef CW1200_FIRMWARE_DOES_NOT_SUPPORT_KEEPALIVE
		priv->last_activity_time = jiffies;
		/* Queue keep-alive ping avery 30 sec. */
		queue_delayed_work(priv->workqueue,
			&priv->keep_alive_work, 30 * HZ);
#endif
		/* Queue unjoin if not associated in 3 sec. */
		queue_delayed_work(priv->workqueue,
			&priv->join_timeout, 3 * HZ);

		if (wsm_join(priv, &join)) {
			memset(&priv->join_bssid[0],
				0, sizeof(priv->join_bssid));
			cw1200_queue_remove(&priv->tx_queue[queueId],
				priv, __le32_to_cpu(wsm->packetID));
			cancel_delayed_work_sync(&priv->join_timeout);
#ifdef CW1200_FIRMWARE_DOES_NOT_SUPPORT_KEEPALIVE
			cancel_delayed_work_sync(&priv->keep_alive_work);
#endif
		} else {
			WARN_ON(cw1200_upload_keys(priv));
#ifndef CW1200_FIRMWARE_DOES_NOT_SUPPORT_KEEPALIVE
			WARN_ON(wsm_keep_alive_period(priv, 30 /* sec */));
#endif
			cw1200_queue_requeue(&priv->tx_queue[queueId],
				__le32_to_cpu(wsm->packetID));
		}
	}
	mutex_unlock(&priv->conf_mutex);
	cfg80211_put_bss(bss);
}

void cw1200_join_timeout(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, join_timeout.work);
	printk(KERN_DEBUG "[WSM] Issue unjoin command (TMO).\n");
	wsm_lock_tx(priv);
	cw1200_unjoin_work(&priv->unjoin_work);
}

void cw1200_unjoin_work(struct work_struct *work)
{
	struct cw1200_common *priv =
		container_of(work, struct cw1200_common, unjoin_work);

	mutex_lock(&priv->conf_mutex);
	BUG_ON(priv->join_status &&
			priv->join_status != CW1200_JOIN_STATUS_STA);
	if (priv->join_status == CW1200_JOIN_STATUS_STA) {
		memset(&priv->join_bssid[0], 0, sizeof(priv->join_bssid));
		priv->join_status = CW1200_JOIN_STATUS_MONITOR;

		/* Unjoin is a reset. */
		wsm_flush_tx(priv);
		WARN_ON(wsm_reset(priv, 1));
		priv->join_dtim_period = 0;
		WARN_ON(cw1200_setup_mac(priv));
		cw1200_free_event_queue(priv);
		cancel_work_sync(&priv->event_handler);
		cancel_delayed_work_sync(&priv->connection_loss_work);
#ifdef CW1200_FIRMWARE_DOES_NOT_SUPPORT_KEEPALIVE
		cancel_delayed_work_sync(&priv->keep_alive_work);
#endif
		printk(KERN_DEBUG "[STA] Unjoin.\n");
	}
	mutex_unlock(&priv->conf_mutex);
	wsm_unlock_tx(priv);
}

/* ******************************************************************** */
/* STA privates								*/

static int cw1200_cancel_scan(struct cw1200_common *priv)
{
	/* STUB(); */
	return 0;
}