Skip to content

Commit b997f71

Browse files
[SL-UP] Adds fix for Sleep Manager on RS9116 (#154)
Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com>
1 parent ce3e2a4 commit b997f71

File tree

7 files changed

+43
-58
lines changed

7 files changed

+43
-58
lines changed

examples/platform/silabs/MatterConfig.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@
4848
#include "MemMonitoring.h"
4949
#endif
5050

51-
#if ((defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1) || defined(EXP_BOARD))
51+
#if RS911X_WIFI
5252
#include <platform/silabs/wifi/wiseconnect-abstraction/WiseconnectInterfaceAbstraction.h>
53-
#if !defined(EXP_BOARD)
53+
#if (defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1)
5454
#include <platform/silabs/SiWx917/SiWxPlatformInterface.h>
55-
#endif //! defined(EXP_BOARD)
56-
#endif // ( ( defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1 ) || defined(EXP_BOARD) )
55+
#endif // (defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1)
56+
#endif // RS911X_WIFI
5757

5858
#include <crypto/CHIPCryptoPAL.h>
5959
// If building with the EFR32-provided crypto backend, we can use the
@@ -377,9 +377,9 @@ CHIP_ERROR SilabsMatterConfig::InitWiFi(void)
377377
#endif // SL_WFX_USE_SECURE_LINK
378378
#endif // WF200_WIFI
379379

380-
#if ((defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1) || defined(EXP_BOARD))
380+
#if (RS911X_WIFI)
381381
VerifyOrReturnError(sl_matter_wifi_platform_init() == SL_STATUS_OK, CHIP_ERROR_INTERNAL);
382-
#endif // ( ( defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1 ) || defined(EXP_BOARD) )
382+
#endif // (RS911X_WIFI))
383383

384384
return CHIP_NO_ERROR;
385385
}

src/platform/silabs/rs911x/BLEManagerImpl.cpp

+5-12
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ extern "C" {
5252
#define BLE_TIMEOUT_MS 400
5353
#define BLE_SEND_INDICATION_TIMER_PERIOD_MS (5000)
5454

55-
osSemaphoreId_t sl_rs_ble_init_sem;
56-
5755
using namespace ::chip;
5856
using namespace ::chip::Ble;
5957
using namespace ::chip::DeviceLayer::Internal;
@@ -234,9 +232,6 @@ void BLEManagerImpl::sl_ble_event_handling_task(void * args)
234232
sl_status_t status;
235233
SilabsBleWrapper::BleEvent_t bleEvent;
236234

237-
//! This semaphore is waiting for wifi module initialization.
238-
osSemaphoreAcquire(sl_rs_ble_init_sem, osWaitForever);
239-
240235
// This function initialize BLE and start BLE advertisement.
241236
sInstance.sl_ble_init();
242237

@@ -288,8 +283,6 @@ CHIP_ERROR BLEManagerImpl::_Init()
288283
{
289284
CHIP_ERROR err;
290285

291-
sl_rs_ble_init_sem = osSemaphoreNew(1, 0, NULL);
292-
293286
sBleThread = osThreadNew(sInstance.sl_ble_event_handling_task, NULL, &kBleTaskAttr);
294287

295288
VerifyOrReturnError(sBleThread != nullptr, CHIP_ERROR_INCORRECT_STATE);
@@ -643,10 +636,7 @@ CHIP_ERROR BLEManagerImpl::ConfigureAdvertisingData(void)
643636
ChipLogError(DeviceLayer, "rsi_ble_set_advertise_data() failed: %ld", result);
644637
ExitNow();
645638
}
646-
else
647-
{
648-
ChipLogError(DeviceLayer, "rsi_ble_set_advertise_data() success: %ld", result);
649-
}
639+
650640
index = 0;
651641
responseData[index++] = 0x02; // length
652642
responseData[index++] = CHIP_ADV_DATA_TYPE_FLAGS; // AD type : flags
@@ -731,7 +721,10 @@ CHIP_ERROR BLEManagerImpl::StartAdvertising(void)
731721

732722
exit:
733723
// TODO: Add MapBLEError to return the correct error code
734-
ChipLogError(DeviceLayer, "StartAdvertising() End error: %s", ErrorStr(err));
724+
if (err != CHIP_NO_ERROR)
725+
{
726+
ChipLogError(DeviceLayer, "StartAdvertising() End error: %s", ErrorStr(err));
727+
}
735728
return err;
736729
}
737730

