Skip to content

Commit a1c3d8c

Browse files
committed
[nrf toup] Factory data partition location change
- factory data can be placed before or after settings partition Signed-off-by: Konrad Grucel <konrad.grucel@nordicsemi.no>
1 parent bdec5fd commit a1c3d8c

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

src/platform/nrfconnect/FactoryDataProvider.h

+17-3
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,26 @@ struct InternalFlashFactoryData
7272

7373
constexpr size_t FactoryDataBlockSize()
7474
{
75-
// calculate the factory data end address rounded up to the nearest multiple of CONFIG_FPROTECT_BLOCK_SIZE
75+
// calculate the factory data and settings end address rounded up to the nearest multiple of CONFIG_FPROTECT_BLOCK_SIZE
7676
// and make sure we do not overlap with settings partition
7777
constexpr size_t kFactoryDataBlockEnd =
7878
(FACTORY_DATA_ADDRESS + FACTORY_DATA_SIZE + CONFIG_FPROTECT_BLOCK_SIZE - 1) & (-CONFIG_FPROTECT_BLOCK_SIZE);
79-
static_assert(kFactoryDataBlockEnd <= PM_SETTINGS_STORAGE_ADDRESS,
79+
80+
constexpr size_t SettingsBlockEnd =
81+
(PM_SETTINGS_STORAGE_ADDRESS + PM_SETTINGS_STORAGE_SIZE + CONFIG_FPROTECT_BLOCK_SIZE - 1) &
82+
(-CONFIG_FPROTECT_BLOCK_SIZE);
83+
84+
constexpr size_t kFactoryDataBlockBegin = FACTORY_DATA_ADDRESS & (-CONFIG_FPROTECT_BLOCK_SIZE);
85+
86+
constexpr bool overlapsCheck =
87+
(SettingsBlockEnd <= kFactoryDataBlockBegin) || (kFactoryDataBlockEnd <= PM_SETTINGS_STORAGE_ADDRESS);
88+
89+
static_assert(overlapsCheck,
8090
"FPROTECT memory block, which contains factory data"
8191
"partition overlaps with the settings partition."
8292
"Probably your settings partition size is not a multiple"
8393
"of the atomic FPROTECT block size of " TO_STR(CONFIG_FPROTECT_BLOCK_SIZE) "kB");
94+
8495
return kFactoryDataBlockEnd - FactoryDataBlockBegin();
8596
}
8697
#undef TO_STR
@@ -95,7 +106,10 @@ struct InternalFlashFactoryData
95106
#endif // if CONFIG_FPROTECT
96107
}
97108
#else
98-
CHIP_ERROR ProtectFactoryDataPartitionAgainstWrite() { return CHIP_ERROR_NOT_IMPLEMENTED; }
109+
CHIP_ERROR ProtectFactoryDataPartitionAgainstWrite()
110+
{
111+
return CHIP_ERROR_NOT_IMPLEMENTED;
112+
}
99113
#endif
100114
};
101115

0 commit comments

Comments
 (0)