Skip to content

Commit 3d4c314

Browse files
[Silabs]Rework KVS keymap implementation. (#25503)
* Rework KVS keymap. Add a migration for the kvs changes and migrationManager to handle future migrations. Optimize baseApplication code * Restyled by whitespace * Restyled by clang-format * fix build for SED options * Restyled by clang-format --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent a7cc2cf commit 3d4c314

10 files changed

+290
-50
lines changed

examples/platform/silabs/efr32/BaseApplication.cpp

100755100644
+25-8
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,12 @@ app::Clusters::NetworkCommissioning::Instance
103103
sWiFiNetworkCommissioningInstance(0 /* Endpoint Id */, &(NetworkCommissioning::SlWiFiDriver::GetInstance()));
104104
#endif /* SL_WIFI */
105105

106-
#if !(defined(CHIP_DEVICE_CONFIG_ENABLE_SED) && CHIP_DEVICE_CONFIG_ENABLE_SED)
106+
bool sIsProvisioned = false;
107107

108-
bool sIsProvisioned = false;
108+
#if !(defined(CHIP_DEVICE_CONFIG_ENABLE_SED) && CHIP_DEVICE_CONFIG_ENABLE_SED)
109109
bool sIsEnabled = false;
110110
bool sIsAttached = false;
111111
bool sHaveBLEConnections = false;
112-
113112
#endif // CHIP_DEVICE_CONFIG_ENABLE_SED
114113

115114
EmberAfIdentifyEffectIdentifier sIdentifyEffect = EMBER_ZCL_IDENTIFY_EFFECT_IDENTIFIER_STOP_EFFECT;
@@ -236,6 +235,9 @@ CHIP_ERROR BaseApplication::Init(Identify * identifyObj)
236235
SILABS_LOG("Getting QR code failed!");
237236
}
238237

238+
PlatformMgr().AddEventHandler(OnPlatformEvent, 0);
239+
sIsProvisioned = ConnectivityMgr().IsThreadProvisioned();
240+
239241
return err;
240242
}
241243

@@ -287,7 +289,7 @@ void BaseApplication::FunctionEventHandler(AppEvent * aEvent)
287289
StopStatusLEDTimer();
288290
#endif // CHIP_DEVICE_CONFIG_ENABLE_SED
289291

290-
chip::Server::GetInstance().ScheduleFactoryReset();
292+
ScheduleFactoryReset();
291293
}
292294
}
293295

@@ -307,9 +309,8 @@ void BaseApplication::LightEventHandler()
307309
sIsAttached = ConnectivityMgr().IsWiFiStationConnected();
308310
#endif /* SL_WIFI */
309311
#if CHIP_ENABLE_OPENTHREAD
310-
sIsProvisioned = ConnectivityMgr().IsThreadProvisioned();
311-
sIsEnabled = ConnectivityMgr().IsThreadEnabled();
312-
sIsAttached = ConnectivityMgr().IsThreadAttached();
312+
sIsEnabled = ConnectivityMgr().IsThreadEnabled();
313+
sIsAttached = ConnectivityMgr().IsThreadAttached();
313314
#endif /* CHIP_ENABLE_OPENTHREAD */
314315
sHaveBLEConnections = (ConnectivityMgr().NumBLEConnections() != 0);
315316
PlatformMgr().UnlockChipStack();
@@ -427,7 +428,7 @@ void BaseApplication::ButtonHandler(AppEvent * aEvent)
427428
#ifdef SL_WIFI
428429
if (!ConnectivityMgr().IsWiFiStationProvisioned())
429430
#else
430-
if (!ConnectivityMgr().IsThreadProvisioned())
431+
if (!sIsProvisioned)
431432
#endif /* !SL_WIFI */
432433
{
433434
// Open Basic CommissioningWindow. Will start BLE advertisements
@@ -570,3 +571,19 @@ void BaseApplication::DispatchEvent(AppEvent * aEvent)
570571
SILABS_LOG("Event received with no handler. Dropping event.");
571572
}
572573
}
574+
575+
void BaseApplication::ScheduleFactoryReset()
576+
{
577+
PlatformMgr().ScheduleWork([](intptr_t) {
578+
PlatformMgr().HandleServerShuttingDown();
579+
ConfigurationMgr().InitiateFactoryReset();
580+
});
581+
}
582+
583+
void BaseApplication::OnPlatformEvent(const ChipDeviceEvent * event, intptr_t)
584+
{
585+
if (event->Type == DeviceEventType::kServiceProvisioningChange)
586+
{
587+
sIsProvisioned = event->ServiceProvisioningChange.IsServiceProvisioned;
588+
}
589+
}

examples/platform/silabs/efr32/BaseApplication.h

+11
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#include <app/clusters/identify-server/identify-server.h>
3636
#include <ble/BLEEndPoint.h>
3737
#include <lib/core/CHIPError.h>
38+
#include <platform/CHIPDeviceEvent.h>
3839
#include <platform/CHIPDeviceLayer.h>
3940

4041
#ifdef DISPLAY_ENABLED
@@ -187,6 +188,16 @@ class BaseApplication
187188
*/
188189
static void LightEventHandler();
189190

191+
/**
192+
* @brief Start the factory Reset process
193+
* Almost identical to Server::ScheduleFactoryReset()
194+
* but doesn't call GetFabricTable().DeleteAllFabrics(); which deletes Key per key.
195+
* With our KVS platform implementation this is a lot slower than deleting the whole kvs section
196+
* our silabs nvm3 driver which end up being doing in ConfigurationManagerImpl::DoFactoryReset(intptr_t arg).
197+
*/
198+
static void ScheduleFactoryReset();
199+
200+
static void OnPlatformEvent(const chip::DeviceLayer::ChipDeviceEvent * event, intptr_t);
190201
/**********************************************************
191202
* Protected Attributes declaration
192203
*********************************************************/

