2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-10-08 03:19:10 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2018-06-28 03:38:01 +00:00
|
|
|
#include <efi_loader.h>
|
2015-10-08 03:19:10 +00:00
|
|
|
#include <asm/e820.h>
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Install a default e820 table with 4 entries as follows:
|
|
|
|
*
|
|
|
|
* 0x000000-0x0a0000 Useable RAM
|
|
|
|
* 0x0a0000-0x100000 Reserved for ISA
|
|
|
|
* 0x100000-gd->ram_size Useable RAM
|
|
|
|
* CONFIG_PCIE_ECAM_BASE PCIe ECAM
|
|
|
|
*/
|
2018-04-12 05:02:10 +00:00
|
|
|
__weak unsigned int install_e820_map(unsigned int max_entries,
|
2018-04-12 05:02:11 +00:00
|
|
|
struct e820_entry *entries)
|
2015-10-08 03:19:10 +00:00
|
|
|
{
|
|
|
|
entries[0].addr = 0;
|
|
|
|
entries[0].size = ISA_START_ADDRESS;
|
|
|
|
entries[0].type = E820_RAM;
|
|
|
|
entries[1].addr = ISA_START_ADDRESS;
|
|
|
|
entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS;
|
|
|
|
entries[1].type = E820_RESERVED;
|
|
|
|
entries[2].addr = ISA_END_ADDRESS;
|
|
|
|
entries[2].size = gd->ram_size - ISA_END_ADDRESS;
|
|
|
|
entries[2].type = E820_RAM;
|
|
|
|
entries[3].addr = CONFIG_PCIE_ECAM_BASE;
|
|
|
|
entries[3].size = CONFIG_PCIE_ECAM_SIZE;
|
|
|
|
entries[3].type = E820_RESERVED;
|
|
|
|
|
|
|
|
return 4;
|
|
|
|
}
|
2018-06-28 03:38:01 +00:00
|
|
|
|
2018-08-30 21:43:43 +00:00
|
|
|
#if CONFIG_IS_ENABLED(EFI_LOADER)
|
2018-06-28 03:38:01 +00:00
|
|
|
void efi_add_known_memory(void)
|
|
|
|
{
|
|
|
|
struct e820_entry e820[E820MAX];
|
|
|
|
unsigned int i, num;
|
2020-05-17 10:29:19 +00:00
|
|
|
u64 start, ram_top;
|
2018-06-28 03:38:01 +00:00
|
|
|
int type;
|
|
|
|
|
|
|
|
num = install_e820_map(ARRAY_SIZE(e820), e820);
|
|
|
|
|
2019-09-03 17:43:46 +00:00
|
|
|
ram_top = (u64)gd->ram_top & ~EFI_PAGE_MASK;
|
|
|
|
if (!ram_top)
|
|
|
|
ram_top = 0x100000000ULL;
|
|
|
|
|
2018-06-28 03:38:01 +00:00
|
|
|
for (i = 0; i < num; ++i) {
|
|
|
|
start = e820[i].addr;
|
|
|
|
|
|
|
|
switch (e820[i].type) {
|
|
|
|
case E820_RAM:
|
|
|
|
type = EFI_CONVENTIONAL_MEMORY;
|
|
|
|
break;
|
|
|
|
case E820_RESERVED:
|
|
|
|
type = EFI_RESERVED_MEMORY_TYPE;
|
|
|
|
break;
|
|
|
|
case E820_ACPI:
|
|
|
|
type = EFI_ACPI_RECLAIM_MEMORY;
|
|
|
|
break;
|
|
|
|
case E820_NVS:
|
|
|
|
type = EFI_ACPI_MEMORY_NVS;
|
|
|
|
break;
|
|
|
|
case E820_UNUSABLE:
|
|
|
|
default:
|
|
|
|
type = EFI_UNUSABLE_MEMORY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-09-03 17:43:46 +00:00
|
|
|
if (type == EFI_CONVENTIONAL_MEMORY) {
|
|
|
|
efi_add_conventional_memory_map(start,
|
|
|
|
start + e820[i].size,
|
|
|
|
ram_top);
|
|
|
|
} else {
|
2020-05-17 10:29:19 +00:00
|
|
|
efi_add_memory_map(start, e820[i].size, type);
|
2019-09-03 17:43:46 +00:00
|
|
|
}
|
2018-06-28 03:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-30 21:43:43 +00:00
|
|
|
#endif /* CONFIG_IS_ENABLED(EFI_LOADER) */
|