src/platform/silabs/wifi/SiWx/WifiInterface.cpp

+8-10
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ extern "C" {
8383
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER
8484

8585
WfxRsi_t wfx_rsi;
86-
extern osSemaphoreId_t sl_rs_ble_init_sem;
8786

8887
namespace {
8988

@@ -116,7 +115,7 @@ osMessageQueueId_t sWifiEventQueue = nullptr;
116115
sl_net_wifi_lwip_context_t wifi_client_context;
117116
sl_wifi_security_t security = SL_WIFI_SECURITY_UNKNOWN;
118117

119-
// TODO : Temporary work-around for wifi-init failure in 917NCP ACX module board(BRD4357A). Can be removed after
118+
// TODO : Temporary work-around for wifi-init failure in 917NCP ACX module board(BRD4357A). Can be removed after
120119
// Wiseconnect fixes region code for all ACX module boards.
121120
#ifdef EXP_BOARD
122121
#define REGION_CODE IGNORE_REGION
@@ -284,7 +283,6 @@ sl_status_t sl_wifi_siwx917_init(void)
284283
#endif // SL_MBEDTLS_USE_TINYCRYPT
285284

286285
wfx_rsi.dev_state.Set(WifiState::kStationInit);
287-
osSemaphoreRelease(sl_rs_ble_init_sem);
288286
return status;
289287
}
290288

@@ -409,11 +407,11 @@ sl_status_t SetWifiConfigurations()
409407
/**
410408
* @brief Callback function for the SL_WIFI_JOIN_EVENTS group
411409
*
412-
* This callback handler will be invoked when any event within join event group occurs, providing the event details and any associated data
413-
* The callback doesn't get called when we join a network using the sl net APIs
410+
* This callback handler will be invoked when any event within join event group occurs, providing the event details and any
411+
* associated data The callback doesn't get called when we join a network using the sl net APIs
412+
*
413+
* @note In case of failure, the 'result' parameter will be of type sl_status_t, and the 'resultLenght' parameter should be ignored
414414
*
415-
* @note In case of failure, the 'result' parameter will be of type sl_status_t, and the 'resultLenght' parameter should be ignored
416-
*
417415
* @param[in] event sl_wifi_event_t that triggered the callback
418416
* @param[in] result Pointer to the response data received
419417
* @param[in] result_length Length of the data received in bytes
@@ -478,7 +476,7 @@ sl_status_t JoinWifiNetwork(void)
478476
// failure only happens when the firmware returns an error
479477
ChipLogError(DeviceLayer, "sl_net_up failed: 0x%lx", static_cast<uint32_t>(status));
480478

481-
//Deactivate the network interface before activating it on the next retry.
479+
// Deactivate the network interface before activating it on the next retry.
482480
if ((status == SL_STATUS_SI91X_SCAN_ISSUED_IN_ASSOCIATED_STATE) || (status == SL_STATUS_SI91X_COMMAND_GIVEN_IN_INVALID_STATE))
483481
{
484482
status = sl_net_down((sl_net_interface_t) SL_NET_WIFI_CLIENT_INTERFACE);
@@ -906,7 +904,7 @@ void wfx_dhcp_got_ipv4(uint32_t ip)
906904
/*
907905
* Acquire the new IP address
908906
*/
909-
wfx_rsi.ip4_addr[0] = (ip) & 0xFF;
907+
wfx_rsi.ip4_addr[0] = (ip) &0xFF;
910908
wfx_rsi.ip4_addr[1] = (ip >> 8) & 0xFF;
911909
wfx_rsi.ip4_addr[2] = (ip >> 16) & 0xFF;
912910
wfx_rsi.ip4_addr[3] = (ip >> 24) & 0xFF;
@@ -922,7 +920,7 @@ void wfx_dhcp_got_ipv4(uint32_t ip)
922920
sl_status_t ConfigurePowerSave(rsi_power_save_profile_mode_t sl_si91x_ble_state, sl_si91x_performance_profile_t sl_si91x_wifi_state,
923921
uint32_t listenInterval)
924922
{
925-
int32_t error = rsi_bt_power_save_profile(sl_si91x_ble_state, 0);
923+
int32_t error = rsi_bt_power_save_profile(sl_si91x_ble_state, RSI_MAX_PSP);
926924
VerifyOrReturnError(error == RSI_SUCCESS, SL_STATUS_FAIL,
927925
ChipLogError(DeviceLayer, "rsi_bt_power_save_profile failed: %ld", error));
928926

src/platform/silabs/wifi/icd/WifiSleepManager.cpp

+8-6
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,15 @@ namespace {
3232
*/
3333
CHIP_ERROR ConfigureLIBasedSleep()
3434
{
35+
VerifyOrReturnError(ConfigureBroadcastFilter(true) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
36+
ChipLogError(DeviceLayer, "Failed to configure broadcasts filter."));
37+
38+
// Allowing the device to go to sleep must be the last actions to avoid configuration failures.
3539
VerifyOrReturnError(ConfigurePowerSave(RSI_SLEEP_MODE_2, ASSOCIATED_POWER_SAVE,
3640
chip::ICDConfigurationData::GetInstance().GetSlowPollingInterval().count()) ==
3741
SL_STATUS_OK,
3842
CHIP_ERROR_INTERNAL, ChipLogError(DeviceLayer, "Failed to enable LI based sleep."));
3943

40-
VerifyOrReturnError(ConfigureBroadcastFilter(true) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
41-
ChipLogError(DeviceLayer, "Failed to configure broadcasts filter."));
42-
4344
return CHIP_NO_ERROR;
4445
}
4546

@@ -51,12 +52,13 @@ CHIP_ERROR ConfigureLIBasedSleep()
5152
*/
5253
CHIP_ERROR ConfigureDTIMBasedSleep()
5354
{
54-
VerifyOrReturnError(ConfigurePowerSave(RSI_SLEEP_MODE_2, ASSOCIATED_POWER_SAVE, 0) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
55-
ChipLogError(DeviceLayer, "Failed to enable to enable DTIM basedsleep."));
56-
5755
VerifyOrReturnError(ConfigureBroadcastFilter(false) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
5856
ChipLogError(DeviceLayer, "Failed to configure broadcast filter."));
5957

58+
// Allowing the device to go to sleep must be the last actions to avoid configuration failures.
59+
VerifyOrReturnError(ConfigurePowerSave(RSI_SLEEP_MODE_2, ASSOCIATED_POWER_SAVE, 0) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
60+
ChipLogError(DeviceLayer, "Failed to enable to enable DTIM basedsleep."));
61+
6062
return CHIP_NO_ERROR;
6163
}
6264

src/platform/silabs/wifi/lwip-support/ethernetif.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ static err_t low_level_output(struct netif * netif, struct pbuf * p)
414414
status = wfx_rsi_send_data(packet, datalength);
415415
if (status != 0)
416416
{
417-
ChipLogError(DeviceLayer, "*ERR*EN-RSI:Send fail: %ld", status);
417+
ChipLogError(DeviceLayer, "wfx_rsi_send_data failed: %ld", status);
418418
xSemaphoreGive(ethout_sem);
419419
return ERR_IF;
420420
}

src/platform/silabs/wifi/rs911x/WifiInterface.cpp

+10-17
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ bool hasNotifiedIPV4 = false;
7777
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
7878
bool hasNotifiedWifiConnectivity = false;
7979

80-
#if (RSI_BLE_ENABLE)
81-
extern rsi_semaphore_handle_t sl_rs_ble_init_sem;
82-
#endif
83-
8480
// DHCP Poll timer
8581
static osTimerId_t sDHCPTimer;
8682
static osMessageQueueId_t sWifiEventQueue = NULL;
@@ -365,7 +361,7 @@ static int32_t sl_matter_wifi_init(void)
365361
}
366362

367363
buf[sizeof(buf) - 1] = 0;
368-
ChipLogProgress(DeviceLayer, "RSI firmware version: %s", buf);
364+
369365
//! Send feature frame
370366
if ((status = rsi_send_feature_frame()) != RSI_SUCCESS)
371367
{
@@ -382,6 +378,7 @@ static int32_t sl_matter_wifi_init(void)
382378
return status;
383379
}
384380

381+
ChipLogProgress(DeviceLayer, "rsi_firmware_version: %s", buf);
385382
ChipLogDetail(DeviceLayer, "MAC: %02x:%02x:%02x %02x:%02x:%02x", wfx_rsi.sta_mac.octet[0], wfx_rsi.sta_mac.octet[1],
386383
wfx_rsi.sta_mac.octet[2], wfx_rsi.sta_mac.octet[3], wfx_rsi.sta_mac.octet[4], wfx_rsi.sta_mac.octet[5]);
387384

@@ -414,10 +411,6 @@ static int32_t sl_matter_wifi_init(void)
414411
return status;
415412
}
416413

417-
#if (RSI_BLE_ENABLE)
418-
rsi_semaphore_post(&sl_rs_ble_init_sem);
419-
#endif
420-
421414
wfx_rsi.dev_state.Set(WifiState::kStationInit);
422415
return RSI_SUCCESS;
423416
}
@@ -776,6 +769,12 @@ void ProcessEvent(WifiEvent event)
776769
}
777770
}
778771

