blob: f8b7bebb43449a52da41e65f096764a07ef1d910 [file] [log] [blame]
Thomas Gleixner2f36fa12008-01-30 13:30:12 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Handle the memory map.
3 * The functions here do the job until bootmem takes over.
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -07004 *
5 * Getting sanitize_e820_map() in sync with i386 version by applying change:
6 * - Provisions for empty E820 memory regions (reported by certain BIOSes).
7 * Alex Achenbach <xela@slit.de>, December 2002.
8 * Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/types.h>
13#include <linux/init.h>
14#include <linux/bootmem.h>
15#include <linux/ioport.h>
16#include <linux/string.h>
Eric W. Biederman5f5609d2005-06-25 14:58:04 -070017#include <linux/kexec.h>
Andrew Mortonb9491ac2005-09-16 19:27:54 -070018#include <linux/module.h>
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -070019#include <linux/mm.h>
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -070020#include <linux/suspend.h>
21#include <linux/pfn.h>
Andrew Mortonb9491ac2005-09-16 19:27:54 -070022
Andrew Morton1a91023a2006-07-10 04:43:49 -070023#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/page.h>
25#include <asm/e820.h>
26#include <asm/proto.h>
H. Peter Anvin30c82642007-10-15 17:13:22 -070027#include <asm/setup.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010028#include <asm/sections.h>
Thomas Gleixner718fc132008-01-30 13:30:17 +010029#include <asm/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Jan Beulichb92e9fa2007-05-02 19:27:11 +020031struct e820map e820;
Andi Kleen3bd4d182006-09-26 10:52:33 +020032
Thomas Gleixner2f36fa12008-01-30 13:30:12 +010033/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * PFN of last memory page.
35 */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +010036unsigned long end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Thomas Gleixner2f36fa12008-01-30 13:30:12 +010038/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * end_pfn only includes RAM, while end_pfn_map includes all e820 entries.
40 * The direct mapping extends to end_pfn_map, so that we can directly access
41 * apertures, ACPI and other tables without having to play with fixmaps.
Thomas Gleixner2f36fa12008-01-30 13:30:12 +010042 */
43unsigned long end_pfn_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Thomas Gleixner2f36fa12008-01-30 13:30:12 +010045/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * Last pfn which the user wants to use.
47 */
Jan Beulichcaff0712006-09-26 10:52:31 +020048static unsigned long __initdata end_user_pfn = MAXMEM>>PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Andi Kleen75175272008-01-30 13:33:17 +010050/*
51 * Early reserved memory areas.
52 */
53#define MAX_EARLY_RES 20
54
55struct early_res {
56 unsigned long start, end;
57};
58static struct early_res early_res[MAX_EARLY_RES] __initdata = {
59 { 0, PAGE_SIZE }, /* BIOS data page */
60#ifdef CONFIG_SMP
61 { SMP_TRAMPOLINE_BASE, SMP_TRAMPOLINE_BASE + 2*PAGE_SIZE },
62#endif
63 {}
64};
65
66void __init reserve_early(unsigned long start, unsigned long end)
67{
68 int i;
69 struct early_res *r;
70 for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++) {
71 r = &early_res[i];
72 if (end > r->start && start < r->end)
73 panic("Duplicated early reservation %lx-%lx\n",
74 start, end);
75 }
76 if (i >= MAX_EARLY_RES)
77 panic("Too many early reservations");
78 r = &early_res[i];
79 r->start = start;
80 r->end = end;
81}
82
83void __init early_res_to_bootmem(void)
84{
85 int i;
86 for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++) {
87 struct early_res *r = &early_res[i];
88 reserve_bootmem_generic(r->start, r->end - r->start);
89 }
90}
91
92/* Check for already reserved areas */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static inline int bad_addr(unsigned long *addrp, unsigned long size)
Thomas Gleixner2f36fa12008-01-30 13:30:12 +010094{
Andi Kleen75175272008-01-30 13:33:17 +010095 int i;
96 unsigned long addr = *addrp, last;
97 int changed = 0;
98again:
99 last = addr + size;
100 for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++) {
101 struct early_res *r = &early_res[i];
102 if (last >= r->start && addr < r->end) {
103 *addrp = addr = r->end;
104 changed = 1;
105 goto again;
H. Peter Anvin30c82642007-10-15 17:13:22 -0700106 }
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100107 }
Andi Kleen75175272008-01-30 13:33:17 +0100108 return changed;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100109}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Arjan van de Ven95222362006-04-07 19:49:27 +0200111/*
112 * This function checks if any part of the range <start,end> is mapped
113 * with type.
114 */
Jan Beulichb92e9fa2007-05-02 19:27:11 +0200115int
Arjan van de Veneee5a9f2006-04-07 19:49:24 +0200116e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100117{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 int i;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100119
120 for (i = 0; i < e820.nr_map; i++) {
121 struct e820entry *ei = &e820.map[i];
122
123 if (type && ei->type != type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 continue;
Eric W. Biederman48c8b112005-09-06 15:16:20 -0700125 if (ei->addr >= end || ei->addr + ei->size <= start)
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100126 continue;
127 return 1;
128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return 0;
130}
Jan Beulichb92e9fa2007-05-02 19:27:11 +0200131EXPORT_SYMBOL_GPL(e820_any_mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linus Torvalds79e453d2006-09-19 08:15:22 -0700133/*
134 * This function checks if the entire range <start,end> is mapped with type.
135 *
136 * Note: this function only works correct if the e820 table is sorted and
137 * not-overlapping, which is the case
138 */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100139int __init e820_all_mapped(unsigned long start, unsigned long end,
140 unsigned type)
Linus Torvalds79e453d2006-09-19 08:15:22 -0700141{
142 int i;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100143
Linus Torvalds79e453d2006-09-19 08:15:22 -0700144 for (i = 0; i < e820.nr_map; i++) {
145 struct e820entry *ei = &e820.map[i];
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100146
Linus Torvalds79e453d2006-09-19 08:15:22 -0700147 if (type && ei->type != type)
148 continue;
149 /* is the region (part) in overlap with the current region ?*/
150 if (ei->addr >= end || ei->addr + ei->size <= start)
151 continue;
152
153 /* if the region is at the beginning of <start,end> we move
154 * start to the end of the region since it's ok until there
155 */
156 if (ei->addr <= start)
157 start = ei->addr + ei->size;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100158 /*
159 * if start is now at or beyond end, we're done, full
160 * coverage
161 */
Linus Torvalds79e453d2006-09-19 08:15:22 -0700162 if (start >= end)
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100163 return 1;
Linus Torvalds79e453d2006-09-19 08:15:22 -0700164 }
165 return 0;
166}
167
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100168/*
169 * Find a free area in a specific range.
170 */
171unsigned long __init find_e820_area(unsigned long start, unsigned long end,
172 unsigned size)
173{
174 int i;
175
176 for (i = 0; i < e820.nr_map; i++) {
177 struct e820entry *ei = &e820.map[i];
178 unsigned long addr = ei->addr, last;
179
180 if (ei->type != E820_RAM)
181 continue;
182 if (addr < start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 addr = start;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100184 if (addr > ei->addr + ei->size)
185 continue;
Robert Hentosh7ca97c62006-05-30 22:48:00 +0200186 while (bad_addr(&addr, size) && addr+size <= ei->addr+ei->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 ;
Vivek Goyal73bb8912006-10-21 18:37:01 +0200188 last = PAGE_ALIGN(addr) + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (last > ei->addr + ei->size)
190 continue;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100191 if (last > end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 continue;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100193 return addr;
194 }
195 return -1UL;
196}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*
199 * Find the highest page frame number we have available
200 */
201unsigned long __init e820_end_of_ram(void)
202{
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100203 unsigned long end_pfn;
204
Mel Gorman5cb248a2006-09-27 01:49:52 -0700205 end_pfn = find_max_pfn_with_active_regions();
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100206
207 if (end_pfn > end_pfn_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 end_pfn_map = end_pfn;
209 if (end_pfn_map > MAXMEM>>PAGE_SHIFT)
210 end_pfn_map = MAXMEM>>PAGE_SHIFT;
211 if (end_pfn > end_user_pfn)
212 end_pfn = end_user_pfn;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100213 if (end_pfn > end_pfn_map)
214 end_pfn = end_pfn_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100216 printk(KERN_INFO "end_pfn_map = %lu\n", end_pfn_map);
217 return end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Andi Kleen485761b2005-08-26 18:34:10 -0700220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * Mark e820 reserved areas as busy for the resource manager.
222 */
Bernhard Wallec9cce832008-01-30 13:30:32 +0100223void __init e820_reserve_resources(struct resource *code_resource,
224 struct resource *data_resource, struct resource *bss_resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 int i;
227 for (i = 0; i < e820.nr_map; i++) {
228 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 res = alloc_bootmem_low(sizeof(struct resource));
230 switch (e820.map[i].type) {
231 case E820_RAM: res->name = "System RAM"; break;
232 case E820_ACPI: res->name = "ACPI Tables"; break;
233 case E820_NVS: res->name = "ACPI Non-volatile Storage"; break;
234 default: res->name = "reserved";
235 }
236 res->start = e820.map[i].addr;
237 res->end = res->start + e820.map[i].size - 1;
238 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
239 request_resource(&iomem_resource, res);
240 if (e820.map[i].type == E820_RAM) {
241 /*
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100242 * We don't know which RAM region contains kernel data,
243 * so we try it repeatedly and let the resource manager
244 * test it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
Bernhard Wallec9cce832008-01-30 13:30:32 +0100246 request_resource(res, code_resource);
247 request_resource(res, data_resource);
248 request_resource(res, bss_resource);
Eric W. Biederman5f5609d2005-06-25 14:58:04 -0700249#ifdef CONFIG_KEXEC
Bernhard Walle5c3391f2007-10-18 23:40:59 -0700250 if (crashk_res.start != crashk_res.end)
251 request_resource(res, &crashk_res);
Eric W. Biederman5f5609d2005-06-25 14:58:04 -0700252#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254 }
255}
256
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -0700257/*
258 * Find the ranges of physical addresses that do not correspond to
259 * e820 RAM areas and mark the corresponding pages as nosave for software
260 * suspend and suspend to RAM.
261 *
262 * This function requires the e820 map to be sorted and without any
263 * overlapping entries and assumes the first e820 area to be RAM.
264 */
265void __init e820_mark_nosave_regions(void)
266{
267 int i;
268 unsigned long paddr;
269
270 paddr = round_down(e820.map[0].addr + e820.map[0].size, PAGE_SIZE);
271 for (i = 1; i < e820.nr_map; i++) {
272 struct e820entry *ei = &e820.map[i];
273
274 if (paddr < ei->addr)
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700275 register_nosave_region(PFN_DOWN(paddr),
276 PFN_UP(ei->addr));
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -0700277
278 paddr = round_down(ei->addr + ei->size, PAGE_SIZE);
279 if (ei->type != E820_RAM)
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700280 register_nosave_region(PFN_UP(ei->addr),
281 PFN_DOWN(paddr));
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -0700282
283 if (paddr >= (end_pfn << PAGE_SHIFT))
284 break;
285 }
286}
287
David Rientjes3af044e2007-07-21 17:10:31 +0200288/*
289 * Finds an active region in the address range from start_pfn to end_pfn and
290 * returns its range in ei_startpfn and ei_endpfn for the e820 entry.
291 */
292static int __init e820_find_active_region(const struct e820entry *ei,
293 unsigned long start_pfn,
294 unsigned long end_pfn,
295 unsigned long *ei_startpfn,
296 unsigned long *ei_endpfn)
297{
298 *ei_startpfn = round_up(ei->addr, PAGE_SIZE) >> PAGE_SHIFT;
299 *ei_endpfn = round_down(ei->addr + ei->size, PAGE_SIZE) >> PAGE_SHIFT;
300
301 /* Skip map entries smaller than a page */
302 if (*ei_startpfn >= *ei_endpfn)
303 return 0;
304
305 /* Check if end_pfn_map should be updated */
306 if (ei->type != E820_RAM && *ei_endpfn > end_pfn_map)
307 end_pfn_map = *ei_endpfn;
308
309 /* Skip if map is outside the node */
310 if (ei->type != E820_RAM || *ei_endpfn <= start_pfn ||
311 *ei_startpfn >= end_pfn)
312 return 0;
313
314 /* Check for overlaps */
315 if (*ei_startpfn < start_pfn)
316 *ei_startpfn = start_pfn;
317 if (*ei_endpfn > end_pfn)
318 *ei_endpfn = end_pfn;
319
320 /* Obey end_user_pfn to save on memmap */
321 if (*ei_startpfn >= end_user_pfn)
322 return 0;
323 if (*ei_endpfn > end_user_pfn)
324 *ei_endpfn = end_user_pfn;
325
326 return 1;
327}
328
Mel Gorman5cb248a2006-09-27 01:49:52 -0700329/* Walk the e820 map and register active regions within a node */
330void __init
331e820_register_active_regions(int nid, unsigned long start_pfn,
332 unsigned long end_pfn)
333{
David Rientjes3af044e2007-07-21 17:10:31 +0200334 unsigned long ei_startpfn;
335 unsigned long ei_endpfn;
Mel Gorman5cb248a2006-09-27 01:49:52 -0700336 int i;
Mel Gorman5cb248a2006-09-27 01:49:52 -0700337
David Rientjes3af044e2007-07-21 17:10:31 +0200338 for (i = 0; i < e820.nr_map; i++)
339 if (e820_find_active_region(&e820.map[i],
340 start_pfn, end_pfn,
341 &ei_startpfn, &ei_endpfn))
342 add_active_range(nid, ei_startpfn, ei_endpfn);
Mel Gorman5cb248a2006-09-27 01:49:52 -0700343}
344
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100345/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * Add a memory region to the kernel e820 map.
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348void __init add_memory_region(unsigned long start, unsigned long size, int type)
349{
350 int x = e820.nr_map;
351
352 if (x == E820MAX) {
353 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
354 return;
355 }
356
357 e820.map[x].addr = start;
358 e820.map[x].size = size;
359 e820.map[x].type = type;
360 e820.nr_map++;
361}
362
David Rientjesa7e96622007-07-21 17:11:29 +0200363/*
364 * Find the hole size (in bytes) in the memory range.
365 * @start: starting address of the memory range to scan
366 * @end: ending address of the memory range to scan
367 */
368unsigned long __init e820_hole_size(unsigned long start, unsigned long end)
369{
370 unsigned long start_pfn = start >> PAGE_SHIFT;
371 unsigned long end_pfn = end >> PAGE_SHIFT;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100372 unsigned long ei_startpfn, ei_endpfn, ram = 0;
David Rientjesa7e96622007-07-21 17:11:29 +0200373 int i;
374
375 for (i = 0; i < e820.nr_map; i++) {
376 if (e820_find_active_region(&e820.map[i],
377 start_pfn, end_pfn,
378 &ei_startpfn, &ei_endpfn))
379 ram += ei_endpfn - ei_startpfn;
380 }
381 return end - start - (ram << PAGE_SHIFT);
382}
383
Adrian Bunk013d23e2008-01-30 13:30:30 +0100384static void __init e820_print_map(char *who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 int i;
387
388 for (i = 0; i < e820.nr_map; i++) {
Dan Aloni5a3ece72007-07-21 17:11:37 +0200389 printk(KERN_INFO " %s: %016Lx - %016Lx ", who,
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100390 (unsigned long long) e820.map[i].addr,
391 (unsigned long long)
392 (e820.map[i].addr + e820.map[i].size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 switch (e820.map[i].type) {
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100394 case E820_RAM:
395 printk(KERN_CONT "(usable)\n");
396 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 case E820_RESERVED:
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100398 printk(KERN_CONT "(reserved)\n");
399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 case E820_ACPI:
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100401 printk(KERN_CONT "(ACPI data)\n");
402 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 case E820_NVS:
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100404 printk(KERN_CONT "(ACPI NVS)\n");
405 break;
406 default:
407 printk(KERN_CONT "type %u\n", e820.map[i].type);
408 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 }
411}
412
413/*
414 * Sanitize the BIOS e820 map.
415 *
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100416 * Some e820 responses include overlapping entries. The following
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * replaces the original e820 map with a new one, removing overlaps.
418 *
419 */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100420static int __init sanitize_e820_map(struct e820entry *biosmap, char *pnr_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct change_member {
423 struct e820entry *pbios; /* pointer to original bios entry */
424 unsigned long long addr; /* address for this change point */
425 };
426 static struct change_member change_point_list[2*E820MAX] __initdata;
427 static struct change_member *change_point[2*E820MAX] __initdata;
428 static struct e820entry *overlap_list[E820MAX] __initdata;
429 static struct e820entry new_bios[E820MAX] __initdata;
430 struct change_member *change_tmp;
431 unsigned long current_type, last_type;
432 unsigned long long last_addr;
433 int chgidx, still_changing;
434 int overlap_entries;
435 int new_bios_entry;
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700436 int old_nr, new_nr, chg_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int i;
438
439 /*
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100440 Visually we're performing the following
441 (1,2,3,4 = memory types)...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 Sample memory map (w/overlaps):
444 ____22__________________
445 ______________________4_
446 ____1111________________
447 _44_____________________
448 11111111________________
449 ____________________33__
450 ___________44___________
451 __________33333_________
452 ______________22________
453 ___________________2222_
454 _________111111111______
455 _____________________11_
456 _________________4______
457
458 Sanitized equivalent (no overlap):
459 1_______________________
460 _44_____________________
461 ___1____________________
462 ____22__________________
463 ______11________________
464 _________1______________
465 __________3_____________
466 ___________44___________
467 _____________33_________
468 _______________2________
469 ________________1_______
470 _________________4______
471 ___________________2____
472 ____________________33__
473 ______________________4_
474 */
475
476 /* if there's only one memory region, don't bother */
477 if (*pnr_map < 2)
478 return -1;
479
480 old_nr = *pnr_map;
481
482 /* bail out if we find any unreasonable addresses in bios map */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100483 for (i = 0; i < old_nr; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (biosmap[i].addr + biosmap[i].size < biosmap[i].addr)
485 return -1;
486
487 /* create pointers for initial change-point information (for sorting) */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100488 for (i = 0; i < 2 * old_nr; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 change_point[i] = &change_point_list[i];
490
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700491 /* record all known change-points (starting and ending addresses),
492 omitting those that are for empty memory regions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 chgidx = 0;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100494 for (i = 0; i < old_nr; i++) {
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700495 if (biosmap[i].size != 0) {
496 change_point[chgidx]->addr = biosmap[i].addr;
497 change_point[chgidx++]->pbios = &biosmap[i];
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100498 change_point[chgidx]->addr = biosmap[i].addr +
499 biosmap[i].size;
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700500 change_point[chgidx++]->pbios = &biosmap[i];
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700503 chg_nr = chgidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* sort change-point list by memory addresses (low -> high) */
506 still_changing = 1;
507 while (still_changing) {
508 still_changing = 0;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100509 for (i = 1; i < chg_nr; i++) {
510 unsigned long long curaddr, lastaddr;
511 unsigned long long curpbaddr, lastpbaddr;
512
513 curaddr = change_point[i]->addr;
514 lastaddr = change_point[i - 1]->addr;
515 curpbaddr = change_point[i]->pbios->addr;
516 lastpbaddr = change_point[i - 1]->pbios->addr;
517
518 /*
519 * swap entries, when:
520 *
521 * curaddr > lastaddr or
522 * curaddr == lastaddr and curaddr == curpbaddr and
523 * lastaddr != lastpbaddr
524 */
525 if (curaddr < lastaddr ||
526 (curaddr == lastaddr && curaddr == curpbaddr &&
527 lastaddr != lastpbaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 change_tmp = change_point[i];
529 change_point[i] = change_point[i-1];
530 change_point[i-1] = change_tmp;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100531 still_changing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533 }
534 }
535
536 /* create a new bios memory map, removing overlaps */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100537 overlap_entries = 0; /* number of entries in the overlap table */
538 new_bios_entry = 0; /* index for creating new bios map entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 last_type = 0; /* start with undefined memory type */
540 last_addr = 0; /* start with 0 as last starting address */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* loop through change-points, determining affect on the new bios map */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100543 for (chgidx = 0; chgidx < chg_nr; chgidx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* keep track of all overlapping bios entries */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100545 if (change_point[chgidx]->addr ==
546 change_point[chgidx]->pbios->addr) {
547 /*
548 * add map entry to overlap list (> 1 entry
549 * implies an overlap)
550 */
551 overlap_list[overlap_entries++] =
552 change_point[chgidx]->pbios;
553 } else {
554 /*
555 * remove entry from list (order independent,
556 * so swap with last)
557 */
558 for (i = 0; i < overlap_entries; i++) {
559 if (overlap_list[i] ==
560 change_point[chgidx]->pbios)
561 overlap_list[i] =
562 overlap_list[overlap_entries-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 overlap_entries--;
565 }
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100566 /*
567 * if there are overlapping entries, decide which
568 * "type" to use (larger value takes precedence --
569 * 1=usable, 2,3,4,4+=unusable)
570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 current_type = 0;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100572 for (i = 0; i < overlap_entries; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (overlap_list[i]->type > current_type)
574 current_type = overlap_list[i]->type;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100575 /*
576 * continue building up new bios map based on this
577 * information
578 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (current_type != last_type) {
580 if (last_type != 0) {
581 new_bios[new_bios_entry].size =
582 change_point[chgidx]->addr - last_addr;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100583 /*
584 * move forward only if the new size
585 * was non-zero
586 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (new_bios[new_bios_entry].size != 0)
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100588 /*
589 * no more space left for new
590 * bios entries ?
591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (++new_bios_entry >= E820MAX)
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100593 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595 if (current_type != 0) {
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100596 new_bios[new_bios_entry].addr =
597 change_point[chgidx]->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 new_bios[new_bios_entry].type = current_type;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100599 last_addr = change_point[chgidx]->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601 last_type = current_type;
602 }
603 }
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100604 /* retain count for new bios entries */
605 new_nr = new_bios_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /* copy new bios mapping into original location */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100608 memcpy(biosmap, new_bios, new_nr * sizeof(struct e820entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 *pnr_map = new_nr;
610
611 return 0;
612}
613
614/*
615 * Copy the BIOS e820 map into a safe place.
616 *
617 * Sanity-check it while we're at it..
618 *
619 * If we're lucky and live on a modern system, the setup code
620 * will have given us a memory map that we can use to properly
621 * set up memory. If we aren't, we'll fake a memory map.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100623static int __init copy_e820_map(struct e820entry *biosmap, int nr_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 /* Only one memory region (or negative)? Ignore it */
626 if (nr_map < 2)
627 return -1;
628
629 do {
630 unsigned long start = biosmap->addr;
631 unsigned long size = biosmap->size;
632 unsigned long end = start + size;
633 unsigned long type = biosmap->type;
634
635 /* Overflow in 64 bits? Ignore the memory map. */
636 if (start > end)
637 return -1;
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 add_memory_region(start, size, type);
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100640 } while (biosmap++, --nr_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return 0;
642}
643
Adrian Bunk013d23e2008-01-30 13:30:30 +0100644static void early_panic(char *msg)
Andi Kleen8380aab2006-09-26 10:52:37 +0200645{
646 early_printk(msg);
647 panic(msg);
648}
649
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +0100650/* We're not void only for x86 32-bit compat */
651char * __init machine_specific_memory_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +0100653 char *who = "BIOS-e820";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
655 * Try to copy the BIOS-supplied E820-map.
656 *
657 * Otherwise fake a memory map; one section from 0k->640k,
658 * the next section from 1mb->appropriate_mem_k
659 */
H. Peter Anvin30c82642007-10-15 17:13:22 -0700660 sanitize_e820_map(boot_params.e820_map, &boot_params.e820_entries);
661 if (copy_e820_map(boot_params.e820_map, boot_params.e820_entries) < 0)
Andi Kleen8380aab2006-09-26 10:52:37 +0200662 early_panic("Cannot find a valid memory map");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 printk(KERN_INFO "BIOS-provided physical RAM map:\n");
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +0100664 e820_print_map(who);
665
666 /* In case someone cares... */
667 return who;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200670static int __init parse_memopt(char *p)
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800671{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200672 if (!p)
673 return -EINVAL;
674 end_user_pfn = memparse(p, &p);
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100675 end_user_pfn >>= PAGE_SHIFT;
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200676 return 0;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100677}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200678early_param("mem", parse_memopt);
679
680static int userdef __initdata;
681
682static int __init parse_memmap_opt(char *p)
683{
684 char *oldp;
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800685 unsigned long long start_at, mem_size;
686
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200687 if (!strcmp(p, "exactmap")) {
688#ifdef CONFIG_CRASH_DUMP
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100689 /*
690 * If we are doing a crash dump, we still need to know
691 * the real mem size before original memory map is
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200692 * reset.
693 */
Magnus Damm15803a42006-11-14 16:57:46 +0100694 e820_register_active_regions(0, 0, -1UL);
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200695 saved_max_pfn = e820_end_of_ram();
Magnus Damm15803a42006-11-14 16:57:46 +0100696 remove_all_active_ranges();
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200697#endif
698 end_pfn_map = 0;
699 e820.nr_map = 0;
700 userdef = 1;
701 return 0;
702 }
703
704 oldp = p;
705 mem_size = memparse(p, &p);
706 if (p == oldp)
707 return -EINVAL;
Vladimir Bereznikerb3ca74a2008-01-30 13:30:46 +0100708
709 userdef = 1;
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800710 if (*p == '@') {
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200711 start_at = memparse(p+1, &p);
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800712 add_memory_region(start_at, mem_size, E820_RAM);
713 } else if (*p == '#') {
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200714 start_at = memparse(p+1, &p);
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800715 add_memory_region(start_at, mem_size, E820_ACPI);
716 } else if (*p == '$') {
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200717 start_at = memparse(p+1, &p);
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800718 add_memory_region(start_at, mem_size, E820_RESERVED);
719 } else {
720 end_user_pfn = (mem_size >> PAGE_SHIFT);
721 }
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200722 return *p == '\0' ? 0 : -EINVAL;
723}
724early_param("memmap", parse_memmap_opt);
725
Sam Ravnborg43999d92007-03-16 21:07:36 +0100726void __init finish_e820_parsing(void)
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200727{
728 if (userdef) {
Vladimir Bereznikerb3ca74a2008-01-30 13:30:46 +0100729 char nr = e820.nr_map;
730
731 if (sanitize_e820_map(e820.map, &nr) < 0)
732 early_panic("Invalid user supplied memory map");
733 e820.nr_map = nr;
734
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200735 printk(KERN_INFO "user-defined physical RAM map:\n");
736 e820_print_map("user");
737 }
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800738}
739
Yinghai Luaaf23042008-01-30 13:33:09 +0100740void __init update_e820(void)
741{
742 u8 nr_map;
743
744 nr_map = e820.nr_map;
745 if (sanitize_e820_map(e820.map, &nr_map))
746 return;
747 e820.nr_map = nr_map;
748 printk(KERN_INFO "modified physical RAM map:\n");
749 e820_print_map("modified");
750}
751
Andi Kleena1e97782005-04-16 15:25:12 -0700752unsigned long pci_mem_start = 0xaeedbabe;
Andi Kleen2ee60e172006-06-26 13:59:44 +0200753EXPORT_SYMBOL(pci_mem_start);
Andi Kleena1e97782005-04-16 15:25:12 -0700754
755/*
756 * Search for the biggest gap in the low 32 bits of the e820
757 * memory space. We pass this space to PCI to assign MMIO resources
758 * for hotplug or unconfigured devices in.
759 * Hopefully the BIOS let enough space left.
760 */
761__init void e820_setup_gap(void)
762{
Daniel Ritzf0eca962005-09-09 00:57:14 +0200763 unsigned long gapstart, gapsize, round;
Andi Kleena1e97782005-04-16 15:25:12 -0700764 unsigned long last;
765 int i;
766 int found = 0;
767
768 last = 0x100000000ull;
769 gapstart = 0x10000000;
770 gapsize = 0x400000;
771 i = e820.nr_map;
772 while (--i >= 0) {
773 unsigned long long start = e820.map[i].addr;
774 unsigned long long end = start + e820.map[i].size;
775
776 /*
777 * Since "last" is at most 4GB, we know we'll
778 * fit in 32 bits if this condition is true
779 */
780 if (last > end) {
781 unsigned long gap = last - end;
782
783 if (gap > gapsize) {
784 gapsize = gap;
785 gapstart = end;
786 found = 1;
787 }
788 }
789 if (start < last)
790 last = start;
791 }
792
793 if (!found) {
794 gapstart = (end_pfn << PAGE_SHIFT) + 1024*1024;
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100795 printk(KERN_ERR "PCI: Warning: Cannot find a gap in the 32bit "
796 "address range\n"
797 KERN_ERR "PCI: Unassigned devices with 32bit resource "
798 "registers may break!\n");
Andi Kleena1e97782005-04-16 15:25:12 -0700799 }
800
801 /*
Daniel Ritzf0eca962005-09-09 00:57:14 +0200802 * See how much we want to round up: start off with
803 * rounding to the next 1MB area.
Andi Kleena1e97782005-04-16 15:25:12 -0700804 */
Daniel Ritzf0eca962005-09-09 00:57:14 +0200805 round = 0x100000;
806 while ((gapsize >> 4) > round)
807 round += round;
808 /* Fun with two's complement */
809 pci_mem_start = (gapstart + round) & -round;
Andi Kleena1e97782005-04-16 15:25:12 -0700810
Thomas Gleixner2f36fa12008-01-30 13:30:12 +0100811 printk(KERN_INFO
812 "Allocating PCI resources starting at %lx (gap: %lx:%lx)\n",
813 pci_mem_start, gapstart, gapsize);
Andi Kleena1e97782005-04-16 15:25:12 -0700814}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -0700815
816int __init arch_get_ram_range(int slot, u64 *addr, u64 *size)
817{
818 int i;
819
820 if (slot < 0 || slot >= e820.nr_map)
821 return -1;
822 for (i = slot; i < e820.nr_map; i++) {
823 if (e820.map[i].type != E820_RAM)
824 continue;
825 break;
826 }
827 if (i == e820.nr_map || e820.map[i].addr > (max_pfn << PAGE_SHIFT))
828 return -1;
829 *addr = e820.map[i].addr;
830 *size = min_t(u64, e820.map[i].size + e820.map[i].addr,
831 max_pfn << PAGE_SHIFT) - *addr;
832 return i + 1;
833}