src/platform/silabs/KeyValueStoreManagerImpl.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,20 @@ class KeyValueStoreManagerImpl final : public KeyValueStoreManager
4242
CHIP_ERROR _Put(const char * key, const void * value, size_t value_size);
4343
CHIP_ERROR _Get(const char * key, void * value, size_t value_size, size_t * read_bytes_size = nullptr, size_t offset = 0) const;
4444
CHIP_ERROR _Delete(const char * key);
45-
CHIP_ERROR ErasePartition(void);
45+
void ErasePartition(void);
4646

4747
static constexpr size_t kMaxEntries = KVS_MAX_ENTRIES;
4848

4949
static void ForceKeyMapSave();
50+
static void KvsMapMigration();
5051

5152
private:
5253
static void OnScheduledKeyMapSave(System::Layer * systemLayer, void * appState);
5354

5455
void ScheduleKeyMapSave(void);
5556
bool IsValidKvsNvm3Key(const uint32_t nvm3Key) const;
56-
CHIP_ERROR MapKvsKeyToNvm3(const char * key, uint32_t & nvm3Key, bool isSlotNeeded = false) const;
57+
uint16_t hashKvsKeyString(const char * key) const;
58+
CHIP_ERROR MapKvsKeyToNvm3(const char * key, uint16_t hash, uint32_t & nvm3Key, bool isSlotNeeded = false) const;
5759

5860
// ===== Members for internal use by the following friends.
5961
friend KeyValueStoreManager & KeyValueStoreMgr();

src/platform/silabs/SilabsConfig.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@
3333
#include "nvm3.h"
3434
#include "nvm3_default.h"
3535
#include "nvm3_hal_flash.h"
36+
#include <nvm3_lock.h>
3637

3738
// Substitute the GSDK weak nvm3_lockBegin and nvm3_lockEnd
3839
// for an application controlled re-entrance protection
39-
#define SILABS_SEM_TIMEOUT_ms 5
4040
static SemaphoreHandle_t nvm3_Sem;
4141
static StaticSemaphore_t nvm3_SemStruct;
4242

4343
void nvm3_lockBegin(void)
4444
{
4545
VerifyOrDie(nvm3_Sem != NULL);
46-
xSemaphoreTake(nvm3_Sem, SILABS_SEM_TIMEOUT_ms);
46+
xSemaphoreTake(nvm3_Sem, portMAX_DELAY);
4747
}
4848

4949
void nvm3_lockEnd(void)
@@ -69,7 +69,7 @@ CHIP_ERROR SilabsConfig::Init()
6969
{
7070
return CHIP_ERROR_NO_MEMORY;
7171
}
72-
72+
xSemaphoreGive(nvm3_Sem);
7373
return MapNvm3Error(nvm3_open(nvm3_defaultHandle, nvm3_defaultInit));
7474
}
7575

src/platform/silabs/SilabsConfig.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "nvm3_hal_flash.h"
3333

3434
#ifndef KVS_MAX_ENTRIES
35-
#define KVS_MAX_ENTRIES 75 // Available key slot count for Kvs Key mapping.
35+
#define KVS_MAX_ENTRIES 255 // Available key slot count for Kvs Key mapping.
3636
#endif
3737

3838
// Delay before Key/Value is actually saved in NVM
@@ -145,6 +145,7 @@ class SilabsConfig
145145
static constexpr Key kConfigKey_BootCount = SilabsConfigKey(kMatterCounter_KeyBase, 0x00);
146146
static constexpr Key kConfigKey_TotalOperationalHours = SilabsConfigKey(kMatterCounter_KeyBase, 0x01);
147147
static constexpr Key kConfigKey_LifeTimeCounter = SilabsConfigKey(kMatterCounter_KeyBase, 0x02);
148+
static constexpr Key kConfigKey_MigrationCounter = SilabsConfigKey(kMatterCounter_KeyBase, 0x03);
148149

149150
// Matter KVS storage Keys
150151
static constexpr Key kConfigKey_KvsStringKeyMap = SilabsConfigKey(kMatterKvs_KeyBase, 0x00);
@@ -161,8 +162,8 @@ class SilabsConfig
161162
static constexpr Key kMinConfigKey_MatterCounter = SilabsConfigKey(kMatterCounter_KeyBase, 0x00);
162163
static constexpr Key kMaxConfigKey_MatterCounter = SilabsConfigKey(kMatterCounter_KeyBase, 0x1F);
163164

164-
static constexpr Key kMinConfigKey_MatterKvs = SilabsConfigKey(kMatterKvs_KeyBase, 0x00);
165-
static constexpr Key kMaxConfigKey_MatterKvs = SilabsConfigKey(kMatterKvs_KeyBase, 0xFF);
165+
static constexpr Key kMinConfigKey_MatterKvs = kConfigKey_KvsStringKeyMap;
166+
static constexpr Key kMaxConfigKey_MatterKvs = kConfigKey_KvsLastKeySlot;
166167

167168
static CHIP_ERROR Init(void);
168169
static void DeInit(void);

src/platform/silabs/efr32/BUILD.gn

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ static_library("efr32") {
6767
"../../SingletonConfigurationManager.cpp",
6868
"ConfigurationManagerImpl.cpp",
6969
"KeyValueStoreManagerImpl.cpp",
70+
"MigrationManager.cpp",
7071
"PlatformManagerImpl.cpp",
7172
]
7273

0 commit comments

Comments
 (0)