From 582547113e4c93344dc3c6ab1eb89da118f3623a Mon Sep 17 00:00:00 2001 From: Bryan O'Donoghue Date: Tue, 3 Jul 2018 15:11:33 +0100 Subject: [PATCH] imx7: hab_arch: Provide a hab_arch.h file In order to enable compile time differences in HAB interaction, we should split out the definition of the base address of the HAB API. Some version of the i.MX series have different offsets from the BootROM base for the HAB callback table. This patch defines the header into which we will define the i.MX7 specific offset. The offset of the i.MX7 function-callback table is simultaneously defined. Once done, we can latch a set of common function pointer locations from the offset given here and if necessary change the offset for different processors without any other code-change. For now all we support is i.MX7 so the only offset being defined is that for the i.MX7. Signed-off-by: Bryan O'Donoghue Reviewed-by: Ryan Harkin --- plat/imx/imx7/include/imx_hab_arch.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 plat/imx/imx7/include/imx_hab_arch.h diff --git a/plat/imx/imx7/include/imx_hab_arch.h b/plat/imx/imx7/include/imx_hab_arch.h new file mode 100644 index 000000000..338a02745 --- /dev/null +++ b/plat/imx/imx7/include/imx_hab_arch.h @@ -0,0 +1,12 @@ +/* + * Copyright (C) 2018, ARM Limited and Contributors. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ +#ifndef __IMX_HAB_ARCH_H__ +#define __IMX_HAB_ARCH_H__ + +/* Define the offset the High Assurance Boot callback table is at */ +#define HAB_CALLBACK_OFFSET 0x100 + +#endif /* __IMX_HAB_ARCH_H__ */ -- GitLab