diff options
Diffstat (limited to 'include/configs/mx7_common.h')
-rw-r--r-- | include/configs/mx7_common.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/configs/mx7_common.h b/include/configs/mx7_common.h index f3167c51d4..4f822ef9a0 100644 --- a/include/configs/mx7_common.h +++ b/include/configs/mx7_common.h @@ -54,4 +54,15 @@ #endif #endif +/* + * If we have defined the OPTEE ram size and not OPTEE it means that we were + * launched by OPTEE, because of that we shall skip all the low level + * initialization since it was already done by ATF or OPTEE + */ +#if (CONFIG_OPTEE_TZDRAM_SIZE != 0) +#ifndef CONFIG_OPTEE +#define CONFIG_SKIP_LOWLEVEL_INIT +#endif +#endif + #endif |