mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +00:00
Merge "Tegra: Extend NS address check error output" into integration
This commit is contained in:
commit
8b95f81ce6
1 changed files with 2 additions and 2 deletions
|
@ -470,7 +470,7 @@ int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes)
|
|||
if ((base < TEGRA_DRAM_BASE) || (base >= TEGRA_DRAM_END) ||
|
||||
(end > TEGRA_DRAM_END)) {
|
||||
|
||||
ERROR("NS address is out-of-bounds!\n");
|
||||
ERROR("NS address 0x%llx is out-of-bounds!\n", base);
|
||||
ret = -EFAULT;
|
||||
}
|
||||
|
||||
|
@ -479,7 +479,7 @@ int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes)
|
|||
* to check if the NS DRAM range overlaps the TZDRAM aperture.
|
||||
*/
|
||||
if ((base < (uint64_t)TZDRAM_END) && (end > tegra_bl31_phys_base)) {
|
||||
ERROR("NS address overlaps TZDRAM!\n");
|
||||
ERROR("NS address 0x%llx overlaps TZDRAM!\n", base);
|
||||
ret = -ENOTSUP;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue