Tegra: trusty: pass profiling base to Trusted OS

* Previous boot loader passes Shared DRAM address
  to be used by Trusted OS to dump its boot timing records
* This patch adds support to pass the parameter
  to Trusted OS during cold boot

Change-Id: I9f95bb6de80b1bbd2d2d6ec42619f895d911b8ed
Signed-off-by: Akshay Sharan <asharan@nvidia.com>
This commit is contained in:
Varun Wadekar 2019-01-02 16:30:01 -08:00
parent 5ed1755ad4
commit db82b619a0
1 changed files with 3 additions and 0 deletions

View File

@ -293,6 +293,9 @@ void plat_trusty_set_boot_args(aapcs64_params_t *args)
if (args->arg4 != 0U) {
args->arg2 = args->arg4;
}
/* Profiler Carveout Base */
args->arg3 = args->arg5;
}
#endif