]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/e820.c
x86/bugs/AMD: Add support to disable RDS on Fam[15,16,17]h if requested
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / e820.c
CommitLineData
b79cd8f1 1/*
640e1b38 2 * Low level x86 E820 memory map handling functions.
b79cd8f1 3 *
640e1b38
IM
4 * The firmware and bootloader passes us the "E820 table", which is the primary
5 * physical memory layout description available about x86 systems.
b79cd8f1 6 *
640e1b38
IM
7 * The kernel takes the E820 memory layout and optionally modifies it with
8 * quirks and other tweaks, and feeds that into the generic Linux memory
9 * allocation code routines via a platform independent interface (memblock, etc.).
b79cd8f1 10 */
93a72052 11#include <linux/crash_dump.h>
b79cd8f1 12#include <linux/bootmem.h>
bf62f398 13#include <linux/suspend.h>
976513db 14#include <linux/acpi.h>
5dfcf14d 15#include <linux/firmware-map.h>
72d7c3b3 16#include <linux/memblock.h>
d1bbdd66 17#include <linux/sort.h>
b79cd8f1 18
66441bd3 19#include <asm/e820/api.h>
b79cd8f1
YL
20#include <asm/setup.h>
21
5dfcf14d 22/*
12df216c 23 * We organize the E820 table into three main data structures:
544a0f47 24 *
12df216c
CY
25 * - 'e820_table_firmware': the original firmware version passed to us by the
26 * bootloader - not modified by the kernel. It is composed of two parts:
27 * the first 128 E820 memory entries in boot_params.e820_table and the remaining
28 * (if any) entries of the SETUP_E820_EXT nodes. We use this to:
544a0f47
IM
29 *
30 * - inform the user about the firmware's notion of memory layout
31 * via /sys/firmware/memmap
32 *
33 * - the hibernation code uses it to generate a kernel-independent MD5
34 * fingerprint of the physical memory layout of a system.
35 *
12df216c
CY
36 * - 'e820_table_kexec': a slightly modified (by the kernel) firmware version
37 * passed to us by the bootloader - the major difference between
38 * e820_table_firmware[] and this one is that, the latter marks the setup_data
39 * list created by the EFI boot stub as reserved, so that kexec can reuse the
40 * setup_data information in the second kernel. Besides, e820_table_kexec[]
41 * might also be modified by the kexec itself to fake a mptable.
42 * We use this to:
43 *
640e1b38 44 * - kexec, which is a bootloader in disguise, uses the original E820
544a0f47 45 * layout to pass to the kexec-ed kernel. This way the original kernel
640e1b38 46 * can have a restricted E820 map while the kexec()-ed kexec-kernel
544a0f47
IM
47 * can have access to full memory - etc.
48 *
640e1b38 49 * - 'e820_table': this is the main E820 table that is massaged by the
544a0f47
IM
50 * low level x86 platform code, or modified by boot parameters, before
51 * passed on to higher level MM layers.
52 *
640e1b38 53 * Once the E820 map has been converted to the standard Linux memory layout
544a0f47
IM
54 * information its role stops - modifying it has no effect and does not get
55 * re-propagated. So itsmain role is a temporary bootstrap storage of firmware
56 * specific memory layout data during early bootup.
5dfcf14d 57 */
544a0f47 58static struct e820_table e820_table_init __initdata;
a09bae0f 59static struct e820_table e820_table_kexec_init __initdata;
12df216c 60static struct e820_table e820_table_firmware_init __initdata;
544a0f47
IM
61
62struct e820_table *e820_table __refdata = &e820_table_init;
a09bae0f 63struct e820_table *e820_table_kexec __refdata = &e820_table_kexec_init;
12df216c 64struct e820_table *e820_table_firmware __refdata = &e820_table_firmware_init;
b79cd8f1
YL
65
66/* For PCI or other memory-mapped resources */
67unsigned long pci_mem_start = 0xaeedbabe;
68#ifdef CONFIG_PCI
69EXPORT_SYMBOL(pci_mem_start);
70#endif
71
72/*
73 * This function checks if any part of the range <start,end> is mapped
74 * with type.
75 */
81b3e090 76bool e820__mapped_any(u64 start, u64 end, enum e820_type type)
b79cd8f1
YL
77{
78 int i;
79
bf495573 80 for (i = 0; i < e820_table->nr_entries; i++) {
e5540f87 81 struct e820_entry *entry = &e820_table->entries[i];
b79cd8f1 82
e5540f87 83 if (type && entry->type != type)
b79cd8f1 84 continue;
e5540f87 85 if (entry->addr >= end || entry->addr + entry->size <= start)
b79cd8f1
YL
86 continue;
87 return 1;
88 }
89 return 0;
90}
3bce64f0 91EXPORT_SYMBOL_GPL(e820__mapped_any);
b79cd8f1
YL
92
93/*
640e1b38 94 * This function checks if the entire <start,end> range is mapped with 'type'.
b79cd8f1 95 *
640e1b38
IM
96 * Note: this function only works correctly once the E820 table is sorted and
97 * not-overlapping (at least for the range specified), which is the case normally.
b79cd8f1 98 */
81b3e090 99bool __init e820__mapped_all(u64 start, u64 end, enum e820_type type)
b79cd8f1
YL
100{
101 int i;
102
bf495573 103 for (i = 0; i < e820_table->nr_entries; i++) {
e5540f87 104 struct e820_entry *entry = &e820_table->entries[i];
b79cd8f1 105
e5540f87 106 if (type && entry->type != type)
b79cd8f1 107 continue;
640e1b38
IM
108
109 /* Is the region (part) in overlap with the current region? */
e5540f87 110 if (entry->addr >= end || entry->addr + entry->size <= start)
b79cd8f1
YL
111 continue;
112
640e1b38
IM
113 /*
114 * If the region is at the beginning of <start,end> we move
115 * 'start' to the end of the region since it's ok until there
b79cd8f1 116 */
e5540f87
IM
117 if (entry->addr <= start)
118 start = entry->addr + entry->size;
640e1b38 119
b79cd8f1 120 /*
640e1b38
IM
121 * If 'start' is now at or beyond 'end', we're done, full
122 * coverage of the desired range exists:
b79cd8f1
YL
123 */
124 if (start >= end)
125 return 1;
126 }
127 return 0;
128}
129
130/*
640e1b38 131 * Add a memory region to the kernel E820 map.
b79cd8f1 132 */
6afc03b8 133static void __init __e820__range_add(struct e820_table *table, u64 start, u64 size, enum e820_type type)
b79cd8f1 134{
bf495573 135 int x = table->nr_entries;
b79cd8f1 136
bf495573 137 if (x >= ARRAY_SIZE(table->entries)) {
01259ef1 138 pr_err("e820: too many entries; ignoring [mem %#010llx-%#010llx]\n", start, start + size - 1);
b79cd8f1
YL
139 return;
140 }
141
bf495573
IM
142 table->entries[x].addr = start;
143 table->entries[x].size = size;
144 table->entries[x].type = type;
145 table->nr_entries++;
773e673d
YL
146}
147
6afc03b8 148void __init e820__range_add(u64 start, u64 size, enum e820_type type)
773e673d 149{
ab6bc04c 150 __e820__range_add(e820_table, start, size, type);
b79cd8f1
YL
151}
152
6afc03b8 153static void __init e820_print_type(enum e820_type type)
c61cf4cf
YL
154{
155 switch (type) {
09821ff1
IM
156 case E820_TYPE_RAM: /* Fall through: */
157 case E820_TYPE_RESERVED_KERN: pr_cont("usable"); break;
158 case E820_TYPE_RESERVED: pr_cont("reserved"); break;
159 case E820_TYPE_ACPI: pr_cont("ACPI data"); break;
160 case E820_TYPE_NVS: pr_cont("ACPI NVS"); break;
161 case E820_TYPE_UNUSABLE: pr_cont("unusable"); break;
162 case E820_TYPE_PMEM: /* Fall through: */
163 case E820_TYPE_PRAM: pr_cont("persistent (type %u)", type); break;
01259ef1 164 default: pr_cont("type %u", type); break;
c61cf4cf
YL
165 }
166}
167
be0c3f0f 168void __init e820__print_table(char *who)
b79cd8f1
YL
169{
170 int i;
171
bf495573 172 for (i = 0; i < e820_table->nr_entries; i++) {
01259ef1 173 pr_info("%s: [mem %#018Lx-%#018Lx] ", who,
640e1b38
IM
174 e820_table->entries[i].addr,
175 e820_table->entries[i].addr + e820_table->entries[i].size - 1);
176
bf495573 177 e820_print_type(e820_table->entries[i].type);
01259ef1 178 pr_cont("\n");
b79cd8f1
YL
179 }
180}
181
182/*
9a02fd0f 183 * Sanitize an E820 map.
b79cd8f1 184 *
9a02fd0f 185 * Some E820 layouts include overlapping entries. The following
640e1b38 186 * replaces the original E820 map with a new one, removing overlaps,
5b7eb2e9
PJ
187 * and resolving conflicting memory types in favor of highest
188 * numbered type.
b79cd8f1 189 *
9a02fd0f
IM
190 * The input parameter 'entries' points to an array of 'struct
191 * e820_entry' which on entry has elements in the range [0, *nr_entries)
192 * valid, and which has space for up to max_nr_entries entries.
640e1b38 193 * On return, the resulting sanitized E820 map entries will be in
9a02fd0f 194 * overwritten in the same location, starting at 'entries'.
5b7eb2e9 195 *
9a02fd0f
IM
196 * The integer pointed to by nr_entries must be valid on entry (the
197 * current number of valid entries located at 'entries'). If the
198 * sanitizing succeeds the *nr_entries will be updated with the new
199 * number of valid entries (something no more than max_nr_entries).
5b7eb2e9 200 *
f52355a9 201 * The return value from e820__update_table() is zero if it
5b7eb2e9
PJ
202 * successfully 'sanitized' the map entries passed in, and is -1
203 * if it did nothing, which can happen if either of (1) it was
204 * only passed one map entry, or (2) any of the input map entries
205 * were invalid (start + size < start, meaning that the size was
206 * so big the described memory range wrapped around through zero.)
207 *
208 * Visually we're performing the following
209 * (1,2,3,4 = memory types)...
210 *
211 * Sample memory map (w/overlaps):
212 * ____22__________________
213 * ______________________4_
214 * ____1111________________
215 * _44_____________________
216 * 11111111________________
217 * ____________________33__
218 * ___________44___________
219 * __________33333_________
220 * ______________22________
221 * ___________________2222_
222 * _________111111111______
223 * _____________________11_
224 * _________________4______
225 *
226 * Sanitized equivalent (no overlap):
227 * 1_______________________
228 * _44_____________________
229 * ___1____________________
230 * ____22__________________
231 * ______11________________
232 * _________1______________
233 * __________3_____________
234 * ___________44___________
235 * _____________33_________
236 * _______________2________
237 * ________________1_______
238 * _________________4______
239 * ___________________2____
240 * ____________________33__
241 * ______________________4_
b79cd8f1 242 */
d1bbdd66 243struct change_member {
9a02fd0f
IM
244 /* Pointer to the original entry: */
245 struct e820_entry *entry;
640e1b38
IM
246 /* Address for this change point: */
247 unsigned long long addr;
d1bbdd66
MD
248};
249
441ac2f3
IM
250static struct change_member change_point_list[2*E820_MAX_ENTRIES] __initdata;
251static struct change_member *change_point[2*E820_MAX_ENTRIES] __initdata;
252static struct e820_entry *overlap_list[E820_MAX_ENTRIES] __initdata;
253static struct e820_entry new_entries[E820_MAX_ENTRIES] __initdata;
254
d1bbdd66
MD
255static int __init cpcompare(const void *a, const void *b)
256{
257 struct change_member * const *app = a, * const *bpp = b;
258 const struct change_member *ap = *app, *bp = *bpp;
259
260 /*
261 * Inputs are pointers to two elements of change_point[]. If their
640e1b38 262 * addresses are not equal, their difference dominates. If the addresses
d1bbdd66
MD
263 * are equal, then consider one that represents the end of its region
264 * to be greater than one that does not.
265 */
266 if (ap->addr != bp->addr)
267 return ap->addr > bp->addr ? 1 : -1;
268
9a02fd0f 269 return (ap->addr != ap->entry->addr) - (bp->addr != bp->entry->addr);
d1bbdd66 270}
5b7eb2e9 271
441ac2f3 272int __init e820__update_table(struct e820_table *table)
b79cd8f1 273{
441ac2f3
IM
274 struct e820_entry *entries = table->entries;
275 u32 max_nr_entries = ARRAY_SIZE(table->entries);
6afc03b8 276 enum e820_type current_type, last_type;
b79cd8f1 277 unsigned long long last_addr;
441ac2f3
IM
278 u32 new_nr_entries, overlap_entries;
279 u32 i, chg_idx, chg_nr;
b79cd8f1 280
640e1b38 281 /* If there's only one memory region, don't bother: */
441ac2f3 282 if (table->nr_entries < 2)
b79cd8f1
YL
283 return -1;
284
441ac2f3 285 BUG_ON(table->nr_entries > max_nr_entries);
b79cd8f1 286
9a02fd0f 287 /* Bail out if we find any unreasonable addresses in the map: */
441ac2f3 288 for (i = 0; i < table->nr_entries; i++) {
9a02fd0f 289 if (entries[i].addr + entries[i].size < entries[i].addr)
b79cd8f1 290 return -1;
640e1b38 291 }
b79cd8f1 292
640e1b38 293 /* Create pointers for initial change-point information (for sorting): */
441ac2f3 294 for (i = 0; i < 2 * table->nr_entries; i++)
b79cd8f1
YL
295 change_point[i] = &change_point_list[i];
296
640e1b38
IM
297 /*
298 * Record all known change-points (starting and ending addresses),
299 * omitting empty memory regions:
300 */
441ac2f3
IM
301 chg_idx = 0;
302 for (i = 0; i < table->nr_entries; i++) {
9a02fd0f 303 if (entries[i].size != 0) {
441ac2f3
IM
304 change_point[chg_idx]->addr = entries[i].addr;
305 change_point[chg_idx++]->entry = &entries[i];
306 change_point[chg_idx]->addr = entries[i].addr + entries[i].size;
307 change_point[chg_idx++]->entry = &entries[i];
b79cd8f1
YL
308 }
309 }
441ac2f3 310 chg_nr = chg_idx;
b79cd8f1 311
640e1b38 312 /* Sort change-point list by memory addresses (low -> high): */
d88961b5 313 sort(change_point, chg_nr, sizeof(*change_point), cpcompare, NULL);
b79cd8f1 314
9a02fd0f 315 /* Create a new memory map, removing overlaps: */
640e1b38 316 overlap_entries = 0; /* Number of entries in the overlap table */
9a02fd0f 317 new_nr_entries = 0; /* Index for creating new map entries */
640e1b38
IM
318 last_type = 0; /* Start with undefined memory type */
319 last_addr = 0; /* Start with 0 as last starting address */
b79cd8f1 320
9a02fd0f 321 /* Loop through change-points, determining effect on the new map: */
441ac2f3 322 for (chg_idx = 0; chg_idx < chg_nr; chg_idx++) {
9a02fd0f 323 /* Keep track of all overlapping entries */
441ac2f3 324 if (change_point[chg_idx]->addr == change_point[chg_idx]->entry->addr) {
640e1b38 325 /* Add map entry to overlap list (> 1 entry implies an overlap) */
441ac2f3 326 overlap_list[overlap_entries++] = change_point[chg_idx]->entry;
b79cd8f1 327 } else {
640e1b38 328 /* Remove entry from list (order independent, so swap with last): */
b79cd8f1 329 for (i = 0; i < overlap_entries; i++) {
441ac2f3 330 if (overlap_list[i] == change_point[chg_idx]->entry)
640e1b38 331 overlap_list[i] = overlap_list[overlap_entries-1];
b79cd8f1
YL
332 }
333 overlap_entries--;
334 }
335 /*
640e1b38 336 * If there are overlapping entries, decide which
b79cd8f1
YL
337 * "type" to use (larger value takes precedence --
338 * 1=usable, 2,3,4,4+=unusable)
339 */
340 current_type = 0;
640e1b38 341 for (i = 0; i < overlap_entries; i++) {
b79cd8f1
YL
342 if (overlap_list[i]->type > current_type)
343 current_type = overlap_list[i]->type;
640e1b38
IM
344 }
345
9a02fd0f 346 /* Continue building up new map based on this information: */
09821ff1 347 if (current_type != last_type || current_type == E820_TYPE_PRAM) {
b79cd8f1 348 if (last_type != 0) {
441ac2f3 349 new_entries[new_nr_entries].size = change_point[chg_idx]->addr - last_addr;
640e1b38 350 /* Move forward only if the new size was non-zero: */
9a02fd0f
IM
351 if (new_entries[new_nr_entries].size != 0)
352 /* No more space left for new entries? */
353 if (++new_nr_entries >= max_nr_entries)
b79cd8f1
YL
354 break;
355 }
356 if (current_type != 0) {
441ac2f3 357 new_entries[new_nr_entries].addr = change_point[chg_idx]->addr;
9a02fd0f 358 new_entries[new_nr_entries].type = current_type;
441ac2f3 359 last_addr = change_point[chg_idx]->addr;
b79cd8f1
YL
360 }
361 last_type = current_type;
362 }
363 }
640e1b38 364
9a02fd0f 365 /* Copy the new entries into the original location: */
441ac2f3
IM
366 memcpy(entries, new_entries, new_nr_entries*sizeof(*entries));
367 table->nr_entries = new_nr_entries;
b79cd8f1
YL
368
369 return 0;
370}
371
7410aa1c 372static int __init __append_e820_table(struct boot_e820_entry *entries, u32 nr_entries)
8c5beb50 373{
7410aa1c 374 struct boot_e820_entry *entry = entries;
9a02fd0f
IM
375
376 while (nr_entries) {
377 u64 start = entry->addr;
378 u64 size = entry->size;
3ec97965 379 u64 end = start + size - 1;
9a02fd0f 380 u32 type = entry->type;
8c5beb50 381
640e1b38 382 /* Ignore the entry on 64-bit overflow: */
3ec97965 383 if (start > end && likely(size))
8c5beb50
HY
384 return -1;
385
ab6bc04c 386 e820__range_add(start, size, type);
8c5beb50 387
9a02fd0f
IM
388 entry++;
389 nr_entries--;
8c5beb50
HY
390 }
391 return 0;
392}
393
b79cd8f1 394/*
640e1b38 395 * Copy the BIOS E820 map into a safe place.
b79cd8f1
YL
396 *
397 * Sanity-check it while we're at it..
398 *
399 * If we're lucky and live on a modern system, the setup code
400 * will have given us a memory map that we can use to properly
401 * set up memory. If we aren't, we'll fake a memory map.
402 */
7410aa1c 403static int __init append_e820_table(struct boot_e820_entry *entries, u32 nr_entries)
b79cd8f1
YL
404{
405 /* Only one memory region (or negative)? Ignore it */
9a02fd0f 406 if (nr_entries < 2)
b79cd8f1
YL
407 return -1;
408
9a02fd0f 409 return __append_e820_table(entries, nr_entries);
b79cd8f1
YL
410}
411
640e1b38 412static u64 __init
6afc03b8 413__e820__range_update(struct e820_table *table, u64 start, u64 size, enum e820_type old_type, enum e820_type new_type)
b79cd8f1 414{
78a8b35b 415 u64 end;
773e673d 416 unsigned int i;
b79cd8f1
YL
417 u64 real_updated_size = 0;
418
419 BUG_ON(old_type == new_type);
420
232b957a
YL
421 if (size > (ULLONG_MAX - start))
422 size = ULLONG_MAX - start;
423
78a8b35b 424 end = start + size;
e22af0be 425 printk(KERN_DEBUG "e820: update [mem %#010Lx-%#010Lx] ", start, end - 1);
c61cf4cf 426 e820_print_type(old_type);
01259ef1 427 pr_cont(" ==> ");
c61cf4cf 428 e820_print_type(new_type);
01259ef1 429 pr_cont("\n");
c61cf4cf 430
bf495573 431 for (i = 0; i < table->nr_entries; i++) {
e5540f87 432 struct e820_entry *entry = &table->entries[i];
b79cd8f1 433 u64 final_start, final_end;
e5540f87 434 u64 entry_end;
78a8b35b 435
e5540f87 436 if (entry->type != old_type)
b79cd8f1 437 continue;
78a8b35b 438
e5540f87 439 entry_end = entry->addr + entry->size;
640e1b38
IM
440
441 /* Completely covered by new range? */
e5540f87
IM
442 if (entry->addr >= start && entry_end <= end) {
443 entry->type = new_type;
444 real_updated_size += entry->size;
b79cd8f1
YL
445 continue;
446 }
78a8b35b 447
640e1b38 448 /* New range is completely covered? */
e5540f87 449 if (entry->addr < start && entry_end > end) {
ab6bc04c
IM
450 __e820__range_add(table, start, size, new_type);
451 __e820__range_add(table, end, entry_end - end, entry->type);
e5540f87 452 entry->size = start - entry->addr;
78a8b35b
YL
453 real_updated_size += size;
454 continue;
455 }
456
640e1b38 457 /* Partially covered: */
e5540f87
IM
458 final_start = max(start, entry->addr);
459 final_end = min(end, entry_end);
b79cd8f1
YL
460 if (final_start >= final_end)
461 continue;
5c0e6f03 462
ab6bc04c 463 __e820__range_add(table, final_start, final_end - final_start, new_type);
5c0e6f03 464
b79cd8f1 465 real_updated_size += final_end - final_start;
976dd4dc 466
773e673d 467 /*
640e1b38
IM
468 * Left range could be head or tail, so need to update
469 * its size first:
773e673d 470 */
e5540f87
IM
471 entry->size -= final_end - final_start;
472 if (entry->addr < final_start)
976dd4dc 473 continue;
640e1b38 474
e5540f87 475 entry->addr = final_end;
b79cd8f1
YL
476 }
477 return real_updated_size;
478}
479
6afc03b8 480u64 __init e820__range_update(u64 start, u64 size, enum e820_type old_type, enum e820_type new_type)
fc9036ea 481{
ab6bc04c 482 return __e820__range_update(e820_table, start, size, old_type, new_type);
fc9036ea
YL
483}
484
a09bae0f 485static u64 __init e820__range_update_kexec(u64 start, u64 size, enum e820_type old_type, enum e820_type new_type)
fc9036ea 486{
a09bae0f 487 return __e820__range_update(e820_table_kexec, start, size, old_type, new_type);
fc9036ea
YL
488}
489
640e1b38 490/* Remove a range of memory from the E820 table: */
81b3e090 491u64 __init e820__range_remove(u64 start, u64 size, enum e820_type old_type, bool check_type)
7a1fd986
YL
492{
493 int i;
1b5576e6 494 u64 end;
7a1fd986
YL
495 u64 real_removed_size = 0;
496
232b957a
YL
497 if (size > (ULLONG_MAX - start))
498 size = ULLONG_MAX - start;
499
1b5576e6 500 end = start + size;
e22af0be 501 printk(KERN_DEBUG "e820: remove [mem %#010Lx-%#010Lx] ", start, end - 1);
81b3e090 502 if (check_type)
9f3a5f52 503 e820_print_type(old_type);
01259ef1 504 pr_cont("\n");
1b5576e6 505
bf495573 506 for (i = 0; i < e820_table->nr_entries; i++) {
e5540f87 507 struct e820_entry *entry = &e820_table->entries[i];
7a1fd986 508 u64 final_start, final_end;
e5540f87 509 u64 entry_end;
7a1fd986 510
81b3e090 511 if (check_type && entry->type != old_type)
7a1fd986 512 continue;
9f3a5f52 513
e5540f87 514 entry_end = entry->addr + entry->size;
640e1b38
IM
515
516 /* Completely covered? */
e5540f87
IM
517 if (entry->addr >= start && entry_end <= end) {
518 real_removed_size += entry->size;
d88961b5 519 memset(entry, 0, sizeof(*entry));
7a1fd986
YL
520 continue;
521 }
9f3a5f52 522
640e1b38 523 /* Is the new range completely covered? */
e5540f87 524 if (entry->addr < start && entry_end > end) {
ab6bc04c 525 e820__range_add(end, entry_end - end, entry->type);
e5540f87 526 entry->size = start - entry->addr;
9f3a5f52
YL
527 real_removed_size += size;
528 continue;
529 }
530
640e1b38 531 /* Partially covered: */
e5540f87
IM
532 final_start = max(start, entry->addr);
533 final_end = min(end, entry_end);
7a1fd986
YL
534 if (final_start >= final_end)
535 continue;
640e1b38 536
7a1fd986
YL
537 real_removed_size += final_end - final_start;
538
9f3a5f52 539 /*
640e1b38
IM
540 * Left range could be head or tail, so need to update
541 * the size first:
9f3a5f52 542 */
e5540f87
IM
543 entry->size -= final_end - final_start;
544 if (entry->addr < final_start)
7a1fd986 545 continue;
640e1b38 546
e5540f87 547 entry->addr = final_end;
7a1fd986
YL
548 }
549 return real_removed_size;
550}
551
6464d294 552void __init e820__update_table_print(void)
b79cd8f1 553{
f9748fa0 554 if (e820__update_table(e820_table))
b79cd8f1 555 return;
640e1b38 556
01259ef1 557 pr_info("e820: modified physical RAM map:\n");
be0c3f0f 558 e820__print_table("modified");
b79cd8f1 559}
640e1b38 560
a09bae0f 561static void __init e820__update_table_kexec(void)
fc9036ea 562{
a09bae0f 563 e820__update_table(e820_table_kexec);
fc9036ea 564}
640e1b38 565
fd6493e1 566#define MAX_GAP_END 0x100000000ull
640e1b38 567
b79cd8f1 568/*
640e1b38 569 * Search for a gap in the E820 memory space from 0 to MAX_GAP_END (4GB).
b79cd8f1 570 */
640e1b38 571static int __init e820_search_gap(unsigned long *gapstart, unsigned long *gapsize)
b79cd8f1 572{
b4ed1d15 573 unsigned long long last = MAX_GAP_END;
bf495573 574 int i = e820_table->nr_entries;
b79cd8f1
YL
575 int found = 0;
576
b79cd8f1 577 while (--i >= 0) {
bf495573
IM
578 unsigned long long start = e820_table->entries[i].addr;
579 unsigned long long end = start + e820_table->entries[i].size;
b79cd8f1
YL
580
581 /*
582 * Since "last" is at most 4GB, we know we'll
640e1b38 583 * fit in 32 bits if this condition is true:
b79cd8f1
YL
584 */
585 if (last > end) {
586 unsigned long gap = last - end;
587
3381959d
AK
588 if (gap >= *gapsize) {
589 *gapsize = gap;
590 *gapstart = end;
b79cd8f1
YL
591 found = 1;
592 }
593 }
594 if (start < last)
595 last = start;
596 }
3381959d
AK
597 return found;
598}
599
600/*
640e1b38
IM
601 * Search for the biggest gap in the low 32 bits of the E820
602 * memory space. We pass this space to the PCI subsystem, so
603 * that it can assign MMIO resources for hotplug or
604 * unconfigured devices in.
605 *
3381959d
AK
606 * Hopefully the BIOS let enough space left.
607 */
2df908ba 608__init void e820__setup_pci_gap(void)
3381959d 609{
5d423ccd 610 unsigned long gapstart, gapsize;
3381959d
AK
611 int found;
612
3381959d 613 gapsize = 0x400000;
b4ed1d15 614 found = e820_search_gap(&gapstart, &gapsize);
b79cd8f1 615
b79cd8f1 616 if (!found) {
c19a5f35 617#ifdef CONFIG_X86_64
c987d12f 618 gapstart = (max_pfn << PAGE_SHIFT) + 1024*1024;
01259ef1 619 pr_err(
640e1b38
IM
620 "e820: Cannot find an available gap in the 32-bit address range\n"
621 "e820: PCI devices with unassigned 32-bit BARs may not work!\n");
c19a5f35
AB
622#else
623 gapstart = 0x10000000;
b79cd8f1 624#endif
c19a5f35 625 }
b79cd8f1
YL
626
627 /*
1506c8dc 628 * e820__reserve_resources_late() protects stolen RAM already:
b79cd8f1 629 */
5d423ccd 630 pci_mem_start = gapstart;
b79cd8f1 631
01259ef1 632 pr_info("e820: [mem %#010lx-%#010lx] available for PCI devices\n", gapstart, gapstart + gapsize - 1);
b79cd8f1
YL
633}
634
47533968
DV
635/*
636 * Called late during init, in free_initmem().
637 *
a09bae0f 638 * Initial e820_table and e820_table_kexec are largish __initdata arrays.
640e1b38
IM
639 *
640 * Copy them to a (usually much smaller) dynamically allocated area that is
641 * sized precisely after the number of e820 entries.
642 *
643 * This is done after we've performed all the fixes and tweaks to the tables.
644 * All functions which modify them are __init functions, which won't exist
645 * after free_initmem().
47533968 646 */
0c6fc11a 647__init void e820__reallocate_tables(void)
47533968 648{
61a50101 649 struct e820_table *n;
47533968
DV
650 int size;
651
640e1b38 652 size = offsetof(struct e820_table, entries) + sizeof(struct e820_entry)*e820_table->nr_entries;
47533968
DV
653 n = kmalloc(size, GFP_KERNEL);
654 BUG_ON(!n);
61a50101
IM
655 memcpy(n, e820_table, size);
656 e820_table = n;
47533968 657
a09bae0f 658 size = offsetof(struct e820_table, entries) + sizeof(struct e820_entry)*e820_table_kexec->nr_entries;
47533968
DV
659 n = kmalloc(size, GFP_KERNEL);
660 BUG_ON(!n);
a09bae0f
CY
661 memcpy(n, e820_table_kexec, size);
662 e820_table_kexec = n;
12df216c
CY
663
664 size = offsetof(struct e820_table, entries) + sizeof(struct e820_entry)*e820_table_firmware->nr_entries;
665 n = kmalloc(size, GFP_KERNEL);
666 BUG_ON(!n);
667 memcpy(n, e820_table_firmware, size);
668 e820_table_firmware = n;
47533968
DV
669}
670
640e1b38
IM
671/*
672 * Because of the small fixed size of struct boot_params, only the first
673 * 128 E820 memory entries are passed to the kernel via boot_params.e820_table,
674 * the remaining (if any) entries are passed via the SETUP_E820_EXT node of
675 * struct setup_data, which is parsed here.
8c5beb50 676 */
914053c0 677void __init e820__memory_setup_extended(u64 phys_addr, u32 data_len)
8c5beb50 678{
8c5beb50 679 int entries;
7410aa1c 680 struct boot_e820_entry *extmap;
30e46b57 681 struct setup_data *sdata;
8c5beb50 682
30e46b57 683 sdata = early_memremap(phys_addr, data_len);
d88961b5 684 entries = sdata->len / sizeof(*extmap);
7410aa1c 685 extmap = (struct boot_e820_entry *)(sdata->data);
640e1b38 686
61a50101 687 __append_e820_table(extmap, entries);
f9748fa0 688 e820__update_table(e820_table);
640e1b38 689
a09bae0f 690 memcpy(e820_table_kexec, e820_table, sizeof(*e820_table_kexec));
12df216c 691 memcpy(e820_table_firmware, e820_table, sizeof(*e820_table_firmware));
b7a67e02 692
8d4a40bc 693 early_memunmap(sdata, data_len);
01259ef1 694 pr_info("e820: extended physical RAM map:\n");
be0c3f0f 695 e820__print_table("extended");
8c5beb50
HY
696}
697
090d7171 698/*
bf62f398 699 * Find the ranges of physical addresses that do not correspond to
090d7171 700 * E820 RAM areas and register the corresponding pages as 'nosave' for
640e1b38 701 * hibernation (32-bit) or software suspend and suspend to RAM (64-bit).
bf62f398 702 *
640e1b38 703 * This function requires the E820 map to be sorted and without any
84779575 704 * overlapping entries.
bf62f398 705 */
090d7171 706void __init e820__register_nosave_regions(unsigned long limit_pfn)
bf62f398
YL
707{
708 int i;
84779575 709 unsigned long pfn = 0;
bf62f398 710
bf495573 711 for (i = 0; i < e820_table->nr_entries; i++) {
e5540f87 712 struct e820_entry *entry = &e820_table->entries[i];
bf62f398 713
e5540f87
IM
714 if (pfn < PFN_UP(entry->addr))
715 register_nosave_region(pfn, PFN_UP(entry->addr));
bf62f398 716
e5540f87 717 pfn = PFN_DOWN(entry->addr + entry->size);
ec776ef6 718
09821ff1 719 if (entry->type != E820_TYPE_RAM && entry->type != E820_TYPE_RESERVED_KERN)
e5540f87 720 register_nosave_region(PFN_UP(entry->addr), pfn);
bf62f398
YL
721
722 if (pfn >= limit_pfn)
723 break;
724 }
725}
a4c81cf6 726
b54ac6d2 727#ifdef CONFIG_ACPI
640e1b38
IM
728/*
729 * Register ACPI NVS memory regions, so that we can save/restore them during
730 * hibernation and the subsequent resume:
b69edc76 731 */
090d7171 732static int __init e820__register_nvs_regions(void)
b69edc76
RW
733{
734 int i;
735
bf495573 736 for (i = 0; i < e820_table->nr_entries; i++) {
e5540f87 737 struct e820_entry *entry = &e820_table->entries[i];
b69edc76 738
09821ff1 739 if (entry->type == E820_TYPE_NVS)
e5540f87 740 acpi_nvs_register(entry->addr, entry->size);
b69edc76
RW
741 }
742
743 return 0;
744}
090d7171 745core_initcall(e820__register_nvs_regions);
b69edc76
RW
746#endif
747
2944e16b 748/*
5da217ca
IM
749 * Allocate the requested number of bytes with the requsted alignment
750 * and return (the physical address) to the caller. Also register this
a09bae0f 751 * range in the 'kexec' E820 table as a reserved range.
5da217ca
IM
752 *
753 * This allows kexec to fake a new mptable, as if it came from the real
754 * system.
2944e16b 755 */
5da217ca 756u64 __init e820__memblock_alloc_reserved(u64 size, u64 align)
2944e16b 757{
2944e16b 758 u64 addr;
2944e16b 759
ab5d140b
TH
760 addr = __memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
761 if (addr) {
a09bae0f
CY
762 e820__range_update_kexec(addr, size, E820_TYPE_RAM, E820_TYPE_RESERVED);
763 pr_info("e820: update e820_table_kexec for e820__memblock_alloc_reserved()\n");
764 e820__update_table_kexec();
61438766 765 }
2944e16b 766
2944e16b
YL
767 return addr;
768}
769
ee0c80fa
YL
770#ifdef CONFIG_X86_32
771# ifdef CONFIG_X86_PAE
772# define MAX_ARCH_PFN (1ULL<<(36-PAGE_SHIFT))
773# else
774# define MAX_ARCH_PFN (1ULL<<(32-PAGE_SHIFT))
775# endif
776#else /* CONFIG_X86_32 */
bd70e522 777# define MAX_ARCH_PFN MAXMEM>>PAGE_SHIFT
ee0c80fa
YL
778#endif
779
ee0c80fa
YL
780/*
781 * Find the highest page frame number we have available
782 */
6afc03b8 783static unsigned long __init e820_end_pfn(unsigned long limit_pfn, enum e820_type type)
ee0c80fa 784{
2dc807b3
YL
785 int i;
786 unsigned long last_pfn = 0;
ee0c80fa
YL
787 unsigned long max_arch_pfn = MAX_ARCH_PFN;
788
bf495573 789 for (i = 0; i < e820_table->nr_entries; i++) {
e5540f87 790 struct e820_entry *entry = &e820_table->entries[i];
f361a450 791 unsigned long start_pfn;
2dc807b3
YL
792 unsigned long end_pfn;
793
e5540f87 794 if (entry->type != type)
c22d4c18 795 continue;
c22d4c18 796
e5540f87
IM
797 start_pfn = entry->addr >> PAGE_SHIFT;
798 end_pfn = (entry->addr + entry->size) >> PAGE_SHIFT;
f361a450
YL
799
800 if (start_pfn >= limit_pfn)
801 continue;
802 if (end_pfn > limit_pfn) {
803 last_pfn = limit_pfn;
804 break;
805 }
2dc807b3
YL
806 if (end_pfn > last_pfn)
807 last_pfn = end_pfn;
808 }
ee0c80fa
YL
809
810 if (last_pfn > max_arch_pfn)
811 last_pfn = max_arch_pfn;
ee0c80fa 812
01259ef1 813 pr_info("e820: last_pfn = %#lx max_arch_pfn = %#lx\n",
ee0c80fa
YL
814 last_pfn, max_arch_pfn);
815 return last_pfn;
816}
640e1b38 817
0c6fc11a 818unsigned long __init e820__end_of_ram_pfn(void)
f361a450 819{
09821ff1 820 return e820_end_pfn(MAX_ARCH_PFN, E820_TYPE_RAM);
f361a450 821}
ee0c80fa 822
0c6fc11a 823unsigned long __init e820__end_of_low_ram_pfn(void)
f361a450 824{
09821ff1 825 return e820_end_pfn(1UL << (32 - PAGE_SHIFT), E820_TYPE_RAM);
f361a450 826}
ee0c80fa 827
8c2103f2 828static void __init early_panic(char *msg)
ab4a465e
YL
829{
830 early_printk(msg);
831 panic(msg);
832}
833
69a7704d
YL
834static int userdef __initdata;
835
640e1b38 836/* The "mem=nopentium" boot option disables 4MB page tables on 32-bit kernels: */
ab4a465e
YL
837static int __init parse_memopt(char *p)
838{
839 u64 mem_size;
840
841 if (!p)
842 return -EINVAL;
843
ab4a465e 844 if (!strcmp(p, "nopentium")) {
9a6d44b9 845#ifdef CONFIG_X86_32
ab4a465e
YL
846 setup_clear_cpu_cap(X86_FEATURE_PSE);
847 return 0;
9a6d44b9 848#else
01259ef1 849 pr_warn("mem=nopentium ignored! (only supported on x86_32)\n");
9a6d44b9 850 return -EINVAL;
ab4a465e 851#endif
9a6d44b9 852 }
ab4a465e 853
69a7704d 854 userdef = 1;
ab4a465e 855 mem_size = memparse(p, &p);
640e1b38
IM
856
857 /* Don't remove all memory when getting "mem={invalid}" parameter: */
77eed821
KM
858 if (mem_size == 0)
859 return -EINVAL;
640e1b38 860
09821ff1 861 e820__range_remove(mem_size, ULLONG_MAX - mem_size, E820_TYPE_RAM, 1);
611dfd78 862
ab4a465e
YL
863 return 0;
864}
865early_param("mem", parse_memopt);
866
9710f581 867static int __init parse_memmap_one(char *p)
ab4a465e
YL
868{
869 char *oldp;
870 u64 start_at, mem_size;
871
a737abd1
CG
872 if (!p)
873 return -EINVAL;
874
d6be118a 875 if (!strncmp(p, "exactmap", 8)) {
ab4a465e
YL
876#ifdef CONFIG_CRASH_DUMP
877 /*
878 * If we are doing a crash dump, we still need to know
640e1b38 879 * the real memory size before the original memory map is
ab4a465e
YL
880 * reset.
881 */
0c6fc11a 882 saved_max_pfn = e820__end_of_ram_pfn();
ab4a465e 883#endif
bf495573 884 e820_table->nr_entries = 0;
ab4a465e
YL
885 userdef = 1;
886 return 0;
887 }
888
889 oldp = p;
890 mem_size = memparse(p, &p);
891 if (p == oldp)
892 return -EINVAL;
893
894 userdef = 1;
895 if (*p == '@') {
896 start_at = memparse(p+1, &p);
09821ff1 897 e820__range_add(start_at, mem_size, E820_TYPE_RAM);
ab4a465e
YL
898 } else if (*p == '#') {
899 start_at = memparse(p+1, &p);
09821ff1 900 e820__range_add(start_at, mem_size, E820_TYPE_ACPI);
ab4a465e
YL
901 } else if (*p == '$') {
902 start_at = memparse(p+1, &p);
09821ff1 903 e820__range_add(start_at, mem_size, E820_TYPE_RESERVED);
ec776ef6
CH
904 } else if (*p == '!') {
905 start_at = memparse(p+1, &p);
09821ff1 906 e820__range_add(start_at, mem_size, E820_TYPE_PRAM);
640e1b38 907 } else {
09821ff1 908 e820__range_remove(mem_size, ULLONG_MAX - mem_size, E820_TYPE_RAM, 1);
640e1b38 909 }
7b479bec 910
ab4a465e
YL
911 return *p == '\0' ? 0 : -EINVAL;
912}
640e1b38 913
9710f581
YL
914static int __init parse_memmap_opt(char *str)
915{
916 while (str) {
917 char *k = strchr(str, ',');
918
919 if (k)
920 *k++ = 0;
921
922 parse_memmap_one(str);
923 str = k;
924 }
925
926 return 0;
927}
ab4a465e
YL
928early_param("memmap", parse_memmap_opt);
929
1a127034
IM
930/*
931 * Reserve all entries from the bootloader's extensible data nodes list,
932 * because if present we are going to use it later on to fetch e820
933 * entries from it:
934 */
935void __init e820__reserve_setup_data(void)
da92139b
IM
936{
937 struct setup_data *data;
938 u64 pa_data;
939
940 pa_data = boot_params.hdr.setup_data;
941 if (!pa_data)
942 return;
943
944 while (pa_data) {
945 data = early_memremap(pa_data, sizeof(*data));
09821ff1 946 e820__range_update(pa_data, sizeof(*data)+data->len, E820_TYPE_RAM, E820_TYPE_RESERVED_KERN);
a09bae0f 947 e820__range_update_kexec(pa_data, sizeof(*data)+data->len, E820_TYPE_RAM, E820_TYPE_RESERVED_KERN);
da92139b
IM
948 pa_data = data->next;
949 early_memunmap(data, sizeof(*data));
950 }
951
f9748fa0 952 e820__update_table(e820_table);
a09bae0f 953 e820__update_table(e820_table_kexec);
1a127034
IM
954
955 pr_info("extended physical RAM map:\n");
be0c3f0f 956 e820__print_table("reserve setup_data");
da92139b
IM
957}
958
9641bdaf
IM
959/*
960 * Called after parse_early_param(), after early parameters (such as mem=)
961 * have been processed, in which case we already have an E820 table filled in
962 * via the parameter callback function(s), but it's not sorted and printed yet:
963 */
964void __init e820__finish_early_params(void)
ab4a465e
YL
965{
966 if (userdef) {
f9748fa0 967 if (e820__update_table(e820_table) < 0)
ab4a465e 968 early_panic("Invalid user supplied memory map");
ab4a465e 969
01259ef1 970 pr_info("e820: user-defined physical RAM map:\n");
be0c3f0f 971 e820__print_table("user");
ab4a465e
YL
972 }
973}
41c094fd 974
c594761d 975static const char *__init e820_type_to_string(struct e820_entry *entry)
5dfcf14d 976{
c594761d 977 switch (entry->type) {
09821ff1
IM
978 case E820_TYPE_RESERVED_KERN: /* Fall-through: */
979 case E820_TYPE_RAM: return "System RAM";
980 case E820_TYPE_ACPI: return "ACPI Tables";
981 case E820_TYPE_NVS: return "ACPI Non-volatile Storage";
982 case E820_TYPE_UNUSABLE: return "Unusable memory";
983 case E820_TYPE_PRAM: return "Persistent Memory (legacy)";
984 case E820_TYPE_PMEM: return "Persistent Memory";
c5231a57
IM
985 case E820_TYPE_RESERVED: return "Reserved";
986 default: return "Unknown E820 type";
5dfcf14d
BW
987 }
988}
989
c594761d 990static unsigned long __init e820_type_to_iomem_type(struct e820_entry *entry)
f33b14a4 991{
c594761d 992 switch (entry->type) {
09821ff1
IM
993 case E820_TYPE_RESERVED_KERN: /* Fall-through: */
994 case E820_TYPE_RAM: return IORESOURCE_SYSTEM_RAM;
995 case E820_TYPE_ACPI: /* Fall-through: */
996 case E820_TYPE_NVS: /* Fall-through: */
997 case E820_TYPE_UNUSABLE: /* Fall-through: */
998 case E820_TYPE_PRAM: /* Fall-through: */
999 case E820_TYPE_PMEM: /* Fall-through: */
c5231a57 1000 case E820_TYPE_RESERVED: /* Fall-through: */
09821ff1 1001 default: return IORESOURCE_MEM;
f33b14a4
TK
1002 }
1003}
1004
c594761d 1005static unsigned long __init e820_type_to_iores_desc(struct e820_entry *entry)
f33b14a4 1006{
c594761d 1007 switch (entry->type) {
09821ff1
IM
1008 case E820_TYPE_ACPI: return IORES_DESC_ACPI_TABLES;
1009 case E820_TYPE_NVS: return IORES_DESC_ACPI_NV_STORAGE;
1010 case E820_TYPE_PMEM: return IORES_DESC_PERSISTENT_MEMORY;
1011 case E820_TYPE_PRAM: return IORES_DESC_PERSISTENT_MEMORY_LEGACY;
1012 case E820_TYPE_RESERVED_KERN: /* Fall-through: */
1013 case E820_TYPE_RAM: /* Fall-through: */
1014 case E820_TYPE_UNUSABLE: /* Fall-through: */
c5231a57 1015 case E820_TYPE_RESERVED: /* Fall-through: */
09821ff1 1016 default: return IORES_DESC_NONE;
f33b14a4
TK
1017 }
1018}
1019
c5231a57 1020static bool __init do_mark_busy(enum e820_type type, struct resource *res)
ad5fb870
DW
1021{
1022 /* this is the legacy bios/dos rom-shadow + mmio region */
1023 if (res->start < (1ULL<<20))
1024 return true;
1025
1026 /*
1027 * Treat persistent memory like device memory, i.e. reserve it
1028 * for exclusive use of a driver
1029 */
1030 switch (type) {
09821ff1
IM
1031 case E820_TYPE_RESERVED:
1032 case E820_TYPE_PRAM:
1033 case E820_TYPE_PMEM:
ad5fb870 1034 return false;
c5231a57
IM
1035 case E820_TYPE_RESERVED_KERN:
1036 case E820_TYPE_RAM:
1037 case E820_TYPE_ACPI:
1038 case E820_TYPE_NVS:
1039 case E820_TYPE_UNUSABLE:
ad5fb870
DW
1040 default:
1041 return true;
1042 }
1043}
1044
41c094fd 1045/*
640e1b38 1046 * Mark E820 reserved areas as busy for the resource manager:
41c094fd 1047 */
640e1b38 1048
a5444d15 1049static struct resource __initdata *e820_res;
640e1b38 1050
1506c8dc 1051void __init e820__reserve_resources(void)
41c094fd
YL
1052{
1053 int i;
58f7c988 1054 struct resource *res;
a5444d15 1055 u64 end;
41c094fd 1056
c594761d 1057 res = alloc_bootmem(sizeof(*res) * e820_table->nr_entries);
58f7c988 1058 e820_res = res;
c594761d 1059
bf495573 1060 for (i = 0; i < e820_table->nr_entries; i++) {
c594761d
IM
1061 struct e820_entry *entry = e820_table->entries + i;
1062
1063 end = entry->addr + entry->size - 1;
8308c54d 1064 if (end != (resource_size_t)end) {
41c094fd
YL
1065 res++;
1066 continue;
1067 }
c594761d
IM
1068 res->start = entry->addr;
1069 res->end = end;
1070 res->name = e820_type_to_string(entry);
1071 res->flags = e820_type_to_iomem_type(entry);
1072 res->desc = e820_type_to_iores_desc(entry);
a5444d15
IM
1073
1074 /*
1506c8dc
IM
1075 * Don't register the region that could be conflicted with
1076 * PCI device BAR resources and insert them later in
1077 * pcibios_resource_survey():
a5444d15 1078 */
c594761d 1079 if (do_mark_busy(entry->type, res)) {
1f987577 1080 res->flags |= IORESOURCE_BUSY;
58f7c988 1081 insert_resource(&iomem_resource, res);
1f987577 1082 }
41c094fd
YL
1083 res++;
1084 }
5dfcf14d 1085
12df216c
CY
1086 /* Expose the bootloader-provided memory layout to the sysfs. */
1087 for (i = 0; i < e820_table_firmware->nr_entries; i++) {
1088 struct e820_entry *entry = e820_table_firmware->entries + i;
640e1b38 1089
c594761d 1090 firmware_map_add_early(entry->addr, entry->addr + entry->size, e820_type_to_string(entry));
5dfcf14d 1091 }
41c094fd
YL
1092}
1093
1506c8dc
IM
1094/*
1095 * How much should we pad the end of RAM, depending on where it is?
1096 */
8c2103f2 1097static unsigned long __init ram_alignment(resource_size_t pos)
45fbe3ee
LT
1098{
1099 unsigned long mb = pos >> 20;
1100
1101 /* To 64kB in the first megabyte */
1102 if (!mb)
1103 return 64*1024;
1104
1105 /* To 1MB in the first 16MB */
1106 if (mb < 16)
1107 return 1024*1024;
1108
15b812f1
YL
1109 /* To 64MB for anything above that */
1110 return 64*1024*1024;
45fbe3ee
LT
1111}
1112
7c5371c4
YL
1113#define MAX_RESOURCE_SIZE ((resource_size_t)-1)
1114
1506c8dc 1115void __init e820__reserve_resources_late(void)
58f7c988
YL
1116{
1117 int i;
1118 struct resource *res;
1119
1120 res = e820_res;
bf495573 1121 for (i = 0; i < e820_table->nr_entries; i++) {
a5444d15 1122 if (!res->parent && res->end)
1f987577 1123 insert_resource_expand_to_fit(&iomem_resource, res);
58f7c988
YL
1124 res++;
1125 }
45fbe3ee
LT
1126
1127 /*
640e1b38 1128 * Try to bump up RAM regions to reasonable boundaries, to
45fbe3ee
LT
1129 * avoid stolen RAM:
1130 */
bf495573
IM
1131 for (i = 0; i < e820_table->nr_entries; i++) {
1132 struct e820_entry *entry = &e820_table->entries[i];
7c5371c4 1133 u64 start, end;
45fbe3ee 1134
09821ff1 1135 if (entry->type != E820_TYPE_RAM)
45fbe3ee 1136 continue;
640e1b38 1137
45fbe3ee 1138 start = entry->addr + entry->size;
7c5371c4
YL
1139 end = round_up(start, ram_alignment(start)) - 1;
1140 if (end > MAX_RESOURCE_SIZE)
1141 end = MAX_RESOURCE_SIZE;
1142 if (start >= end)
45fbe3ee 1143 continue;
640e1b38 1144
e22af0be 1145 printk(KERN_DEBUG "e820: reserve RAM buffer [mem %#010llx-%#010llx]\n", start, end);
640e1b38 1146 reserve_region_with_split(&iomem_resource, start, end, "RAM buffer");
45fbe3ee 1147 }
58f7c988
YL
1148}
1149
640e1b38
IM
1150/*
1151 * Pass the firmware (bootloader) E820 map to the kernel and process it:
1152 */
103e2063 1153char *__init e820__memory_setup_default(void)
064d25f1
YL
1154{
1155 char *who = "BIOS-e820";
640e1b38 1156
064d25f1
YL
1157 /*
1158 * Try to copy the BIOS-supplied E820-map.
1159 *
1160 * Otherwise fake a memory map; one section from 0k->640k,
1161 * the next section from 1mb->appropriate_mem_k
1162 */
640e1b38 1163 if (append_e820_table(boot_params.e820_table, boot_params.e820_entries) < 0) {
95a71a45 1164 u64 mem_size;
064d25f1 1165
640e1b38
IM
1166 /* Compare results from other methods and take the one that gives more RAM: */
1167 if (boot_params.alt_mem_k < boot_params.screen_info.ext_mem_k) {
064d25f1
YL
1168 mem_size = boot_params.screen_info.ext_mem_k;
1169 who = "BIOS-88";
1170 } else {
1171 mem_size = boot_params.alt_mem_k;
1172 who = "BIOS-e801";
1173 }
1174
bf495573 1175 e820_table->nr_entries = 0;
09821ff1
IM
1176 e820__range_add(0, LOWMEMSIZE(), E820_TYPE_RAM);
1177 e820__range_add(HIGH_MEMORY, mem_size << 10, E820_TYPE_RAM);
064d25f1
YL
1178 }
1179
7410aa1c
IM
1180 /* We just appended a lot of ranges, sanitize the table: */
1181 e820__update_table(e820_table);
1182
064d25f1
YL
1183 return who;
1184}
1185
103e2063
IM
1186/*
1187 * Calls e820__memory_setup_default() in essence to pick up the firmware/bootloader
1188 * E820 map - with an optional platform quirk available for virtual platforms
1189 * to override this method of boot environment processing:
1190 */
1191void __init e820__memory_setup(void)
064d25f1 1192{
0be15526
YL
1193 char *who;
1194
09c51513 1195 /* This is a firmware interface ABI - make sure we don't break it: */
7410aa1c 1196 BUILD_BUG_ON(sizeof(struct boot_e820_entry) != 20);
09c51513 1197
6b18ae3e 1198 who = x86_init.resources.memory_setup();
640e1b38 1199
a09bae0f 1200 memcpy(e820_table_kexec, e820_table, sizeof(*e820_table_kexec));
12df216c 1201 memcpy(e820_table_firmware, e820_table, sizeof(*e820_table_firmware));
640e1b38 1202
01259ef1 1203 pr_info("e820: BIOS-provided physical RAM map:\n");
be0c3f0f 1204 e820__print_table(who);
064d25f1 1205}
72d7c3b3 1206
4918e228 1207void __init e820__memblock_setup(void)
72d7c3b3
YL
1208{
1209 int i;
1210 u64 end;
1211
1212 /*
4918e228
IM
1213 * The bootstrap memblock region count maximum is 128 entries
1214 * (INIT_MEMBLOCK_REGIONS), but EFI might pass us more E820 entries
1215 * than that - so allow memblock resizing.
1216 *
1217 * This is safe, because this call happens pretty late during x86 setup,
1218 * so we know about reserved memory regions already. (This is important
1219 * so that memblock resizing does no stomp over reserved areas.)
72d7c3b3 1220 */
1aadc056 1221 memblock_allow_resize();
72d7c3b3 1222
bf495573 1223 for (i = 0; i < e820_table->nr_entries; i++) {
e5540f87 1224 struct e820_entry *entry = &e820_table->entries[i];
72d7c3b3 1225
e5540f87 1226 end = entry->addr + entry->size;
72d7c3b3
YL
1227 if (end != (resource_size_t)end)
1228 continue;
1229
09821ff1 1230 if (entry->type != E820_TYPE_RAM && entry->type != E820_TYPE_RESERVED_KERN)
72d7c3b3
YL
1231 continue;
1232
e5540f87 1233 memblock_add(entry->addr, entry->size);
72d7c3b3
YL
1234 }
1235
4918e228 1236 /* Throw away partial pages: */
6ede1fd3
YL
1237 memblock_trim_memory(PAGE_SIZE);
1238
72d7c3b3
YL
1239 memblock_dump_all();
1240}