diff options
| author | Sumit Garg <[email protected]> | 2016-06-14 13:52:37 -0400 |
|---|---|---|
| committer | York Sun <[email protected]> | 2016-07-26 09:01:21 -0700 |
| commit | 7f0a0e4c58e9099016eda6f1f24507c2e6173c8a (patch) | |
| tree | a02702fbe086467c946d1c34bd1cd5c32db5aa48 | |
| parent | 9729dc9565c9c1812efbb630e1db4d54f580363c (diff) | |
DM: crypto/fsl: Enable rsa DM driver usage before relocation
Enable rsa signature verification in SPL framework before relocation for
verification of main u-boot.
Reviewed-by: Aneesh Bansal <[email protected]>
Signed-off-by: Sumit Garg <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: York Sun <[email protected]>
| -rw-r--r-- | drivers/crypto/fsl/fsl_rsa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/fsl/fsl_rsa.c b/drivers/crypto/fsl/fsl_rsa.c index cf1c4c1d458..5471504b6e9 100644 --- a/drivers/crypto/fsl/fsl_rsa.c +++ b/drivers/crypto/fsl/fsl_rsa.c @@ -53,6 +53,7 @@ U_BOOT_DRIVER(fsl_rsa_mod_exp) = { .name = "fsl_rsa_mod_exp", .id = UCLASS_MOD_EXP, .ops = &fsl_mod_exp_ops, + .flags = DM_FLAG_PRE_RELOC, }; U_BOOT_DEVICE(fsl_rsa) = { |
