Skip to content

Commit c7cde6e

Browse files
[nrf toup][nrfconnect] Enable ZMS in nrfconnect if RRAM is in use.
Disabled NVS and enabled ZMS fs backend for all devices that uses RRAM. Signed-off-by: Arkadiusz Balys <arkadiusz.balys@nordicsemi.no>
1 parent 274a335 commit c7cde6e

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

config/nrfconnect/chip-module/Kconfig

+14-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@
1717
rsource "../../zephyr/Kconfig"
1818

1919
config CHIP
20-
imply NVS_LOOKUP_CACHE
21-
imply NVS_LOOKUP_CACHE_FOR_SETTINGS
20+
imply NVS if !SOC_FLASH_NRF_RRAM
21+
imply NVS_LOOKUP_CACHE if !SOC_FLASH_NRF_RRAM
22+
imply NVS_LOOKUP_CACHE_FOR_SETTINGS if !SOC_FLASH_NRF_RRAM
23+
imply ZMS if SOC_FLASH_NRF_RRAM
24+
imply ZMS_LOOKUP_CACHE if SOC_FLASH_NRF_RRAM
25+
imply ZMS_LOOKUP_CACHE_FOR_SETTINGS if SOC_FLASH_NRF_RRAM
2226

2327
if CHIP
2428

@@ -325,8 +329,16 @@ endif # CHIP_FACTORY_DATA_BUILD
325329
config CHIP_FACTORY_RESET_ERASE_NVS
326330
bool
327331
default y
332+
depends on NVS
328333
depends on !CHIP_CRYPTO_PSA_MIGRATE_DAC_PRIV_KEY
329334

335+
config CHIP_FACTORY_RESET_ERASE_ZMS
336+
bool
337+
default y
338+
depends on ZMS
339+
depends on !CHIP_CRYPTO_PSA_MIGRATE_DAC_PRIV_KEY
340+
341+
330342
config CHIP_LOG_SIZE_OPTIMIZATION
331343
bool "Disable some detailed logs to decrease flash usage"
332344
help

config/nrfconnect/chip-module/Kconfig.defaults

+4-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ config COMMON_LIBC_MALLOC_ARENA_SIZE
6565
default -1
6666

6767
config NVS_LOOKUP_CACHE_SIZE
68-
default 512
68+
default 512 if NVS
69+
70+
config ZMS_LOOKUP_CACHE_SIZE
71+
default 512 if ZMS
6972

7073
# ==============================================================================
7174
# Zephyr networking configuration

src/platform/Zephyr/ConfigurationManagerImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
204204

205205
if (status == 0)
206206
{
207-
#ifdef(CONFIG_CHIP_FACTORY_RESET_ERASE_NVS)
207+
#ifdef CONFIG_CHIP_FACTORY_RESET_ERASE_NVS
208208
status = nvs_clear(static_cast<nvs_fs *>(storage));
209209
#elif CONFIG_CHIP_FACTORY_RESET_ERASE_ZMS
210210
status = zms_clear(static_cast<zms_fs *>(storage));

0 commit comments

Comments
 (0)