mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-25 20:07:17 +00:00
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: Adrian Alonso <aalonso@freescale.com>
This commit is contained in:
parent
6d846c726b
commit
f68c61a3da
1 changed files with 9 additions and 0 deletions
|
@ -85,6 +85,15 @@ enum hab_context {
|
|||
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*/
|
||||
typedef enum hab_status hab_rvt_report_event_t(enum hab_status, uint32_t,
|
||||
uint8_t* , size_t*);
|
||||
|
|
Loading…
Add table
Reference in a new issue