verified-boot: Minimal support for booting U-Boot proper from SPLThis allows a board to configure verified boot within the SPL usinga FIT or FIT with external data. It also allows the SPL to perfo
verified-boot: Minimal support for booting U-Boot proper from SPLThis allows a board to configure verified boot within the SPL usinga FIT or FIT with external data. It also allows the SPL to performsignature verification without needing relocation.The board configuration will need to add the following feature defines:CONFIG_SPL_CRYPTO_SUPPORTCONFIG_SPL_HASH_SUPPORTCONFIG_SPL_SHA256In this example, SHA256 is the only selected hashing algorithm.And the following booleans:CONFIG_SPL=yCONFIG_SPL_DM=yCONFIG_SPL_LOAD_FIT=yCONFIG_SPL_FIT=yCONFIG_SPL_OF_CONTROL=yCONFIG_SPL_OF_LIBFDT=yCONFIG_SPL_FIT_SIGNATURE=ySigned-off-by: Teddy Reed <teddy.reed@gmail.com>Acked-by: Simon Glass <sjg@chromium.org>Acked-by: Andreas Dannenberg <dannenberg@ti.com>Acked-by: Sumit Garg <sumit.garg@nxp.com>
show more ...
rsa : Compile Modular Exponentiation files based on CONFIG_RSA_SOFTWARE_EXPRemove dependency of rsa_mod_exp from CONFIG_FIT_SIGNATURE.As rsa modular exponentiation is an independent moduleand can
rsa : Compile Modular Exponentiation files based on CONFIG_RSA_SOFTWARE_EXPRemove dependency of rsa_mod_exp from CONFIG_FIT_SIGNATURE.As rsa modular exponentiation is an independent moduleand can be invoked independently.Signed-off-by: Gaurav Rana <gaurav.rana@freescale.com>Acked-by: Simon Glass <sjg@chromium.org>Reviewed-by: York Sun <yorksun@freescale.com>
DM: crypto/rsa_mod_exp: Add rsa Modular Exponentiation DM driverAdd a new rsa uclass for performing modular exponentiation and implementthe software driver basing on this uclass.Signed-off-by: R
DM: crypto/rsa_mod_exp: Add rsa Modular Exponentiation DM driverAdd a new rsa uclass for performing modular exponentiation and implementthe software driver basing on this uclass.Signed-off-by: Ruchika Gupta <ruchika.gupta@freescale.com>CC: Simon Glass <sjg@chromium.org>Acked-by: Simon Glass <sjg@chromium.org>