From 6ea19861a465096ae7c197bbdb379d202750e825 Mon Sep 17 00:00:00 2001 From: Jan Remmet Date: Wed, 14 Dec 2016 09:00:04 +0100 Subject: i.MX habv4: add RVT address for i.MX6UL The RVT table contains the pointers to the HAB API functions and is located at 0x00000100. Signed-off-by: Jan Remmet Signed-off-by: Sascha Hauer --- drivers/hab/habv4.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'drivers/hab') diff --git a/drivers/hab/habv4.c b/drivers/hab/habv4.c index 91dbb7afa3..ae43bdf0e3 100644 --- a/drivers/hab/habv4.c +++ b/drivers/hab/habv4.c @@ -27,6 +27,7 @@ #define HABV4_RVT_IMX28 0xffff8af8 #define HABV4_RVT_IMX6_OLD 0x00000094 #define HABV4_RVT_IMX6_NEW 0x00000098 +#define HABV4_RVT_IMX6UL 0x00000100 enum hab_tag { HAB_TAG_IVT = 0xd1, /* Image Vector Table */ @@ -227,6 +228,10 @@ int imx6_hab_get_status(void) if (rvt->header.tag == HAB_TAG_RVT) return habv4_get_status(rvt); + rvt = (void *)HABV4_RVT_IMX6UL; + if (rvt->header.tag == HAB_TAG_RVT) + return habv4_get_status(rvt); + pr_err("ERROR - RVT not found!\n"); return -EINVAL; @@ -237,4 +242,4 @@ int imx28_hab_get_status(void) const struct habv4_rvt *rvt = (void *)HABV4_RVT_IMX28; return habv4_get_status(rvt); -} \ No newline at end of file +} -- cgit v1.2.3