Skip to content
Snippets Groups Projects
Commit 4ac19bae authored by Andrew F. Davis's avatar Andrew F. Davis Committed by Tom Rini
Browse files

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: default avatarAndrew F. Davis <afd@ti.com>
parent 2170652d
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,11 @@ ...@@ -21,7 +21,11 @@
#include <spl.h> #include <spl.h>
/* Index for signature verify ROM API */ /* Index for signature verify ROM API */
#ifdef CONFIG_AM33XX
#define API_HAL_KM_VERIFYCERTIFICATESIGNATURE_INDEX (0x0000000C)
#else
#define API_HAL_KM_VERIFYCERTIFICATESIGNATURE_INDEX (0x0000000E) #define API_HAL_KM_VERIFYCERTIFICATESIGNATURE_INDEX (0x0000000E)
#endif
static uint32_t secure_rom_call_args[5] __aligned(ARCH_DMA_MINALIGN); static uint32_t secure_rom_call_args[5] __aligned(ARCH_DMA_MINALIGN);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment