Skip to content

Commit 5a59e30

Browse files
soc: ironside: Add UUID info to boot report
- UUID is added to the boot report to make it available to application core. Signed-off-by: Aymen Laouini <[email protected]>
1 parent 2c2453c commit 5a59e30

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
@@ -15,6 +15,8 @@
1515
#define IRONSIDE_BOOT_REPORT_LOCAL_DOMAIN_CONTEXT_SIZE (16UL)
1616
/** Length of the random data buffer in bytes. */
1717
#define IRONSIDE_BOOT_REPORT_RANDOM_DATA_SIZE (32UL)
18+
/** Length of the uuid data buffer in bytes. */
19+
#define SECDOM_BOOT_REPORT_UUID_SIZE (16UL)
1820

1921
/** @brief IronSide version structure. */
2022
struct ironside_version {
@@ -59,8 +61,10 @@ struct ironside_boot_report {
5961
uint8_t local_domain_context[IRONSIDE_BOOT_REPORT_LOCAL_DOMAIN_CONTEXT_SIZE];
6062
/** CSPRNG data */
6163
uint8_t random_data[IRONSIDE_BOOT_REPORT_RANDOM_DATA_SIZE];
64+
/** Device Info data : 128-bit Universally Unique IDentifier (UUID) */
65+
uint8_t device_info_uuid[SECDOM_BOOT_REPORT_UUID_SIZE];
6266
/** Reserved for Future Use */
63-
uint32_t rfu[64];
67+
uint32_t rfu[60];
6468
};
6569

6670
/**

0 commit comments

Comments
 (0)