diff options
author | Andrew F. Davis <afd@ti.com> | 2020-01-02 22:19:40 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2020-01-13 19:02:43 +0100 |
commit | db711893eac81442fb5cde3801e183d3abfe5693 (patch) | |
tree | c15db5a172f95dd994da45b1d7cc94f10ad41135 /arch/arm/mach-omap2/omap-secure.c | |
parent | ARM: OMAP2+: use separate IOMMU pdata to fix DRA7 IPU1 boot (diff) | |
download | linux-db711893eac81442fb5cde3801e183d3abfe5693.tar.xz linux-db711893eac81442fb5cde3801e183d3abfe5693.zip |
ARM: OMAP2+: Add omap_secure_init callback hook for secure initialization
This can be used for detecting secure features or making early device
init sequence changes based on device security type.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap-secure.c')
-rw-r--r-- | arch/arm/mach-omap2/omap-secure.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap-secure.c b/arch/arm/mach-omap2/omap-secure.c index 24298e47b9f1..e936732cdc4f 100644 --- a/arch/arm/mach-omap2/omap-secure.c +++ b/arch/arm/mach-omap2/omap-secure.c @@ -163,3 +163,7 @@ u32 rx51_secure_rng_call(u32 ptr, u32 count, u32 flag) NO_FLAG, 3, ptr, count, flag, 0); } + +void __init omap_secure_init(void) +{ +} |