Skip to content
Snippets Groups Projects
Commit f68c61a3 authored by Adrian Alonso's avatar Adrian Alonso Committed by Stefano Babic
Browse files

imx: hab: add secure boot fuse details


Add secure boot fuse helper struct to abstract the way
to find out secure boot settings per SoC iMX family

Signed-off-by: default avatarAdrian Alonso <aalonso@freescale.com>
parent 6d846c72
No related branches found
No related tags found
No related merge requests found
...@@ -85,6 +85,15 @@ enum hab_context { ...@@ -85,6 +85,15 @@ enum hab_context {
HAB_CTX_MAX HAB_CTX_MAX
}; };
struct imx_sec_config_fuse_t {
int bank;
int word;
};
#if defined(CONFIG_SECURE_BOOT)
extern struct imx_sec_config_fuse_t const imx_sec_config_fuse;
#endif
/*Function prototype description*/ /*Function prototype description*/
typedef enum hab_status hab_rvt_report_event_t(enum hab_status, uint32_t, typedef enum hab_status hab_rvt_report_event_t(enum hab_status, uint32_t,
uint8_t* , size_t*); uint8_t* , size_t*);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment