Merge branch 'for-3.17/core' of git://git.kernel.dk/linux-block
[deliverable/linux.git] / arch / x86 / kernel / resource.c
CommitLineData
30919b0b
BH
1#include <linux/ioport.h>
2#include <asm/e820.h>
3
4dc2287c
BH
4static 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
25static 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
30919b0b
BH
38void arch_remove_reservations(struct resource *avail)
39{
cbace46a
CS
40 /*
41 * Trim out BIOS area (high 2MB) and E820 regions. We do not remove
42 * the low 1MB unconditionally, as this area is needed for some ISA
43 * cards requiring a memory range, e.g. the i82365 PCMCIA controller.
44 */
30919b0b 45 if (avail->flags & IORESOURCE_MEM) {
a2c606d5 46 resource_clip(avail, BIOS_ROM_BASE, BIOS_ROM_END);
4dc2287c
BH
47
48 remove_e820_regions(avail);
30919b0b
BH
49 }
50}
This page took 0.260474 seconds and 5 git commands to generate.