1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
6 #include <efi_loader.h>
8 #include <asm/global_data.h>
10 DECLARE_GLOBAL_DATA_PTR;
13 * Install a default e820 table with 4 entries as follows:
15 * 0x000000-0x0a0000 Useable RAM
16 * 0x0a0000-0x100000 Reserved for ISA
17 * 0x100000-gd->ram_size Useable RAM
18 * CONFIG_PCIE_ECAM_BASE PCIe ECAM
20 __weak unsigned int install_e820_map(unsigned int max_entries,
21 struct e820_entry *entries)
24 entries[0].size = ISA_START_ADDRESS;
25 entries[0].type = E820_RAM;
26 entries[1].addr = ISA_START_ADDRESS;
27 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS;
28 entries[1].type = E820_RESERVED;
29 entries[2].addr = ISA_END_ADDRESS;
30 entries[2].size = gd->ram_size - ISA_END_ADDRESS;
31 entries[2].type = E820_RAM;
32 entries[3].addr = CONFIG_PCIE_ECAM_BASE;
33 entries[3].size = CONFIG_PCIE_ECAM_SIZE;
34 entries[3].type = E820_RESERVED;
39 #if CONFIG_IS_ENABLED(EFI_LOADER)
40 void efi_add_known_memory(void)
42 struct e820_entry e820[E820MAX];
47 num = install_e820_map(ARRAY_SIZE(e820), e820);
49 ram_top = (u64)gd->ram_top & ~EFI_PAGE_MASK;
51 ram_top = 0x100000000ULL;
53 for (i = 0; i < num; ++i) {
56 switch (e820[i].type) {
58 type = EFI_CONVENTIONAL_MEMORY;
61 type = EFI_RESERVED_MEMORY_TYPE;
64 type = EFI_ACPI_RECLAIM_MEMORY;
67 type = EFI_ACPI_MEMORY_NVS;
71 type = EFI_UNUSABLE_MEMORY;
75 if (type == EFI_CONVENTIONAL_MEMORY) {
76 efi_add_conventional_memory_map(start,
80 efi_add_memory_map(start, e820[i].size, type);
84 #endif /* CONFIG_IS_ENABLED(EFI_LOADER) */