Lines Matching refs:size
58 phys_initrd_size = tag->u.initrd.size;
67 phys_initrd_size = tag->u.initrd.size;
150 phys_addr_t __init arm_memblock_steal(phys_addr_t size, phys_addr_t align)
156 phys = memblock_phys_alloc(size, align);
159 &size, (void *)_RET_IP_);
161 memblock_free(phys, size);
162 memblock_remove(phys, size);
171 unsigned long size;
185 size = phys_initrd_size + (phys_initrd_start - start);
186 size = round_up(size, PAGE_SIZE);
188 if (!memblock_is_region_memory(start, size)) {
190 (u64)start, size);
194 if (memblock_is_region_reserved(start, size)) {
196 (u64)start, size);
200 memblock_reserve(start, size);
211 u32 size, ctr;
215 size = 1 << ((ctr & 0xf) + 2);
216 if (cpuid != 0 && icache_size != size)
217 pr_info("CPU%u: detected I-Cache line size mismatch, workaround enabled\n",
219 if (icache_size > size)
220 icache_size = size;