772+
sl_status_t sl_matter_wifi_platform_init(void)
773+
{
774+
VerifyOrReturnError(sl_matter_wifi_init() == RSI_SUCCESS, SL_STATUS_FAIL);
775+
return SL_STATUS_OK;
776+
}
777+
779778
/*********************************************************************************
780779
* @fn void sl_matter_wifi_task(void *arg)
781780
* @brief
@@ -790,12 +789,6 @@ void ProcessEvent(WifiEvent event)
790789
void sl_matter_wifi_task(void * arg)
791790
{
792791
(void) arg;
793-
uint32_t rsi_status = sl_matter_wifi_init();
794-
if (rsi_status != RSI_SUCCESS)
795-
{
796-
ChipLogError(DeviceLayer, "sl_matter_wifi_task: sl_matter_wifi_init failed: %ld", rsi_status);
797-
return;
798-
}
799792
WifiEvent event;
800793
sl_matter_lwip_start();
801794
sl_matter_wifi_task_started();
@@ -928,7 +921,7 @@ int32_t wfx_rsi_send_data(void * p, uint16_t len)
928921
return status;
929922
}
930923

931-
#if SL_ICD_ENABLED
924+
#if CHIP_CONFIG_ENABLE_ICD_SERVER
932925
/*********************************************************************
933926
* @fn sl_status_t ConfigurePowerSave(void)
934927
* @brief
@@ -959,4 +952,4 @@ sl_status_t ConfigurePowerSave(void)
959952
ChipLogDetail(DeviceLayer, "Powersave Config Success");
960953
return SL_STATUS_OK;
961954
}
962-
#endif /* SL_ICD_ENABLED */
955+
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER

