blob: 708a3cd9a27ec01129eeb3df6f7e32b1936fb38a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * 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>
Andrew Mortonb9491ac2005-09-16 19:27:54 -070020
Andrew Morton1a91023a2006-07-10 04:43:49 -070021#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/page.h>
23#include <asm/e820.h>
24#include <asm/proto.h>
25#include <asm/bootsetup.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010026#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * PFN of last memory page.
30 */
31unsigned long end_pfn;
Andi Kleenf3591ff2005-09-13 11:35:28 +020032EXPORT_SYMBOL(end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/*
35 * end_pfn only includes RAM, while end_pfn_map includes all e820 entries.
36 * The direct mapping extends to end_pfn_map, so that we can directly access
37 * apertures, ACPI and other tables without having to play with fixmaps.
38 */
39unsigned long end_pfn_map;
40
41/*
42 * Last pfn which the user wants to use.
43 */
44unsigned long end_user_pfn = MAXMEM>>PAGE_SHIFT;
45
46extern struct resource code_resource, data_resource;
47
48/* Check for some hardcoded bad areas that early boot is not allowed to touch */
49static inline int bad_addr(unsigned long *addrp, unsigned long size)
50{
51 unsigned long addr = *addrp, last = addr + size;
52
53 /* various gunk below that needed for SMP startup */
54 if (addr < 0x8000) {
55 *addrp = 0x8000;
56 return 1;
57 }
58
59 /* direct mapping tables of the kernel */
60 if (last >= table_start<<PAGE_SHIFT && addr < table_end<<PAGE_SHIFT) {
61 *addrp = table_end << PAGE_SHIFT;
62 return 1;
63 }
64
65 /* initrd */
66#ifdef CONFIG_BLK_DEV_INITRD
67 if (LOADER_TYPE && INITRD_START && last >= INITRD_START &&
68 addr < INITRD_START+INITRD_SIZE) {
69 *addrp = INITRD_START + INITRD_SIZE;
70 return 1;
71 }
72#endif
73 /* kernel code + 640k memory hole (later should not be needed, but
74 be paranoid for now) */
Andi Kleenceee8822006-08-30 19:37:12 +020075 if (last >= 640*1024 && addr < 1024*1024) {
76 *addrp = 1024*1024;
77 return 1;
78 }
79 if (last >= __pa_symbol(&_text) && last < __pa_symbol(&_end)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *addrp = __pa_symbol(&_end);
81 return 1;
82 }
Andi Kleenac71d122006-05-08 15:17:28 +020083
84 if (last >= ebda_addr && addr < ebda_addr + ebda_size) {
85 *addrp = ebda_addr + ebda_size;
86 return 1;
87 }
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 /* XXX ramdisk image here? */
90 return 0;
91}
92
Arjan van de Ven95222362006-04-07 19:49:27 +020093/*
94 * This function checks if any part of the range <start,end> is mapped
95 * with type.
96 */
Arjan van de Veneee5a9f2006-04-07 19:49:24 +020097int __meminit
98e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 int i;
101 for (i = 0; i < e820.nr_map; i++) {
102 struct e820entry *ei = &e820.map[i];
103 if (type && ei->type != type)
104 continue;
Eric W. Biederman48c8b112005-09-06 15:16:20 -0700105 if (ei->addr >= end || ei->addr + ei->size <= start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 continue;
107 return 1;
108 }
109 return 0;
110}
111
Linus Torvalds79e453d2006-09-19 08:15:22 -0700112/*
113 * This function checks if the entire range <start,end> is mapped with type.
114 *
115 * Note: this function only works correct if the e820 table is sorted and
116 * not-overlapping, which is the case
117 */
118int __init e820_all_mapped(unsigned long start, unsigned long end, unsigned type)
119{
120 int i;
121 for (i = 0; i < e820.nr_map; i++) {
122 struct e820entry *ei = &e820.map[i];
123 if (type && ei->type != type)
124 continue;
125 /* is the region (part) in overlap with the current region ?*/
126 if (ei->addr >= end || ei->addr + ei->size <= start)
127 continue;
128
129 /* if the region is at the beginning of <start,end> we move
130 * start to the end of the region since it's ok until there
131 */
132 if (ei->addr <= start)
133 start = ei->addr + ei->size;
134 /* if start is now at or beyond end, we're done, full coverage */
135 if (start >= end)
136 return 1; /* we're done */
137 }
138 return 0;
139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*
142 * Find a free area in a specific range.
143 */
144unsigned long __init find_e820_area(unsigned long start, unsigned long end, unsigned size)
145{
146 int i;
147 for (i = 0; i < e820.nr_map; i++) {
148 struct e820entry *ei = &e820.map[i];
149 unsigned long addr = ei->addr, last;
150 if (ei->type != E820_RAM)
151 continue;
152 if (addr < start)
153 addr = start;
154 if (addr > ei->addr + ei->size)
155 continue;
Robert Hentosh7ca97c62006-05-30 22:48:00 +0200156 while (bad_addr(&addr, size) && addr+size <= ei->addr+ei->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ;
158 last = addr + size;
159 if (last > ei->addr + ei->size)
160 continue;
161 if (last > end)
162 continue;
163 return addr;
164 }
165 return -1UL;
166}
167
168/*
169 * Free bootmem based on the e820 table for a node.
170 */
171void __init e820_bootmem_free(pg_data_t *pgdat, unsigned long start,unsigned long end)
172{
173 int i;
174 for (i = 0; i < e820.nr_map; i++) {
175 struct e820entry *ei = &e820.map[i];
176 unsigned long last, addr;
177
178 if (ei->type != E820_RAM ||
179 ei->addr+ei->size <= start ||
Andi Kleen7c7a3892005-09-12 18:49:24 +0200180 ei->addr >= end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 continue;
182
183 addr = round_up(ei->addr, PAGE_SIZE);
184 if (addr < start)
185 addr = start;
186
187 last = round_down(ei->addr + ei->size, PAGE_SIZE);
188 if (last >= end)
189 last = end;
190
191 if (last > addr && last-addr >= PAGE_SIZE)
192 free_bootmem_node(pgdat, addr, last-addr);
193 }
194}
195
196/*
197 * Find the highest page frame number we have available
198 */
199unsigned long __init e820_end_of_ram(void)
200{
201 int i;
202 unsigned long end_pfn = 0;
203
204 for (i = 0; i < e820.nr_map; i++) {
205 struct e820entry *ei = &e820.map[i];
206 unsigned long start, end;
207
208 start = round_up(ei->addr, PAGE_SIZE);
209 end = round_down(ei->addr + ei->size, PAGE_SIZE);
210 if (start >= end)
211 continue;
212 if (ei->type == E820_RAM) {
213 if (end > end_pfn<<PAGE_SHIFT)
214 end_pfn = end>>PAGE_SHIFT;
215 } else {
216 if (end > end_pfn_map<<PAGE_SHIFT)
217 end_pfn_map = end>>PAGE_SHIFT;
218 }
219 }
220
221 if (end_pfn > end_pfn_map)
222 end_pfn_map = end_pfn;
223 if (end_pfn_map > MAXMEM>>PAGE_SHIFT)
224 end_pfn_map = MAXMEM>>PAGE_SHIFT;
225 if (end_pfn > end_user_pfn)
226 end_pfn = end_user_pfn;
227 if (end_pfn > end_pfn_map)
228 end_pfn = end_pfn_map;
229
230 return end_pfn;
231}
232
233/*
Andi Kleen485761b2005-08-26 18:34:10 -0700234 * Compute how much memory is missing in a range.
235 * Unlike the other functions in this file the arguments are in page numbers.
236 */
237unsigned long __init
238e820_hole_size(unsigned long start_pfn, unsigned long end_pfn)
239{
240 unsigned long ram = 0;
241 unsigned long start = start_pfn << PAGE_SHIFT;
242 unsigned long end = end_pfn << PAGE_SHIFT;
243 int i;
244 for (i = 0; i < e820.nr_map; i++) {
245 struct e820entry *ei = &e820.map[i];
246 unsigned long last, addr;
247
248 if (ei->type != E820_RAM ||
249 ei->addr+ei->size <= start ||
250 ei->addr >= end)
251 continue;
252
253 addr = round_up(ei->addr, PAGE_SIZE);
254 if (addr < start)
255 addr = start;
256
257 last = round_down(ei->addr + ei->size, PAGE_SIZE);
258 if (last >= end)
259 last = end;
260
261 if (last > addr)
262 ram += last - addr;
263 }
264 return ((end - start) - ram) >> PAGE_SHIFT;
265}
266
267/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * Mark e820 reserved areas as busy for the resource manager.
269 */
270void __init e820_reserve_resources(void)
271{
272 int i;
273 for (i = 0; i < e820.nr_map; i++) {
274 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 res = alloc_bootmem_low(sizeof(struct resource));
276 switch (e820.map[i].type) {
277 case E820_RAM: res->name = "System RAM"; break;
278 case E820_ACPI: res->name = "ACPI Tables"; break;
279 case E820_NVS: res->name = "ACPI Non-volatile Storage"; break;
280 default: res->name = "reserved";
281 }
282 res->start = e820.map[i].addr;
283 res->end = res->start + e820.map[i].size - 1;
284 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
285 request_resource(&iomem_resource, res);
286 if (e820.map[i].type == E820_RAM) {
287 /*
288 * We don't know which RAM region contains kernel data,
289 * so we try it repeatedly and let the resource manager
290 * test it.
291 */
292 request_resource(res, &code_resource);
293 request_resource(res, &data_resource);
Eric W. Biederman5f5609d2005-06-25 14:58:04 -0700294#ifdef CONFIG_KEXEC
295 request_resource(res, &crashk_res);
296#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298 }
299}
300
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -0700301/* Mark pages corresponding to given address range as nosave */
302static void __init
303e820_mark_nosave_range(unsigned long start, unsigned long end)
304{
305 unsigned long pfn, max_pfn;
306
307 if (start >= end)
308 return;
309
310 printk("Nosave address range: %016lx - %016lx\n", start, end);
311 max_pfn = end >> PAGE_SHIFT;
312 for (pfn = start >> PAGE_SHIFT; pfn < max_pfn; pfn++)
313 if (pfn_valid(pfn))
314 SetPageNosave(pfn_to_page(pfn));
315}
316
317/*
318 * Find the ranges of physical addresses that do not correspond to
319 * e820 RAM areas and mark the corresponding pages as nosave for software
320 * suspend and suspend to RAM.
321 *
322 * This function requires the e820 map to be sorted and without any
323 * overlapping entries and assumes the first e820 area to be RAM.
324 */
325void __init e820_mark_nosave_regions(void)
326{
327 int i;
328 unsigned long paddr;
329
330 paddr = round_down(e820.map[0].addr + e820.map[0].size, PAGE_SIZE);
331 for (i = 1; i < e820.nr_map; i++) {
332 struct e820entry *ei = &e820.map[i];
333
334 if (paddr < ei->addr)
335 e820_mark_nosave_range(paddr,
336 round_up(ei->addr, PAGE_SIZE));
337
338 paddr = round_down(ei->addr + ei->size, PAGE_SIZE);
339 if (ei->type != E820_RAM)
340 e820_mark_nosave_range(round_up(ei->addr, PAGE_SIZE),
341 paddr);
342
343 if (paddr >= (end_pfn << PAGE_SHIFT))
344 break;
345 }
346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/*
349 * Add a memory region to the kernel e820 map.
350 */
351void __init add_memory_region(unsigned long start, unsigned long size, int type)
352{
353 int x = e820.nr_map;
354
355 if (x == E820MAX) {
356 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
357 return;
358 }
359
360 e820.map[x].addr = start;
361 e820.map[x].size = size;
362 e820.map[x].type = type;
363 e820.nr_map++;
364}
365
366void __init e820_print_map(char *who)
367{
368 int i;
369
370 for (i = 0; i < e820.nr_map; i++) {
371 printk(" %s: %016Lx - %016Lx ", who,
372 (unsigned long long) e820.map[i].addr,
373 (unsigned long long) (e820.map[i].addr + e820.map[i].size));
374 switch (e820.map[i].type) {
375 case E820_RAM: printk("(usable)\n");
376 break;
377 case E820_RESERVED:
378 printk("(reserved)\n");
379 break;
380 case E820_ACPI:
381 printk("(ACPI data)\n");
382 break;
383 case E820_NVS:
384 printk("(ACPI NVS)\n");
385 break;
386 default: printk("type %u\n", e820.map[i].type);
387 break;
388 }
389 }
390}
391
392/*
393 * Sanitize the BIOS e820 map.
394 *
395 * Some e820 responses include overlapping entries. The following
396 * replaces the original e820 map with a new one, removing overlaps.
397 *
398 */
399static int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map)
400{
401 struct change_member {
402 struct e820entry *pbios; /* pointer to original bios entry */
403 unsigned long long addr; /* address for this change point */
404 };
405 static struct change_member change_point_list[2*E820MAX] __initdata;
406 static struct change_member *change_point[2*E820MAX] __initdata;
407 static struct e820entry *overlap_list[E820MAX] __initdata;
408 static struct e820entry new_bios[E820MAX] __initdata;
409 struct change_member *change_tmp;
410 unsigned long current_type, last_type;
411 unsigned long long last_addr;
412 int chgidx, still_changing;
413 int overlap_entries;
414 int new_bios_entry;
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700415 int old_nr, new_nr, chg_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 int i;
417
418 /*
419 Visually we're performing the following (1,2,3,4 = memory types)...
420
421 Sample memory map (w/overlaps):
422 ____22__________________
423 ______________________4_
424 ____1111________________
425 _44_____________________
426 11111111________________
427 ____________________33__
428 ___________44___________
429 __________33333_________
430 ______________22________
431 ___________________2222_
432 _________111111111______
433 _____________________11_
434 _________________4______
435
436 Sanitized equivalent (no overlap):
437 1_______________________
438 _44_____________________
439 ___1____________________
440 ____22__________________
441 ______11________________
442 _________1______________
443 __________3_____________
444 ___________44___________
445 _____________33_________
446 _______________2________
447 ________________1_______
448 _________________4______
449 ___________________2____
450 ____________________33__
451 ______________________4_
452 */
453
454 /* if there's only one memory region, don't bother */
455 if (*pnr_map < 2)
456 return -1;
457
458 old_nr = *pnr_map;
459
460 /* bail out if we find any unreasonable addresses in bios map */
461 for (i=0; i<old_nr; i++)
462 if (biosmap[i].addr + biosmap[i].size < biosmap[i].addr)
463 return -1;
464
465 /* create pointers for initial change-point information (for sorting) */
466 for (i=0; i < 2*old_nr; i++)
467 change_point[i] = &change_point_list[i];
468
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700469 /* record all known change-points (starting and ending addresses),
470 omitting those that are for empty memory regions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 chgidx = 0;
472 for (i=0; i < old_nr; i++) {
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700473 if (biosmap[i].size != 0) {
474 change_point[chgidx]->addr = biosmap[i].addr;
475 change_point[chgidx++]->pbios = &biosmap[i];
476 change_point[chgidx]->addr = biosmap[i].addr + biosmap[i].size;
477 change_point[chgidx++]->pbios = &biosmap[i];
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700480 chg_nr = chgidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 /* sort change-point list by memory addresses (low -> high) */
483 still_changing = 1;
484 while (still_changing) {
485 still_changing = 0;
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700486 for (i=1; i < chg_nr; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 /* if <current_addr> > <last_addr>, swap */
488 /* or, if current=<start_addr> & last=<end_addr>, swap */
489 if ((change_point[i]->addr < change_point[i-1]->addr) ||
490 ((change_point[i]->addr == change_point[i-1]->addr) &&
491 (change_point[i]->addr == change_point[i]->pbios->addr) &&
492 (change_point[i-1]->addr != change_point[i-1]->pbios->addr))
493 )
494 {
495 change_tmp = change_point[i];
496 change_point[i] = change_point[i-1];
497 change_point[i-1] = change_tmp;
498 still_changing=1;
499 }
500 }
501 }
502
503 /* create a new bios memory map, removing overlaps */
504 overlap_entries=0; /* number of entries in the overlap table */
505 new_bios_entry=0; /* index for creating new bios map entries */
506 last_type = 0; /* start with undefined memory type */
507 last_addr = 0; /* start with 0 as last starting address */
508 /* loop through change-points, determining affect on the new bios map */
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700509 for (chgidx=0; chgidx < chg_nr; chgidx++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 {
511 /* keep track of all overlapping bios entries */
512 if (change_point[chgidx]->addr == change_point[chgidx]->pbios->addr)
513 {
514 /* add map entry to overlap list (> 1 entry implies an overlap) */
515 overlap_list[overlap_entries++]=change_point[chgidx]->pbios;
516 }
517 else
518 {
519 /* remove entry from list (order independent, so swap with last) */
520 for (i=0; i<overlap_entries; i++)
521 {
522 if (overlap_list[i] == change_point[chgidx]->pbios)
523 overlap_list[i] = overlap_list[overlap_entries-1];
524 }
525 overlap_entries--;
526 }
527 /* if there are overlapping entries, decide which "type" to use */
528 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
529 current_type = 0;
530 for (i=0; i<overlap_entries; i++)
531 if (overlap_list[i]->type > current_type)
532 current_type = overlap_list[i]->type;
533 /* continue building up new bios map based on this information */
534 if (current_type != last_type) {
535 if (last_type != 0) {
536 new_bios[new_bios_entry].size =
537 change_point[chgidx]->addr - last_addr;
538 /* move forward only if the new size was non-zero */
539 if (new_bios[new_bios_entry].size != 0)
540 if (++new_bios_entry >= E820MAX)
541 break; /* no more space left for new bios entries */
542 }
543 if (current_type != 0) {
544 new_bios[new_bios_entry].addr = change_point[chgidx]->addr;
545 new_bios[new_bios_entry].type = current_type;
546 last_addr=change_point[chgidx]->addr;
547 }
548 last_type = current_type;
549 }
550 }
551 new_nr = new_bios_entry; /* retain count for new bios entries */
552
553 /* copy new bios mapping into original location */
554 memcpy(biosmap, new_bios, new_nr*sizeof(struct e820entry));
555 *pnr_map = new_nr;
556
557 return 0;
558}
559
560/*
561 * Copy the BIOS e820 map into a safe place.
562 *
563 * Sanity-check it while we're at it..
564 *
565 * If we're lucky and live on a modern system, the setup code
566 * will have given us a memory map that we can use to properly
567 * set up memory. If we aren't, we'll fake a memory map.
568 *
569 * We check to see that the memory map contains at least 2 elements
570 * before we'll use it, because the detection code in setup.S may
571 * not be perfect and most every PC known to man has two memory
572 * regions: one from 0 to 640k, and one from 1mb up. (The IBM
573 * thinkpad 560x, for example, does not cooperate with the memory
574 * detection code.)
575 */
576static int __init copy_e820_map(struct e820entry * biosmap, int nr_map)
577{
578 /* Only one memory region (or negative)? Ignore it */
579 if (nr_map < 2)
580 return -1;
581
582 do {
583 unsigned long start = biosmap->addr;
584 unsigned long size = biosmap->size;
585 unsigned long end = start + size;
586 unsigned long type = biosmap->type;
587
588 /* Overflow in 64 bits? Ignore the memory map. */
589 if (start > end)
590 return -1;
591
592 /*
593 * Some BIOSes claim RAM in the 640k - 1M region.
594 * Not right. Fix it up.
595 *
596 * This should be removed on Hammer which is supposed to not
597 * have non e820 covered ISA mappings there, but I had some strange
598 * problems so it stays for now. -AK
599 */
600 if (type == E820_RAM) {
601 if (start < 0x100000ULL && end > 0xA0000ULL) {
602 if (start < 0xA0000ULL)
603 add_memory_region(start, 0xA0000ULL-start, type);
604 if (end <= 0x100000ULL)
605 continue;
606 start = 0x100000ULL;
607 size = end - start;
608 }
609 }
610
611 add_memory_region(start, size, type);
612 } while (biosmap++,--nr_map);
613 return 0;
614}
615
616void __init setup_memory_region(void)
617{
618 char *who = "BIOS-e820";
619
620 /*
621 * Try to copy the BIOS-supplied E820-map.
622 *
623 * Otherwise fake a memory map; one section from 0k->640k,
624 * the next section from 1mb->appropriate_mem_k
625 */
626 sanitize_e820_map(E820_MAP, &E820_MAP_NR);
627 if (copy_e820_map(E820_MAP, E820_MAP_NR) < 0) {
628 unsigned long mem_size;
629
630 /* compare results from other methods and take the greater */
631 if (ALT_MEM_K < EXT_MEM_K) {
632 mem_size = EXT_MEM_K;
633 who = "BIOS-88";
634 } else {
635 mem_size = ALT_MEM_K;
636 who = "BIOS-e801";
637 }
638
639 e820.nr_map = 0;
640 add_memory_region(0, LOWMEMSIZE(), E820_RAM);
641 add_memory_region(HIGH_MEMORY, mem_size << 10, E820_RAM);
642 }
643 printk(KERN_INFO "BIOS-provided physical RAM map:\n");
644 e820_print_map(who);
645}
646
647void __init parse_memopt(char *p, char **from)
648{
649 end_user_pfn = memparse(p, from);
650 end_user_pfn >>= PAGE_SHIFT;
651}
652
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800653void __init parse_memmapopt(char *p, char **from)
654{
655 unsigned long long start_at, mem_size;
656
657 mem_size = memparse(p, from);
658 p = *from;
659 if (*p == '@') {
660 start_at = memparse(p+1, from);
661 add_memory_region(start_at, mem_size, E820_RAM);
662 } else if (*p == '#') {
663 start_at = memparse(p+1, from);
664 add_memory_region(start_at, mem_size, E820_ACPI);
665 } else if (*p == '$') {
666 start_at = memparse(p+1, from);
667 add_memory_region(start_at, mem_size, E820_RESERVED);
668 } else {
669 end_user_pfn = (mem_size >> PAGE_SHIFT);
670 }
671 p = *from;
672}
673
Andi Kleena1e97782005-04-16 15:25:12 -0700674unsigned long pci_mem_start = 0xaeedbabe;
Andi Kleen2ee60e172006-06-26 13:59:44 +0200675EXPORT_SYMBOL(pci_mem_start);
Andi Kleena1e97782005-04-16 15:25:12 -0700676
677/*
678 * Search for the biggest gap in the low 32 bits of the e820
679 * memory space. We pass this space to PCI to assign MMIO resources
680 * for hotplug or unconfigured devices in.
681 * Hopefully the BIOS let enough space left.
682 */
683__init void e820_setup_gap(void)
684{
Daniel Ritzf0eca962005-09-09 00:57:14 +0200685 unsigned long gapstart, gapsize, round;
Andi Kleena1e97782005-04-16 15:25:12 -0700686 unsigned long last;
687 int i;
688 int found = 0;
689
690 last = 0x100000000ull;
691 gapstart = 0x10000000;
692 gapsize = 0x400000;
693 i = e820.nr_map;
694 while (--i >= 0) {
695 unsigned long long start = e820.map[i].addr;
696 unsigned long long end = start + e820.map[i].size;
697
698 /*
699 * Since "last" is at most 4GB, we know we'll
700 * fit in 32 bits if this condition is true
701 */
702 if (last > end) {
703 unsigned long gap = last - end;
704
705 if (gap > gapsize) {
706 gapsize = gap;
707 gapstart = end;
708 found = 1;
709 }
710 }
711 if (start < last)
712 last = start;
713 }
714
715 if (!found) {
716 gapstart = (end_pfn << PAGE_SHIFT) + 1024*1024;
717 printk(KERN_ERR "PCI: Warning: Cannot find a gap in the 32bit address range\n"
718 KERN_ERR "PCI: Unassigned devices with 32bit resource registers may break!\n");
719 }
720
721 /*
Daniel Ritzf0eca962005-09-09 00:57:14 +0200722 * See how much we want to round up: start off with
723 * rounding to the next 1MB area.
Andi Kleena1e97782005-04-16 15:25:12 -0700724 */
Daniel Ritzf0eca962005-09-09 00:57:14 +0200725 round = 0x100000;
726 while ((gapsize >> 4) > round)
727 round += round;
728 /* Fun with two's complement */
729 pci_mem_start = (gapstart + round) & -round;
Andi Kleena1e97782005-04-16 15:25:12 -0700730
731 printk(KERN_INFO "Allocating PCI resources starting at %lx (gap: %lx:%lx)\n",
732 pci_mem_start, gapstart, gapsize);
733}