Skip to content

Commit 1f41ed7

Browse files
[TI] CC13xx Factory Data Tool (project-chip#31117)
* dac tool functionally working for cc13x2 and cc13x4 * updated documentation, added dac tool to all examples * removed old memmap image * code clean up * updated cc13x4 memmap * more code cleanup * added in Thor modifications to oad and factory data merge tool python script * ti_simplelink_executable.gni fix * factory data overlap in ota merge tool fixed * added debug statement in ti simplelink exec * added in custom factory data flag to pump controller * added public creds header files * code review updates and cc13x2 em file fix * fixed pump controller app build issues when using factory data * added back in ota linker file for cc13x4 * spelling fixes * Restyled by whitespace * Restyled by clang-format * Restyled by prettier-markdown * Restyled by autopep8 * Restyled by isort * spelling fix * Restyled by prettier-markdown * pr review feedback * Restyled by clang-format * more pr feedback * empty commit --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 0495db1 commit 1f41ed7

File tree

81 files changed

+2556
-1285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+2556
-1285
lines changed
15.5 KB
Loading
20.6 KB
Loading
40.4 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
# Texas Instruments Matter Factory Data Programming User Guide
2+
3+
This document describes how to use the factory data programming feature for
4+
Matter example applications from Texas Instruments.
5+
6+
## Background
7+
8+
The Matter specification lists various information elements that are programmed
9+
at the factory. These values do not change and some are unique per device. This
10+
feature enables customers developing Matter products on TI devices to program
11+
this data and use this as a starting point towards developing their factory
12+
programming infrastructure for their Matter devices.
13+
14+
## Solution Overview:
15+
16+
TI Matter examples allow the use of factory data in the following two ways:
17+
18+
- **Example Out of Box Factory Data** : Use TI example DAC values to get
19+
started. This is intended to be used when just starting with Matter or
20+
during development until customer or product specific data is not required.
21+
- **Custom factory data** : Allows users to configure custom factory data via
22+
a JSON file. The custom values are then processed by a script provided by TI
23+
and merged with the Matter application to create a binary that can be
24+
flashed on to devices.
25+
26+
### Solution Block Diagram
27+
28+
![Block Diagram](images/factory_data_overview.png)
29+
30+
Each element is described in more detail below:
31+
32+
1. Factory Data JSON: This file is located at src/platform/cc13xx_26xx.
33+
Developers can configure this per device. Elements in this file are from the
34+
specification.
35+
2. Matter Application with dummy factory data: Any TI Matter example application
36+
3. `BIM`/MCUBoot: Boot Image Manager/MCUBoot image used for OTA. This is built
37+
with the Matter application and does not require additional build steps from
38+
developers.
39+
4. create_factory_data.py: Processes a factory data JSON file and generates a
40+
hex file with the unique factory data values configured in the JSON file.
41+
5. factory_data_trim.py: When using the custom factory data option, this script
42+
removes the dummy factory data which is required to be able to successfully
43+
compile the application.
44+
6. `oad`\_and_factory_data_merge_tool.py: Merges the factory data hex, Matter
45+
application without factory data and `BIM`/MCUBoot image to generate a
46+
functional hex that can be programmed onto the device.
47+
48+
## Flash memory layout
49+
50+
![Memory Layout 1](images/cc13x2_memmap.png)
51+
52+
![Memory Layout 2](images/cc13x4_memmap.png)
53+
54+
## How to use
55+
56+
Out of box factory data location is configured to be on second last page of
57+
flash. For CC13x2, the starting address is `0xAC000`. For CC13x4, the starting
58+
address is `0xFE800`. This can be configured in the linker file.
59+
60+
To configure:
61+
62+
1. Linker file: Set the start address for factory data in the linker file being
63+
used by the application
64+
65+
```
66+
FLASH_FACTORY_DATA (R) : ORIGIN = 0x000ac000, LENGTH = 0x00000900
67+
```
68+
69+
```
70+
/* Define base address for the DAC arrays and struct */
71+
PROVIDE (_factory_data_base_address =
72+
DEFINED(_factory_data_base_address) ? _factory_data_base_address : 0xAC000);
73+
```
74+
75+
2. create_factory_data.py: Set the address of the start of the factory data
76+
elements. Refer to the comments in the script.
77+
78+
```
79+
# there are 17 elements, each element will need 8 bytes in the struct
80+
# 4 for length of the element, and 4 for the pointer to the element
81+
# factory data starts at 0xAC000 or 0xFE800, so the elements will
82+
# start 136 bytes after the start address
83+
factory_data_dict = json.load(args.factory_data_json_file[0])
84+
factory_data_schema = json.load(args.factory_data_schema[0])
85+
86+
validate(factory_data_dict, factory_data_schema)
87+
factory_data = factory_data_dict['elements']
88+
89+
struct_idx = 0
90+
values_idx = 0
91+
if device_family == 'cc13x2_26x2':
92+
value_address = 0xAC088
93+
else:
94+
value_address = 0xFE888
95+
```
96+
97+
```
98+
if device_family == 'cc13x2_26x2':
99+
subprocess.call(['objcopy', 'temp.bin','--input-target','binary','--output-target', 'ihex', args.factory_data_hex_file, '--change-addresses=0xac000'])
100+
else:
101+
subprocess.call(['objcopy', 'temp.bin','--input-target','binary','--output-target', 'ihex', args.factory_data_hex_file, '--change-addresses=0xfe800'])
102+
```
103+
104+
3. In the example's args.gni file, set 'custom_factory_data' to true
105+
106+
It is recommended to keep a dedicated page (2 pages for CC13x4) for factory
107+
data.
108+
109+
### Formatting certs and keys for JSON file
110+
111+
To format the DAC, private key and PAI as hex strings as shown in the Factory
112+
Data JSON file, use the chip-cert tool located at src/tools/chip-cert and run
113+
the _convert-cert_ command, and list -X, or X.509 DER hex encoded format, as the
114+
output format. These strings can then be copied into the JSON file.
115+
116+
The SPAKE parameters should be converted from base-64 to hex as well before
117+
being copied into the JSON file.
118+
119+
### Creating images
120+
121+
The example application can be built using the instructions in the example's
122+
README. The factory data from the JSON file will be formatted into a hex file
123+
that will then be merged into the final executable. The final executable will be
124+
named _{example-application}-`bim`.hex_ for CC13x2 and
125+
_{example-application}-mcuboot.hex_ for CC13x4, and the factory data that was
126+
inputted into the JSON file will be named
127+
_{example-application}-factory-data.hex_.

examples/all-clusters-app/cc13x2x7_26x2x7/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ ti_simplelink_executable("all-clusters-app") {
108108
deps += [ "${chip_root}/third_party/openthread/repo:libopenthread-mtd" ]
109109
}
110110

111+
if (custom_factory_data) {
112+
defines = [ "CC13XX_26XX_FACTORY_DATA" ]
113+
}
114+
111115
include_dirs = [
112116
"${project_dir}",
113117
"${project_dir}/main",

examples/all-clusters-app/cc13x2x7_26x2x7/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,5 @@ matter_device_vid = "0xFFF1"
5050
matter_device_pid = "0x8006"
5151
matter_software_ver = "0x0001"
5252
matter_software_ver_str = "1.0d1"
53+
54+
custom_factory_data = true

examples/all-clusters-app/cc13x2x7_26x2x7/main/AppTask.cpp

+13-3
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,19 @@ int AppTask::Init()
230230
;
231231
}
232232

233+
// Initialize device attestation config
234+
#ifdef CC13X2_26X2_ATTESTATION_CREDENTIALS
235+
#ifdef CC13XX_26XX_FACTORY_DATA
236+
SetDeviceInstanceInfoProvider(&mFactoryDataProvider);
237+
SetDeviceAttestationCredentialsProvider(&mFactoryDataProvider);
238+
SetCommissionableDataProvider(&mFactoryDataProvider);
239+
#else
240+
SetDeviceAttestationCredentialsProvider(CC13X2_26X2::GetCC13X2_26X2DacProvider());
241+
#endif
242+
#else
243+
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
244+
#endif
245+
233246
ret = PlatformMgr().StartEventLoopTask();
234247
if (ret != CHIP_NO_ERROR)
235248
{
@@ -259,9 +272,6 @@ int AppTask::Init()
259272

260273
ConfigurationMgr().LogDeviceConfig();
261274

262-
// Initialize device attestation config
263-
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
264-
265275
// We only have network commissioning on endpoint 0.
266276
emberAfEndpointEnableDisable(kNetworkCommissioningEndpointSecondary, false);
267277

examples/all-clusters-app/cc13x2x7_26x2x7/main/include/AppTask.h

+8
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030

3131
#include <ti/drivers/apps/Button.h>
3232

33+
#ifdef CC13XX_26XX_FACTORY_DATA
34+
#include <platform/cc13xx_26xx/FactoryDataProvider.h>
35+
#endif
36+
3337
class AppTask
3438
{
3539
public:
@@ -62,6 +66,10 @@ class AppTask
6266
bool mFunctionTimerActive;
6367

6468
static AppTask sAppTask;
69+
70+
#ifdef CC13XX_26XX_FACTORY_DATA
71+
chip::DeviceLayer::FactoryDataProvider mFactoryDataProvider;
72+
#endif
6573
};
6674

6775
inline AppTask & GetAppTask(void)

examples/all-clusters-app/cc13x4_26x4/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ ti_simplelink_executable("all-clusters-app") {
112112
deps += [ "${chip_root}/third_party/openthread/repo:libopenthread-mtd" ]
113113
}
114114

115+
if (custom_factory_data) {
116+
defines = [ "CC13XX_26XX_FACTORY_DATA" ]
117+
}
118+
115119
include_dirs = [
116120
"${project_dir}",
117121
"${project_dir}/main",

examples/all-clusters-app/cc13x4_26x4/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,5 @@ matter_device_vid = "0xFFF1"
5050
matter_device_pid = "0x8006"
5151
matter_software_ver = "0x0001"
5252
matter_software_ver_str = "1.0.1+1"
53+
54+
custom_factory_data = true

examples/all-clusters-app/cc13x4_26x4/main/AppTask.cpp

+13-7
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,19 @@ int AppTask::Init()
246246
;
247247
}
248248

249+
// Initialize device attestation config
250+
#ifdef CC13X4_26X4_ATTESTATION_CREDENTIALS
251+
#ifdef CC13XX_26XX_FACTORY_DATA
252+
SetDeviceInstanceInfoProvider(&mFactoryDataProvider);
253+
SetDeviceAttestationCredentialsProvider(&mFactoryDataProvider);
254+
SetCommissionableDataProvider(&mFactoryDataProvider);
255+
#else
256+
SetDeviceAttestationCredentialsProvider(CC13X4_26X4::GetCC13X4_26X4DacProvider());
257+
#endif
258+
#else
259+
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
260+
#endif
261+
249262
// Init ZCL Data Model and start server
250263
PLAT_LOG("Initialize Server");
251264
static chip::CommonCaseDeviceServerInitParams initParams;
@@ -259,13 +272,6 @@ int AppTask::Init()
259272

260273
ConfigurationMgr().LogDeviceConfig();
261274

262-
// Initialize device attestation config
263-
#ifdef CC13X4_26X4_ATTESTATION_CREDENTIALS
264-
SetDeviceAttestationCredentialsProvider(CC13X4_26X4::GetCC13X4_26X4DacProvider());
265-
#else
266-
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
267-
#endif
268-
269275
// We only have network commissioning on endpoint 0.
270276
emberAfEndpointEnableDisable(kNetworkCommissioningEndpointSecondary, false);
271277

examples/all-clusters-app/cc13x4_26x4/main/include/AppTask.h

+8
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030

3131
#include <ti/drivers/apps/Button.h>
3232

33+
#ifdef CC13XX_26XX_FACTORY_DATA
34+
#include <platform/cc13xx_26xx/FactoryDataProvider.h>
35+
#endif
36+
3337
class AppTask
3438
{
3539
public:
@@ -62,6 +66,10 @@ class AppTask
6266
bool mFunctionTimerActive;
6367

6468
static AppTask sAppTask;
69+
70+
#ifdef CC13XX_26XX_FACTORY_DATA
71+
chip::DeviceLayer::FactoryDataProvider mFactoryDataProvider;
72+
#endif
6573
};
6674

6775
inline AppTask & GetAppTask(void)

examples/lighting-app/cc13x2x7_26x2x7/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ ti_simplelink_executable("lighting_app") {
9191
deps += [ "${chip_root}/third_party/openthread/repo:libopenthread-mtd" ]
9292
}
9393

94+
if (custom_factory_data) {
95+
defines = [ "CC13XX_26XX_FACTORY_DATA" ]
96+
}
97+
9498
include_dirs = [
9599
"${project_dir}",
96100
"${chip_root}/examples/providers/",

examples/lighting-app/cc13x2x7_26x2x7/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,5 @@ matter_device_vid = "0xFFF1"
4949
matter_device_pid = "0x8005"
5050
matter_software_ver = "0x0001"
5151
matter_software_ver_str = "1.0d1"
52+
53+
custom_factory_data = true

examples/lighting-app/cc13x2x7_26x2x7/src/AppTask.cpp

+13-7
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,19 @@ int AppTask::Init()
180180
;
181181
}
182182

183+
// Initialize device attestation config
184+
#ifdef CC13X2_26X2_ATTESTATION_CREDENTIALS
185+
#ifdef CC13XX_26XX_FACTORY_DATA
186+
SetDeviceInstanceInfoProvider(&mFactoryDataProvider);
187+
SetDeviceAttestationCredentialsProvider(&mFactoryDataProvider);
188+
SetCommissionableDataProvider(&mFactoryDataProvider);
189+
#else
190+
SetDeviceAttestationCredentialsProvider(CC13X2_26X2::GetCC13X2_26X2DacProvider());
191+
#endif
192+
#else
193+
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
194+
#endif
195+
183196
ret = ThreadStackMgr().InitThreadStack();
184197
if (ret != CHIP_NO_ERROR)
185198
{
@@ -226,13 +239,6 @@ int AppTask::Init()
226239

227240
Server::GetInstance().Init(initParams);
228241

229-
// Initialize device attestation config
230-
#ifdef CC13X2_26X2_ATTESTATION_CREDENTIALS
231-
SetDeviceAttestationCredentialsProvider(CC13X2_26X2::GetCC13X2_26X2DacProvider());
232-
#else
233-
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
234-
#endif
235-
236242
// Initialize LEDs
237243
PLAT_LOG("Initialize LEDs");
238244
LED_init();

examples/lighting-app/cc13x2x7_26x2x7/src/AppTask.h

+8
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030

3131
#include <ti/drivers/apps/Button.h>
3232

33+
#ifdef CC13XX_26XX_FACTORY_DATA
34+
#include <platform/cc13xx_26xx/FactoryDataProvider.h>
35+
#endif
36+
3337
// Application-defined error codes in the CHIP_ERROR space.
3438
#define APP_ERROR_EVENT_QUEUE_FAILED CHIP_APPLICATION_ERROR(0x01)
3539
#define APP_ERROR_CREATE_TASK_FAILED CHIP_APPLICATION_ERROR(0x02)
@@ -85,6 +89,10 @@ class AppTask
8589
bool mFunctionTimerActive;
8690

8791
static AppTask sAppTask;
92+
93+
#ifdef CC13XX_26XX_FACTORY_DATA
94+
chip::DeviceLayer::FactoryDataProvider mFactoryDataProvider;
95+
#endif
8896
};
8997

9098
inline AppTask & GetAppTask(void)

examples/lighting-app/cc13x4_26x4/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ ti_simplelink_executable("lighting_app") {
9999
deps += [ "${chip_root}/third_party/openthread/repo:libopenthread-mtd" ]
100100
}
101101

102+
if (custom_factory_data) {
103+
defines = [ "CC13XX_26XX_FACTORY_DATA" ]
104+
}
105+
102106
include_dirs = [
103107
"${project_dir}",
104108
"${chip_root}/examples/providers/",

examples/lighting-app/cc13x4_26x4/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,5 @@ matter_device_vid = "0xFFF1"
4848
matter_device_pid = "0x8005"
4949
matter_software_ver = "0x0001"
5050
matter_software_ver_str = "1.0.1+1"
51+
52+
custom_factory_data = true

examples/lighting-app/cc13x4_26x4/src/AppTask.cpp

+13-7
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,19 @@ int AppTask::Init()
214214
;
215215
}
216216

217+
// Initialize device attestation config
218+
#ifdef CC13X4_26X4_ATTESTATION_CREDENTIALS
219+
#ifdef CC13XX_26XX_FACTORY_DATA
220+
SetDeviceInstanceInfoProvider(&mFactoryDataProvider);
221+
SetDeviceAttestationCredentialsProvider(&mFactoryDataProvider);
222+
SetCommissionableDataProvider(&mFactoryDataProvider);
223+
#else
224+
SetDeviceAttestationCredentialsProvider(CC13X4_26X4::GetCC13X4_26X4DacProvider());
225+
#endif
226+
#else
227+
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
228+
#endif
229+
217230
// Init ZCL Data Model and start server
218231
PLAT_LOG("Initialize Server");
219232
static CommonCaseDeviceServerInitParams initParams;
@@ -225,13 +238,6 @@ int AppTask::Init()
225238

226239
Server::GetInstance().Init(initParams);
227240

228-
// Initialize device attestation config
229-
#ifdef CC13X4_26X4_ATTESTATION_CREDENTIALS
230-
SetDeviceAttestationCredentialsProvider(CC13X4_26X4::GetCC13X4_26X4DacProvider());
231-
#else
232-
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
233-
#endif
234-
235241
// Initialize LEDs
236242
PLAT_LOG("Initialize LEDs");
237243
LED_init();

0 commit comments

Comments
 (0)