Lines Matching defs:base
134 * It is very important that we run either from TZDRAM or TZSRAM base.
148 * The previous bootloader passes the base address of the shared memory
327 int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes)
329 uint64_t end = base + size_in_bytes - U(1);
334 if ((base == 0U) || (size_in_bytes == 0U)) {
336 base, size_in_bytes);
343 if ((base < TEGRA_DRAM_BASE) || (base >= TEGRA_DRAM_END) ||
346 ERROR("NS address 0x%" PRIx64 " is out-of-bounds!\n", base);
354 if ((base < (uint64_t)TZDRAM_END) && (end > tegra_bl31_phys_base)) {
355 ERROR("NS address 0x%" PRIx64 " overlaps TZDRAM!\n", base);