|
| 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 | + |
| 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 | + |
| 51 | + |
| 52 | + |
| 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_. |
0 commit comments