1 // SPDX-License-Identifier: GPL-2.0+
3 * EFI application memory management
5 * Copyright (c) 2016 Alexander Graf
9 #include <efi_loader.h>
14 #include <linux/list_sort.h>
16 DECLARE_GLOBAL_DATA_PTR;
18 efi_uintn_t efi_memory_map_key;
21 struct list_head link;
22 struct efi_mem_desc desc;
25 #define EFI_CARVE_NO_OVERLAP -1
26 #define EFI_CARVE_LOOP_AGAIN -2
27 #define EFI_CARVE_OVERLAPS_NONRAM -3
29 /* This list contains all memory map items */
32 #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
33 void *efi_bounce_buffer;
37 * U-Boot services each EFI AllocatePool request as a separate
38 * (multiple) page allocation. We have to track the number of pages
39 * to be able to free the correct amount later.
40 * EFI requires 8 byte alignment for pool allocations, so we can
41 * prepend each allocation with an 64 bit header tracking the
42 * allocation size, and hand out the remainder to the caller.
44 struct efi_pool_allocation {
46 char data[] __aligned(ARCH_DMA_MINALIGN);
50 * Sorts the memory list from highest address to lowest address
52 * When allocating memory we should always start from the highest
53 * address chunk, so sort the memory list such that the first list
54 * iterator gets the highest address and goes lower from there.
56 static int efi_mem_cmp(void *priv, struct list_head *a, struct list_head *b)
58 struct efi_mem_list *mema = list_entry(a, struct efi_mem_list, link);
59 struct efi_mem_list *memb = list_entry(b, struct efi_mem_list, link);
61 if (mema->desc.physical_start == memb->desc.physical_start)
63 else if (mema->desc.physical_start < memb->desc.physical_start)
69 static void efi_mem_sort(void)
71 list_sort(NULL, &efi_mem, efi_mem_cmp);
74 /** efi_mem_carve_out - unmap memory region
77 * @carve_desc: memory region to unmap
78 * @overlap_only_ram: the carved out region may only overlap RAM
79 * Return Value: the number of overlapping pages which have been
80 * removed from the map,
81 * EFI_CARVE_NO_OVERLAP, if the regions don't overlap,
82 * EFI_CARVE_OVERLAPS_NONRAM, if the carve and map overlap,
83 * and the map contains anything but free ram
84 * (only when overlap_only_ram is true),
85 * EFI_CARVE_LOOP_AGAIN, if the mapping list should be
86 * traversed again, as it has been altered.
88 * Unmaps all memory occupied by the carve_desc region from the list entry
91 * In case of EFI_CARVE_OVERLAPS_NONRAM it is the callers responsibility
92 * to re-add the already carved out pages to the mapping.
94 static s64 efi_mem_carve_out(struct efi_mem_list *map,
95 struct efi_mem_desc *carve_desc,
96 bool overlap_only_ram)
98 struct efi_mem_list *newmap;
99 struct efi_mem_desc *map_desc = &map->desc;
100 uint64_t map_start = map_desc->physical_start;
101 uint64_t map_end = map_start + (map_desc->num_pages << EFI_PAGE_SHIFT);
102 uint64_t carve_start = carve_desc->physical_start;
103 uint64_t carve_end = carve_start +
104 (carve_desc->num_pages << EFI_PAGE_SHIFT);
106 /* check whether we're overlapping */
107 if ((carve_end <= map_start) || (carve_start >= map_end))
108 return EFI_CARVE_NO_OVERLAP;
110 /* We're overlapping with non-RAM, warn the caller if desired */
111 if (overlap_only_ram && (map_desc->type != EFI_CONVENTIONAL_MEMORY))
112 return EFI_CARVE_OVERLAPS_NONRAM;
114 /* Sanitize carve_start and carve_end to lie within our bounds */
115 carve_start = max(carve_start, map_start);
116 carve_end = min(carve_end, map_end);
118 /* Carving at the beginning of our map? Just move it! */
119 if (carve_start == map_start) {
120 if (map_end == carve_end) {
121 /* Full overlap, just remove map */
122 list_del(&map->link);
125 map->desc.physical_start = carve_end;
126 map->desc.num_pages = (map_end - carve_end)
130 return (carve_end - carve_start) >> EFI_PAGE_SHIFT;
134 * Overlapping maps, just split the list map at carve_start,
135 * it will get moved or removed in the next iteration.
137 * [ map_desc |__carve_start__| newmap ]
140 /* Create a new map from [ carve_start ... map_end ] */
141 newmap = calloc(1, sizeof(*newmap));
142 newmap->desc = map->desc;
143 newmap->desc.physical_start = carve_start;
144 newmap->desc.num_pages = (map_end - carve_start) >> EFI_PAGE_SHIFT;
145 /* Insert before current entry (descending address order) */
146 list_add_tail(&newmap->link, &map->link);
148 /* Shrink the map to [ map_start ... carve_start ] */
149 map_desc->num_pages = (carve_start - map_start) >> EFI_PAGE_SHIFT;
151 return EFI_CARVE_LOOP_AGAIN;
154 uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
155 bool overlap_only_ram)
157 struct list_head *lhandle;
158 struct efi_mem_list *newlist;
160 uint64_t carved_pages = 0;
162 debug("%s: 0x%" PRIx64 " 0x%" PRIx64 " %d %s\n", __func__,
163 start, pages, memory_type, overlap_only_ram ? "yes" : "no");
165 if (memory_type >= EFI_MAX_MEMORY_TYPE)
166 return EFI_INVALID_PARAMETER;
171 ++efi_memory_map_key;
172 newlist = calloc(1, sizeof(*newlist));
173 newlist->desc.type = memory_type;
174 newlist->desc.physical_start = start;
175 newlist->desc.virtual_start = start;
176 newlist->desc.num_pages = pages;
178 switch (memory_type) {
179 case EFI_RUNTIME_SERVICES_CODE:
180 case EFI_RUNTIME_SERVICES_DATA:
181 newlist->desc.attribute = EFI_MEMORY_WB | EFI_MEMORY_RUNTIME;
184 newlist->desc.attribute = EFI_MEMORY_RUNTIME;
187 newlist->desc.attribute = EFI_MEMORY_WB;
191 /* Add our new map */
194 list_for_each(lhandle, &efi_mem) {
195 struct efi_mem_list *lmem;
198 lmem = list_entry(lhandle, struct efi_mem_list, link);
199 r = efi_mem_carve_out(lmem, &newlist->desc,
202 case EFI_CARVE_OVERLAPS_NONRAM:
204 * The user requested to only have RAM overlaps,
205 * but we hit a non-RAM region. Error out.
208 case EFI_CARVE_NO_OVERLAP:
209 /* Just ignore this list entry */
211 case EFI_CARVE_LOOP_AGAIN:
213 * We split an entry, but need to loop through
214 * the list again to actually carve it.
219 /* We carved a number of pages */
226 /* The list changed, we need to start over */
230 } while (carve_again);
232 if (overlap_only_ram && (carved_pages != pages)) {
234 * The payload wanted to have RAM overlaps, but we overlapped
235 * with an unallocated region. Error out.
240 /* Add our new map */
241 list_add_tail(&newlist->link, &efi_mem);
243 /* And make sure memory is listed in descending order */
249 static uint64_t efi_find_free_memory(uint64_t len, uint64_t max_addr)
251 struct list_head *lhandle;
253 list_for_each(lhandle, &efi_mem) {
254 struct efi_mem_list *lmem = list_entry(lhandle,
255 struct efi_mem_list, link);
256 struct efi_mem_desc *desc = &lmem->desc;
257 uint64_t desc_len = desc->num_pages << EFI_PAGE_SHIFT;
258 uint64_t desc_end = desc->physical_start + desc_len;
259 uint64_t curmax = min(max_addr, desc_end);
260 uint64_t ret = curmax - len;
262 /* We only take memory from free RAM */
263 if (desc->type != EFI_CONVENTIONAL_MEMORY)
266 /* Out of bounds for max_addr */
267 if ((ret + len) > max_addr)
270 /* Out of bounds for upper map limit */
271 if ((ret + len) > desc_end)
274 /* Out of bounds for lower map limit */
275 if (ret < desc->physical_start)
278 /* Return the highest address in this map within bounds */
286 * Allocate memory pages.
288 * @type type of allocation to be performed
289 * @memory_type usage type of the allocated memory
290 * @pages number of pages to be allocated
291 * @memory allocated memory
292 * @return status code
294 efi_status_t efi_allocate_pages(int type, int memory_type,
295 efi_uintn_t pages, uint64_t *memory)
297 u64 len = pages << EFI_PAGE_SHIFT;
298 efi_status_t r = EFI_SUCCESS;
302 return EFI_INVALID_PARAMETER;
305 case EFI_ALLOCATE_ANY_PAGES:
307 addr = efi_find_free_memory(len, gd->start_addr_sp);
313 case EFI_ALLOCATE_MAX_ADDRESS:
315 addr = efi_find_free_memory(len, *memory);
321 case EFI_ALLOCATE_ADDRESS:
322 /* Exact address, reserve it. The addr is already in *memory. */
326 /* UEFI doesn't specify other allocation types */
327 r = EFI_INVALID_PARAMETER;
331 if (r == EFI_SUCCESS) {
334 /* Reserve that map in our memory maps */
335 ret = efi_add_memory_map(addr, pages, memory_type, true);
337 *memory = (uintptr_t)map_sysmem(addr, len);
339 /* Map would overlap, bail out */
340 r = EFI_OUT_OF_RESOURCES;
347 void *efi_alloc(uint64_t len, int memory_type)
350 uint64_t pages = (len + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
353 r = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, memory_type, pages,
355 if (r == EFI_SUCCESS)
356 return (void*)(uintptr_t)ret;
364 * @memory start of the memory area to be freed
365 * @pages number of pages to be freed
366 * @return status code
368 efi_status_t efi_free_pages(uint64_t memory, efi_uintn_t pages)
371 uint64_t addr = map_to_sysmem((void *)(uintptr_t)memory);
373 r = efi_add_memory_map(addr, pages, EFI_CONVENTIONAL_MEMORY, false);
374 /* Merging of adjacent free regions is missing */
379 return EFI_NOT_FOUND;
383 * Allocate memory from pool.
385 * @pool_type type of the pool from which memory is to be allocated
386 * @size number of bytes to be allocated
387 * @buffer allocated memory
388 * @return status code
390 efi_status_t efi_allocate_pool(int pool_type, efi_uintn_t size, void **buffer)
393 struct efi_pool_allocation *alloc;
394 u64 num_pages = (size + sizeof(struct efi_pool_allocation) +
395 EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
398 return EFI_INVALID_PARAMETER;
405 r = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, pool_type, num_pages,
408 if (r == EFI_SUCCESS) {
409 alloc->num_pages = num_pages;
410 *buffer = alloc->data;
417 * Free memory from pool.
419 * @buffer start of memory to be freed
420 * @return status code
422 efi_status_t efi_free_pool(void *buffer)
425 struct efi_pool_allocation *alloc;
428 return EFI_INVALID_PARAMETER;
430 alloc = container_of(buffer, struct efi_pool_allocation, data);
431 /* Sanity check, was the supplied address returned by allocate_pool */
432 assert(((uintptr_t)alloc & EFI_PAGE_MASK) == 0);
434 r = efi_free_pages((uintptr_t)alloc, alloc->num_pages);
440 * Get map describing memory usage.
442 * @memory_map_size on entry the size, in bytes, of the memory map buffer,
443 * on exit the size of the copied memory map
444 * @memory_map buffer to which the memory map is written
445 * @map_key key for the memory map
446 * @descriptor_size size of an individual memory descriptor
447 * @descriptor_version version number of the memory descriptor structure
448 * @return status code
450 efi_status_t efi_get_memory_map(efi_uintn_t *memory_map_size,
451 struct efi_mem_desc *memory_map,
452 efi_uintn_t *map_key,
453 efi_uintn_t *descriptor_size,
454 uint32_t *descriptor_version)
456 efi_uintn_t map_size = 0;
458 struct list_head *lhandle;
459 efi_uintn_t provided_map_size;
461 if (!memory_map_size)
462 return EFI_INVALID_PARAMETER;
464 provided_map_size = *memory_map_size;
466 list_for_each(lhandle, &efi_mem)
469 map_size = map_entries * sizeof(struct efi_mem_desc);
471 *memory_map_size = map_size;
473 if (provided_map_size < map_size)
474 return EFI_BUFFER_TOO_SMALL;
477 return EFI_INVALID_PARAMETER;
480 *descriptor_size = sizeof(struct efi_mem_desc);
482 if (descriptor_version)
483 *descriptor_version = EFI_MEMORY_DESCRIPTOR_VERSION;
485 /* Copy list into array */
486 /* Return the list in ascending order */
487 memory_map = &memory_map[map_entries - 1];
488 list_for_each(lhandle, &efi_mem) {
489 struct efi_mem_list *lmem;
491 lmem = list_entry(lhandle, struct efi_mem_list, link);
492 *memory_map = lmem->desc;
497 *map_key = efi_memory_map_key;
502 __weak void efi_add_known_memory(void)
507 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
508 u64 ram_start = gd->bd->bi_dram[i].start;
509 u64 ram_size = gd->bd->bi_dram[i].size;
510 u64 start = (ram_start + EFI_PAGE_MASK) & ~EFI_PAGE_MASK;
511 u64 pages = (ram_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
513 efi_add_memory_map(start, pages, EFI_CONVENTIONAL_MEMORY,
518 /* Add memory regions for U-Boot's memory and for the runtime services code */
519 static void add_u_boot_and_runtime(void)
521 unsigned long runtime_start, runtime_end, runtime_pages;
522 unsigned long uboot_start, uboot_pages;
523 unsigned long uboot_stack_size = 16 * 1024 * 1024;
526 uboot_start = (gd->start_addr_sp - uboot_stack_size) & ~EFI_PAGE_MASK;
527 uboot_pages = (gd->ram_top - uboot_start) >> EFI_PAGE_SHIFT;
528 efi_add_memory_map(uboot_start, uboot_pages, EFI_LOADER_DATA, false);
530 /* Add Runtime Services */
531 runtime_start = (ulong)&__efi_runtime_start & ~EFI_PAGE_MASK;
532 runtime_end = (ulong)&__efi_runtime_stop;
533 runtime_end = (runtime_end + EFI_PAGE_MASK) & ~EFI_PAGE_MASK;
534 runtime_pages = (runtime_end - runtime_start) >> EFI_PAGE_SHIFT;
535 efi_add_memory_map(runtime_start, runtime_pages,
536 EFI_RUNTIME_SERVICES_CODE, false);
539 int efi_memory_init(void)
541 efi_add_known_memory();
543 if (!IS_ENABLED(CONFIG_SANDBOX))
544 add_u_boot_and_runtime();
546 #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
547 /* Request a 32bit 64MB bounce buffer region */
548 uint64_t efi_bounce_buffer_addr = 0xffffffff;
550 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, EFI_LOADER_DATA,
551 (64 * 1024 * 1024) >> EFI_PAGE_SHIFT,
552 &efi_bounce_buffer_addr) != EFI_SUCCESS)
555 efi_bounce_buffer = (void*)(uintptr_t)efi_bounce_buffer_addr;