2 * Handle the memory map.
3 * The functions here do the job until bootmem takes over.
4 * $Id: e820.c,v 1.4 2002/09/19 19:25:32 ak Exp $
6 #include <linux/config.h>
7 #include <linux/kernel.h>
8 #include <linux/types.h>
9 #include <linux/init.h>
10 #include <linux/bootmem.h>
11 #include <linux/ioport.h>
12 #include <linux/string.h>
15 #include <asm/proto.h>
16 #include <asm/bootsetup.h>
21 * PFN of last memory page.
23 unsigned long end_pfn
;
26 * end_pfn only includes RAM, while end_pfn_map includes all e820 entries.
27 * The direct mapping extends to end_pfn_map, so that we can directly access
28 * apertures, ACPI and other tables without having to play with fixmaps.
30 unsigned long end_pfn_map
;
33 * Last pfn which the user wants to use.
35 unsigned long end_user_pfn
= MAXMEM
>>PAGE_SHIFT
;
37 extern struct resource code_resource
, data_resource
;
39 /* Check for some hardcoded bad areas that early boot is not allowed to touch */
40 static inline int bad_addr(unsigned long *addrp
, unsigned long size
)
42 unsigned long addr
= *addrp
, last
= addr
+ size
;
44 /* various gunk below that needed for SMP startup */
50 /* direct mapping tables of the kernel */
51 if (last
>= table_start
<<PAGE_SHIFT
&& addr
< table_end
<<PAGE_SHIFT
) {
52 *addrp
= table_end
<< PAGE_SHIFT
;
57 #ifdef CONFIG_BLK_DEV_INITRD
58 if (LOADER_TYPE
&& INITRD_START
&& last
>= INITRD_START
&&
59 addr
< INITRD_START
+INITRD_SIZE
) {
60 *addrp
= INITRD_START
+ INITRD_SIZE
;
64 /* kernel code + 640k memory hole (later should not be needed, but
65 be paranoid for now) */
66 if (last
>= 640*1024 && addr
< __pa_symbol(&_end
)) {
67 *addrp
= __pa_symbol(&_end
);
70 /* XXX ramdisk image here? */
74 int __init
e820_mapped(unsigned long start
, unsigned long end
, unsigned type
)
77 for (i
= 0; i
< e820
.nr_map
; i
++) {
78 struct e820entry
*ei
= &e820
.map
[i
];
79 if (type
&& ei
->type
!= type
)
81 if (ei
->addr
>= end
|| ei
->addr
+ ei
->size
< start
)
89 * Find a free area in a specific range.
91 unsigned long __init
find_e820_area(unsigned long start
, unsigned long end
, unsigned size
)
94 for (i
= 0; i
< e820
.nr_map
; i
++) {
95 struct e820entry
*ei
= &e820
.map
[i
];
96 unsigned long addr
= ei
->addr
, last
;
97 if (ei
->type
!= E820_RAM
)
101 if (addr
> ei
->addr
+ ei
->size
)
103 while (bad_addr(&addr
, size
) && addr
+size
< ei
->addr
+ ei
->size
)
106 if (last
> ei
->addr
+ ei
->size
)
116 * Free bootmem based on the e820 table for a node.
118 void __init
e820_bootmem_free(pg_data_t
*pgdat
, unsigned long start
,unsigned long end
)
121 for (i
= 0; i
< e820
.nr_map
; i
++) {
122 struct e820entry
*ei
= &e820
.map
[i
];
123 unsigned long last
, addr
;
125 if (ei
->type
!= E820_RAM
||
126 ei
->addr
+ei
->size
<= start
||
130 addr
= round_up(ei
->addr
, PAGE_SIZE
);
134 last
= round_down(ei
->addr
+ ei
->size
, PAGE_SIZE
);
138 if (last
> addr
&& last
-addr
>= PAGE_SIZE
)
139 free_bootmem_node(pgdat
, addr
, last
-addr
);
144 * Find the highest page frame number we have available
146 unsigned long __init
e820_end_of_ram(void)
149 unsigned long end_pfn
= 0;
151 for (i
= 0; i
< e820
.nr_map
; i
++) {
152 struct e820entry
*ei
= &e820
.map
[i
];
153 unsigned long start
, end
;
155 start
= round_up(ei
->addr
, PAGE_SIZE
);
156 end
= round_down(ei
->addr
+ ei
->size
, PAGE_SIZE
);
159 if (ei
->type
== E820_RAM
) {
160 if (end
> end_pfn
<<PAGE_SHIFT
)
161 end_pfn
= end
>>PAGE_SHIFT
;
163 if (end
> end_pfn_map
<<PAGE_SHIFT
)
164 end_pfn_map
= end
>>PAGE_SHIFT
;
168 if (end_pfn
> end_pfn_map
)
169 end_pfn_map
= end_pfn
;
170 if (end_pfn_map
> MAXMEM
>>PAGE_SHIFT
)
171 end_pfn_map
= MAXMEM
>>PAGE_SHIFT
;
172 if (end_pfn
> end_user_pfn
)
173 end_pfn
= end_user_pfn
;
174 if (end_pfn
> end_pfn_map
)
175 end_pfn
= end_pfn_map
;
181 * Mark e820 reserved areas as busy for the resource manager.
183 void __init
e820_reserve_resources(void)
186 for (i
= 0; i
< e820
.nr_map
; i
++) {
187 struct resource
*res
;
188 if (e820
.map
[i
].addr
+ e820
.map
[i
].size
> 0x100000000ULL
)
190 res
= alloc_bootmem_low(sizeof(struct resource
));
191 switch (e820
.map
[i
].type
) {
192 case E820_RAM
: res
->name
= "System RAM"; break;
193 case E820_ACPI
: res
->name
= "ACPI Tables"; break;
194 case E820_NVS
: res
->name
= "ACPI Non-volatile Storage"; break;
195 default: res
->name
= "reserved";
197 res
->start
= e820
.map
[i
].addr
;
198 res
->end
= res
->start
+ e820
.map
[i
].size
- 1;
199 res
->flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
200 request_resource(&iomem_resource
, res
);
201 if (e820
.map
[i
].type
== E820_RAM
) {
203 * We don't know which RAM region contains kernel data,
204 * so we try it repeatedly and let the resource manager
207 request_resource(res
, &code_resource
);
208 request_resource(res
, &data_resource
);
214 * Add a memory region to the kernel e820 map.
216 void __init
add_memory_region(unsigned long start
, unsigned long size
, int type
)
221 printk(KERN_ERR
"Ooops! Too many entries in the memory map!\n");
225 e820
.map
[x
].addr
= start
;
226 e820
.map
[x
].size
= size
;
227 e820
.map
[x
].type
= type
;
231 void __init
e820_print_map(char *who
)
235 for (i
= 0; i
< e820
.nr_map
; i
++) {
236 printk(" %s: %016Lx - %016Lx ", who
,
237 (unsigned long long) e820
.map
[i
].addr
,
238 (unsigned long long) (e820
.map
[i
].addr
+ e820
.map
[i
].size
));
239 switch (e820
.map
[i
].type
) {
240 case E820_RAM
: printk("(usable)\n");
243 printk("(reserved)\n");
246 printk("(ACPI data)\n");
249 printk("(ACPI NVS)\n");
251 default: printk("type %u\n", e820
.map
[i
].type
);
258 * Sanitize the BIOS e820 map.
260 * Some e820 responses include overlapping entries. The following
261 * replaces the original e820 map with a new one, removing overlaps.
264 static int __init
sanitize_e820_map(struct e820entry
* biosmap
, char * pnr_map
)
266 struct change_member
{
267 struct e820entry
*pbios
; /* pointer to original bios entry */
268 unsigned long long addr
; /* address for this change point */
270 static struct change_member change_point_list
[2*E820MAX
] __initdata
;
271 static struct change_member
*change_point
[2*E820MAX
] __initdata
;
272 static struct e820entry
*overlap_list
[E820MAX
] __initdata
;
273 static struct e820entry new_bios
[E820MAX
] __initdata
;
274 struct change_member
*change_tmp
;
275 unsigned long current_type
, last_type
;
276 unsigned long long last_addr
;
277 int chgidx
, still_changing
;
284 Visually we're performing the following (1,2,3,4 = memory types)...
286 Sample memory map (w/overlaps):
287 ____22__________________
288 ______________________4_
289 ____1111________________
290 _44_____________________
291 11111111________________
292 ____________________33__
293 ___________44___________
294 __________33333_________
295 ______________22________
296 ___________________2222_
297 _________111111111______
298 _____________________11_
299 _________________4______
301 Sanitized equivalent (no overlap):
302 1_______________________
303 _44_____________________
304 ___1____________________
305 ____22__________________
306 ______11________________
307 _________1______________
308 __________3_____________
309 ___________44___________
310 _____________33_________
311 _______________2________
312 ________________1_______
313 _________________4______
314 ___________________2____
315 ____________________33__
316 ______________________4_
319 /* if there's only one memory region, don't bother */
325 /* bail out if we find any unreasonable addresses in bios map */
326 for (i
=0; i
<old_nr
; i
++)
327 if (biosmap
[i
].addr
+ biosmap
[i
].size
< biosmap
[i
].addr
)
330 /* create pointers for initial change-point information (for sorting) */
331 for (i
=0; i
< 2*old_nr
; i
++)
332 change_point
[i
] = &change_point_list
[i
];
334 /* record all known change-points (starting and ending addresses) */
336 for (i
=0; i
< old_nr
; i
++) {
337 change_point
[chgidx
]->addr
= biosmap
[i
].addr
;
338 change_point
[chgidx
++]->pbios
= &biosmap
[i
];
339 change_point
[chgidx
]->addr
= biosmap
[i
].addr
+ biosmap
[i
].size
;
340 change_point
[chgidx
++]->pbios
= &biosmap
[i
];
343 /* sort change-point list by memory addresses (low -> high) */
345 while (still_changing
) {
347 for (i
=1; i
< 2*old_nr
; i
++) {
348 /* if <current_addr> > <last_addr>, swap */
349 /* or, if current=<start_addr> & last=<end_addr>, swap */
350 if ((change_point
[i
]->addr
< change_point
[i
-1]->addr
) ||
351 ((change_point
[i
]->addr
== change_point
[i
-1]->addr
) &&
352 (change_point
[i
]->addr
== change_point
[i
]->pbios
->addr
) &&
353 (change_point
[i
-1]->addr
!= change_point
[i
-1]->pbios
->addr
))
356 change_tmp
= change_point
[i
];
357 change_point
[i
] = change_point
[i
-1];
358 change_point
[i
-1] = change_tmp
;
364 /* create a new bios memory map, removing overlaps */
365 overlap_entries
=0; /* number of entries in the overlap table */
366 new_bios_entry
=0; /* index for creating new bios map entries */
367 last_type
= 0; /* start with undefined memory type */
368 last_addr
= 0; /* start with 0 as last starting address */
369 /* loop through change-points, determining affect on the new bios map */
370 for (chgidx
=0; chgidx
< 2*old_nr
; chgidx
++)
372 /* keep track of all overlapping bios entries */
373 if (change_point
[chgidx
]->addr
== change_point
[chgidx
]->pbios
->addr
)
375 /* add map entry to overlap list (> 1 entry implies an overlap) */
376 overlap_list
[overlap_entries
++]=change_point
[chgidx
]->pbios
;
380 /* remove entry from list (order independent, so swap with last) */
381 for (i
=0; i
<overlap_entries
; i
++)
383 if (overlap_list
[i
] == change_point
[chgidx
]->pbios
)
384 overlap_list
[i
] = overlap_list
[overlap_entries
-1];
388 /* if there are overlapping entries, decide which "type" to use */
389 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
391 for (i
=0; i
<overlap_entries
; i
++)
392 if (overlap_list
[i
]->type
> current_type
)
393 current_type
= overlap_list
[i
]->type
;
394 /* continue building up new bios map based on this information */
395 if (current_type
!= last_type
) {
396 if (last_type
!= 0) {
397 new_bios
[new_bios_entry
].size
=
398 change_point
[chgidx
]->addr
- last_addr
;
399 /* move forward only if the new size was non-zero */
400 if (new_bios
[new_bios_entry
].size
!= 0)
401 if (++new_bios_entry
>= E820MAX
)
402 break; /* no more space left for new bios entries */
404 if (current_type
!= 0) {
405 new_bios
[new_bios_entry
].addr
= change_point
[chgidx
]->addr
;
406 new_bios
[new_bios_entry
].type
= current_type
;
407 last_addr
=change_point
[chgidx
]->addr
;
409 last_type
= current_type
;
412 new_nr
= new_bios_entry
; /* retain count for new bios entries */
414 /* copy new bios mapping into original location */
415 memcpy(biosmap
, new_bios
, new_nr
*sizeof(struct e820entry
));
422 * Copy the BIOS e820 map into a safe place.
424 * Sanity-check it while we're at it..
426 * If we're lucky and live on a modern system, the setup code
427 * will have given us a memory map that we can use to properly
428 * set up memory. If we aren't, we'll fake a memory map.
430 * We check to see that the memory map contains at least 2 elements
431 * before we'll use it, because the detection code in setup.S may
432 * not be perfect and most every PC known to man has two memory
433 * regions: one from 0 to 640k, and one from 1mb up. (The IBM
434 * thinkpad 560x, for example, does not cooperate with the memory
437 static int __init
copy_e820_map(struct e820entry
* biosmap
, int nr_map
)
439 /* Only one memory region (or negative)? Ignore it */
444 unsigned long start
= biosmap
->addr
;
445 unsigned long size
= biosmap
->size
;
446 unsigned long end
= start
+ size
;
447 unsigned long type
= biosmap
->type
;
449 /* Overflow in 64 bits? Ignore the memory map. */
454 * Some BIOSes claim RAM in the 640k - 1M region.
455 * Not right. Fix it up.
457 * This should be removed on Hammer which is supposed to not
458 * have non e820 covered ISA mappings there, but I had some strange
459 * problems so it stays for now. -AK
461 if (type
== E820_RAM
) {
462 if (start
< 0x100000ULL
&& end
> 0xA0000ULL
) {
463 if (start
< 0xA0000ULL
)
464 add_memory_region(start
, 0xA0000ULL
-start
, type
);
465 if (end
<= 0x100000ULL
)
472 add_memory_region(start
, size
, type
);
473 } while (biosmap
++,--nr_map
);
477 void __init
setup_memory_region(void)
479 char *who
= "BIOS-e820";
482 * Try to copy the BIOS-supplied E820-map.
484 * Otherwise fake a memory map; one section from 0k->640k,
485 * the next section from 1mb->appropriate_mem_k
487 sanitize_e820_map(E820_MAP
, &E820_MAP_NR
);
488 if (copy_e820_map(E820_MAP
, E820_MAP_NR
) < 0) {
489 unsigned long mem_size
;
491 /* compare results from other methods and take the greater */
492 if (ALT_MEM_K
< EXT_MEM_K
) {
493 mem_size
= EXT_MEM_K
;
496 mem_size
= ALT_MEM_K
;
501 add_memory_region(0, LOWMEMSIZE(), E820_RAM
);
502 add_memory_region(HIGH_MEMORY
, mem_size
<< 10, E820_RAM
);
504 printk(KERN_INFO
"BIOS-provided physical RAM map:\n");
508 void __init
parse_memopt(char *p
, char **from
)
510 end_user_pfn
= memparse(p
, from
);
511 end_user_pfn
>>= PAGE_SHIFT
;
514 unsigned long pci_mem_start
= 0xaeedbabe;
517 * Search for the biggest gap in the low 32 bits of the e820
518 * memory space. We pass this space to PCI to assign MMIO resources
519 * for hotplug or unconfigured devices in.
520 * Hopefully the BIOS let enough space left.
522 __init
void e820_setup_gap(void)
524 unsigned long gapstart
, gapsize
;
529 last
= 0x100000000ull
;
530 gapstart
= 0x10000000;
534 unsigned long long start
= e820
.map
[i
].addr
;
535 unsigned long long end
= start
+ e820
.map
[i
].size
;
538 * Since "last" is at most 4GB, we know we'll
539 * fit in 32 bits if this condition is true
542 unsigned long gap
= last
- end
;
555 gapstart
= (end_pfn
<< PAGE_SHIFT
) + 1024*1024;
556 printk(KERN_ERR
"PCI: Warning: Cannot find a gap in the 32bit address range\n"
557 KERN_ERR
"PCI: Unassigned devices with 32bit resource registers may break!\n");
561 * Start allocating dynamic PCI memory a bit into the gap,
562 * aligned up to the nearest megabyte.
564 * Question: should we try to pad it up a bit (do something
565 * like " + (gapsize >> 3)" in there too?). We now have the
568 pci_mem_start
= (gapstart
+ 0xfffff) & ~0xfffff;
570 printk(KERN_INFO
"Allocating PCI resources starting at %lx (gap: %lx:%lx)\n",
571 pci_mem_start
, gapstart
, gapsize
);