Lines Matching defs:map
71 * Delete all memory reserve map entries. When booting via UEFI,
72 * kernel will use the UEFI memory map to find reserved regions.
147 static efi_status_t update_fdt_memmap(void *fdt, struct efi_boot_memmap *map)
157 fdt_val64 = cpu_to_fdt64((unsigned long)map->map);
163 fdt_val32 = cpu_to_fdt32(map->map_size);
169 fdt_val32 = cpu_to_fdt32(map->desc_size);
175 fdt_val32 = cpu_to_fdt32(map->desc_ver);
191 static efi_status_t exit_boot_func(struct efi_boot_memmap *map, void *priv)
195 p->boot_memmap = map;
198 * Update the memory map with virtual addresses. The function will also
202 efi_get_virtmap(map->map, map->map_size, map->desc_size,
205 return update_fdt_memmap(p->new_fdt_addr, map);
220 * tied to the creation of the FDT with the final memory map in it.
239 efi_err("Unable to retrieve UEFI memory map.\n");
300 /* Install the new virtual address map */
322 p = (void *)priv.boot_memmap->map + l;