Skip to content

Commit 513c116

Browse files
[nrf fromlist][nrfconnect] Improved generation of the factory data
Allow to merge the factory data .hex file with the firmware's .hex file when partition manager is not available.
1 parent ea36fcf commit 513c116

File tree

4 files changed

+31
-15
lines changed

4 files changed

+31
-15
lines changed

config/nrfconnect/chip-module/Kconfig

+1-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ config CHIP_MALLOC_SYS_HEAP
106106
config CHIP_FACTORY_DATA
107107
bool "Factory data provider"
108108
select ZCBOR
109-
imply FPROTECT
110109
help
111110
Enables the default nRF Connect factory data provider implementation that
112111
supports reading the factory data encoded in the CBOR format from the
@@ -149,7 +148,7 @@ config CHIP_FACTORY_DATA_WRITE_PROTECT
149148
bool "Enable Factory Data write protection"
150149
imply FPROTECT
151150
depends on CHIP_FACTORY_DATA
152-
default y if SOC_SERIES_NRF53X || SOC_SERIES_NRF52X
151+
default y
153152
help
154153
Enables the write protection of the Factory Data partition in the flash memory.
155154
This is a recommended feature, but it requires the Settings partition size to be

config/nrfconnect/chip-module/generate_factory_data.cmake

+24-7
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,21 @@ set(factory_data_output_path ${output_path}/${factory_data_target})
129129
string(APPEND script_args "-o \"${factory_data_output_path}\"\n")
130130
string(APPEND script_args "-s \"${schema_path}\"\n")
131131

132-
# Add optional offset and size arguments to generate both .hex and .json files.
133-
string(APPEND script_args "--offset $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_ADDRESS>\n")
134-
string(APPEND script_args "--size $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_OFFSET>\n")
132+
# Add optional offset and size arguments to generate .hex file as well as .json.
133+
if(CONFIG_PARTITION_MANAGER_ENABLED)
134+
string(APPEND script_args "--offset $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_ADDRESS>\n")
135+
string(APPEND script_args "--size $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_OFFSET>\n")
136+
else()
137+
dt_alias(factory_data_alias PROPERTY "factory-data")
138+
dt_node_exists(factory_data_exists PATH "${factory_data_alias}")
139+
if(NOT ${factory_data_exists})
140+
message(FATAL_ERROR "factory-data alias does not exist in DTS")
141+
endif()
142+
dt_reg_addr(factory_data_addr PATH ${factory_data_alias})
143+
dt_reg_size(factory_data_size PATH ${factory_data_alias})
144+
string(APPEND script_args "--offset ${factory_data_addr}\n")
145+
string(APPEND script_args "--size ${factory_data_size}\n")
146+
endif()
135147

136148
# execute first script to create a JSON file
137149
separate_arguments(separated_script_args NATIVE_COMMAND ${script_args})
@@ -175,10 +187,15 @@ nrfconnect_create_factory_data(factory_data
175187
${FACTORY_DATA_SCHEMA_PATH}
176188
${OUTPUT_FILE_PATH})
177189

178-
if(CONFIG_CHIP_FACTORY_DATA_MERGE_WITH_FIRMWARE)
179-
# set custom target for merging factory_data hex file
180-
set_property(GLOBAL PROPERTY factory_data_PM_HEX_FILE ${OUTPUT_FILE_PATH}/factory_data.hex)
181-
set_property(GLOBAL PROPERTY factory_data_PM_TARGET factory_data)
190+
if(CONFIG_CHIP_FACTORY_DATA_MERGE_WITH_FIRMWARE)
191+
if(CONFIG_PARTITION_MANAGER_ENABLED)
192+
# set custom target for merging factory_data hex file
193+
set_property(GLOBAL PROPERTY factory_data_PM_HEX_FILE ${OUTPUT_FILE_PATH}/factory_data.hex)
194+
set_property(GLOBAL PROPERTY factory_data_PM_TARGET factory_data)
195+
else()
196+
set_property(GLOBAL APPEND PROPERTY HEX_FILES_TO_MERGE ${OUTPUT_FILE_PATH}/factory_data.hex ${OUTPUT_FILE_PATH}/zephyr.hex)
197+
set_property(TARGET runners_yaml_props_target PROPERTY hex_file ${OUTPUT_FILE_PATH}/merged.hex)
198+
endif()
182199
endif()
183200

