Skip to content

Commit 7667870

Browse files
[nrf fromlist] soc: ironside: Add UUID to boot report
- The UUID is the device unique identifier read from the OTP and made available in boot report to avoid the repetitive slow reads from OTP. Upstream PR #: 96793 Signed-off-by: Aymen LAOUINI <[email protected]>
1 parent d792280 commit 7667870

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

soc/nordic/ironside/include/nrf_ironside/boot_report.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@
116116
#define IRONSIDE_BOOT_REPORT_LOCAL_DOMAIN_CONTEXT_SIZE (16UL)
117117
/** Length of the random data buffer in bytes. */
118118
#define IRONSIDE_BOOT_REPORT_RANDOM_DATA_SIZE (32UL)
119+
/** Length of the uuid buffer in bytes. */
120+
#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL)
119121

120122
/** @brief Initialization/boot status description contained in the boot report. */
121123
struct ironside_boot_report_init_status {
@@ -207,8 +209,10 @@ struct ironside_boot_report {
207209
struct ironside_boot_report_init_context init_context;
208210
/** CSPRNG data */
209211
uint8_t random_data[IRONSIDE_BOOT_REPORT_RANDOM_DATA_SIZE];
212+
/** Device Info data : 128-bit Universally Unique IDentifier (UUID) */
213+
uint8_t device_info_uuid[IRONSIDE_BOOT_REPORT_UUID_SIZE];
210214
/** Reserved for Future Use */
211-
uint32_t rfu2[64];
215+
uint32_t rfu2[60];
212216
};
213217

214218
/**

0 commit comments

Comments
 (0)