Skip to content

Commit 0c49058

Browse files
ArekBalysNordicrlubos
authored andcommitted
[nrf toup][Zephyr] Add ZMS to Zephyr port
Added a possibility to use ZMS fs backend in Zephyr. NVS fs backend imply is now controlled by the nrfconnect platform configuration directly. All other platforms use NVS fs backend by default. Signed-off-by: Arkadiusz Balys <arkadiusz.balys@nordicsemi.no>
1 parent 3567e53 commit 0c49058

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

config/nxp/chip-module/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ config CHIP_DEVICE_GENERATE_ROTATING_DEVICE_UID
206206
endif #CHIP_FACTORY_DATA_BUILD
207207

208208
# See config/zephyr/Kconfig for full definition
209-
config CHIP_FACTORY_RESET_ERASE_NVS
209+
config CHIP_FACTORY_RESET_ERASE_SETTINGS
210210
bool
211211
default y
212212

config/telink/chip-module/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ config CHIP_DEVICE_GENERATE_ROTATING_DEVICE_UID
164164
endif #CHIP_FACTORY_DATA_BUILD
165165

166166
# See config/zephyr/Kconfig for full definition
167-
config CHIP_FACTORY_RESET_ERASE_NVS
167+
config CHIP_FACTORY_RESET_ERASE_SETTINGS
168168
bool
169169
default n
170170

config/zephyr/Kconfig

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ menuconfig CHIP
4444
imply HWINFO
4545
imply FLASH
4646
imply FLASH_MAP
47-
imply NVS
47+
imply NVS if !CHIP_NRF_PLATFORM
4848
imply SETTINGS
4949
help
5050
Enables Matter libraries required for the Matter protocol stack to work.
@@ -467,11 +467,11 @@ config CHIP_CERTIFiCATION_DECLARATION_OTA_IMAGE_ID
467467

468468
endif
469469

470-
config CHIP_FACTORY_RESET_ERASE_NVS
470+
config CHIP_FACTORY_RESET_ERASE_SETTINGS
471471
bool "Erase NVS flash pages on factory reset"
472-
depends on SETTINGS_NVS
472+
depends on SETTINGS_NVS || SETTINGS_ZMS
473473
help
474-
Erases flash pages occupied by non-volatile storage when a factory reset
474+
Erases non-volatile pages occupied by non-volatile storage when a factory reset
475475
is requested, instead of removing Matter-related settings only. Enabling
476476
this option provides a more robust factory reset mechanism and allows to
477477
regain the original storage performance if any firmware issue has brought

src/platform/Zephyr/ConfigurationManagerImpl.cpp

+14-6
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,14 @@
3737
#include <lib/support/CodeUtils.h>
3838
#include <lib/support/logging/CHIPLogging.h>
3939

40-
#ifdef CONFIG_CHIP_FACTORY_RESET_ERASE_NVS
41-
#include <zephyr/fs/nvs.h>
40+
#ifdef CONFIG_CHIP_FACTORY_RESET_ERASE_SETTINGS
4241
#include <zephyr/settings/settings.h>
43-
#endif
42+
#ifdef CONFIG_SETTINGS_NVS
43+
#include <zephyr/fs/nvs.h>
44+
#elif CONFIG_SETTINGS_ZMS
45+
#include <zephyr/fs/zms.h>
46+
#endif // CONFIG_SETTINGS_NVS || CONFIG_SETTINGS_ZMS
47+
#endif // CONFIG_CHIP_FACTORY_RESET_ERASE_SETTINGS
4448

4549
#ifdef CONFIG_NET_L2_OPENTHREAD
4650
#include <platform/ThreadStackManager.h>
@@ -194,20 +198,24 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
194198
ThreadStackMgr().LockThreadStack();
195199
#endif
196200

197-
#ifdef CONFIG_CHIP_FACTORY_RESET_ERASE_NVS
201+
#ifdef CONFIG_CHIP_FACTORY_RESET_ERASE_SETTINGS
198202
void * storage = nullptr;
199203
int status = settings_storage_get(&storage);
200204

201205
if (status == 0)
202206
{
207+
#ifdef CONFIG_SETTINGS_NVS
203208
status = nvs_clear(static_cast<nvs_fs *>(storage));
209+
#elif CONFIG_SETTINGS_ZMS
210+
status = zms_clear(static_cast<zms_fs *>(storage));
211+
#endif // CONFIG_SETTINGS_NVS || CONFIG_SETTINGS_ZMS
204212
}
205-
206213
if (status)
207214
{
208215
ChipLogError(DeviceLayer, "Factory reset failed: %d", status);
209216
}
210217
#else
218+
211219
const CHIP_ERROR err = PersistedStorage::KeyValueStoreMgrImpl().DoFactoryReset();
212220

213221
if (err != CHIP_NO_ERROR)
@@ -216,7 +224,7 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
216224
}
217225

218226
ConnectivityMgr().ErasePersistentInfo();
219-
#endif
227+
#endif // CONFIG_CHIP_FACTORY_RESET_ERASE_SETTINGS
220228

221229
PlatformMgr().Shutdown();
222230
}

0 commit comments

Comments
 (0)