@@ -69,7 +69,7 @@ struct InternalFlashFactoryData
69
69
// 2) it does not exceed the settings partition start address
70
70
// Note that this block can overlap with app partition but this is not a problem since we do not aim to modify
71
71
// the application code at runtime anyway.
72
- constexpr size_t FactoryDataBlockBegin ()
72
+ static constexpr size_t FactoryDataBlockBegin ()
73
73
{
74
74
// calculate the nearest multiple of CONFIG_FPROTECT_BLOCK_SIZE smaller than FACTORY_DATA_ADDRESS
75
75
return FACTORY_DATA_ADDRESS & (-CONFIG_FPROTECT_BLOCK_SIZE);
@@ -81,11 +81,19 @@ struct InternalFlashFactoryData
81
81
// and make sure we do not overlap with settings partition
82
82
constexpr size_t kFactoryDataBlockEnd =
83
83
(FACTORY_DATA_ADDRESS + FACTORY_DATA_SIZE + CONFIG_FPROTECT_BLOCK_SIZE - 1 ) & (-CONFIG_FPROTECT_BLOCK_SIZE);
84
- static_assert (kFactoryDataBlockEnd <= PM_SETTINGS_STORAGE_ADDRESS,
84
+
85
+ // Only the partition that is protected by fprotect must be aligned to fprotect block size
86
+ constexpr size_t kSettingsBlockEnd = PM_SETTINGS_STORAGE_ADDRESS + PM_SETTINGS_STORAGE_SIZE;
87
+
88
+ constexpr bool kOverlapsCheck =
89
+ (kSettingsBlockEnd <= FactoryDataBlockBegin ()) || (kFactoryDataBlockEnd <= PM_SETTINGS_STORAGE_ADDRESS);
90
+
91
+ static_assert (kOverlapsCheck ,
85
92
" FPROTECT memory block, which contains factory data"
86
93
" partition overlaps with the settings partition."
87
94
" Probably your settings partition size is not a multiple"
88
95
" of the atomic FPROTECT block size of " TO_STR (CONFIG_FPROTECT_BLOCK_SIZE) " kB" );
96
+
89
97
return kFactoryDataBlockEnd - FactoryDataBlockBegin ();
90
98
}
91
99
#undef TO_STR
@@ -100,7 +108,10 @@ struct InternalFlashFactoryData
100
108
#endif // if CONFIG_FPROTECT
101
109
}
102
110
#else
103
- CHIP_ERROR ProtectFactoryDataPartitionAgainstWrite () { return CHIP_ERROR_NOT_IMPLEMENTED; }
111
+ CHIP_ERROR ProtectFactoryDataPartitionAgainstWrite ()
112
+ {
113
+ return CHIP_ERROR_NOT_IMPLEMENTED;
114
+ }
104
115
#endif
105
116
};
106
117
0 commit comments