Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux-drm-fsl-dcu.git] / arch / x86_64 / kernel / e820.c
1 /* 
2  * Handle the memory map.
3  * The functions here do the job until bootmem takes over.
4  *
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  *
10  */
11 #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>
17 #include <linux/kexec.h>
18 #include <linux/module.h>
19 #include <linux/mm.h>
20 #include <linux/suspend.h>
21 #include <linux/pfn.h>
22
23 #include <asm/pgtable.h>
24 #include <asm/page.h>
25 #include <asm/e820.h>
26 #include <asm/proto.h>
27 #include <asm/bootsetup.h>
28 #include <asm/sections.h>
29
30 struct e820map e820;
31
32 /* 
33  * PFN of last memory page.
34  */
35 unsigned long end_pfn; 
36 EXPORT_SYMBOL(end_pfn);
37
38 /* 
39  * 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.
42  */ 
43 unsigned long end_pfn_map; 
44
45 /* 
46  * Last pfn which the user wants to use.
47  */
48 static unsigned long __initdata end_user_pfn = MAXMEM>>PAGE_SHIFT;
49
50 extern struct resource code_resource, data_resource;
51
52 /* Check for some hardcoded bad areas that early boot is not allowed to touch */ 
53 static inline int bad_addr(unsigned long *addrp, unsigned long size)
54
55         unsigned long addr = *addrp, last = addr + size; 
56
57         /* various gunk below that needed for SMP startup */
58         if (addr < 0x8000) { 
59                 *addrp = PAGE_ALIGN(0x8000);
60                 return 1; 
61         }
62
63         /* direct mapping tables of the kernel */
64         if (last >= table_start<<PAGE_SHIFT && addr < table_end<<PAGE_SHIFT) { 
65                 *addrp = PAGE_ALIGN(table_end << PAGE_SHIFT);
66                 return 1;
67         } 
68
69         /* initrd */ 
70 #ifdef CONFIG_BLK_DEV_INITRD
71         if (LOADER_TYPE && INITRD_START && last >= INITRD_START && 
72             addr < INITRD_START+INITRD_SIZE) { 
73                 *addrp = PAGE_ALIGN(INITRD_START + INITRD_SIZE);
74                 return 1;
75         } 
76 #endif
77         /* kernel code */
78         if (last >= __pa_symbol(&_text) && addr < __pa_symbol(&_end)) {
79                 *addrp = PAGE_ALIGN(__pa_symbol(&_end));
80                 return 1;
81         }
82
83         if (last >= ebda_addr && addr < ebda_addr + ebda_size) {
84                 *addrp = PAGE_ALIGN(ebda_addr + ebda_size);
85                 return 1;
86         }
87
88 #ifdef CONFIG_NUMA
89         /* NUMA memory to node map */
90         if (last >= nodemap_addr && addr < nodemap_addr + nodemap_size) {
91                 *addrp = nodemap_addr + nodemap_size;
92                 return 1;
93         }
94 #endif
95         /* XXX ramdisk image here? */ 
96         return 0;
97
98
99 /*
100  * This function checks if any part of the range <start,end> is mapped
101  * with type.
102  */
103 int
104 e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
105
106         int i;
107         for (i = 0; i < e820.nr_map; i++) { 
108                 struct e820entry *ei = &e820.map[i]; 
109                 if (type && ei->type != type) 
110                         continue;
111                 if (ei->addr >= end || ei->addr + ei->size <= start)
112                         continue; 
113                 return 1; 
114         } 
115         return 0;
116 }
117 EXPORT_SYMBOL_GPL(e820_any_mapped);
118
119 /*
120  * This function checks if the entire range <start,end> is mapped with type.
121  *
122  * Note: this function only works correct if the e820 table is sorted and
123  * not-overlapping, which is the case
124  */
125 int __init e820_all_mapped(unsigned long start, unsigned long end, unsigned type)
126 {
127         int i;
128         for (i = 0; i < e820.nr_map; i++) {
129                 struct e820entry *ei = &e820.map[i];
130                 if (type && ei->type != type)
131                         continue;
132                 /* is the region (part) in overlap with the current region ?*/
133                 if (ei->addr >= end || ei->addr + ei->size <= start)
134                         continue;
135
136                 /* if the region is at the beginning of <start,end> we move
137                  * start to the end of the region since it's ok until there
138                  */
139                 if (ei->addr <= start)
140                         start = ei->addr + ei->size;
141                 /* if start is now at or beyond end, we're done, full coverage */
142                 if (start >= end)
143                         return 1; /* we're done */
144         }
145         return 0;
146 }
147
148 /* 
149  * Find a free area in a specific range. 
150  */ 
151 unsigned long __init find_e820_area(unsigned long start, unsigned long end, unsigned size) 
152
153         int i; 
154         for (i = 0; i < e820.nr_map; i++) { 
155                 struct e820entry *ei = &e820.map[i]; 
156                 unsigned long addr = ei->addr, last; 
157                 if (ei->type != E820_RAM) 
158                         continue; 
159                 if (addr < start) 
160                         addr = start;
161                 if (addr > ei->addr + ei->size) 
162                         continue; 
163                 while (bad_addr(&addr, size) && addr+size <= ei->addr+ei->size)
164                         ;
165                 last = PAGE_ALIGN(addr) + size;
166                 if (last > ei->addr + ei->size)
167                         continue;
168                 if (last > end) 
169                         continue;
170                 return addr; 
171         } 
172         return -1UL;            
173
174
175 /*
176  * Find the highest page frame number we have available
177  */
178 unsigned long __init e820_end_of_ram(void)
179 {
180         unsigned long end_pfn = 0;
181         end_pfn = find_max_pfn_with_active_regions();
182         
183         if (end_pfn > end_pfn_map) 
184                 end_pfn_map = end_pfn;
185         if (end_pfn_map > MAXMEM>>PAGE_SHIFT)
186                 end_pfn_map = MAXMEM>>PAGE_SHIFT;
187         if (end_pfn > end_user_pfn)
188                 end_pfn = end_user_pfn;
189         if (end_pfn > end_pfn_map) 
190                 end_pfn = end_pfn_map; 
191
192         printk("end_pfn_map = %lu\n", end_pfn_map);
193         return end_pfn; 
194 }
195
196 /*
197  * Find the hole size in the range.
198  */
199 unsigned long __init e820_hole_size(unsigned long start, unsigned long end)
200 {
201         unsigned long ram = 0;
202         int i;
203
204         for (i = 0; i < e820.nr_map; i++) {
205                 struct e820entry *ei = &e820.map[i];
206                 unsigned long last, addr;
207
208                 if (ei->type != E820_RAM ||
209                     ei->addr+ei->size <= start ||
210                     ei->addr >= end)
211                         continue;
212
213                 addr = round_up(ei->addr, PAGE_SIZE);
214                 if (addr < start)
215                         addr = start;
216
217                 last = round_down(ei->addr + ei->size, PAGE_SIZE);
218                 if (last >= end)
219                         last = end;
220
221                 if (last > addr)
222                         ram += last - addr;
223         }
224         return ((end - start) - ram);
225 }
226
227 /*
228  * Mark e820 reserved areas as busy for the resource manager.
229  */
230 void __init e820_reserve_resources(void)
231 {
232         int i;
233         for (i = 0; i < e820.nr_map; i++) {
234                 struct resource *res;
235                 res = alloc_bootmem_low(sizeof(struct resource));
236                 switch (e820.map[i].type) {
237                 case E820_RAM:  res->name = "System RAM"; break;
238                 case E820_ACPI: res->name = "ACPI Tables"; break;
239                 case E820_NVS:  res->name = "ACPI Non-volatile Storage"; break;
240                 default:        res->name = "reserved";
241                 }
242                 res->start = e820.map[i].addr;
243                 res->end = res->start + e820.map[i].size - 1;
244                 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
245                 request_resource(&iomem_resource, res);
246                 if (e820.map[i].type == E820_RAM) {
247                         /*
248                          *  We don't know which RAM region contains kernel data,
249                          *  so we try it repeatedly and let the resource manager
250                          *  test it.
251                          */
252                         request_resource(res, &code_resource);
253                         request_resource(res, &data_resource);
254 #ifdef CONFIG_KEXEC
255                         request_resource(res, &crashk_res);
256 #endif
257                 }
258         }
259 }
260
261 /*
262  * Find the ranges of physical addresses that do not correspond to
263  * e820 RAM areas and mark the corresponding pages as nosave for software
264  * suspend and suspend to RAM.
265  *
266  * This function requires the e820 map to be sorted and without any
267  * overlapping entries and assumes the first e820 area to be RAM.
268  */
269 void __init e820_mark_nosave_regions(void)
270 {
271         int i;
272         unsigned long paddr;
273
274         paddr = round_down(e820.map[0].addr + e820.map[0].size, PAGE_SIZE);
275         for (i = 1; i < e820.nr_map; i++) {
276                 struct e820entry *ei = &e820.map[i];
277
278                 if (paddr < ei->addr)
279                         register_nosave_region(PFN_DOWN(paddr),
280                                                 PFN_UP(ei->addr));
281
282                 paddr = round_down(ei->addr + ei->size, PAGE_SIZE);
283                 if (ei->type != E820_RAM)
284                         register_nosave_region(PFN_UP(ei->addr),
285                                                 PFN_DOWN(paddr));
286
287                 if (paddr >= (end_pfn << PAGE_SHIFT))
288                         break;
289         }
290 }
291
292 /* Walk the e820 map and register active regions within a node */
293 void __init
294 e820_register_active_regions(int nid, unsigned long start_pfn,
295                                                         unsigned long end_pfn)
296 {
297         int i;
298         unsigned long ei_startpfn, ei_endpfn;
299         for (i = 0; i < e820.nr_map; i++) {
300                 struct e820entry *ei = &e820.map[i];
301                 ei_startpfn = round_up(ei->addr, PAGE_SIZE) >> PAGE_SHIFT;
302                 ei_endpfn = round_down(ei->addr + ei->size, PAGE_SIZE)
303                                                                 >> PAGE_SHIFT;
304
305                 /* Skip map entries smaller than a page */
306                 if (ei_startpfn >= ei_endpfn)
307                         continue;
308
309                 /* Check if end_pfn_map should be updated */
310                 if (ei->type != E820_RAM && ei_endpfn > end_pfn_map)
311                         end_pfn_map = ei_endpfn;
312
313                 /* Skip if map is outside the node */
314                 if (ei->type != E820_RAM ||
315                                 ei_endpfn <= start_pfn ||
316                                 ei_startpfn >= end_pfn)
317                         continue;
318
319                 /* Check for overlaps */
320                 if (ei_startpfn < start_pfn)
321                         ei_startpfn = start_pfn;
322                 if (ei_endpfn > end_pfn)
323                         ei_endpfn = end_pfn;
324
325                 /* Obey end_user_pfn to save on memmap */
326                 if (ei_startpfn >= end_user_pfn)
327                         continue;
328                 if (ei_endpfn > end_user_pfn)
329                         ei_endpfn = end_user_pfn;
330
331                 add_active_range(nid, ei_startpfn, ei_endpfn);
332         }
333 }
334
335 /* 
336  * Add a memory region to the kernel e820 map.
337  */ 
338 void __init add_memory_region(unsigned long start, unsigned long size, int type)
339 {
340         int x = e820.nr_map;
341
342         if (x == E820MAX) {
343                 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
344                 return;
345         }
346
347         e820.map[x].addr = start;
348         e820.map[x].size = size;
349         e820.map[x].type = type;
350         e820.nr_map++;
351 }
352
353 void __init e820_print_map(char *who)
354 {
355         int i;
356
357         for (i = 0; i < e820.nr_map; i++) {
358                 printk(" %s: %016Lx - %016Lx ", who,
359                         (unsigned long long) e820.map[i].addr,
360                         (unsigned long long) (e820.map[i].addr + e820.map[i].size));
361                 switch (e820.map[i].type) {
362                 case E820_RAM:  printk("(usable)\n");
363                                 break;
364                 case E820_RESERVED:
365                                 printk("(reserved)\n");
366                                 break;
367                 case E820_ACPI:
368                                 printk("(ACPI data)\n");
369                                 break;
370                 case E820_NVS:
371                                 printk("(ACPI NVS)\n");
372                                 break;
373                 default:        printk("type %u\n", e820.map[i].type);
374                                 break;
375                 }
376         }
377 }
378
379 /*
380  * Sanitize the BIOS e820 map.
381  *
382  * Some e820 responses include overlapping entries.  The following 
383  * replaces the original e820 map with a new one, removing overlaps.
384  *
385  */
386 static int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map)
387 {
388         struct change_member {
389                 struct e820entry *pbios; /* pointer to original bios entry */
390                 unsigned long long addr; /* address for this change point */
391         };
392         static struct change_member change_point_list[2*E820MAX] __initdata;
393         static struct change_member *change_point[2*E820MAX] __initdata;
394         static struct e820entry *overlap_list[E820MAX] __initdata;
395         static struct e820entry new_bios[E820MAX] __initdata;
396         struct change_member *change_tmp;
397         unsigned long current_type, last_type;
398         unsigned long long last_addr;
399         int chgidx, still_changing;
400         int overlap_entries;
401         int new_bios_entry;
402         int old_nr, new_nr, chg_nr;
403         int i;
404
405         /*
406                 Visually we're performing the following (1,2,3,4 = memory types)...
407
408                 Sample memory map (w/overlaps):
409                    ____22__________________
410                    ______________________4_
411                    ____1111________________
412                    _44_____________________
413                    11111111________________
414                    ____________________33__
415                    ___________44___________
416                    __________33333_________
417                    ______________22________
418                    ___________________2222_
419                    _________111111111______
420                    _____________________11_
421                    _________________4______
422
423                 Sanitized equivalent (no overlap):
424                    1_______________________
425                    _44_____________________
426                    ___1____________________
427                    ____22__________________
428                    ______11________________
429                    _________1______________
430                    __________3_____________
431                    ___________44___________
432                    _____________33_________
433                    _______________2________
434                    ________________1_______
435                    _________________4______
436                    ___________________2____
437                    ____________________33__
438                    ______________________4_
439         */
440
441         /* if there's only one memory region, don't bother */
442         if (*pnr_map < 2)
443                 return -1;
444
445         old_nr = *pnr_map;
446
447         /* bail out if we find any unreasonable addresses in bios map */
448         for (i=0; i<old_nr; i++)
449                 if (biosmap[i].addr + biosmap[i].size < biosmap[i].addr)
450                         return -1;
451
452         /* create pointers for initial change-point information (for sorting) */
453         for (i=0; i < 2*old_nr; i++)
454                 change_point[i] = &change_point_list[i];
455
456         /* record all known change-points (starting and ending addresses),
457            omitting those that are for empty memory regions */
458         chgidx = 0;
459         for (i=0; i < old_nr; i++)      {
460                 if (biosmap[i].size != 0) {
461                         change_point[chgidx]->addr = biosmap[i].addr;
462                         change_point[chgidx++]->pbios = &biosmap[i];
463                         change_point[chgidx]->addr = biosmap[i].addr + biosmap[i].size;
464                         change_point[chgidx++]->pbios = &biosmap[i];
465                 }
466         }
467         chg_nr = chgidx;
468
469         /* sort change-point list by memory addresses (low -> high) */
470         still_changing = 1;
471         while (still_changing)  {
472                 still_changing = 0;
473                 for (i=1; i < chg_nr; i++)  {
474                         /* if <current_addr> > <last_addr>, swap */
475                         /* or, if current=<start_addr> & last=<end_addr>, swap */
476                         if ((change_point[i]->addr < change_point[i-1]->addr) ||
477                                 ((change_point[i]->addr == change_point[i-1]->addr) &&
478                                  (change_point[i]->addr == change_point[i]->pbios->addr) &&
479                                  (change_point[i-1]->addr != change_point[i-1]->pbios->addr))
480                            )
481                         {
482                                 change_tmp = change_point[i];
483                                 change_point[i] = change_point[i-1];
484                                 change_point[i-1] = change_tmp;
485                                 still_changing=1;
486                         }
487                 }
488         }
489
490         /* create a new bios memory map, removing overlaps */
491         overlap_entries=0;       /* number of entries in the overlap table */
492         new_bios_entry=0;        /* index for creating new bios map entries */
493         last_type = 0;           /* start with undefined memory type */
494         last_addr = 0;           /* start with 0 as last starting address */
495         /* loop through change-points, determining affect on the new bios map */
496         for (chgidx=0; chgidx < chg_nr; chgidx++)
497         {
498                 /* keep track of all overlapping bios entries */
499                 if (change_point[chgidx]->addr == change_point[chgidx]->pbios->addr)
500                 {
501                         /* add map entry to overlap list (> 1 entry implies an overlap) */
502                         overlap_list[overlap_entries++]=change_point[chgidx]->pbios;
503                 }
504                 else
505                 {
506                         /* remove entry from list (order independent, so swap with last) */
507                         for (i=0; i<overlap_entries; i++)
508                         {
509                                 if (overlap_list[i] == change_point[chgidx]->pbios)
510                                         overlap_list[i] = overlap_list[overlap_entries-1];
511                         }
512                         overlap_entries--;
513                 }
514                 /* if there are overlapping entries, decide which "type" to use */
515                 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
516                 current_type = 0;
517                 for (i=0; i<overlap_entries; i++)
518                         if (overlap_list[i]->type > current_type)
519                                 current_type = overlap_list[i]->type;
520                 /* continue building up new bios map based on this information */
521                 if (current_type != last_type)  {
522                         if (last_type != 0)      {
523                                 new_bios[new_bios_entry].size =
524                                         change_point[chgidx]->addr - last_addr;
525                                 /* move forward only if the new size was non-zero */
526                                 if (new_bios[new_bios_entry].size != 0)
527                                         if (++new_bios_entry >= E820MAX)
528                                                 break;  /* no more space left for new bios entries */
529                         }
530                         if (current_type != 0)  {
531                                 new_bios[new_bios_entry].addr = change_point[chgidx]->addr;
532                                 new_bios[new_bios_entry].type = current_type;
533                                 last_addr=change_point[chgidx]->addr;
534                         }
535                         last_type = current_type;
536                 }
537         }
538         new_nr = new_bios_entry;   /* retain count for new bios entries */
539
540         /* copy new bios mapping into original location */
541         memcpy(biosmap, new_bios, new_nr*sizeof(struct e820entry));
542         *pnr_map = new_nr;
543
544         return 0;
545 }
546
547 /*
548  * Copy the BIOS e820 map into a safe place.
549  *
550  * Sanity-check it while we're at it..
551  *
552  * If we're lucky and live on a modern system, the setup code
553  * will have given us a memory map that we can use to properly
554  * set up memory.  If we aren't, we'll fake a memory map.
555  */
556 static int __init copy_e820_map(struct e820entry * biosmap, int nr_map)
557 {
558         /* Only one memory region (or negative)? Ignore it */
559         if (nr_map < 2)
560                 return -1;
561
562         do {
563                 unsigned long start = biosmap->addr;
564                 unsigned long size = biosmap->size;
565                 unsigned long end = start + size;
566                 unsigned long type = biosmap->type;
567
568                 /* Overflow in 64 bits? Ignore the memory map. */
569                 if (start > end)
570                         return -1;
571
572                 add_memory_region(start, size, type);
573         } while (biosmap++,--nr_map);
574         return 0;
575 }
576
577 void early_panic(char *msg)
578 {
579         early_printk(msg);
580         panic(msg);
581 }
582
583 void __init setup_memory_region(void)
584 {
585         /*
586          * Try to copy the BIOS-supplied E820-map.
587          *
588          * Otherwise fake a memory map; one section from 0k->640k,
589          * the next section from 1mb->appropriate_mem_k
590          */
591         sanitize_e820_map(E820_MAP, &E820_MAP_NR);
592         if (copy_e820_map(E820_MAP, E820_MAP_NR) < 0)
593                 early_panic("Cannot find a valid memory map");
594         printk(KERN_INFO "BIOS-provided physical RAM map:\n");
595         e820_print_map("BIOS-e820");
596 }
597
598 static int __init parse_memopt(char *p)
599 {
600         if (!p)
601                 return -EINVAL;
602         end_user_pfn = memparse(p, &p);
603         end_user_pfn >>= PAGE_SHIFT;    
604         return 0;
605
606 early_param("mem", parse_memopt);
607
608 static int userdef __initdata;
609
610 static int __init parse_memmap_opt(char *p)
611 {
612         char *oldp;
613         unsigned long long start_at, mem_size;
614
615         if (!strcmp(p, "exactmap")) {
616 #ifdef CONFIG_CRASH_DUMP
617                 /* If we are doing a crash dump, we
618                  * still need to know the real mem
619                  * size before original memory map is
620                  * reset.
621                  */
622                 e820_register_active_regions(0, 0, -1UL);
623                 saved_max_pfn = e820_end_of_ram();
624                 remove_all_active_ranges();
625 #endif
626                 end_pfn_map = 0;
627                 e820.nr_map = 0;
628                 userdef = 1;
629                 return 0;
630         }
631
632         oldp = p;
633         mem_size = memparse(p, &p);
634         if (p == oldp)
635                 return -EINVAL;
636         if (*p == '@') {
637                 start_at = memparse(p+1, &p);
638                 add_memory_region(start_at, mem_size, E820_RAM);
639         } else if (*p == '#') {
640                 start_at = memparse(p+1, &p);
641                 add_memory_region(start_at, mem_size, E820_ACPI);
642         } else if (*p == '$') {
643                 start_at = memparse(p+1, &p);
644                 add_memory_region(start_at, mem_size, E820_RESERVED);
645         } else {
646                 end_user_pfn = (mem_size >> PAGE_SHIFT);
647         }
648         return *p == '\0' ? 0 : -EINVAL;
649 }
650 early_param("memmap", parse_memmap_opt);
651
652 void __init finish_e820_parsing(void)
653 {
654         if (userdef) {
655                 printk(KERN_INFO "user-defined physical RAM map:\n");
656                 e820_print_map("user");
657         }
658 }
659
660 unsigned long pci_mem_start = 0xaeedbabe;
661 EXPORT_SYMBOL(pci_mem_start);
662
663 /*
664  * Search for the biggest gap in the low 32 bits of the e820
665  * memory space.  We pass this space to PCI to assign MMIO resources
666  * for hotplug or unconfigured devices in.
667  * Hopefully the BIOS let enough space left.
668  */
669 __init void e820_setup_gap(void)
670 {
671         unsigned long gapstart, gapsize, round;
672         unsigned long last;
673         int i;
674         int found = 0;
675
676         last = 0x100000000ull;
677         gapstart = 0x10000000;
678         gapsize = 0x400000;
679         i = e820.nr_map;
680         while (--i >= 0) {
681                 unsigned long long start = e820.map[i].addr;
682                 unsigned long long end = start + e820.map[i].size;
683
684                 /*
685                  * Since "last" is at most 4GB, we know we'll
686                  * fit in 32 bits if this condition is true
687                  */
688                 if (last > end) {
689                         unsigned long gap = last - end;
690
691                         if (gap > gapsize) {
692                                 gapsize = gap;
693                                 gapstart = end;
694                                 found = 1;
695                         }
696                 }
697                 if (start < last)
698                         last = start;
699         }
700
701         if (!found) {
702                 gapstart = (end_pfn << PAGE_SHIFT) + 1024*1024;
703                 printk(KERN_ERR "PCI: Warning: Cannot find a gap in the 32bit address range\n"
704                        KERN_ERR "PCI: Unassigned devices with 32bit resource registers may break!\n");
705         }
706
707         /*
708          * See how much we want to round up: start off with
709          * rounding to the next 1MB area.
710          */
711         round = 0x100000;
712         while ((gapsize >> 4) > round)
713                 round += round;
714         /* Fun with two's complement */
715         pci_mem_start = (gapstart + round) & -round;
716
717         printk(KERN_INFO "Allocating PCI resources starting at %lx (gap: %lx:%lx)\n",
718                 pci_mem_start, gapstart, gapsize);
719 }