blob: ebfe5956442a9320c399335e4968e384d5144171 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Rinibcb3c8d2016-05-06 10:40:22 -04002/*
Bin Mengef4c9e72019-08-29 02:53:06 -07003 * QEMU x86 specific E820 table generation
4 *
Tom Rinibcb3c8d2016-05-06 10:40:22 -04005 * (C) Copyright 2015 Miao Yan <yanmiaobest@gmail.com>
Bin Mengef4c9e72019-08-29 02:53:06 -07006 * (C) Copyright 2019 Bin Meng <bmeng.cn@gmail.com>
Tom Rinibcb3c8d2016-05-06 10:40:22 -04007 */
8
Tom Riniabb9a042024-05-18 20:20:43 -06009#include <common.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060010#include <env_internal.h>
Simon Glass9bc15642020-02-03 07:36:16 -070011#include <malloc.h>
Tom Rinibcb3c8d2016-05-06 10:40:22 -040012#include <asm/e820.h>
Bin Mengef4c9e72019-08-29 02:53:06 -070013#include <asm/arch/qemu.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Simon Glassde1669f2023-07-30 21:02:04 -060015#include <linux/sizes.h>
Tom Rinibcb3c8d2016-05-06 10:40:22 -040016
Bin Mengd6da81d2017-01-18 03:32:51 -080017DECLARE_GLOBAL_DATA_PTR;
18
Bin Meng3838d712018-04-11 22:02:10 -070019unsigned int install_e820_map(unsigned int max_entries,
Bin Meng4b8fc742018-04-11 22:02:11 -070020 struct e820_entry *entries)
Tom Rinibcb3c8d2016-05-06 10:40:22 -040021{
Bin Mengef4c9e72019-08-29 02:53:06 -070022 u64 high_mem_size;
23 int n = 0;
Tom Rinibcb3c8d2016-05-06 10:40:22 -040024
Bin Mengef4c9e72019-08-29 02:53:06 -070025 entries[n].addr = 0;
26 entries[n].size = ISA_START_ADDRESS;
27 entries[n].type = E820_RAM;
28 n++;
29
30 entries[n].addr = ISA_START_ADDRESS;
31 entries[n].size = ISA_END_ADDRESS - ISA_START_ADDRESS;
32 entries[n].type = E820_RESERVED;
33 n++;
Tom Rinibcb3c8d2016-05-06 10:40:22 -040034
35 /*
36 * since we use memalign(malloc) to allocate high memory for
37 * storing ACPI tables, we need to reserve them in e820 tables,
38 * otherwise kernel will reclaim them and data will be corrupted
39 */
Bin Mengef4c9e72019-08-29 02:53:06 -070040 entries[n].addr = ISA_END_ADDRESS;
41 entries[n].size = gd->relocaddr - TOTAL_MALLOC_LEN - ISA_END_ADDRESS;
42 entries[n].type = E820_RAM;
43 n++;
Tom Rinibcb3c8d2016-05-06 10:40:22 -040044
45 /* for simplicity, reserve entire malloc space */
Bin Mengef4c9e72019-08-29 02:53:06 -070046 entries[n].addr = gd->relocaddr - TOTAL_MALLOC_LEN;
47 entries[n].size = TOTAL_MALLOC_LEN;
48 entries[n].type = E820_RESERVED;
49 n++;
Tom Rinibcb3c8d2016-05-06 10:40:22 -040050
Bin Mengef4c9e72019-08-29 02:53:06 -070051 entries[n].addr = gd->relocaddr;
52 entries[n].size = qemu_get_low_memory_size() - gd->relocaddr;
53 entries[n].type = E820_RESERVED;
54 n++;
Tom Rinibcb3c8d2016-05-06 10:40:22 -040055
Bin Mengef4c9e72019-08-29 02:53:06 -070056 entries[n].addr = CONFIG_PCIE_ECAM_BASE;
57 entries[n].size = CONFIG_PCIE_ECAM_SIZE;
58 entries[n].type = E820_RESERVED;
59 n++;
60
61 high_mem_size = qemu_get_high_memory_size();
62 if (high_mem_size) {
63 entries[n].addr = SZ_4G;
64 entries[n].size = high_mem_size;
65 entries[n].type = E820_RAM;
66 n++;
67 }
Tom Rinibcb3c8d2016-05-06 10:40:22 -040068
Bin Mengef4c9e72019-08-29 02:53:06 -070069 return n;
Tom Rinibcb3c8d2016-05-06 10:40:22 -040070}