Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 2 | /* |
Bin Meng | ef4c9e7 | 2019-08-29 02:53:06 -0700 | [diff] [blame] | 3 | * QEMU x86 specific E820 table generation |
| 4 | * |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 5 | * (C) Copyright 2015 Miao Yan <yanmiaobest@gmail.com> |
Bin Meng | ef4c9e7 | 2019-08-29 02:53:06 -0700 | [diff] [blame] | 6 | * (C) Copyright 2019 Bin Meng <bmeng.cn@gmail.com> |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 7 | */ |
| 8 | |
Simon Glass | 9d1f619 | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 9 | #include <env_internal.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 10 | #include <malloc.h> |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 11 | #include <asm/e820.h> |
Bin Meng | ef4c9e7 | 2019-08-29 02:53:06 -0700 | [diff] [blame] | 12 | #include <asm/arch/qemu.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Simon Glass | de1669f | 2023-07-30 21:02:04 -0600 | [diff] [blame] | 14 | #include <linux/sizes.h> |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 15 | |
Bin Meng | d6da81d | 2017-01-18 03:32:51 -0800 | [diff] [blame] | 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Bin Meng | 3838d71 | 2018-04-11 22:02:10 -0700 | [diff] [blame] | 18 | unsigned int install_e820_map(unsigned int max_entries, |
Bin Meng | 4b8fc74 | 2018-04-11 22:02:11 -0700 | [diff] [blame] | 19 | struct e820_entry *entries) |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 20 | { |
Bin Meng | ef4c9e7 | 2019-08-29 02:53:06 -0700 | [diff] [blame] | 21 | u64 high_mem_size; |
Simon Glass | 1eedab8 | 2025-03-15 14:25:54 +0000 | [diff] [blame^] | 22 | struct e820_ctx ctx; |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 23 | |
Simon Glass | 1eedab8 | 2025-03-15 14:25:54 +0000 | [diff] [blame^] | 24 | e820_init(&ctx, entries, max_entries); |
Bin Meng | ef4c9e7 | 2019-08-29 02:53:06 -0700 | [diff] [blame] | 25 | |
Simon Glass | 1eedab8 | 2025-03-15 14:25:54 +0000 | [diff] [blame^] | 26 | e820_next(&ctx, E820_RAM, ISA_START_ADDRESS); |
| 27 | e820_next(&ctx, E820_RESERVED, ISA_END_ADDRESS); |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * since we use memalign(malloc) to allocate high memory for |
| 31 | * storing ACPI tables, we need to reserve them in e820 tables, |
| 32 | * otherwise kernel will reclaim them and data will be corrupted |
| 33 | */ |
Simon Glass | 1eedab8 | 2025-03-15 14:25:54 +0000 | [diff] [blame^] | 34 | e820_to_addr(&ctx, E820_RAM, gd->relocaddr - TOTAL_MALLOC_LEN); |
| 35 | e820_next(&ctx, E820_RESERVED, TOTAL_MALLOC_LEN); |
| 36 | e820_to_addr(&ctx, E820_RAM, qemu_get_low_memory_size()); |
| 37 | e820_add(&ctx, E820_RESERVED, CONFIG_PCIE_ECAM_BASE, |
| 38 | CONFIG_PCIE_ECAM_SIZE); |
Bin Meng | ef4c9e7 | 2019-08-29 02:53:06 -0700 | [diff] [blame] | 39 | |
| 40 | high_mem_size = qemu_get_high_memory_size(); |
Simon Glass | 1eedab8 | 2025-03-15 14:25:54 +0000 | [diff] [blame^] | 41 | if (high_mem_size) |
| 42 | e820_add(&ctx, E820_RAM, SZ_4G, high_mem_size); |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 43 | |
Simon Glass | 1eedab8 | 2025-03-15 14:25:54 +0000 | [diff] [blame^] | 44 | return e820_finish(&ctx); |
Tom Rini | bcb3c8d | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 45 | } |