forked from SiliconLabsSoftware/matter_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWifiInterface.cpp
955 lines (869 loc) · 31.6 KB
/
WifiInterface.cpp
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
/*
*
* Copyright (c) 2022 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "lwip/nd6.h"
#include "silabs_utils.h"
#include "sl_status.h"
#include <cmsis_os2.h>
#include <inet/IPAddress.h>
#include <lib/support/CHIPMem.h>
#include <lib/support/CHIPMemString.h>
#include <lib/support/CodeUtils.h>
#include <lib/support/logging/CHIPLogging.h>
#include <platform/silabs/wifi/WifiInterfaceAbstraction.h>
#include <platform/silabs/wifi/lwip-support/dhcp_client.h>
#include <platform/silabs/wifi/lwip-support/ethernetif.h>
#include <platform/silabs/wifi/wiseconnect-abstraction/WiseconnectInterfaceAbstraction.h>
extern "C" {
#include "rsi_bootup_config.h"
#include "rsi_common_apis.h"
#include "rsi_data_types.h"
#include "rsi_driver.h"
#include "rsi_error.h"
#include "rsi_nwk.h"
#include "rsi_socket.h"
#include "rsi_utils.h"
#include "rsi_wlan.h"
#include "rsi_wlan_apis.h"
#include "rsi_wlan_config.h"
#include "rsi_wlan_non_rom.h"
}
using WifiStateFlags = chip::BitFlags<WifiState>;
#define WFX_QUEUE_SIZE 10
#define WFX_RSI_BUF_SZ (1024 * 10)
#define RSI_RESPONSE_MAX_SIZE (28)
#define RSI_RESPONSE_HOLD_BUFF_SIZE (128)
#define RSI_DRIVER_STATUS (0)
#define OPER_MODE_0 (0)
#define COEX_MODE_0 (0)
#define RESP_BUFF_SIZE (6)
#define AP_CHANNEL_NO_0 (0)
#define SCAN_BITMAP_OPTN_1 (1)
WfxRsi_t wfx_rsi;
static osThreadId_t sDrvThread;
constexpr uint32_t kDrvTaskSize = 1792;
static uint8_t drvStack[kDrvTaskSize];
static osThread_t sDrvTaskControlBlock;
osThreadAttr_t kDrvTaskAttr = { .name = "drv_rsi",
.attr_bits = osThreadDetached,
.cb_mem = &sDrvTaskControlBlock,
.cb_size = osThreadCbSize,
.stack_mem = drvStack,
.stack_size = kDrvTaskSize,
.priority = osPriorityHigh };
bool hasNotifiedIPV6 = false;
#if (CHIP_DEVICE_CONFIG_ENABLE_IPV4)
bool hasNotifiedIPV4 = false;
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
bool hasNotifiedWifiConnectivity = false;
// DHCP Poll timer
static osTimerId_t sDHCPTimer;
static osMessageQueueId_t sWifiEventQueue = NULL;
/*
* This file implements the interface to the RSI SAPIs
*/
static uint8_t wfx_rsi_drv_buf[WFX_RSI_BUF_SZ];
static wfx_wifi_scan_ext_t temp_reset;
/******************************************************************
* @fn void rsi_wireless_driver_task_wrapper(void * argument)
* @brief
* wrapper thread for the driver task
* @param[in] argument: argument
* @return
* None
*********************************************************************/
static void rsi_wireless_driver_task_wrapper(void * argument)
{
rsi_wireless_driver_task();
}
static void DHCPTimerEventHandler(void * arg)
{
WifiEvent event = WifiEvent::kStationDhcpPoll;
sl_matter_wifi_post_event(event);
}
static void CancelDHCPTimer(void)
{
osStatus_t status;
// Check if timer started
if (!osTimerIsRunning(sDHCPTimer))
{
ChipLogError(DeviceLayer, "CancelDHCPTimer: timer not running");
return;
}
status = osTimerStop(sDHCPTimer);
if (status != osOK)
{
ChipLogError(DeviceLayer, "CancelDHCPTimer: failed to stop timer with status: %d", status);
}
}
static void StartDHCPTimer(uint32_t timeout)
{
osStatus_t status;
// Cancel timer if already started
CancelDHCPTimer();
status = osTimerStart(sDHCPTimer, pdMS_TO_TICKS(timeout));
if (status != osOK)
{
ChipLogError(DeviceLayer, "StartDHCPTimer: failed to start timer with status: %d", status);
}
}
/******************************************************************
* @fn int32_t wfx_rsi_get_ap_info(wfx_wifi_scan_result_t *ap)
* @brief
* Getting the AP details
* @param[in] ap: access point
* @return
* status
*********************************************************************/
int32_t wfx_rsi_get_ap_info(wfx_wifi_scan_result_t * ap)
{
int32_t status = RSI_SUCCESS;
uint8_t rssi;
ap->security = wfx_rsi.sec.security;
ap->chan = wfx_rsi.ap_chan;
memcpy(&ap->bssid[0], &wfx_rsi.ap_mac.octet[0], BSSID_LEN);
status = rsi_wlan_get(RSI_RSSI, &rssi, sizeof(rssi));
if (status == RSI_SUCCESS)
{
ap->rssi = (-1) * rssi;
}
return status;
}
/******************************************************************
* @fn int32_t wfx_rsi_get_ap_ext(wfx_wifi_scan_ext_t *extra_info)
* @brief
* Getting the AP extra details
* @param[in] extra info: access point extra information
* @return
* status
*********************************************************************/
int32_t wfx_rsi_get_ap_ext(wfx_wifi_scan_ext_t * extra_info)
{
int32_t status;
uint8_t buff[RSI_RESPONSE_MAX_SIZE] = { 0 };
status = rsi_wlan_get(RSI_WLAN_EXT_STATS, buff, sizeof(buff));
if (status != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "Failed, Error Code : 0x%lX", status);
return status;
}
rsi_wlan_ext_stats_t * test = (rsi_wlan_ext_stats_t *) buff;
extra_info->beacon_lost_count = test->beacon_lost_count - temp_reset.beacon_lost_count;
extra_info->beacon_rx_count = test->beacon_rx_count - temp_reset.beacon_rx_count;
extra_info->mcast_rx_count = test->mcast_rx_count - temp_reset.mcast_rx_count;
extra_info->mcast_tx_count = test->mcast_tx_count - temp_reset.mcast_tx_count;
extra_info->ucast_rx_count = test->ucast_rx_count - temp_reset.ucast_rx_count;
extra_info->ucast_tx_count = test->ucast_tx_count - temp_reset.ucast_tx_count;
extra_info->overrun_count = test->overrun_count - temp_reset.overrun_count;
return status;
}
/******************************************************************
* @fn int32_t wfx_rsi_reset_count(void)
* @brief
* Getting the driver reset count
* @param[in] None
* @return
* status
*********************************************************************/
int32_t wfx_rsi_reset_count(void)
{
int32_t status;
uint8_t buff[RSI_RESPONSE_MAX_SIZE] = { 0 };
status = rsi_wlan_get(RSI_WLAN_EXT_STATS, buff, sizeof(buff));
if (status != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "Failed, Error Code : 0x%lX", status);
return status;
}
rsi_wlan_ext_stats_t * test = (rsi_wlan_ext_stats_t *) buff;
temp_reset.beacon_lost_count = test->beacon_lost_count;
temp_reset.beacon_rx_count = test->beacon_rx_count;
temp_reset.mcast_rx_count = test->mcast_rx_count;
temp_reset.mcast_tx_count = test->mcast_tx_count;
temp_reset.ucast_rx_count = test->ucast_rx_count;
temp_reset.ucast_tx_count = test->ucast_tx_count;
temp_reset.overrun_count = test->overrun_count;
return status;
}
/******************************************************************
* @fn sl_wifi_platform_disconnect(void)
* @brief
* Getting the driver disconnect status
* @param[in] None
* @return
* status
*********************************************************************/
int32_t sl_wifi_platform_disconnect(void)
{
return rsi_wlan_disconnect();
}
/******************************************************************
* @fn wfx_rsi_join_cb(uint16_t status, const uint8_t *buf, const uint16_t len)
* @brief
* called when driver join with cb
* @param[in] status:
* @param[in] buf:
* @param[in] len:
* @return
* None
*********************************************************************/
static void wfx_rsi_join_cb(uint16_t status, const uint8_t * buf, const uint16_t len)
{
wfx_rsi.dev_state.Clear(WifiState::kStationConnecting);
if (status != RSI_SUCCESS)
{
/*
* We should enable retry.. (Need config variable for this)
*/
ChipLogProgress(DeviceLayer, "wfx_rsi_join_cb: failed. retry: %d", wfx_rsi.join_retries);
wfx_retry_connection(++wfx_rsi.join_retries);
return;
}
/*
* Join was complete - Do the DHCP
*/
ChipLogProgress(DeviceLayer, "wfx_rsi_join_cb: success");
memset(&temp_reset, 0, sizeof(wfx_wifi_scan_ext_t));
WifiEvent event = WifiEvent::kStationConnect;
sl_matter_wifi_post_event(event);
wfx_rsi.join_retries = 0;
}
/******************************************************************
* @fn wfx_rsi_join_fail_cb(uint16_t status, uint8_t *buf, uint32_t len)
* @brief
* called when driver fail to join with cb
* @param[in] status:
* @param[in] buf:
* @param[in] len:
* @return
* None
*********************************************************************/
static void wfx_rsi_join_fail_cb(uint16_t status, uint8_t * buf, uint32_t len)
{
ChipLogError(DeviceLayer, "wfx_rsi_join_fail_cb: status: %d", status);
wfx_rsi.join_retries += 1;
wfx_rsi.dev_state.Clear(WifiState::kStationConnecting).Clear(WifiState::kStationConnected);
WifiEvent event = WifiEvent::kStationStartJoin;
sl_matter_wifi_post_event(event);
}
/*************************************************************************************
* @fn wfx_rsi_wlan_pkt_cb(uint16_t status, uint8_t *buf, uint32_t len)
* @brief
* Got RAW WLAN data pkt
* @param[in] status:
* @param[in] buf:
* @param[in] len:
* @return
* None
*****************************************************************************************/
static void wfx_rsi_wlan_pkt_cb(uint16_t status, uint8_t * buf, uint32_t len)
{
if (status != RSI_SUCCESS)
{
return;
}
wfx_host_received_sta_frame_cb(buf, len);
}
/*************************************************************************************
* @fn static int32_t sl_matter_wifi_init(void)
* @brief
* driver initialization
* @param[in] None
* @return
* None
*****************************************************************************************/
static int32_t sl_matter_wifi_init(void)
{
int32_t status;
uint8_t buf[RSI_RESPONSE_HOLD_BUFF_SIZE];
extern void rsi_hal_board_init(void);
//! Driver initialization
status = rsi_driver_init(wfx_rsi_drv_buf, WFX_RSI_BUF_SZ);
if ((status < RSI_DRIVER_STATUS) || (status > WFX_RSI_BUF_SZ))
{
ChipLogError(DeviceLayer, "rsi_driver_init failed: %ld", status);
return status;
}
/* ! Redpine module intialisation */
if ((status = rsi_device_init(LOAD_NWP_FW)) != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "rsi_device_init failed: %ld", status);
return status;
}
/*
* Create the driver wrapper thread
*/
sDrvThread = osThreadNew(rsi_wireless_driver_task_wrapper, NULL, &kDrvTaskAttr);
if (NULL == sDrvThread)
{
ChipLogError(DeviceLayer, "failed to create task");
return RSI_ERROR_INVALID_PARAM;
}
#if (RSI_BLE_ENABLE)
if ((status = rsi_wireless_init(OPER_MODE_0, RSI_OPERMODE_WLAN_BLE)) != RSI_SUCCESS)
{
#else
if ((status = rsi_wireless_init(OPER_MODE_0, COEX_MODE_0)) != RSI_SUCCESS)
{
#endif
ChipLogError(DeviceLayer, "rsi_wireless_init failed: %ld", status);
return status;
}
/*
* Get the MAC and other info to let the user know about it.
*/
if (rsi_wlan_get(RSI_FW_VERSION, buf, sizeof(buf)) != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "rsi_wlan_get(RSI_FW_VERSION) failed: %ld", status);
return status;
}
buf[sizeof(buf) - 1] = 0;
//! Send feature frame
if ((status = rsi_send_feature_frame()) != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "error: rsi_send_feature_frame failed: %ld", status);
return status;
}
/* initializes wlan radio parameters and WLAN supplicant parameters.
*/
(void) rsi_wlan_radio_init(); /* Required so we can get MAC address */
if ((status = rsi_wlan_get(RSI_MAC_ADDRESS, &wfx_rsi.sta_mac.octet[0], RESP_BUFF_SIZE)) != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "rsi_wlan_get(RSI_MAC_ADDRESS) failed: %ld", status);
return status;
}
ChipLogProgress(DeviceLayer, "rsi_firmware_version: %s", buf);
ChipLogDetail(DeviceLayer, "MAC: %02x:%02x:%02x %02x:%02x:%02x", wfx_rsi.sta_mac.octet[0], wfx_rsi.sta_mac.octet[1],
wfx_rsi.sta_mac.octet[2], wfx_rsi.sta_mac.octet[3], wfx_rsi.sta_mac.octet[4], wfx_rsi.sta_mac.octet[5]);
// Create the message queue
sWifiEventQueue = osMessageQueueNew(WFX_QUEUE_SIZE, sizeof(WifiEvent), NULL);
if (sWifiEventQueue == NULL)
{
return SL_STATUS_ALLOCATION_FAILED;
}
// Create timer for DHCP polling
// TODO: Use LWIP timer instead of creating a new one here
sDHCPTimer = osTimerNew(DHCPTimerEventHandler, osTimerPeriodic, NULL, NULL);
if (sDHCPTimer == NULL)
{
return SL_STATUS_ALLOCATION_FAILED;
}
/*
* Register callbacks - We are only interested in the connectivity CBs
*/
if ((status = rsi_wlan_register_callbacks(RSI_JOIN_FAIL_CB, wfx_rsi_join_fail_cb)) != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "rsi_wlan_register_callbacks failed: %ld", status);
return status;
}
if ((status = rsi_wlan_register_callbacks(RSI_WLAN_DATA_RECEIVE_NOTIFY_CB, wfx_rsi_wlan_pkt_cb)) != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "rsi_wlan_register_callbacks failed: %ld", status);
return status;
}
wfx_rsi.dev_state.Set(WifiState::kStationInit);
return RSI_SUCCESS;
}
/***************************************************************************************
* @fn static void wfx_rsi_save_ap_info(void)
* @brief
* Saving the details of the AP
* @param[in] None
* @return
* None
*******************************************************************************************/
static void wfx_rsi_save_ap_info(void) // translation
{
int32_t status;
rsi_rsp_scan_t rsp;
status =
rsi_wlan_scan_with_bitmap_options((int8_t *) &wfx_rsi.sec.ssid[0], AP_CHANNEL_NO_0, &rsp, sizeof(rsp), SCAN_BITMAP_OPTN_1);
if (status != RSI_SUCCESS)
{
/*
* Scan is done - failed
*/
#if WIFI_ENABLE_SECURITY_WPA3_TRANSITION
wfx_rsi.sec.security = WFX_SEC_WPA3;
#else /* !WIFI_ENABLE_SECURITY_WPA3_TRANSITION */
wfx_rsi.sec.security = WFX_SEC_WPA2;
#endif /* WIFI_ENABLE_SECURITY_WPA3_TRANSITION */
ChipLogProgress(DeviceLayer, "warn: scan failed: %ld", status);
return;
}
wfx_rsi.sec.security = WFX_SEC_UNSPECIFIED;
wfx_rsi.ap_chan = rsp.scan_info->rf_channel;
memcpy(&wfx_rsi.ap_mac.octet[0], &rsp.scan_info->bssid[0], BSSID_LEN);
switch (rsp.scan_info->security_mode)
{
case SME_OPEN:
wfx_rsi.sec.security = WFX_SEC_NONE;
break;
case SME_WPA:
case SME_WPA_ENTERPRISE:
wfx_rsi.sec.security = WFX_SEC_WPA;
break;
case SME_WPA2:
case SME_WPA2_ENTERPRISE:
wfx_rsi.sec.security = WFX_SEC_WPA2;
break;
case SME_WPA_WPA2_MIXED_MODE:
wfx_rsi.sec.security = WFX_SEC_WPA_WPA2_MIXED;
break;
case SME_WEP:
wfx_rsi.sec.security = WFX_SEC_WEP;
break;
case SME_WPA3_PERSONAL_TRANSITION:
#if WIFI_ENABLE_SECURITY_WPA3_TRANSITION
case SME_WPA3_PERSONAL:
wfx_rsi.sec.security = WFX_SEC_WPA3;
#else
wfx_rsi.sec.security = WFX_SEC_WPA2;
#endif /* WIFI_ENABLE_SECURITY_WPA3_TRANSITION */
break;
default:
wfx_rsi.sec.security = WFX_SEC_UNSPECIFIED;
break;
}
ChipLogProgress(DeviceLayer, "wfx_rsi_save_ap_info: connecting to %s, sec=%d, status=%ld", &wfx_rsi.sec.ssid[0],
wfx_rsi.sec.security, status);
}
/********************************************************************************************
* @fn static void sl_wifi_platform_join_network(void)
* @brief
* Start an async Join command
* @return
* None
**********************************************************************************************/
static void sl_wifi_platform_join_network(void)
{
sl_status_t status = SL_STATUS_OK;
rsi_security_mode_t connect_security_mode;
VerifyOrReturn(!wfx_rsi.dev_state.HasAny(WifiState::kStationConnecting, WifiState::kStationConnected));
switch (wfx_rsi.sec.security)
{
case WFX_SEC_WEP:
connect_security_mode = RSI_WEP;
break;
case WFX_SEC_WPA:
case WFX_SEC_WPA2:
case WFX_SEC_WPA_WPA2_MIXED:
connect_security_mode = RSI_WPA_WPA2_MIXED;
break;
#if WIFI_ENABLE_SECURITY_WPA3_TRANSITION
case WFX_SEC_WPA3:
connect_security_mode = RSI_WPA3_PERSONAL_TRANSITION;
break;
#endif // WIFI_ENABLE_SECURITY_WPA3_TRANSITION
case WFX_SEC_NONE:
connect_security_mode = RSI_OPEN;
break;
default:
ChipLogError(DeviceLayer, "sl_wifi_platform_join_network: error: unknown security type.");
return;
}
ChipLogProgress(DeviceLayer, "sl_wifi_platform_join_network: connecting to %s, sec=%d", &wfx_rsi.sec.ssid[0],
wfx_rsi.sec.security);
/*
* Join the network
*/
/* TODO - make the WFX_SECURITY_xxx - same as RSI_xxx
* Right now it's done by hand - we need something better
*/
wfx_rsi.dev_state.Set(WifiState::kStationConnecting);
if ((status = rsi_wlan_register_callbacks(RSI_JOIN_FAIL_CB, wfx_rsi_join_fail_cb)) != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "sl_wifi_platform_join_network: rsi_wlan_register_callbacks failed: %ld", status);
}
/* Try to connect Wifi with given Credentials
* until there is a success or maximum number of tries allowed
*/
if ((status = rsi_wlan_connect_async((int8_t *) &wfx_rsi.sec.ssid[0], connect_security_mode, &wfx_rsi.sec.passkey[0],
wfx_rsi_join_cb)) != RSI_SUCCESS)
{
wfx_rsi.dev_state.Clear(WifiState::kStationConnecting);
ChipLogProgress(DeviceLayer, "sl_wifi_platform_join_network: rsi_wlan_connect_async failed: %ld on try %d", status,
wfx_rsi.join_retries);
wfx_retry_connection(++wfx_rsi.join_retries);
}
}
/** NotifyConnectivity
* @brief Notify the application about the connectivity status if it has not been notified yet.
* Helper function for HandleDHCPPolling.
*/
void NotifyConnectivity(void)
{
if (!hasNotifiedWifiConnectivity)
{
wfx_connected_notify(CONNECTION_STATUS_SUCCESS, &wfx_rsi.ap_mac);
hasNotifiedWifiConnectivity = true;
}
}
void HandleDHCPPolling(void)
{
struct netif * sta_netif;
sta_netif = wfx_get_netif(SL_WFX_STA_INTERFACE);
if (sta_netif == NULL)
{
// TODO: Notify the application that the interface is not set up or Chipdie here because we
// are in an unkonwn state
ChipLogError(DeviceLayer, "HandleDHCPPolling: failed to get STA netif");
return;
}
#if (CHIP_DEVICE_CONFIG_ENABLE_IPV4)
uint8_t dhcp_state = dhcpclient_poll(sta_netif);
if (dhcp_state == DHCP_ADDRESS_ASSIGNED && !hasNotifiedIPV4)
{
wfx_dhcp_got_ipv4((uint32_t) sta_netif->ip_addr.u_addr.ip4.addr);
hasNotifiedIPV4 = true;
NotifyConnectivity();
}
else if (dhcp_state == DHCP_OFF)
{
wfx_ip_changed_notify(IP_STATUS_FAIL);
hasNotifiedIPV4 = false;
}
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
/* Checks if the assigned IPv6 address is preferred by evaluating
* the first block of IPv6 address ( block 0)
*/
if ((ip6_addr_ispreferred(netif_ip6_addr_state(sta_netif, 0))) && !hasNotifiedIPV6)
{
char addrStr[chip::Inet::IPAddress::kMaxStringLength] = { 0 };
VerifyOrReturn(ip6addr_ntoa_r(netif_ip6_addr(sta_netif, 0), addrStr, sizeof(addrStr)) != nullptr);
ChipLogProgress(DeviceLayer, "SLAAC OK: linklocal addr: %s", addrStr);
wfx_ipv6_notify(GET_IPV6_SUCCESS);
hasNotifiedIPV6 = true;
WifiEvent event = WifiEvent::kStationDhcpDone;
sl_matter_wifi_post_event(event);
NotifyConnectivity();
}
}
/** ResetDHCPNotificationFlags
* @brief Reset the flags that are used to notify the application about DHCP connectivity
* and emits a WifiEvent::kStationDoDhcp event to trigger DHCP polling checks. Helper function for ProcessEvent.
*/
void ResetDHCPNotificationFlags(void)
{
WifiEvent outEvent;
#if (CHIP_DEVICE_CONFIG_ENABLE_IPV4)
hasNotifiedIPV4 = false;
#endif // CHIP_DEVICE_CONFIG_ENABLE_IPV4
hasNotifiedIPV6 = false;
hasNotifiedWifiConnectivity = false;
outEvent = WifiEvent::kStationDoDhcp;
sl_matter_wifi_post_event(outEvent);
}
void sl_matter_wifi_post_event(WifiEvent event)
{
sl_status_t status = osMessageQueuePut(sWifiEventQueue, &event, 0, 0);
if (status != osOK)
{
ChipLogError(DeviceLayer, "sl_matter_wifi_post_event: failed to post event with status: %ld", status);
// TODO: Handle error, requeue event depending on queue size or notify relevant task,
// Chipdie, etc.
}
}
/**
* @brief Process the Wi-Fi event.
*
* This function is responsible for processing different types of Wi-Fi events and taking appropriate actions based on the event
* type.
*
* @param event The input Wi-Fi event to be processed.
*/
void ProcessEvent(WifiEvent event)
{
// Process event
switch (event)
{
case WifiEvent::kStationConnect: {
ChipLogDetail(DeviceLayer, "WifiEvent::kStationConnect");
wfx_rsi.dev_state.Set(WifiState::kStationConnected);
ResetDHCPNotificationFlags();
wfx_lwip_set_sta_link_up();
/* We need to get AP Mac - TODO */
// Uncomment once the hook into MATTER is moved to IP connectivty instead
// of AP connectivity.
// wfx_connected_notify(0, &wfx_rsi.ap_mac); // This
// is independant of IP connectivity.
}
break;
case WifiEvent::kStationDisconnect: {
ChipLogDetail(DeviceLayer, "WifiEvent::kStationDisconnect");
// TODO: This event is not being posted anywhere, seems to be a dead code or we are missing something
WifiStateFlags flagsToClear = WifiStateFlags(WifiState::kStationReady, WifiState::kStationConnecting,
WifiState::kStationConnected, WifiState::kStationDhcpDone);
wfx_rsi.dev_state.Clear(flagsToClear);
/* TODO: Implement disconnect notify */
ResetDHCPNotificationFlags();
wfx_lwip_set_sta_link_down(); // Internally dhcpclient_poll(netif) ->
// wfx_ip_changed_notify(0) for IPV4
#if (CHIP_DEVICE_CONFIG_ENABLE_IPV4)
wfx_ip_changed_notify(IP_STATUS_FAIL);
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
wfx_ipv6_notify(GET_IPV6_FAIL);
}
break;
case WifiEvent::kAPStart:
// TODO: Currently unimplemented
break;
case WifiEvent::kScan: {
#ifdef SL_WFX_CONFIG_SCAN
rsi_rsp_scan_t scan_rsp = { 0 };
memset(&scan_rsp, 0, sizeof(scan_rsp));
int32_t status = rsi_wlan_bgscan_profile(1, &scan_rsp, sizeof(scan_rsp));
if (status != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "rsi_wlan_bgscan failed: %ld ", status);
return;
}
if (wfx_rsi.scan_cb == NULL)
{
ChipLogError(DeviceLayer, "wfx_rsi.scan_cb is NULL");
return;
}
rsi_scan_info_t * scan;
wfx_wifi_scan_result_t ap;
for (int x = 0; x < scan_rsp.scan_count[0]; x++)
{
scan = &scan_rsp.scan_info[x];
// clear structure and calculate size of SSID
memset(&ap, 0, sizeof(ap));
ap.ssid_length =
strnlen(reinterpret_cast<char *>(scan->ssid), chip::min<size_t>(sizeof(scan->ssid), WFX_MAX_SSID_LENGTH));
// ap.ssid is of size WFX_MAX_SSID_LENGTH+1, we are safe with the ap.ssid_length calculated above
chip::Platform::CopyString(ap.ssid, ap.ssid_length + 1,
reinterpret_cast<char *>(scan->ssid)); // +1 for null termination
// check if the scanned ssid is the one we are looking for
if (wfx_rsi.scan_ssid_length != 0 && strncmp(wfx_rsi.scan_ssid, ap.ssid, WFX_MAX_SSID_LENGTH) != 0)
{
continue; // we found the targeted ssid.
}
// TODO: convert security mode from RSI to WFX
ap.security = static_cast<wfx_sec_t>(scan->security_mode);
ap.rssi = (-1) * scan->rssi_val;
configASSERT(sizeof(ap.bssid) == BSSID_LEN);
configASSERT(sizeof(scan->bssid) == BSSID_LEN);
memcpy(ap.bssid, scan->bssid, BSSID_LEN);
(*wfx_rsi.scan_cb)(&ap);
// no ssid filter set, return all results
if (wfx_rsi.scan_ssid_length == 0)
{
continue;
}
break;
}
/* Terminate with end of scan which is no ap sent back */
(*wfx_rsi.scan_cb)((wfx_wifi_scan_result_t *) NULL);
wfx_rsi.scan_cb = nullptr;
if (wfx_rsi.scan_ssid)
{
chip::Platform::MemoryFree(wfx_rsi.scan_ssid);
wfx_rsi.scan_ssid = NULL;
}
#endif /* SL_WFX_CONFIG_SCAN */
}
break;
case WifiEvent::kStationStartJoin: {
// saving the AP related info
wfx_rsi_save_ap_info();
// Joining to the network
sl_wifi_platform_join_network();
}
break;
case WifiEvent::kStationDoDhcp: {
StartDHCPTimer(WFX_RSI_DHCP_POLL_INTERVAL);
}
break;
case WifiEvent::kStationDhcpDone: {
CancelDHCPTimer();
}
break;
case WifiEvent::kStationDhcpPoll: {
HandleDHCPPolling();
}
break;
default:
break;
}
}
sl_status_t sl_matter_wifi_platform_init(void)
{
VerifyOrReturnError(sl_matter_wifi_init() == RSI_SUCCESS, SL_STATUS_FAIL);
return SL_STATUS_OK;
}
/*********************************************************************************
* @fn void sl_matter_wifi_task(void *arg)
* @brief
* The main WLAN task - started by wfx_wifi_start () that interfaces with RSI.
* The rest of RSI stuff come in call-backs.
* The initialization has been already done.
* @param[in] arg:
* @return
* None
**********************************************************************************/
/* ARGSUSED */
void sl_matter_wifi_task(void * arg)
{
(void) arg;
WifiEvent event;
sl_matter_lwip_start();
sl_matter_wifi_task_started();
ChipLogProgress(DeviceLayer, "sl_matter_wifi_task: starting event loop");
for (;;)
{
osStatus_t status = osMessageQueueGet(sWifiEventQueue, &event, NULL, osWaitForever);
if (status == osOK)
{
ProcessEvent(event);
}
else
{
ChipLogProgress(DeviceLayer, "sl_matter_wifi_task: get event failed: %x", status);
}
}
}
#if CHIP_DEVICE_CONFIG_ENABLE_IPV4
/********************************************************************************************
* @fn void wfx_dhcp_got_ipv4(uint32_t ip)
* @brief
* Acquire the new ip address
* @param[in] ip: internet protocol
* @return
* None
**********************************************************************************************/
void wfx_dhcp_got_ipv4(uint32_t ip)
{
/*
* Acquire the new IP address
*/
wfx_rsi.ip4_addr[0] = (ip) &0xFF;
wfx_rsi.ip4_addr[1] = (ip >> 8) & 0xFF;
wfx_rsi.ip4_addr[2] = (ip >> 16) & 0xFF;
wfx_rsi.ip4_addr[3] = (ip >> 24) & 0xFF;
ChipLogProgress(DeviceLayer, "DHCP OK: IP=%d.%d.%d.%d", wfx_rsi.ip4_addr[0], wfx_rsi.ip4_addr[1], wfx_rsi.ip4_addr[2],
wfx_rsi.ip4_addr[3]);
/* Notify the Connectivity Manager - via the app */
wfx_rsi.dev_state.Set(WifiState::kStationDhcpDone, WifiState::kStationReady);
wfx_ip_changed_notify(IP_STATUS_SUCCESS);
}
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
/*
* WARNING - Taken from RSI and broken up
* This is my own RSI stuff for not copying code and allocating an extra
* level of indirection - when using LWIP buffers
* see also: int32_t rsi_wlan_send_data_xx(uint8_t *buffer, uint32_t length)
*/
/********************************************************************************************
* @fn void *wfx_rsi_alloc_pkt(void)
* @brief
* Allocate packet to send data
* @param[in] None
* @return
* None
**********************************************************************************************/
void * wfx_rsi_alloc_pkt(void)
{
rsi_pkt_t * pkt;
// Allocate packet to send data
if ((pkt = rsi_pkt_alloc(&rsi_driver_cb->wlan_cb->wlan_tx_pool)) == NULL)
{
return (void *) 0;
}
return (void *) pkt;
}
/********************************************************************************************
* @fn void wfx_rsi_pkt_add_data(void *p, uint8_t *buf, uint16_t len, uint16_t off)
* @brief
* add the data into packet
* @param[in] p:
* @param[in] buf:
* @param[in] len:
* @param[in] off:
* @return
* None
**********************************************************************************************/
void wfx_rsi_pkt_add_data(void * p, uint8_t * buf, uint16_t len, uint16_t off)
{
rsi_pkt_t * pkt;
pkt = (rsi_pkt_t *) p;
memcpy(((char *) pkt->data) + off, buf, len);
}
/********************************************************************************************
* @fn int32_t wfx_rsi_send_data(void *p, uint16_t len)
* @brief
* Driver send a data
* @param[in] p:
* @param[in] len:
* @return
* None
**********************************************************************************************/
int32_t wfx_rsi_send_data(void * p, uint16_t len)
{
int32_t status;
uint8_t * host_desc;
rsi_pkt_t * pkt;
pkt = (rsi_pkt_t *) p;
host_desc = pkt->desc;
memset(host_desc, 0, RSI_HOST_DESC_LENGTH);
rsi_uint16_to_2bytes(host_desc, (len & 0xFFF));
// Fill packet type
host_desc[1] |= (RSI_WLAN_DATA_Q << 4);
host_desc[2] |= 0x01;
rsi_enqueue_pkt(&rsi_driver_cb->wlan_tx_q, pkt);
#ifndef RSI_SEND_SEM_BITMAP
rsi_driver_cb_non_rom->send_wait_bitmap |= BIT(0);
#endif
// Set TX packet pending event
rsi_set_event(RSI_TX_EVENT);
if (rsi_wait_on_wlan_semaphore(&rsi_driver_cb_non_rom->send_data_sem, RSI_SEND_DATA_RESPONSE_WAIT_TIME) != RSI_ERROR_NONE)
{
return RSI_ERROR_RESPONSE_TIMEOUT;
}
status = rsi_wlan_get_status();
return status;
}
#if CHIP_CONFIG_ENABLE_ICD_SERVER
/*********************************************************************
* @fn sl_status_t ConfigurePowerSave(void)
* @brief
* Implements the power save in sleepy application
* @param[in] None
* @return SL_STATUS_OK if successful,
* SL_STATUS_FAIL otherwise
***********************************************************************/
sl_status_t ConfigurePowerSave(void)
{
int32_t status;
#ifdef RSI_BLE_ENABLE
status = rsi_bt_power_save_profile(RSI_SLEEP_MODE_2, RSI_MAX_PSP);
if (status != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "BT Powersave Config Failed, Error Code : 0x%lX", status);
return SL_STATUS_FAIL;
}
#endif /* RSI_BLE_ENABLE */
status = rsi_wlan_power_save_profile(RSI_SLEEP_MODE_2, RSI_MAX_PSP);
if (status != RSI_SUCCESS)
{
ChipLogError(DeviceLayer, "Powersave Config Failed, Error Code : 0x%lX", status);
return SL_STATUS_FAIL;
}
ChipLogDetail(DeviceLayer, "Powersave Config Success");
return SL_STATUS_OK;
}
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER