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
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
|
// SPDX-License-Identifier: GPL-2.0-only
/*
* NXP Wireless LAN device driver: major functions
*
* Copyright 2011-2024 NXP
*/
#include <linux/suspend.h>
#include "main.h"
#include "cmdevt.h"
#include "wmm.h"
#include "cfg80211.h"
#include "11n.h"
#define VERSION "1.0"
static unsigned int debug_mask = NXPWIFI_DEFAULT_DEBUG_MASK;
char nxpwifi_driver_version[] = "nxpwifi " VERSION " (%s) ";
const u16 nxpwifi_1d_to_wmm_queue[8] = { 1, 0, 0, 1, 2, 2, 3, 3 };
/* Optional RF calibration data file */
static const char *cal_data_name = "nxp/cal_data.conf";
/* Register device; init adapter/privs/if_ops/locks; cleanup on fail. */
static struct nxpwifi_adapter *nxpwifi_register(void *card, struct device *dev,
struct nxpwifi_if_ops *if_ops)
{
struct nxpwifi_adapter *adapter;
int ret = 0;
int i;
adapter = kzalloc_obj(*adapter, GFP_KERNEL);
if (!adapter)
return ERR_PTR(-ENOMEM);
adapter->dev = dev;
adapter->card = card;
/* Save interface specific operations in adapter */
memmove(&adapter->if_ops, if_ops, sizeof(struct nxpwifi_if_ops));
adapter->debug_mask = debug_mask;
/* card specific initialization has been deferred until now .. */
if (adapter->if_ops.init_if) {
ret = adapter->if_ops.init_if(adapter);
if (ret)
goto error;
}
adapter->priv_num = 0;
for (i = 0; i < NXPWIFI_MAX_BSS_NUM; i++) {
/* Allocate memory for private structure */
adapter->priv[i] =
kzalloc_obj(struct nxpwifi_private, GFP_KERNEL);
if (!adapter->priv[i]) {
ret = -ENOMEM;
goto error;
}
adapter->priv[i]->adapter = adapter;
adapter->priv_num++;
}
nxpwifi_init_lock_list(adapter);
timer_setup(&adapter->cmd_timer, nxpwifi_cmd_timeout_func, 0);
if (ret)
return ERR_PTR(ret);
else
return adapter;
error:
nxpwifi_dbg(adapter, ERROR,
"info: leave %s with error\n", __func__);
for (i = 0; i < adapter->priv_num; i++)
kfree(adapter->priv[i]);
kfree(adapter);
return ERR_PTR(ret);
}
/* Unregister device; free timers, beacons, privs, nd_info, adapter. */
static void nxpwifi_unregister(struct nxpwifi_adapter *adapter)
{
s32 i;
if (adapter->if_ops.cleanup_if)
adapter->if_ops.cleanup_if(adapter);
timer_delete_sync(&adapter->cmd_timer);
/* Free private structures */
for (i = 0; i < adapter->priv_num; i++) {
nxpwifi_free_curr_bcn(adapter->priv[i]);
kfree(adapter->priv[i]);
}
if (adapter->nd_info) {
for (i = 0 ; i < adapter->nd_info->n_matches ; i++)
kfree(adapter->nd_info->matches[i]);
kfree(adapter->nd_info);
adapter->nd_info = NULL;
}
kfree(adapter->regd);
kfree(adapter);
}
static void nxpwifi_queue_rx_work(struct nxpwifi_adapter *adapter)
{
queue_work(adapter->rx_workqueue, &adapter->rx_work);
}
static void nxpwifi_process_rx(struct nxpwifi_adapter *adapter)
{
struct sk_buff *skb;
struct nxpwifi_rxinfo *rx_info;
if (atomic_read(&adapter->iface_changing) ||
atomic_read(&adapter->rx_ba_teardown_pending))
return;
/* Check for Rx data */
while ((skb = skb_dequeue(&adapter->rx_data_q))) {
atomic_dec(&adapter->rx_pending);
if (adapter->delay_main_work &&
(atomic_read(&adapter->rx_pending) < LOW_RX_PENDING)) {
adapter->delay_main_work = false;
nxpwifi_queue_work(adapter, &adapter->main_work);
}
rx_info = NXPWIFI_SKB_RXCB(skb);
if (rx_info->buf_type == NXPWIFI_TYPE_AGGR_DATA) {
if (adapter->if_ops.deaggr_pkt)
adapter->if_ops.deaggr_pkt(adapter, skb);
dev_kfree_skb_any(skb);
} else {
nxpwifi_handle_rx_packet(adapter, skb);
}
}
}
static void maybe_quirk_fw_disable_ds(struct nxpwifi_adapter *adapter)
{
struct nxpwifi_private *priv = nxpwifi_get_priv(adapter, NXPWIFI_BSS_ROLE_STA);
struct nxpwifi_ver_ext ver_ext;
if (test_and_set_bit(NXPWIFI_IS_REQUESTING_FW_VEREXT, &adapter->work_flags))
return;
memset(&ver_ext, 0, sizeof(ver_ext));
ver_ext.version_str_sel = 1;
if (nxpwifi_send_cmd(priv, HOST_CMD_VERSION_EXT,
HOST_ACT_GEN_GET, 0, &ver_ext, false)) {
nxpwifi_dbg(priv->adapter, MSG,
"Checking hardware revision failed.\n");
}
}
static void nxpwifi_handle_irq_status(struct nxpwifi_adapter *adapter, u8 istat)
{
if (adapter->hs_activated)
nxpwifi_process_hs_config(adapter);
if (adapter->if_ops.process_int_status)
adapter->if_ops.process_int_status(adapter, istat);
}
static bool nxpwifi_drain_tx(struct nxpwifi_adapter *adapter)
{
bool ret = false;
if ((adapter->scan_chan_gap_enabled || !adapter->scan_processing) &&
!adapter->data_sent && !skb_queue_empty(&adapter->tx_data_q)) {
if (adapter->hs_activated_manually) {
nxpwifi_cancel_hs(nxpwifi_get_priv(adapter, NXPWIFI_BSS_ROLE_ANY),
NXPWIFI_ASYNC_CMD);
adapter->hs_activated_manually = false;
}
nxpwifi_process_tx_queue(adapter);
if (adapter->hs_activated) {
clear_bit(NXPWIFI_IS_HS_CONFIGURED,
&adapter->work_flags);
nxpwifi_hs_activated_event
(nxpwifi_get_priv
(adapter, NXPWIFI_BSS_ROLE_ANY),
false);
}
ret = true;
}
if ((adapter->scan_chan_gap_enabled ||
!adapter->scan_processing) &&
!adapter->data_sent &&
!nxpwifi_bypass_txlist_empty(adapter)) {
if (adapter->hs_activated_manually) {
nxpwifi_cancel_hs(nxpwifi_get_priv(adapter, NXPWIFI_BSS_ROLE_ANY),
NXPWIFI_ASYNC_CMD);
adapter->hs_activated_manually = false;
}
nxpwifi_process_bypass_tx(adapter);
if (adapter->hs_activated) {
clear_bit(NXPWIFI_IS_HS_CONFIGURED,
&adapter->work_flags);
nxpwifi_hs_activated_event
(nxpwifi_get_priv
(adapter, NXPWIFI_BSS_ROLE_ANY),
false);
}
ret = true;
}
if ((adapter->scan_chan_gap_enabled ||
!adapter->scan_processing) &&
!adapter->data_sent && !nxpwifi_wmm_lists_empty(adapter)) {
if (adapter->hs_activated_manually) {
nxpwifi_cancel_hs(nxpwifi_get_priv(adapter, NXPWIFI_BSS_ROLE_ANY),
NXPWIFI_ASYNC_CMD);
adapter->hs_activated_manually = false;
}
nxpwifi_wmm_process_tx(adapter);
if (adapter->hs_activated) {
clear_bit(NXPWIFI_IS_HS_CONFIGURED,
&adapter->work_flags);
nxpwifi_hs_activated_event
(nxpwifi_get_priv
(adapter, NXPWIFI_BSS_ROLE_ANY),
false);
}
ret = true;
}
return ret;
}
static bool nxpwifi_handle_rx(struct nxpwifi_adapter *adapter)
{
if (adapter->rx_work_enabled && adapter->data_received) {
nxpwifi_queue_rx_work(adapter);
return true;
}
return false;
}
static bool nxpwifi_handle_cmd_response(struct nxpwifi_adapter *adapter)
{
/* Check for Cmd Resp */
if (adapter->cmd_resp_received) {
adapter->cmd_resp_received = false;
nxpwifi_process_cmdresp(adapter);
return true;
}
return false;
}
static bool nxpwifi_handle_events(struct nxpwifi_adapter *adapter)
{
if (adapter->event_received) {
adapter->event_received = false;
nxpwifi_process_event(adapter);
return true;
}
return false;
}
static bool nxpwifi_tx_has_pending(struct nxpwifi_adapter *adapter)
{
return !skb_queue_empty(&adapter->tx_data_q) ||
!nxpwifi_bypass_txlist_empty(adapter) ||
!nxpwifi_wmm_lists_empty(adapter);
}
static bool nxpwifi_cmd_has_pending(struct nxpwifi_adapter *adapter)
{
return !list_empty(&adapter->cmd_pending_q);
}
static bool nxpwifi_events_has_pending(struct nxpwifi_adapter *adapter)
{
return adapter->event_received;
}
static bool nxpwifi_should_wakeup_card(struct nxpwifi_adapter *adapter)
{
if (adapter->ps_state != PS_STATE_SLEEP)
return false;
if (!adapter->pm_wakeup_card_req || adapter->pm_wakeup_fw_try)
return false;
return nxpwifi_is_command_pending(adapter) || nxpwifi_tx_has_pending(adapter);
}
static bool nxpwifi_should_exit_main_loop(struct nxpwifi_adapter *adapter)
{
if (adapter->pm_wakeup_fw_try)
return true;
if (adapter->ps_state == PS_STATE_PRE_SLEEP)
nxpwifi_check_ps_cond(adapter);
if (adapter->ps_state != PS_STATE_AWAKE)
return true;
if (adapter->tx_lock_flag)
return true;
if ((!adapter->scan_chan_gap_enabled && adapter->scan_processing) ||
adapter->data_sent || !nxpwifi_tx_has_pending(adapter)) {
if (adapter->cmd_sent || adapter->curr_cmd ||
!nxpwifi_is_command_pending(adapter))
return true;
}
return false;
}
static void nxpwifi_wakeup_card(struct nxpwifi_adapter *adapter)
{
adapter->pm_wakeup_fw_try = true;
mod_timer(&adapter->wakeup_timer, jiffies + (HZ * 3));
adapter->if_ops.wakeup(adapter);
}
static void nxpwifi_handle_vdll_download(struct nxpwifi_adapter *adapter)
{
if (!adapter->cmd_sent && adapter->vdll_ctrl.pending_block) {
struct vdll_dnld_ctrl *ctrl = &adapter->vdll_ctrl;
nxpwifi_download_vdll_block(adapter, ctrl->pending_block,
ctrl->pending_block_len);
ctrl->pending_block = NULL;
}
}
static void nxpwifi_finish_delayed_null_pkt(struct nxpwifi_adapter *adapter)
{
if (!adapter->delay_null_pkt)
return;
if (adapter->cmd_sent || adapter->curr_cmd || nxpwifi_is_command_pending(adapter))
return;
if (nxpwifi_tx_has_pending(adapter))
return;
if (!nxpwifi_send_null_packet(nxpwifi_get_priv(adapter, NXPWIFI_BSS_ROLE_STA),
NXPWIFI_TxPD_POWER_MGMT_NULL_PACKET |
NXPWIFI_TxPD_POWER_MGMT_LAST_PACKET)) {
adapter->delay_null_pkt = false;
adapter->ps_state = PS_STATE_SLEEP;
}
}
static bool nxpwifi_pump_command(struct nxpwifi_adapter *adapter)
{
if (!adapter->cmd_sent && !adapter->curr_cmd) {
if (!nxpwifi_exec_next_cmd(adapter))
return true;
}
return false;
}
/* Main loop: IRQ/RX/CMD/EVENT; wake card; TX; PS null; exit if idle. */
void nxpwifi_main_process(struct nxpwifi_adapter *adapter)
{
unsigned long flags;
/* Check if virtual interface changing */
if (atomic_read(&adapter->iface_changing)) {
nxpwifi_dbg(adapter,
INFO, "main_process skipped due to iface_changing");
return;
}
for (;;) {
bool did_work = false;
u8 istat = 0;
if (adapter->hw_status == NXPWIFI_HW_STATUS_NOT_READY)
break;
/*
* For non-USB interfaces, If we process interrupts first, it
* would increase RX pending even further. Avoid this by
* checking if rx_pending has crossed high threshold and
* schedule rx work queue and then process interrupts.
* For USB interface, there are no interrupts. We already have
* HIGH_RX_PENDING check in usb.c
*/
if (atomic_read(&adapter->rx_pending) >= HIGH_RX_PENDING) {
adapter->delay_main_work = true;
nxpwifi_queue_rx_work(adapter);
break;
}
/*
* Snapshot-and-clear the interrupt status.
*
* Take the same lock as the producer (nxpwifi_sdio_interrupt()) uses
* when OR-ing new bits into adapter->int_status. We atomically grab
* what has accumulated and clear it, so this consumer owns this batch.
*/
spin_lock_irqsave(&adapter->int_lock, flags);
istat = adapter->int_status;
adapter->int_status = 0;
spin_unlock_irqrestore(&adapter->int_lock, flags);
/* Handle pending interrupt if any */
if (istat) {
nxpwifi_handle_irq_status(adapter, istat);
did_work = true;
}
did_work |= nxpwifi_handle_rx(adapter);
if (nxpwifi_should_wakeup_card(adapter)) {
nxpwifi_wakeup_card(adapter);
continue;
}
if (IS_CARD_RX_RCVD(adapter)) {
/* Card has responded, clear wakeup state and update power state */
adapter->data_received = false;
adapter->pm_wakeup_fw_try = false;
timer_delete(&adapter->wakeup_timer);
if (adapter->ps_state == PS_STATE_SLEEP)
adapter->ps_state = PS_STATE_AWAKE;
} else {
if (nxpwifi_should_exit_main_loop(adapter))
break;
}
did_work |= nxpwifi_handle_events(adapter);
did_work |= nxpwifi_handle_cmd_response(adapter);
/* Check if we need to confirm Sleep Request received previously */
if (adapter->ps_state == PS_STATE_PRE_SLEEP)
nxpwifi_check_ps_cond(adapter);
/*
* The ps_state may have been changed during processing of
* Sleep Request event.
*/
if (adapter->ps_state != PS_STATE_AWAKE)
continue;
if (adapter->tx_lock_flag)
continue;
nxpwifi_handle_vdll_download(adapter);
did_work |= nxpwifi_pump_command(adapter);
did_work |= nxpwifi_drain_tx(adapter);
/*
* Attempt to send delayed null packet.
* If successful, firmware will enter sleep and ps_state will be updated.
* We check ps_state here to determine if main loop can safely exit.
*/
nxpwifi_finish_delayed_null_pkt(adapter);
if (adapter->ps_state == PS_STATE_SLEEP)
break;
/*
* Step 3) Cooperative preemption point.
* cond_resched() yields ONLY if need_resched() is set. Placing it
* BEFORE the final check improves fairness: it lets ksdioirqd (RT/FIFO)
* or other producers run and set new int_status bits. Immediately
* after we return here, we perform the final "net cast" (Step 4) to
* decide if we should continue or return.
*/
cond_resched();
/*
* Step 4) Exit decision with lost-kick closure.
*
* We consider exiting ONLY when this round did no real work.
* Rationale:
* - If did_work == true: we will loop anyway; at Step 1 we will
* re-snapshot int_status, so there's no need to re-check now.
* - If did_work == false: we appear idle and may return. But during
* our execution window, a producer may have just set int_status and
* queue_work(); since this work is still running, queue_work()
* returns false (no second instance queued). If we return now,
* we'd leave unprocessed status with no pending work => lost-kick.
*
* Therefore, perform a single final check: if *anything* is pending,
* continue looping; otherwise, break and return.
*/
if (!did_work) {
bool more = false;
unsigned long flags;
/* 4a) New IRQ bits raced in while we were running? */
spin_lock_irqsave(&adapter->int_lock, flags);
more |= adapter->int_status != 0;
spin_unlock_irqrestore(&adapter->int_lock, flags);
/* 4b) Any other sources still pending? (driver-specific) */
more |= nxpwifi_tx_has_pending(adapter);
more |= nxpwifi_cmd_has_pending(adapter);
more |= nxpwifi_events_has_pending(adapter);
if (!more)
break; /* Truly quiescent now: safe to return. */
/* else: loop back to Step 1 to consume what just arrived. */
}
/* If did_work == true, we loop unconditionally and re-snapshot. */
};
}
/* Free adapter via nxpwifi_unregister(). */
static void nxpwifi_free_adapter(struct nxpwifi_adapter *adapter)
{
if (!adapter) {
pr_err("%s: adapter is NULL\n", __func__);
return;
}
nxpwifi_unregister(adapter);
pr_debug("info: %s: free adapter\n", __func__);
}
/* Destroy main and RX workqueues. */
static void nxpwifi_terminate_workqueue(struct nxpwifi_adapter *adapter)
{
if (adapter->workqueue) {
destroy_workqueue(adapter->workqueue);
adapter->workqueue = NULL;
}
if (adapter->rx_workqueue) {
destroy_workqueue(adapter->rx_workqueue);
adapter->rx_workqueue = NULL;
}
}
/* FW bring-up: download, enable IRQ, init FW; cfg80211+ifaces; cleanup. */
static int _nxpwifi_fw_dpc(const struct firmware *firmware, void *context)
{
int ret = 0;
char fmt[64];
struct nxpwifi_adapter *adapter = context;
struct nxpwifi_fw_image fw;
bool init_failed = false;
struct wireless_dev *wdev;
struct completion *fw_done = adapter->fw_done;
if (!firmware) {
nxpwifi_dbg(adapter, ERROR,
"Failed to get firmware %s\n", adapter->fw_name);
ret = -EINVAL;
goto err_dnld_fw;
}
memset(&fw, 0, sizeof(struct nxpwifi_fw_image));
adapter->firmware = firmware;
fw.fw_buf = (u8 *)adapter->firmware->data;
fw.fw_len = adapter->firmware->size;
if (adapter->if_ops.dnld_fw)
ret = adapter->if_ops.dnld_fw(adapter, &fw);
else
ret = nxpwifi_dnld_fw(adapter, &fw);
if (ret)
goto err_dnld_fw;
nxpwifi_dbg(adapter, MSG, "WLAN FW is active\n");
/* Load optional calibration data */
ret = request_firmware(&adapter->cal_data, cal_data_name, adapter->dev);
if (ret) {
nxpwifi_dbg(adapter, INFO, "no %s, using default cal\n",
cal_data_name);
adapter->cal_data = NULL;
}
/* enable host interrupt after fw dnld is successful */
if (adapter->if_ops.enable_int) {
ret = adapter->if_ops.enable_int(adapter);
if (ret)
goto err_dnld_fw;
}
ret = nxpwifi_init_fw(adapter);
if (ret)
goto err_init_fw;
maybe_quirk_fw_disable_ds(adapter);
if (!adapter->wiphy) {
if (nxpwifi_register_cfg80211(adapter)) {
nxpwifi_dbg(adapter, ERROR,
"cannot register with cfg80211\n");
goto err_init_fw;
}
}
if (nxpwifi_init_channel_scan_gap(adapter)) {
nxpwifi_dbg(adapter, ERROR,
"could not init channel stats table\n");
goto err_init_chan_scan;
}
rtnl_lock();
/* Create station interface by default */
wdev = nxpwifi_add_virtual_intf(adapter->wiphy, "mlan%d", NET_NAME_ENUM,
NL80211_IFTYPE_STATION, NULL);
if (IS_ERR(wdev)) {
nxpwifi_dbg(adapter, ERROR,
"cannot create default STA interface\n");
rtnl_unlock();
goto err_add_intf;
}
wdev = nxpwifi_add_virtual_intf(adapter->wiphy, "uap%d", NET_NAME_ENUM,
NL80211_IFTYPE_AP, NULL);
if (IS_ERR(wdev)) {
nxpwifi_dbg(adapter, ERROR,
"cannot create AP interface\n");
rtnl_unlock();
goto err_add_intf;
}
rtnl_unlock();
nxpwifi_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
nxpwifi_dbg(adapter, MSG, "driver_version = %s\n", fmt);
adapter->is_up = true;
goto done;
err_add_intf:
vfree(adapter->chan_stats);
err_init_chan_scan:
wiphy_unregister(adapter->wiphy);
wiphy_free(adapter->wiphy);
err_init_fw:
if (adapter->if_ops.disable_int)
adapter->if_ops.disable_int(adapter);
err_dnld_fw:
nxpwifi_dbg(adapter, ERROR,
"info: %s: unregister device\n", __func__);
if (adapter->if_ops.unregister_dev)
adapter->if_ops.unregister_dev(adapter);
set_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags);
nxpwifi_terminate_workqueue(adapter);
if (adapter->hw_status == NXPWIFI_HW_STATUS_READY) {
pr_debug("info: %s: shutdown nxpwifi\n", __func__);
nxpwifi_shutdown_drv(adapter);
nxpwifi_free_cmd_buffers(adapter);
}
init_failed = true;
done:
if (adapter->cal_data) {
release_firmware(adapter->cal_data);
adapter->cal_data = NULL;
}
if (adapter->firmware) {
release_firmware(adapter->firmware);
adapter->firmware = NULL;
}
if (init_failed)
nxpwifi_free_adapter(adapter);
/* Tell all current and future waiters we're finished */
complete_all(fw_done);
return ret;
}
static void nxpwifi_fw_dpc(const struct firmware *firmware, void *context)
{
_nxpwifi_fw_dpc(firmware, context);
}
/* Request firmware (sync/async) and start HW init. */
static int nxpwifi_init_hw_fw(struct nxpwifi_adapter *adapter,
bool req_fw_nowait)
{
int ret;
if (req_fw_nowait) {
ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
adapter->dev, GFP_KERNEL, adapter,
nxpwifi_fw_dpc);
} else {
ret = request_firmware(&adapter->firmware,
adapter->fw_name,
adapter->dev);
}
if (ret < 0)
nxpwifi_dbg(adapter, ERROR, "request_firmware%s error %d\n",
req_fw_nowait ? "_nowait" : "", ret);
return ret;
}
/* ndo_open: bring carrier down. */
static int
nxpwifi_open(struct net_device *dev)
{
netif_carrier_off(dev);
return 0;
}
/* ndo_stop: abort scan/sched-scan if running. */
static int
nxpwifi_close(struct net_device *dev)
{
struct nxpwifi_private *priv = nxpwifi_netdev_get_priv(dev);
if (priv->scan_request) {
struct cfg80211_scan_info info = {
.aborted = true,
};
nxpwifi_dbg(priv->adapter, INFO,
"aborting scan on ndo_stop\n");
cfg80211_scan_done(priv->scan_request, &info);
priv->scan_request = NULL;
priv->scan_aborting = true;
}
if (priv->sched_scanning) {
nxpwifi_dbg(priv->adapter, INFO,
"aborting bgscan on ndo_stop\n");
nxpwifi_stop_bg_scan(priv);
cfg80211_sched_scan_stopped(priv->wdev.wiphy, 0);
}
return 0;
}
static bool
nxpwifi_bypass_tx_queue(struct nxpwifi_private *priv,
struct sk_buff *skb)
{
struct ethhdr *eth_hdr = (struct ethhdr *)skb->data;
if (eth_hdr->h_proto == htons(ETH_P_PAE) ||
nxpwifi_is_skb_mgmt_frame(skb)) {
nxpwifi_dbg(priv->adapter, DATA,
"bypass txqueue; eth type %#x, mgmt %d\n",
ntohs(eth_hdr->h_proto),
nxpwifi_is_skb_mgmt_frame(skb));
if (eth_hdr->h_proto == htons(ETH_P_PAE))
nxpwifi_dbg(priv->adapter, MSG,
"key: send EAPOL to %pM\n",
eth_hdr->h_dest);
return true;
}
return false;
}
/* Queue SKB (WMM or bypass) and schedule main work. */
void nxpwifi_queue_tx_pkt(struct nxpwifi_private *priv, struct sk_buff *skb)
{
struct nxpwifi_adapter *adapter = priv->adapter;
struct netdev_queue *txq;
int index = nxpwifi_1d_to_wmm_queue[skb->priority];
if (atomic_inc_return(&priv->wmm_tx_pending[index]) >= MAX_TX_PENDING) {
txq = netdev_get_tx_queue(priv->netdev, index);
if (!netif_tx_queue_stopped(txq)) {
netif_tx_stop_queue(txq);
nxpwifi_dbg(adapter, DATA,
"stop queue: %d\n", index);
}
}
if (nxpwifi_bypass_tx_queue(priv, skb)) {
atomic_inc(&adapter->tx_pending);
atomic_inc(&adapter->bypass_tx_pending);
nxpwifi_wmm_add_buf_bypass_txqueue(priv, skb);
} else {
atomic_inc(&adapter->tx_pending);
nxpwifi_wmm_add_buf_txqueue(priv, skb);
}
nxpwifi_queue_work(adapter, &adapter->main_work);
}
struct sk_buff *
nxpwifi_clone_skb_for_tx_status(struct nxpwifi_private *priv,
struct sk_buff *skb, u8 flag, u64 *cookie)
{
struct sk_buff *orig_skb = skb;
struct nxpwifi_txinfo *tx_info, *orig_tx_info;
u32 id32 = 0;
int ret;
skb = skb_clone(skb, GFP_ATOMIC);
if (skb) {
spin_lock_bh(&priv->ack_status_lock);
/*
* Use XArray to allocate IDs in the range 1..0x0F.
* Limit ensures the allocated token ID is always within this
* range.
*/
ret = xa_alloc(&priv->ack_status_frames, &id32, orig_skb,
XA_LIMIT(1, 0x0f), GFP_ATOMIC);
spin_unlock_bh(&priv->ack_status_lock);
if (ret == 0) {
tx_info = NXPWIFI_SKB_TXCB(skb);
tx_info->ack_frame_id = id32;
tx_info->flags |= flag;
orig_tx_info = NXPWIFI_SKB_TXCB(orig_skb);
orig_tx_info->ack_frame_id = id32;
orig_tx_info->flags |= flag;
if (flag == NXPWIFI_BUF_FLAG_ACTION_TX_STATUS && cookie)
orig_tx_info->cookie = *cookie;
} else if (skb_shared(skb)) {
kfree_skb(orig_skb);
} else {
kfree_skb(skb);
skb = orig_skb;
}
} else {
/* couldn't clone -- lose tx status ... */
skb = orig_skb;
}
return skb;
}
/* ndo_start_xmit: fix headroom, fill TXCB, timestamp, enqueue. */
static netdev_tx_t
nxpwifi_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
{
struct nxpwifi_private *priv = nxpwifi_netdev_get_priv(dev);
struct sk_buff *new_skb;
struct nxpwifi_txinfo *tx_info;
bool multicast;
nxpwifi_dbg(priv->adapter, DATA,
"data: %lu BSS(%d-%d): Data <= kernel\n",
jiffies, priv->bss_type, priv->bss_num);
if (test_bit(NXPWIFI_SURPRISE_REMOVED, &priv->adapter->work_flags)) {
kfree_skb(skb);
priv->stats.tx_dropped++;
return 0;
}
if (!skb->len || skb->len > ETH_FRAME_LEN) {
nxpwifi_dbg(priv->adapter, ERROR,
"Tx: bad skb len %d\n", skb->len);
kfree_skb(skb);
priv->stats.tx_dropped++;
return 0;
}
if (skb_headroom(skb) < NXPWIFI_MIN_DATA_HEADER_LEN) {
nxpwifi_dbg(priv->adapter, DATA,
"data: Tx: insufficient skb headroom %d\n",
skb_headroom(skb));
/* Insufficient skb headroom - allocate a new skb */
new_skb =
skb_realloc_headroom(skb, NXPWIFI_MIN_DATA_HEADER_LEN);
if (unlikely(!new_skb)) {
nxpwifi_dbg(priv->adapter, ERROR,
"Tx: cannot alloca new_skb\n");
kfree_skb(skb);
priv->stats.tx_dropped++;
return 0;
}
kfree_skb(skb);
skb = new_skb;
nxpwifi_dbg(priv->adapter, INFO,
"info: new skb headroomd %d\n",
skb_headroom(skb));
}
tx_info = NXPWIFI_SKB_TXCB(skb);
memset(tx_info, 0, sizeof(*tx_info));
tx_info->bss_num = priv->bss_num;
tx_info->bss_type = priv->bss_type;
tx_info->pkt_len = skb->len;
multicast = is_multicast_ether_addr(skb->data);
if (unlikely(!multicast && sk_requests_wifi_status(skb->sk) &&
priv->adapter->fw_api_ver == NXPWIFI_FW_V15))
skb = nxpwifi_clone_skb_for_tx_status(priv,
skb,
NXPWIFI_BUF_FLAG_EAPOL_TX_STATUS, NULL);
/*
* Record the current time the packet was queued; used to
* determine the amount of time the packet was queued in
* the driver before it was sent to the firmware.
* The delay is then sent along with the packet to the
* firmware for aggregate delay calculation for stats and
* MSDU lifetime expiry.
*/
__net_timestamp(skb);
nxpwifi_queue_tx_pkt(priv, skb);
return 0;
}
int nxpwifi_set_mac_address(struct nxpwifi_private *priv,
struct net_device *dev, bool external,
u8 *new_mac)
{
int ret;
u64 mac_addr, old_mac_addr;
old_mac_addr = ether_addr_to_u64(priv->curr_addr);
if (external) {
mac_addr = ether_addr_to_u64(new_mac);
} else {
/* Internal mac address change */
if (priv->bss_type == NXPWIFI_BSS_TYPE_ANY)
return -EOPNOTSUPP;
mac_addr = old_mac_addr;
if (priv->adapter->priv[0] != priv) {
/* Set mac address based on bss_type/bss_num */
mac_addr ^= BIT_ULL(priv->bss_type + 8);
mac_addr += priv->bss_num;
}
}
u64_to_ether_addr(mac_addr, priv->curr_addr);
/* Send request to firmware */
ret = nxpwifi_send_cmd(priv, HOST_CMD_802_11_MAC_ADDRESS,
HOST_ACT_GEN_SET, 0, NULL, true);
if (ret) {
u64_to_ether_addr(old_mac_addr, priv->curr_addr);
nxpwifi_dbg(priv->adapter, ERROR,
"set mac address failed: ret=%d\n", ret);
return ret;
}
eth_hw_addr_set(dev, priv->curr_addr);
return 0;
}
/* ndo_set_mac_address: set MAC via firmware. */
static int
nxpwifi_ndo_set_mac_address(struct net_device *dev, void *addr)
{
struct nxpwifi_private *priv = nxpwifi_netdev_get_priv(dev);
struct sockaddr *hw_addr = addr;
return nxpwifi_set_mac_address(priv, dev, true, hw_addr->sa_data);
}
/* ndo_set_rx_mode: promisc/allmulti or program multicast. */
static void nxpwifi_set_multicast_list(struct net_device *dev)
{
struct nxpwifi_private *priv = nxpwifi_netdev_get_priv(dev);
struct nxpwifi_multicast_list mcast_list;
if (dev->flags & IFF_PROMISC) {
mcast_list.mode = NXPWIFI_PROMISC_MODE;
} else if (dev->flags & IFF_ALLMULTI ||
netdev_mc_count(dev) > NXPWIFI_MAX_MULTICAST_LIST_SIZE) {
mcast_list.mode = NXPWIFI_ALL_MULTI_MODE;
} else {
mcast_list.mode = NXPWIFI_MULTICAST_MODE;
mcast_list.num_multicast_addr =
nxpwifi_copy_mcast_addr(&mcast_list, dev);
}
nxpwifi_request_set_multicast_list(priv, &mcast_list);
}
/* ndo_tx_timeout: account; reset card on threshold. */
static void
nxpwifi_tx_timeout(struct net_device *dev, unsigned int txqueue)
{
struct nxpwifi_private *priv = nxpwifi_netdev_get_priv(dev);
priv->num_tx_timeout++;
priv->tx_timeout_cnt++;
nxpwifi_dbg(priv->adapter, ERROR,
"%lu : Tx timeout(#%d), bss_type-num = %d-%d\n",
jiffies, priv->tx_timeout_cnt, priv->bss_type,
priv->bss_num);
nxpwifi_set_trans_start(dev);
if (priv->tx_timeout_cnt > TX_TIMEOUT_THRESHOLD &&
priv->adapter->if_ops.card_reset) {
nxpwifi_dbg(priv->adapter, ERROR,
"tx_timeout_cnt exceeds threshold.\t"
"Triggering card reset!\n");
priv->adapter->if_ops.card_reset(priv->adapter);
}
}
void nxpwifi_upload_device_dump(struct nxpwifi_adapter *adapter)
{
/*
* Dump all the memory data into single file, a userspace script will
* be used to split all the memory data to multiple files
*/
nxpwifi_dbg(adapter, MSG,
"== nxpwifi dump information to /sys/class/devcoredump start\n");
dev_coredumpv(adapter->dev, adapter->devdump_data, adapter->devdump_len,
GFP_KERNEL);
nxpwifi_dbg(adapter, MSG,
"== nxpwifi dump information to /sys/class/devcoredump end\n");
/*
* Device dump data will be freed in device coredump release function
* after 5 min. Here reset adapter->devdump_data and ->devdump_len
* to avoid it been accidentally reused.
*/
adapter->devdump_data = NULL;
adapter->devdump_len = 0;
}
EXPORT_SYMBOL_GPL(nxpwifi_upload_device_dump);
void nxpwifi_drv_info_dump(struct nxpwifi_adapter *adapter)
{
char *p;
char drv_version[64];
struct sdio_mmc_card *sdio_card;
struct nxpwifi_private *priv;
int i, idx;
struct netdev_queue *txq;
struct nxpwifi_debug_info *debug_info;
nxpwifi_dbg(adapter, MSG, "===nxpwifi driverinfo dump start===\n");
p = adapter->devdump_data;
strscpy(p, "========Start dump driverinfo========\n", NXPWIFI_FW_DUMP_SIZE);
p += strlen("========Start dump driverinfo========\n");
p += sprintf(p, "driver_name = ");
p += sprintf(p, "\"nxpwifi\"\n");
nxpwifi_drv_get_driver_version(adapter, drv_version,
sizeof(drv_version) - 1);
p += sprintf(p, "driver_version = %s\n", drv_version);
p += sprintf(p, "tx_pending = %d\n",
atomic_read(&adapter->tx_pending));
p += sprintf(p, "rx_pending = %d\n",
atomic_read(&adapter->rx_pending));
if (adapter->iface_type == NXPWIFI_SDIO) {
sdio_card = (struct sdio_mmc_card *)adapter->card;
p += sprintf(p, "\nmp_rd_bitmap=0x%x curr_rd_port=0x%x\n",
sdio_card->mp_rd_bitmap, sdio_card->curr_rd_port);
p += sprintf(p, "mp_wr_bitmap=0x%x curr_wr_port=0x%x\n",
sdio_card->mp_wr_bitmap, sdio_card->curr_wr_port);
}
for (i = 0; i < adapter->priv_num; i++) {
if (!adapter->priv[i]->netdev)
continue;
priv = adapter->priv[i];
p += sprintf(p, "\n[interface : \"%s\"]\n",
priv->netdev->name);
p += sprintf(p, "wmm_tx_pending[0] = %d\n",
atomic_read(&priv->wmm_tx_pending[0]));
p += sprintf(p, "wmm_tx_pending[1] = %d\n",
atomic_read(&priv->wmm_tx_pending[1]));
p += sprintf(p, "wmm_tx_pending[2] = %d\n",
atomic_read(&priv->wmm_tx_pending[2]));
p += sprintf(p, "wmm_tx_pending[3] = %d\n",
atomic_read(&priv->wmm_tx_pending[3]));
p += sprintf(p, "media_state=\"%s\"\n", !priv->media_connected ?
"Disconnected" : "Connected");
p += sprintf(p, "carrier %s\n", (netif_carrier_ok(priv->netdev)
? "on" : "off"));
for (idx = 0; idx < priv->netdev->num_tx_queues; idx++) {
txq = netdev_get_tx_queue(priv->netdev, idx);
p += sprintf(p, "tx queue %d:%s ", idx,
netif_tx_queue_stopped(txq) ?
"stopped" : "started");
}
p += sprintf(p, "\n%s: num_tx_timeout = %d\n",
priv->netdev->name, priv->num_tx_timeout);
}
if (adapter->iface_type == NXPWIFI_SDIO) {
p += sprintf(p, "\n=== %s register dump===\n", "SDIO");
if (adapter->if_ops.reg_dump)
p += adapter->if_ops.reg_dump(adapter, p);
}
p += sprintf(p, "\n=== more debug information\n");
debug_info = kzalloc_obj(*debug_info, GFP_KERNEL);
if (debug_info) {
for (i = 0; i < adapter->priv_num; i++) {
if (!adapter->priv[i]->netdev)
continue;
priv = adapter->priv[i];
nxpwifi_get_debug_info(priv, debug_info);
p += nxpwifi_debug_info_to_buffer(priv, p, debug_info);
break;
}
kfree(debug_info);
}
p += sprintf(p, "\n========End dump========\n");
nxpwifi_dbg(adapter, MSG, "===nxpwifi driverinfo dump end===\n");
adapter->devdump_len = p - (char *)adapter->devdump_data;
}
EXPORT_SYMBOL_GPL(nxpwifi_drv_info_dump);
void nxpwifi_prepare_fw_dump_info(struct nxpwifi_adapter *adapter)
{
u8 idx;
char *fw_dump_ptr;
u32 dump_len = 0;
for (idx = 0; idx < adapter->num_mem_types; idx++) {
struct memory_type_mapping *entry =
&adapter->mem_type_mapping_tbl[idx];
if (entry->mem_ptr) {
dump_len += (strlen("========Start dump ") +
strlen(entry->mem_name) +
strlen("========\n") +
(entry->mem_size + 1) +
strlen("\n========End dump========\n"));
}
}
if (dump_len + 1 + adapter->devdump_len > NXPWIFI_FW_DUMP_SIZE) {
/* Realloc in case buffer overflow */
fw_dump_ptr = vzalloc(dump_len + 1 + adapter->devdump_len);
nxpwifi_dbg(adapter, MSG, "Realloc device dump data.\n");
if (!fw_dump_ptr) {
vfree(adapter->devdump_data);
nxpwifi_dbg(adapter, ERROR,
"vzalloc devdump data failure!\n");
return;
}
memmove(fw_dump_ptr, adapter->devdump_data,
adapter->devdump_len);
vfree(adapter->devdump_data);
adapter->devdump_data = fw_dump_ptr;
}
fw_dump_ptr = (char *)adapter->devdump_data + adapter->devdump_len;
for (idx = 0; idx < adapter->num_mem_types; idx++) {
struct memory_type_mapping *entry =
&adapter->mem_type_mapping_tbl[idx];
if (entry->mem_ptr) {
fw_dump_ptr += sprintf(fw_dump_ptr, "========Start dump ");
fw_dump_ptr += sprintf(fw_dump_ptr, "%s", entry->mem_name);
fw_dump_ptr += sprintf(fw_dump_ptr, "========\n");
memcpy(fw_dump_ptr, entry->mem_ptr, entry->mem_size);
fw_dump_ptr += entry->mem_size;
fw_dump_ptr += sprintf(fw_dump_ptr, "\n========End dump========\n");
}
}
adapter->devdump_len = fw_dump_ptr - (char *)adapter->devdump_data;
for (idx = 0; idx < adapter->num_mem_types; idx++) {
struct memory_type_mapping *entry =
&adapter->mem_type_mapping_tbl[idx];
vfree(entry->mem_ptr);
entry->mem_ptr = NULL;
entry->mem_size = 0;
}
}
EXPORT_SYMBOL_GPL(nxpwifi_prepare_fw_dump_info);
/* ndo_get_stats: return netdev stats. */
static struct net_device_stats *nxpwifi_get_stats(struct net_device *dev)
{
struct nxpwifi_private *priv = nxpwifi_netdev_get_priv(dev);
return &priv->stats;
}
static u16
nxpwifi_netdev_select_wmm_queue(struct net_device *dev, struct sk_buff *skb,
struct net_device *sb_dev)
{
skb->priority = cfg80211_classify8021d(skb, NULL);
return nxpwifi_1d_to_wmm_queue[skb->priority];
}
/* Network device handlers */
static const struct net_device_ops nxpwifi_netdev_ops = {
.ndo_open = nxpwifi_open,
.ndo_stop = nxpwifi_close,
.ndo_start_xmit = nxpwifi_hard_start_xmit,
.ndo_set_mac_address = nxpwifi_ndo_set_mac_address,
.ndo_validate_addr = eth_validate_addr,
.ndo_tx_timeout = nxpwifi_tx_timeout,
.ndo_get_stats = nxpwifi_get_stats,
.ndo_set_rx_mode = nxpwifi_set_multicast_list,
.ndo_select_queue = nxpwifi_netdev_select_wmm_queue,
};
/* Init per-interface defaults: ops, addrs, mgmt IEs, stats. */
void nxpwifi_init_priv_params(struct nxpwifi_private *priv,
struct net_device *dev)
{
dev->netdev_ops = &nxpwifi_netdev_ops;
dev->needs_free_netdev = true;
/* Initialize private structure */
priv->current_key_index = 0;
priv->media_connected = false;
memset(priv->mgmt_ie, 0,
sizeof(struct nxpwifi_ie) * MAX_MGMT_IE_INDEX);
priv->beacon_idx = NXPWIFI_AUTO_IDX_MASK;
priv->proberesp_idx = NXPWIFI_AUTO_IDX_MASK;
priv->assocresp_idx = NXPWIFI_AUTO_IDX_MASK;
priv->gen_idx = NXPWIFI_AUTO_IDX_MASK;
priv->num_tx_timeout = 0;
if (is_valid_ether_addr(dev->dev_addr))
ether_addr_copy(priv->curr_addr, dev->dev_addr);
else
ether_addr_copy(priv->curr_addr, priv->adapter->perm_addr);
if (GET_BSS_ROLE(priv) == NXPWIFI_BSS_ROLE_STA ||
GET_BSS_ROLE(priv) == NXPWIFI_BSS_ROLE_UAP) {
priv->hist_data = kmalloc_obj(*priv->hist_data, GFP_KERNEL);
if (priv->hist_data)
nxpwifi_hist_data_reset(priv);
}
}
/* Return true if any command is pending. */
int nxpwifi_is_command_pending(struct nxpwifi_adapter *adapter)
{
int is_cmd_pend_q_empty;
spin_lock_bh(&adapter->cmd_pending_q_lock);
is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
spin_unlock_bh(&adapter->cmd_pending_q_lock);
return !is_cmd_pend_q_empty;
}
/* Host MLME work: deliver RX; handle assoc/link-loss. */
static void nxpwifi_host_mlme_work(struct wiphy *wiphy, struct wiphy_work *work)
{
struct nxpwifi_adapter *adapter =
container_of(work, struct nxpwifi_adapter, host_mlme_work);
struct sk_buff *skb;
struct nxpwifi_rxinfo *rx_info;
struct nxpwifi_private *priv;
if (test_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags))
return;
while ((skb = skb_dequeue(&adapter->rx_mlme_q))) {
rx_info = NXPWIFI_SKB_RXCB(skb);
priv = adapter->priv[rx_info->bss_num];
cfg80211_rx_mlme_mgmt(priv->netdev,
skb->data,
rx_info->pkt_len);
}
/* Check for host mlme disconnection */
if (adapter->host_mlme_link_lost) {
if (adapter->priv_link_lost) {
nxpwifi_reset_connect_state(adapter->priv_link_lost,
WLAN_REASON_DEAUTH_LEAVING,
true);
adapter->priv_link_lost = NULL;
}
adapter->host_mlme_link_lost = false;
}
/* Check for host mlme Assoc Resp */
if (adapter->assoc_resp_received) {
nxpwifi_process_assoc_resp(adapter);
adapter->assoc_resp_received = false;
}
}
/* RX work: process RX queue. */
static void nxpwifi_rx_work(struct work_struct *work)
{
struct nxpwifi_adapter *adapter =
container_of(work, struct nxpwifi_adapter, rx_work);
if (test_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags))
return;
nxpwifi_process_rx(adapter);
}
/* Main work: run nxpwifi_main_process(). */
static void nxpwifi_main_work(struct work_struct *work)
{
struct nxpwifi_adapter *adapter =
container_of(work, struct nxpwifi_adapter, main_work);
if (test_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags))
return;
nxpwifi_main_process(adapter);
}
/* Teardown: disable IRQs, stop queues, shutdown, remove ifaces, unreg. */
static void nxpwifi_uninit_sw(struct nxpwifi_adapter *adapter)
{
struct nxpwifi_private *priv;
int i;
/*
* We can no longer handle interrupts once we start doing the teardown
* below.
*/
if (adapter->if_ops.disable_int)
adapter->if_ops.disable_int(adapter);
set_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags);
nxpwifi_terminate_workqueue(adapter);
adapter->int_status = 0;
/* Stop data */
for (i = 0; i < adapter->priv_num; i++) {
priv = adapter->priv[i];
if (priv->netdev) {
nxpwifi_stop_net_dev_queue(priv->netdev, adapter);
netif_carrier_off(priv->netdev);
netif_device_detach(priv->netdev);
}
}
nxpwifi_dbg(adapter, CMD, "cmd: calling nxpwifi_shutdown_drv...\n");
nxpwifi_shutdown_drv(adapter);
nxpwifi_dbg(adapter, CMD, "cmd: nxpwifi_shutdown_drv done\n");
if (atomic_read(&adapter->rx_pending) ||
atomic_read(&adapter->tx_pending) ||
atomic_read(&adapter->cmd_pending)) {
nxpwifi_dbg(adapter, ERROR,
"rx_pending=%d, tx_pending=%d,\t"
"cmd_pending=%d\n",
atomic_read(&adapter->rx_pending),
atomic_read(&adapter->tx_pending),
atomic_read(&adapter->cmd_pending));
}
for (i = 0; i < adapter->priv_num; i++) {
priv = adapter->priv[i];
rtnl_lock();
if (priv->netdev &&
priv->wdev.iftype != NL80211_IFTYPE_UNSPECIFIED) {
/*
* Close the netdev now, because if we do it later, the
* netdev notifiers will need to acquire the wiphy lock
* again --> deadlock.
*/
dev_close(priv->wdev.netdev);
wiphy_lock(adapter->wiphy);
nxpwifi_del_virtual_intf(adapter->wiphy, &priv->wdev);
wiphy_unlock(adapter->wiphy);
}
rtnl_unlock();
}
wiphy_unregister(adapter->wiphy);
wiphy_free(adapter->wiphy);
adapter->wiphy = NULL;
vfree(adapter->chan_stats);
nxpwifi_free_cmd_buffers(adapter);
}
/* Shut down SW/FW and mark device down. */
void nxpwifi_shutdown_sw(struct nxpwifi_adapter *adapter)
{
struct nxpwifi_private *priv;
if (!adapter)
return;
wait_for_completion(adapter->fw_done);
/* Caller should ensure we aren't suspending while this happens */
reinit_completion(adapter->fw_done);
priv = nxpwifi_get_priv(adapter, NXPWIFI_BSS_ROLE_ANY);
nxpwifi_deauthenticate(priv, NULL);
nxpwifi_init_shutdown_fw(priv, NXPWIFI_FUNC_SHUTDOWN);
nxpwifi_uninit_sw(adapter);
adapter->is_up = false;
}
EXPORT_SYMBOL_GPL(nxpwifi_shutdown_sw);
/* Re-init adapter SW and bring device up. */
int
nxpwifi_reinit_sw(struct nxpwifi_adapter *adapter)
{
int ret = 0;
nxpwifi_init_lock_list(adapter);
if (adapter->if_ops.up_dev)
adapter->if_ops.up_dev(adapter);
adapter->hw_status = NXPWIFI_HW_STATUS_INITIALIZING;
clear_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags);
clear_bit(NXPWIFI_IS_SUSPENDED, &adapter->work_flags);
adapter->hs_activated = false;
clear_bit(NXPWIFI_IS_CMD_TIMEDOUT, &adapter->work_flags);
init_waitqueue_head(&adapter->hs_activate_wait_q);
init_waitqueue_head(&adapter->cmd_wait_q.wait);
adapter->cmd_wait_q.status = 0;
adapter->scan_wait_q_woken = false;
if (num_possible_cpus() > 1)
adapter->rx_work_enabled = true;
adapter->workqueue =
alloc_workqueue("NXPWIFI_WORK_QUEUE",
WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_UNBOUND, 0);
if (!adapter->workqueue) {
ret = -ENOMEM;
goto err_kmalloc;
}
INIT_WORK(&adapter->main_work, nxpwifi_main_work);
if (adapter->rx_work_enabled) {
adapter->rx_workqueue = alloc_workqueue("NXPWIFI_RX_WORK_QUEUE",
WQ_HIGHPRI |
WQ_MEM_RECLAIM |
WQ_UNBOUND, 0);
if (!adapter->rx_workqueue) {
ret = -ENOMEM;
goto err_kmalloc;
}
INIT_WORK(&adapter->rx_work, nxpwifi_rx_work);
}
wiphy_work_init(&adapter->host_mlme_work, nxpwifi_host_mlme_work);
/*
* Register the device. Fill up the private data structure with
* relevant information from the card. Some code extracted from
* nxpwifi_register_dev()
*/
nxpwifi_dbg(adapter, INFO, "%s, nxpwifi_init_hw_fw()...\n", __func__);
ret = nxpwifi_init_hw_fw(adapter, false);
if (ret) {
nxpwifi_dbg(adapter, ERROR,
"%s: firmware init failed\n", __func__);
goto err_init_fw;
}
/* _nxpwifi_fw_dpc() does its own cleanup */
ret = _nxpwifi_fw_dpc(adapter->firmware, adapter);
if (ret) {
pr_err("Failed to bring up adapter: %d\n", ret);
return ret;
}
nxpwifi_dbg(adapter, INFO, "%s, successful\n", __func__);
return ret;
err_init_fw:
nxpwifi_dbg(adapter, ERROR, "info: %s: unregister device\n", __func__);
if (adapter->if_ops.unregister_dev)
adapter->if_ops.unregister_dev(adapter);
err_kmalloc:
set_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags);
nxpwifi_terminate_workqueue(adapter);
if (adapter->hw_status == NXPWIFI_HW_STATUS_READY) {
nxpwifi_dbg(adapter, ERROR,
"info: %s: shutdown nxpwifi\n", __func__);
nxpwifi_shutdown_drv(adapter);
nxpwifi_free_cmd_buffers(adapter);
}
complete_all(adapter->fw_done);
nxpwifi_dbg(adapter, INFO, "%s, error\n", __func__);
return ret;
}
EXPORT_SYMBOL_GPL(nxpwifi_reinit_sw);
/* Add card: register adapter, workqueues, device; request FW (async). */
int
nxpwifi_add_card(void *card, struct completion *fw_done,
struct nxpwifi_if_ops *if_ops, u8 iface_type,
struct device *dev)
{
struct nxpwifi_adapter *adapter;
int ret = 0;
adapter = nxpwifi_register(card, dev, if_ops);
if (IS_ERR(adapter)) {
ret = PTR_ERR(adapter);
pr_err("%s: adapter register failed %d\n", __func__, ret);
goto err_init_sw;
}
adapter->iface_type = iface_type;
adapter->fw_done = fw_done;
adapter->hw_status = NXPWIFI_HW_STATUS_INITIALIZING;
clear_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags);
clear_bit(NXPWIFI_IS_SUSPENDED, &adapter->work_flags);
adapter->hs_activated = false;
init_waitqueue_head(&adapter->hs_activate_wait_q);
init_waitqueue_head(&adapter->cmd_wait_q.wait);
adapter->cmd_wait_q.status = 0;
adapter->scan_wait_q_woken = false;
if (num_possible_cpus() > 1)
adapter->rx_work_enabled = true;
adapter->workqueue =
alloc_workqueue("NXPWIFI_WORK_QUEUE",
WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_UNBOUND, 0);
if (!adapter->workqueue) {
ret = -ENOMEM;
goto err_kmalloc;
}
INIT_WORK(&adapter->main_work, nxpwifi_main_work);
if (adapter->rx_work_enabled) {
adapter->rx_workqueue = alloc_workqueue("NXPWIFI_RX_WORK_QUEUE",
WQ_HIGHPRI |
WQ_MEM_RECLAIM |
WQ_UNBOUND, 0);
if (!adapter->rx_workqueue) {
ret = -ENOMEM;
goto err_kmalloc;
}
INIT_WORK(&adapter->rx_work, nxpwifi_rx_work);
}
wiphy_work_init(&adapter->host_mlme_work, nxpwifi_host_mlme_work);
/*
* Register the device. Fill up the private data structure with relevant
* information from the card.
*/
ret = adapter->if_ops.register_dev(adapter);
if (ret) {
pr_err("%s: failed to register nxpwifi device\n", __func__);
goto err_registerdev;
}
ret = nxpwifi_init_hw_fw(adapter, true);
if (ret) {
pr_err("%s: firmware init failed\n", __func__);
goto err_init_fw;
}
return ret;
err_init_fw:
pr_debug("info: %s: unregister device\n", __func__);
if (adapter->if_ops.unregister_dev)
adapter->if_ops.unregister_dev(adapter);
err_registerdev:
set_bit(NXPWIFI_SURPRISE_REMOVED, &adapter->work_flags);
err_kmalloc:
nxpwifi_terminate_workqueue(adapter);
if (adapter->hw_status == NXPWIFI_HW_STATUS_READY) {
pr_debug("info: %s: shutdown nxpwifi\n", __func__);
nxpwifi_shutdown_drv(adapter);
nxpwifi_free_cmd_buffers(adapter);
}
nxpwifi_free_adapter(adapter);
err_init_sw:
return ret;
}
EXPORT_SYMBOL_GPL(nxpwifi_add_card);
/* Remove card: teardown SW, unregister device, free adapter. */
void nxpwifi_remove_card(struct nxpwifi_adapter *adapter)
{
if (!adapter)
return;
if (adapter->is_up)
nxpwifi_uninit_sw(adapter);
/* Unregister device */
nxpwifi_dbg(adapter, INFO,
"info: unregister device\n");
if (adapter->if_ops.unregister_dev)
adapter->if_ops.unregister_dev(adapter);
/* Free adapter structure */
nxpwifi_dbg(adapter, INFO,
"info: free adapter\n");
nxpwifi_free_adapter(adapter);
}
EXPORT_SYMBOL_GPL(nxpwifi_remove_card);
void _nxpwifi_dbg(const struct nxpwifi_adapter *adapter, int mask,
const char *fmt, ...)
{
struct va_format vaf;
va_list args;
if (!(adapter->debug_mask & mask))
return;
va_start(args, fmt);
vaf.fmt = fmt;
vaf.va = &args;
if (adapter->dev)
dev_info(adapter->dev, "%pV", &vaf);
else
pr_info("%pV", &vaf);
va_end(args);
}
EXPORT_SYMBOL_GPL(_nxpwifi_dbg);
/* Module init: init debugfs if enabled. */
static int
nxpwifi_init_module(void)
{
#ifdef CONFIG_DEBUG_FS
nxpwifi_debugfs_init();
#endif
return 0;
}
/* Module exit: remove debugfs if enabled. */
static void
nxpwifi_cleanup_module(void)
{
#ifdef CONFIG_DEBUG_FS
nxpwifi_debugfs_remove();
#endif
}
module_init(nxpwifi_init_module);
module_exit(nxpwifi_cleanup_module);
MODULE_AUTHOR("NXP International Ltd.");
MODULE_DESCRIPTION("NXP WiFi Driver version " VERSION);
MODULE_VERSION(VERSION);
MODULE_LICENSE("GPL");
|