blob: 9b9fb7882c206c46e164d5d772cebda4b16dc540 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Bjorn Helgaas30919b02010-12-16 10:38:51 -07002#include <linux/ioport.h>
Ingo Molnar66441bd2017-01-27 10:27:10 +01003#include <asm/e820/api.h>
Bjorn Helgaas30919b02010-12-16 10:38:51 -07004
Bjorn Helgaas4dc22872010-12-16 10:38:56 -07005static void resource_clip(struct resource *res, resource_size_t start,
6 resource_size_t end)
7{
8 resource_size_t low = 0, high = 0;
9
10 if (res->end < start || res->start > end)
11 return; /* no conflict */
12
13 if (res->start < start)
14 low = start - res->start;
15
16 if (res->end > end)
17 high = res->end - end;
18
19 /* Keep the area above or below the conflict, whichever is larger */
20 if (low > high)
21 res->end = start - 1;
22 else
23 res->start = end + 1;
24}
25
26static void remove_e820_regions(struct resource *avail)
27{
Hans de Goede3eb616b2022-02-09 17:13:42 +010028 int i;
Ingo Molnar8ec67d92017-01-27 12:54:38 +010029 struct e820_entry *entry;
Bjorn Helgaas4dc22872010-12-16 10:38:56 -070030
Ingo Molnarbf495572017-01-27 14:06:21 +010031 for (i = 0; i < e820_table->nr_entries; i++) {
32 entry = &e820_table->entries[i];
Bjorn Helgaas4dc22872010-12-16 10:38:56 -070033
34 resource_clip(avail, entry->addr,
35 entry->addr + entry->size - 1);
36 }
37}
38
Bjorn Helgaas30919b02010-12-16 10:38:51 -070039void arch_remove_reservations(struct resource *avail)
40{
Christoph Schulzcbace462014-07-16 10:00:57 +020041 /*
42 * Trim out BIOS area (high 2MB) and E820 regions. We do not remove
43 * the low 1MB unconditionally, as this area is needed for some ISA
44 * cards requiring a memory range, e.g. the i82365 PCMCIA controller.
45 */
Bjorn Helgaas30919b02010-12-16 10:38:51 -070046 if (avail->flags & IORESOURCE_MEM) {
Bjorn Helgaasa2c606d2010-12-16 10:39:02 -070047 resource_clip(avail, BIOS_ROM_BASE, BIOS_ROM_END);
Bjorn Helgaas4dc22872010-12-16 10:38:56 -070048
49 remove_e820_regions(avail);
Bjorn Helgaas30919b02010-12-16 10:38:51 -070050 }
51}