Lines Matching defs:base
121 /* User specifies base address explicitly. */
133 pr_warn("cannot reserve crashkernel: base address is not 2MB aligned\n");
305 usablemem->base = dt_mem_next_cell(dt_root_addr_cells, ®);
320 memblock_cap_memory_range(reg.base, reg.size);
334 * Select a suitable value for the base of physical memory.
379 u64 base = phys_initrd_start & PAGE_MASK;
380 u64 size = PAGE_ALIGN(phys_initrd_start + phys_initrd_size) - base;
390 if (WARN(base < memblock_start_of_DRAM() ||
391 base + size > memblock_start_of_DRAM() +
396 memblock_remove(base, size); /* clear MEMBLOCK_ flags */
397 memblock_add(base, size);
398 memblock_reserve(base, size);