]> git.baikalelectronics.ru Git - uboot.git/commitdiff
efi_loader: carve out efi_get_memory_map_alloc()
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Thu, 5 Jan 2023 17:26:01 +0000 (18:26 +0100)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 6 Jan 2023 21:27:30 +0000 (22:27 +0100)
Carve out code from efidebug command used to read the memory map.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
cmd/efidebug.c
include/efi_loader.h
lib/efi_loader/efi_memory.c

index 569003ae2efcde79c5dd8f8f0909decc3376b29b..e6959ede930fffe22729c3c53fcce77adeb15718 100644 (file)
@@ -591,25 +591,15 @@ static void print_memory_attributes(u64 attributes)
 static int do_efi_show_memmap(struct cmd_tbl *cmdtp, int flag,
                              int argc, char *const argv[])
 {
-       struct efi_mem_desc *memmap = NULL, *map;
-       efi_uintn_t map_size = 0;
+       struct efi_mem_desc *memmap, *map;
+       efi_uintn_t map_size;
        const char *type;
        int i;
        efi_status_t ret;
 
-       ret = efi_get_memory_map(&map_size, memmap, NULL, NULL, NULL);
-       if (ret == EFI_BUFFER_TOO_SMALL) {
-               map_size += sizeof(struct efi_mem_desc); /* for my own */
-               ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, map_size,
-                                       (void *)&memmap);
-               if (ret != EFI_SUCCESS)
-                       return CMD_RET_FAILURE;
-               ret = efi_get_memory_map(&map_size, memmap, NULL, NULL, NULL);
-       }
-       if (ret != EFI_SUCCESS) {
-               efi_free_pool(memmap);
+       ret = efi_get_memory_map_alloc(&map_size, &memmap);
+       if (ret != EFI_SUCCESS)
                return CMD_RET_FAILURE;
-       }
 
        printf("Type             Start%.*s End%.*s Attributes\n",
               EFI_PHYS_ADDR_WIDTH - 5, spc, EFI_PHYS_ADDR_WIDTH - 3, spc);
index 699176872ddb690495fe83407771e0a5340d9854..f9e427f090597d6557d7a8029112d34d870f79d2 100644 (file)
@@ -736,6 +736,9 @@ efi_status_t efi_allocate_pool(enum efi_memory_type pool_type,
                               efi_uintn_t size, void **buffer);
 /* EFI pool memory free function. */
 efi_status_t efi_free_pool(void *buffer);
+/* Allocate and retrieve EFI memory map */
+efi_status_t efi_get_memory_map_alloc(efi_uintn_t *map_size,
+                                     struct efi_mem_desc **memory_map);
 /* Returns the EFI memory map */
 efi_status_t efi_get_memory_map(efi_uintn_t *memory_map_size,
                                struct efi_mem_desc *memory_map,
index 8d347f101f3c6f9eb9d8b27c447f92d4c86ad91c..32254d24337e4e46f448fd5bc8220581efdec423 100644 (file)
@@ -736,6 +736,40 @@ efi_status_t efi_get_memory_map(efi_uintn_t *memory_map_size,
        return EFI_SUCCESS;
 }
 
+/**
+ * efi_get_memory_map_alloc() - allocate map describing memory usage
+ *
+ * The caller is responsible for calling FreePool() if the call succeeds.
+ *
+ * @memory_map         buffer to which the memory map is written
+ * @map_size           size of the memory map
+ * Return:             status code
+ */
+efi_status_t efi_get_memory_map_alloc(efi_uintn_t *map_size,
+                                     struct efi_mem_desc **memory_map)
+{
+       efi_status_t ret;
+
+       *memory_map = NULL;
+       *map_size = 0;
+       ret = efi_get_memory_map(map_size, *memory_map, NULL, NULL, NULL);
+       if (ret == EFI_BUFFER_TOO_SMALL) {
+               *map_size += sizeof(struct efi_mem_desc); /* for the map */
+               ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, *map_size,
+                                       (void **)memory_map);
+               if (ret != EFI_SUCCESS)
+                       return ret;
+               ret = efi_get_memory_map(map_size, *memory_map,
+                                        NULL, NULL, NULL);
+               if (ret != EFI_SUCCESS) {
+                       efi_free_pool(*memory_map);
+                       *memory_map = NULL;
+               }
+       }
+
+       return ret;
+}
+
 /**
  * efi_add_conventional_memory_map() - add a RAM memory area to the map
  *