blob: 12fcff123805100deab3e14874c26e501ae7dea4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Meng59ec7192015-10-07 20:19:10 -07002/*
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Meng59ec7192015-10-07 20:19:10 -07004 */
5
6#include <common.h>
Bin Mengabe47ca2018-06-27 20:38:01 -07007#include <efi_loader.h>
Bin Meng59ec7192015-10-07 20:19:10 -07008#include <asm/e820.h>
Simon Glass401d1c42020-10-30 21:38:53 -06009#include <asm/global_data.h>
Bin Meng59ec7192015-10-07 20:19:10 -070010
11DECLARE_GLOBAL_DATA_PTR;
12
13/*
14 * Install a default e820 table with 4 entries as follows:
15 *
16 * 0x000000-0x0a0000 Useable RAM
17 * 0x0a0000-0x100000 Reserved for ISA
18 * 0x100000-gd->ram_size Useable RAM
19 * CONFIG_PCIE_ECAM_BASE PCIe ECAM
20 */
Bin Meng87af71c2018-04-11 22:02:10 -070021__weak unsigned int install_e820_map(unsigned int max_entries,
Bin Meng45519922018-04-11 22:02:11 -070022 struct e820_entry *entries)
Bin Meng59ec7192015-10-07 20:19:10 -070023{
24 entries[0].addr = 0;
25 entries[0].size = ISA_START_ADDRESS;
26 entries[0].type = E820_RAM;
27 entries[1].addr = ISA_START_ADDRESS;
28 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS;
29 entries[1].type = E820_RESERVED;
30 entries[2].addr = ISA_END_ADDRESS;
31 entries[2].size = gd->ram_size - ISA_END_ADDRESS;
32 entries[2].type = E820_RAM;
33 entries[3].addr = CONFIG_PCIE_ECAM_BASE;
34 entries[3].size = CONFIG_PCIE_ECAM_SIZE;
35 entries[3].type = E820_RESERVED;
36
37 return 4;
38}
Bin Mengabe47ca2018-06-27 20:38:01 -070039
Stephen Warren9b5e6392018-08-30 15:43:43 -060040#if CONFIG_IS_ENABLED(EFI_LOADER)
Bin Mengabe47ca2018-06-27 20:38:01 -070041void efi_add_known_memory(void)
42{
43 struct e820_entry e820[E820MAX];
44 unsigned int i, num;
Michael Walle714497e2020-05-17 12:29:19 +020045 u64 start, ram_top;
Bin Mengabe47ca2018-06-27 20:38:01 -070046 int type;
47
48 num = install_e820_map(ARRAY_SIZE(e820), e820);
49
Park, Aiden57935532019-09-03 17:43:46 +000050 ram_top = (u64)gd->ram_top & ~EFI_PAGE_MASK;
51 if (!ram_top)
52 ram_top = 0x100000000ULL;
53
Bin Mengabe47ca2018-06-27 20:38:01 -070054 for (i = 0; i < num; ++i) {
55 start = e820[i].addr;
Bin Mengabe47ca2018-06-27 20:38:01 -070056
57 switch (e820[i].type) {
58 case E820_RAM:
59 type = EFI_CONVENTIONAL_MEMORY;
60 break;
61 case E820_RESERVED:
62 type = EFI_RESERVED_MEMORY_TYPE;
63 break;
64 case E820_ACPI:
65 type = EFI_ACPI_RECLAIM_MEMORY;
66 break;
67 case E820_NVS:
68 type = EFI_ACPI_MEMORY_NVS;
69 break;
70 case E820_UNUSABLE:
71 default:
72 type = EFI_UNUSABLE_MEMORY;
73 break;
74 }
75
Park, Aiden57935532019-09-03 17:43:46 +000076 if (type == EFI_CONVENTIONAL_MEMORY) {
77 efi_add_conventional_memory_map(start,
78 start + e820[i].size,
79 ram_top);
80 } else {
Michael Walle714497e2020-05-17 12:29:19 +020081 efi_add_memory_map(start, e820[i].size, type);
Park, Aiden57935532019-09-03 17:43:46 +000082 }
Bin Mengabe47ca2018-06-27 20:38:01 -070083 }
84}
Stephen Warren9b5e6392018-08-30 15:43:43 -060085#endif /* CONFIG_IS_ENABLED(EFI_LOADER) */