diff options
| author | Jens Wiklander <[email protected]> | 2018-09-25 16:40:20 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2018-10-07 11:07:25 -0400 |
| commit | 6663e074780912b01c09afd0c139f29825f7775c (patch) | |
| tree | 64579ee74bdf8bfb23ae2436b84058deda624789 /include | |
| parent | a6ab4245d1543e6e9fa7277389457e792a987b7f (diff) | |
avb_verify: support using OP-TEE TA AVB
With CONFIG_OPTEE_TA_AVB use the trusted application AVB provided by
OP-TEE to manage rollback indexes and device-lock status.
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Jens Wiklander <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/avb_verify.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/avb_verify.h b/include/avb_verify.h index eaa60f5393e..a532a2331ae 100644 --- a/include/avb_verify.h +++ b/include/avb_verify.h @@ -27,6 +27,10 @@ struct AvbOpsData { struct AvbOps ops; int mmc_dev; enum avb_boot_state boot_state; +#ifdef CONFIG_OPTEE_TA_AVB + struct udevice *tee; + u32 session; +#endif }; struct mmc_part { |