src/platform/silabs/wifi/rs911x/platform/efx32_ncp_host.c

+5-6
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
#include "sl_constants.h"
2727
#include "sl_rsi_utility.h"
2828
#include "sl_si91x_host_interface.h"
29-
#include "sl_si91x_status.h"
3029
#include "sl_si91x_ncp_utility.h"
30+
#include "sl_si91x_status.h"
31+
#include "sl_spidrv_exp_config.h"
32+
#include "sl_spidrv_instances.h"
3133
#include "sl_status.h"
3234
#include "sl_wifi_constants.h"
35+
#include "spidrv.h"
3336
#include <platform/silabs/wifi/wf200/platform/spi_multiplex.h>
3437
#include <stdbool.h>
3538
#include <string.h>
36-
#include "sl_spidrv_exp_config.h"
37-
#include "sl_spidrv_instances.h"
38-
#include "spidrv.h"
3939

4040
#if defined(SL_CATLOG_POWER_MANAGER_PRESENT)
4141
#include "sl_power_manager.h"
@@ -45,15 +45,14 @@
4545
#include "sl_board_control.h"
4646
#endif // SL_BOARD_NAME
4747

48-
4948
#define LDMA_MAX_TRANSFER_LENGTH 4096
5049
#define LDMA_DESCRIPTOR_ARRAY_LENGTH (LDMA_MAX_TRANSFER_LENGTH / 2048)
5150
#define SPI_HANDLE sl_spidrv_exp_handle
5251
#define MAX_DATA_PACKET_SIZE 1800
5352

5453
// use SPI handle for EXP header (configured in project settings)
5554
extern SPIDRV_Handle_t sl_spidrv_exp_handle;
56-
static uint8_t dummy_buffer[MAX_DATA_PACKET_SIZE] = { 0 };
55+
static uint8_t dummy_buffer[MAX_DATA_PACKET_SIZE] = { 0 };
5756
static sl_si91x_host_init_configuration init_config = { 0 };
5857

5958
uint32_t rx_ldma_channel;

0 commit comments

Comments
 (0)