184201

docs/guides/nrfconnect_factory_data_configuration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ data secure by applying hardware write protection.
3737
- [Appearance field description](#appearance-field-description)
3838
- [Enabling factory data support](#enabling-factory-data-support)
3939
- [Generating factory data](#generating-factory-data)
40-
- [Creating the factory data JSON file with the first script](#creating-the-factory-data-json-file-with-the-first-script)
40+
- [Creating the factory data JSON and HEX files with the first script](#creating-the-factory-data-json-and-hex-files-with-the-first-script)
4141
- [How to set user data](#how-to-set-user-data)
4242
- [How to handle user data](#how-to-handle-user-data)
4343
- [Verifying using the JSON Schema tool](#verifying-using-the-json-schema-tool)
@@ -597,7 +597,7 @@ To generate a manual pairing code and a QR code, complete the following steps:
597597
```
598598
599599
2. Complete steps 1, 2, and 3 from the
600-
[Creating the factory data JSON file with the first script](#creating-the-factory-data-json-file-with-the-first-script)
600+
[Creating the factory data JSON and HEX files with the first script](#creating-the-factory-data-json-and-hex-files-with-the-first-script)
601601
section to prepare the final invocation of the Python script.
602602
603603
3. Add the `--generate_onboarding` argument to the Python script final

src/platform/nrfconnect/FactoryDataProvider.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,16 @@ struct InternalFlashFactoryData
6666
// the application code at runtime anyway.
6767
constexpr size_t FactoryDataBlockBegin()
6868
{
69-
// calculate the nearest multiple of CONFIG_FPROTECT_BLOCK_SIZE smaller than PM_FACTORY_DATA_ADDRESS
70-
return PM_FACTORY_DATA_ADDRESS & (-CONFIG_FPROTECT_BLOCK_SIZE);
69+
// calculate the nearest multiple of CONFIG_FPROTECT_BLOCK_SIZE smaller than FACTORY_DATA_ADDRESS
70+
return FACTORY_DATA_ADDRESS & (-CONFIG_FPROTECT_BLOCK_SIZE);
7171
}
7272

7373
constexpr size_t FactoryDataBlockSize()
7474
{
7575
// calculate the factory data 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 =
78-
(PM_FACTORY_DATA_ADDRESS + PM_FACTORY_DATA_SIZE + CONFIG_FPROTECT_BLOCK_SIZE - 1) & (-CONFIG_FPROTECT_BLOCK_SIZE);
78+
(FACTORY_DATA_ADDRESS + FACTORY_DATA_SIZE + CONFIG_FPROTECT_BLOCK_SIZE - 1) & (-CONFIG_FPROTECT_BLOCK_SIZE);
7979
static_assert(kFactoryDataBlockEnd <= PM_SETTINGS_STORAGE_ADDRESS,
8080
"FPROTECT memory block, which contains factory data"
8181
"partition overlaps with the settings partition."
@@ -88,7 +88,7 @@ struct InternalFlashFactoryData
8888
CHIP_ERROR ProtectFactoryDataPartitionAgainstWrite()
8989
{
9090
#ifdef CONFIG_FPROTECT
91-
int ret = fprotect_area(FACTORY_DATA_ADDRESS, FACTORY_DATA_SIZE);
91+
int ret = fprotect_area(FactoryDataBlockBegin(), FactoryDataBlockSize());
9292
return System::MapErrorZephyr(ret);
9393
#else
9494
return CHIP_ERROR_NOT_IMPLEMENTED;

0 commit comments

Comments
 (0)