Skip to content

Commit 4dc2287

Browse files
Bjorn Helgaasjbarnes993
authored andcommitted
x86: avoid E820 regions when allocating address space
When we allocate address space, e.g., to assign it to a PCI device, don't allocate anything mentioned in the BIOS E820 memory map. On recent machines (2008 and newer), we assign PCI resources from the windows described by the ACPI PCI host bridge _CRS. On many Dell machines, these windows overlap some E820 reserved areas, e.g., BIOS-e820: 00000000bfe4dc00 - 00000000c0000000 (reserved) pci_root PNP0A03:00: host bridge window [mem 0xbff00000-0xdfffffff] If we put devices at 0xbff00000, they don't work, probably because that's really RAM, not I/O memory. This patch prevents that by removing the 0xbfe4dc00-0xbfffffff area from the "available" resource. I'm not very happy with this solution because Windows solves the problem differently (it seems to ignore E820 reserved areas and it allocates top-down instead of bottom-up; details at comment 45 of the bugzilla below). That means we're vulnerable to BIOS defects that Windows would not trip over. For example, if BIOS described a device in ACPI but didn't mention it in E820, Windows would work fine but Linux would fail. Reference: https://bugzilla.kernel.org/show_bug.cgi?id=16228 Acked-by: H. Peter Anvin <[email protected]> Signed-off-by: Bjorn Helgaas <[email protected]> Signed-off-by: Jesse Barnes <[email protected]>
1 parent 30919b0 commit 4dc2287

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

arch/x86/kernel/resource.c

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,47 @@
11
#include <linux/ioport.h>
22
#include <asm/e820.h>
33

4+
static void resource_clip(struct resource *res, resource_size_t start,
5+
resource_size_t end)
6+
{
7+
resource_size_t low = 0, high = 0;
8+
9+
if (res->end < start || res->start > end)
10+
return; /* no conflict */
11+
12+
if (res->start < start)
13+
low = start - res->start;
14+
15+
if (res->end > end)
16+
high = res->end - end;
17+
18+
/* Keep the area above or below the conflict, whichever is larger */
19+
if (low > high)
20+
res->end = start - 1;
21+
else
22+
res->start = end + 1;
23+
}
24+
25+
static void remove_e820_regions(struct resource *avail)
26+
{
27+
int i;
28+
struct e820entry *entry;
29+
30+
for (i = 0; i < e820.nr_map; i++) {
31+
entry = &e820.map[i];
32+
33+
resource_clip(avail, entry->addr,
34+
entry->addr + entry->size - 1);
35+
}
36+
}
37+
438
void arch_remove_reservations(struct resource *avail)
539
{
6-
/* Trim out BIOS area (low 1MB) */
40+
/* Trim out BIOS area (low 1MB) and E820 regions */
741
if (avail->flags & IORESOURCE_MEM) {
842
if (avail->start < BIOS_END)
943
avail->start = BIOS_END;
44+
45+
remove_e820_regions(avail);
1046
}
1147
}

0 commit comments

Comments
 (0)