1 /*
2  * Copyright (C) 2021 Intel Corporation.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef EFI_MMAP_H
8 #define EFI_MMAP_H
9 #include <types.h>
10 
11 #define MAX_EFI_MMAP_ENTRIES	350U
12 
13 void init_efi_mmap_entries(struct efi_info *uefi_info);
14 
15 uint32_t get_efi_mmap_entries_count(void);
16 const struct efi_memory_desc *get_efi_mmap_entry(void);
17 
18 #endif
19