From: Andrew F. Davis Date: Wed, 11 Jan 2017 16:19:52 +0000 (-0600) Subject: arm: omap-common: add secure ROM signature verify index for AM33xx X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4ac19bae2d1914b1612c720c71442f77aff331de;p=project%2Fbcm63xx%2Fu-boot.git arm: omap-common: add secure ROM signature verify index for AM33xx On AM33xx devices the secure ROM uses a different call index for signature verification, the function and arguments are the same. Signed-off-by: Andrew F. Davis --- diff --git a/arch/arm/mach-omap2/sec-common.c b/arch/arm/mach-omap2/sec-common.c index 246a2393da..c5a000ac3a 100644 --- a/arch/arm/mach-omap2/sec-common.c +++ b/arch/arm/mach-omap2/sec-common.c @@ -21,7 +21,11 @@ #include /* Index for signature verify ROM API */ +#ifdef CONFIG_AM33XX +#define API_HAL_KM_VERIFYCERTIFICATESIGNATURE_INDEX (0x0000000C) +#else #define API_HAL_KM_VERIFYCERTIFICATESIGNATURE_INDEX (0x0000000E) +#endif static uint32_t secure_rom_call_args[5] __aligned(ARCH_DMA_MINALIGN);