vserver 1.9.5.x5
[linux-2.6.git] / arch / arm / mm / mm-armv.c
1 /*
2  *  linux/arch/arm/mm/mm-armv.c
3  *
4  *  Copyright (C) 1998-2002 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  *  Page table sludge for ARM v3 and v4 processor architectures.
11  */
12 #include <linux/config.h>
13 #include <linux/module.h>
14 #include <linux/mm.h>
15 #include <linux/init.h>
16 #include <linux/bootmem.h>
17 #include <linux/highmem.h>
18 #include <linux/nodemask.h>
19
20 #include <asm/pgalloc.h>
21 #include <asm/page.h>
22 #include <asm/io.h>
23 #include <asm/setup.h>
24 #include <asm/tlbflush.h>
25
26 #include <asm/mach/map.h>
27
28 #define CPOLICY_UNCACHED        0
29 #define CPOLICY_BUFFERED        1
30 #define CPOLICY_WRITETHROUGH    2
31 #define CPOLICY_WRITEBACK       3
32 #define CPOLICY_WRITEALLOC      4
33
34 static unsigned int cachepolicy __initdata = CPOLICY_WRITEBACK;
35 static unsigned int ecc_mask __initdata = 0;
36 pgprot_t pgprot_kernel;
37
38 EXPORT_SYMBOL(pgprot_kernel);
39
40 struct cachepolicy {
41         const char      policy[16];
42         unsigned int    cr_mask;
43         unsigned int    pmd;
44         unsigned int    pte;
45 };
46
47 static struct cachepolicy cache_policies[] __initdata = {
48         {
49                 .policy         = "uncached",
50                 .cr_mask        = CR_W|CR_C,
51                 .pmd            = PMD_SECT_UNCACHED,
52                 .pte            = 0,
53         }, {
54                 .policy         = "buffered",
55                 .cr_mask        = CR_C,
56                 .pmd            = PMD_SECT_BUFFERED,
57                 .pte            = PTE_BUFFERABLE,
58         }, {
59                 .policy         = "writethrough",
60                 .cr_mask        = 0,
61                 .pmd            = PMD_SECT_WT,
62                 .pte            = PTE_CACHEABLE,
63         }, {
64                 .policy         = "writeback",
65                 .cr_mask        = 0,
66                 .pmd            = PMD_SECT_WB,
67                 .pte            = PTE_BUFFERABLE|PTE_CACHEABLE,
68         }, {
69                 .policy         = "writealloc",
70                 .cr_mask        = 0,
71                 .pmd            = PMD_SECT_WBWA,
72                 .pte            = PTE_BUFFERABLE|PTE_CACHEABLE,
73         }
74 };
75
76 /*
77  * These are useful for identifing cache coherency
78  * problems by allowing the cache or the cache and
79  * writebuffer to be turned off.  (Note: the write
80  * buffer should not be on and the cache off).
81  */
82 static void __init early_cachepolicy(char **p)
83 {
84         int i;
85
86         for (i = 0; i < ARRAY_SIZE(cache_policies); i++) {
87                 int len = strlen(cache_policies[i].policy);
88
89                 if (memcmp(*p, cache_policies[i].policy, len) == 0) {
90                         cachepolicy = i;
91                         cr_alignment &= ~cache_policies[i].cr_mask;
92                         cr_no_alignment &= ~cache_policies[i].cr_mask;
93                         *p += len;
94                         break;
95                 }
96         }
97         if (i == ARRAY_SIZE(cache_policies))
98                 printk(KERN_ERR "ERROR: unknown or unsupported cache policy\n");
99         flush_cache_all();
100         set_cr(cr_alignment);
101 }
102
103 static void __init early_nocache(char **__unused)
104 {
105         char *p = "buffered";
106         printk(KERN_WARNING "nocache is deprecated; use cachepolicy=%s\n", p);
107         early_cachepolicy(&p);
108 }
109
110 static void __init early_nowrite(char **__unused)
111 {
112         char *p = "uncached";
113         printk(KERN_WARNING "nowb is deprecated; use cachepolicy=%s\n", p);
114         early_cachepolicy(&p);
115 }
116
117 static void __init early_ecc(char **p)
118 {
119         if (memcmp(*p, "on", 2) == 0) {
120                 ecc_mask = PMD_PROTECTION;
121                 *p += 2;
122         } else if (memcmp(*p, "off", 3) == 0) {
123                 ecc_mask = 0;
124                 *p += 3;
125         }
126 }
127
128 __early_param("nocache", early_nocache);
129 __early_param("nowb", early_nowrite);
130 __early_param("cachepolicy=", early_cachepolicy);
131 __early_param("ecc=", early_ecc);
132
133 static int __init noalign_setup(char *__unused)
134 {
135         cr_alignment &= ~CR_A;
136         cr_no_alignment &= ~CR_A;
137         set_cr(cr_alignment);
138         return 1;
139 }
140
141 __setup("noalign", noalign_setup);
142
143 #define FIRST_KERNEL_PGD_NR     (FIRST_USER_PGD_NR + USER_PTRS_PER_PGD)
144
145 /*
146  * need to get a 16k page for level 1
147  */
148 pgd_t *get_pgd_slow(struct mm_struct *mm)
149 {
150         pgd_t *new_pgd, *init_pgd;
151         pmd_t *new_pmd, *init_pmd;
152         pte_t *new_pte, *init_pte;
153
154         new_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL, 2);
155         if (!new_pgd)
156                 goto no_pgd;
157
158         memzero(new_pgd, FIRST_KERNEL_PGD_NR * sizeof(pgd_t));
159
160         init_pgd = pgd_offset_k(0);
161
162         if (!vectors_high()) {
163                 /*
164                  * This lock is here just to satisfy pmd_alloc and pte_lock
165                  */
166                 spin_lock(&mm->page_table_lock);
167
168                 /*
169                  * On ARM, first page must always be allocated since it
170                  * contains the machine vectors.
171                  */
172                 new_pmd = pmd_alloc(mm, new_pgd, 0);
173                 if (!new_pmd)
174                         goto no_pmd;
175
176                 new_pte = pte_alloc_map(mm, new_pmd, 0);
177                 if (!new_pte)
178                         goto no_pte;
179
180                 init_pmd = pmd_offset(init_pgd, 0);
181                 init_pte = pte_offset_map_nested(init_pmd, 0);
182                 set_pte(new_pte, *init_pte);
183                 pte_unmap_nested(init_pte);
184                 pte_unmap(new_pte);
185
186                 spin_unlock(&mm->page_table_lock);
187         }
188
189         /*
190          * Copy over the kernel and IO PGD entries
191          */
192         memcpy(new_pgd + FIRST_KERNEL_PGD_NR, init_pgd + FIRST_KERNEL_PGD_NR,
193                        (PTRS_PER_PGD - FIRST_KERNEL_PGD_NR) * sizeof(pgd_t));
194
195         clean_dcache_area(new_pgd, PTRS_PER_PGD * sizeof(pgd_t));
196
197         return new_pgd;
198
199 no_pte:
200         spin_unlock(&mm->page_table_lock);
201         pmd_free(new_pmd);
202         free_pages((unsigned long)new_pgd, 2);
203         return NULL;
204
205 no_pmd:
206         spin_unlock(&mm->page_table_lock);
207         free_pages((unsigned long)new_pgd, 2);
208         return NULL;
209
210 no_pgd:
211         return NULL;
212 }
213
214 void free_pgd_slow(pgd_t *pgd)
215 {
216         pmd_t *pmd;
217         struct page *pte;
218
219         if (!pgd)
220                 return;
221
222         /* pgd is always present and good */
223         pmd = (pmd_t *)pgd;
224         if (pmd_none(*pmd))
225                 goto free;
226         if (pmd_bad(*pmd)) {
227                 pmd_ERROR(*pmd);
228                 pmd_clear(pmd);
229                 goto free;
230         }
231
232         pte = pmd_page(*pmd);
233         pmd_clear(pmd);
234         dec_page_state(nr_page_table_pages);
235         pte_free(pte);
236         pmd_free(pmd);
237 free:
238         free_pages((unsigned long) pgd, 2);
239 }
240
241 /*
242  * Create a SECTION PGD between VIRT and PHYS in domain
243  * DOMAIN with protection PROT.  This operates on half-
244  * pgdir entry increments.
245  */
246 static inline void
247 alloc_init_section(unsigned long virt, unsigned long phys, int prot)
248 {
249         pmd_t *pmdp;
250
251         pmdp = pmd_offset(pgd_offset_k(virt), virt);
252         if (virt & (1 << 20))
253                 pmdp++;
254
255         set_pmd(pmdp, __pmd(phys | prot));
256 }
257
258 /*
259  * Add a PAGE mapping between VIRT and PHYS in domain
260  * DOMAIN with protection PROT.  Note that due to the
261  * way we map the PTEs, we must allocate two PTE_SIZE'd
262  * blocks - one for the Linux pte table, and one for
263  * the hardware pte table.
264  */
265 static inline void
266 alloc_init_page(unsigned long virt, unsigned long phys, unsigned int prot_l1, pgprot_t prot)
267 {
268         pmd_t *pmdp;
269         pte_t *ptep;
270
271         pmdp = pmd_offset(pgd_offset_k(virt), virt);
272
273         if (pmd_none(*pmdp)) {
274                 unsigned long pmdval;
275                 ptep = alloc_bootmem_low_pages(2 * PTRS_PER_PTE *
276                                                sizeof(pte_t));
277
278                 pmdval = __pa(ptep) | prot_l1;
279                 pmdp[0] = __pmd(pmdval);
280                 pmdp[1] = __pmd(pmdval + 256 * sizeof(pte_t));
281                 flush_pmd_entry(pmdp);
282         }
283         ptep = pte_offset_kernel(pmdp, virt);
284
285         set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, prot));
286 }
287
288 /*
289  * Clear any PGD mapping.  On a two-level page table system,
290  * the clearance is done by the middle-level functions (pmd)
291  * rather than the top-level (pgd) functions.
292  */
293 static inline void clear_mapping(unsigned long virt)
294 {
295         pmd_clear(pmd_offset(pgd_offset_k(virt), virt));
296 }
297
298 struct mem_types {
299         unsigned int    prot_pte;
300         unsigned int    prot_l1;
301         unsigned int    prot_sect;
302         unsigned int    domain;
303 };
304
305 static struct mem_types mem_types[] __initdata = {
306         [MT_DEVICE] = {
307                 .prot_pte  = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY |
308                                 L_PTE_WRITE,
309                 .prot_l1   = PMD_TYPE_TABLE,
310                 .prot_sect = PMD_TYPE_SECT | PMD_SECT_UNCACHED |
311                                 PMD_SECT_AP_WRITE,
312                 .domain    = DOMAIN_IO,
313         },
314         [MT_CACHECLEAN] = {
315                 .prot_sect = PMD_TYPE_SECT,
316                 .domain    = DOMAIN_KERNEL,
317         },
318         [MT_MINICLEAN] = {
319                 .prot_sect = PMD_TYPE_SECT | PMD_SECT_MINICACHE,
320                 .domain    = DOMAIN_KERNEL,
321         },
322         [MT_LOW_VECTORS] = {
323                 .prot_pte  = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY |
324                                 L_PTE_EXEC,
325                 .prot_l1   = PMD_TYPE_TABLE,
326                 .domain    = DOMAIN_USER,
327         },
328         [MT_HIGH_VECTORS] = {
329                 .prot_pte  = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY |
330                                 L_PTE_USER | L_PTE_EXEC,
331                 .prot_l1   = PMD_TYPE_TABLE,
332                 .domain    = DOMAIN_USER,
333         },
334         [MT_MEMORY] = {
335                 .prot_sect = PMD_TYPE_SECT | PMD_SECT_AP_WRITE,
336                 .domain    = DOMAIN_KERNEL,
337         },
338         [MT_ROM] = {
339                 .prot_sect = PMD_TYPE_SECT,
340                 .domain    = DOMAIN_KERNEL,
341         }
342 };
343
344 /*
345  * Adjust the PMD section entries according to the CPU in use.
346  */
347 static void __init build_mem_type_table(void)
348 {
349         struct cachepolicy *cp;
350         unsigned int cr = get_cr();
351         int cpu_arch = cpu_architecture();
352         int i;
353
354 #if defined(CONFIG_CPU_DCACHE_DISABLE)
355         if (cachepolicy > CPOLICY_BUFFERED)
356                 cachepolicy = CPOLICY_BUFFERED;
357 #elif defined(CONFIG_CPU_DCACHE_WRITETHROUGH)
358         if (cachepolicy > CPOLICY_WRITETHROUGH)
359                 cachepolicy = CPOLICY_WRITETHROUGH;
360 #endif
361         if (cpu_arch < CPU_ARCH_ARMv5) {
362                 if (cachepolicy >= CPOLICY_WRITEALLOC)
363                         cachepolicy = CPOLICY_WRITEBACK;
364                 ecc_mask = 0;
365         }
366
367         if (cpu_arch <= CPU_ARCH_ARMv5) {
368                 for (i = 0; i < ARRAY_SIZE(mem_types); i++) {
369                         if (mem_types[i].prot_l1)
370                                 mem_types[i].prot_l1 |= PMD_BIT4;
371                         if (mem_types[i].prot_sect)
372                                 mem_types[i].prot_sect |= PMD_BIT4;
373                 }
374         }
375
376         /*
377          * ARMv6 and above have extended page tables.
378          */
379         if (cpu_arch >= CPU_ARCH_ARMv6 && (cr & CR_XP)) {
380                 /*
381                  * bit 4 becomes XN which we must clear for the
382                  * kernel memory mapping.
383                  */
384                 mem_types[MT_MEMORY].prot_sect &= ~PMD_BIT4;
385                 mem_types[MT_ROM].prot_sect &= ~PMD_BIT4;
386                 /*
387                  * Mark cache clean areas read only from SVC mode
388                  * and no access from userspace.
389                  */
390                 mem_types[MT_MINICLEAN].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE;
391                 mem_types[MT_CACHECLEAN].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE;
392         }
393
394         cp = &cache_policies[cachepolicy];
395
396         if (cpu_arch >= CPU_ARCH_ARMv5) {
397                 mem_types[MT_LOW_VECTORS].prot_pte |= cp->pte & PTE_CACHEABLE;
398                 mem_types[MT_HIGH_VECTORS].prot_pte |= cp->pte & PTE_CACHEABLE;
399         } else {
400                 mem_types[MT_LOW_VECTORS].prot_pte |= cp->pte;
401                 mem_types[MT_HIGH_VECTORS].prot_pte |= cp->pte;
402                 mem_types[MT_MINICLEAN].prot_sect &= ~PMD_SECT_TEX(1);
403         }
404
405         mem_types[MT_LOW_VECTORS].prot_l1 |= ecc_mask;
406         mem_types[MT_HIGH_VECTORS].prot_l1 |= ecc_mask;
407         mem_types[MT_MEMORY].prot_sect |= ecc_mask | cp->pmd;
408         mem_types[MT_ROM].prot_sect |= cp->pmd;
409
410         for (i = 0; i < 16; i++) {
411                 unsigned long v = pgprot_val(protection_map[i]);
412                 v &= (~(PTE_BUFFERABLE|PTE_CACHEABLE)) | cp->pte;
413                 protection_map[i] = __pgprot(v);
414         }
415
416         pgprot_kernel = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG |
417                                  L_PTE_DIRTY | L_PTE_WRITE |
418                                  L_PTE_EXEC | cp->pte);
419
420         switch (cp->pmd) {
421         case PMD_SECT_WT:
422                 mem_types[MT_CACHECLEAN].prot_sect |= PMD_SECT_WT;
423                 break;
424         case PMD_SECT_WB:
425         case PMD_SECT_WBWA:
426                 mem_types[MT_CACHECLEAN].prot_sect |= PMD_SECT_WB;
427                 break;
428         }
429         printk("Memory policy: ECC %sabled, Data cache %s\n",
430                 ecc_mask ? "en" : "dis", cp->policy);
431 }
432
433 #define vectors_base()  (vectors_high() ? 0xffff0000 : 0)
434
435 /*
436  * Create the page directory entries and any necessary
437  * page tables for the mapping specified by `md'.  We
438  * are able to cope here with varying sizes and address
439  * offsets, and we take full advantage of sections.
440  */
441 static void __init create_mapping(struct map_desc *md)
442 {
443         unsigned long virt, length;
444         int prot_sect, prot_l1, domain;
445         pgprot_t prot_pte;
446         long off;
447
448         if (md->virtual != vectors_base() && md->virtual < TASK_SIZE) {
449                 printk(KERN_WARNING "BUG: not creating mapping for "
450                        "0x%08lx at 0x%08lx in user region\n",
451                        md->physical, md->virtual);
452                 return;
453         }
454
455         if ((md->type == MT_DEVICE || md->type == MT_ROM) &&
456             md->virtual >= PAGE_OFFSET && md->virtual < VMALLOC_END) {
457                 printk(KERN_WARNING "BUG: mapping for 0x%08lx at 0x%08lx "
458                        "overlaps vmalloc space\n",
459                        md->physical, md->virtual);
460         }
461
462         domain    = mem_types[md->type].domain;
463         prot_pte  = __pgprot(mem_types[md->type].prot_pte);
464         prot_l1   = mem_types[md->type].prot_l1 | PMD_DOMAIN(domain);
465         prot_sect = mem_types[md->type].prot_sect | PMD_DOMAIN(domain);
466
467         virt   = md->virtual;
468         off    = md->physical - virt;
469         length = md->length;
470
471         if (mem_types[md->type].prot_l1 == 0 &&
472             (virt & 0xfffff || (virt + off) & 0xfffff || (virt + length) & 0xfffff)) {
473                 printk(KERN_WARNING "BUG: map for 0x%08lx at 0x%08lx can not "
474                        "be mapped using pages, ignoring.\n",
475                        md->physical, md->virtual);
476                 return;
477         }
478
479         while ((virt & 0xfffff || (virt + off) & 0xfffff) && length >= PAGE_SIZE) {
480                 alloc_init_page(virt, virt + off, prot_l1, prot_pte);
481
482                 virt   += PAGE_SIZE;
483                 length -= PAGE_SIZE;
484         }
485
486         /*
487          * A section mapping covers half a "pgdir" entry.
488          */
489         while (length >= (PGDIR_SIZE / 2)) {
490                 alloc_init_section(virt, virt + off, prot_sect);
491
492                 virt   += (PGDIR_SIZE / 2);
493                 length -= (PGDIR_SIZE / 2);
494         }
495
496         while (length >= PAGE_SIZE) {
497                 alloc_init_page(virt, virt + off, prot_l1, prot_pte);
498
499                 virt   += PAGE_SIZE;
500                 length -= PAGE_SIZE;
501         }
502 }
503
504 /*
505  * In order to soft-boot, we need to insert a 1:1 mapping in place of
506  * the user-mode pages.  This will then ensure that we have predictable
507  * results when turning the mmu off
508  */
509 void setup_mm_for_reboot(char mode)
510 {
511         unsigned long pmdval;
512         pgd_t *pgd;
513         pmd_t *pmd;
514         int i;
515         int cpu_arch = cpu_architecture();
516
517         if (current->mm && current->mm->pgd)
518                 pgd = current->mm->pgd;
519         else
520                 pgd = init_mm.pgd;
521
522         for (i = 0; i < FIRST_USER_PGD_NR + USER_PTRS_PER_PGD; i++) {
523                 pmdval = (i << PGDIR_SHIFT) |
524                          PMD_SECT_AP_WRITE | PMD_SECT_AP_READ |
525                          PMD_TYPE_SECT;
526                 if (cpu_arch <= CPU_ARCH_ARMv5)
527                         pmdval |= PMD_BIT4;
528                 pmd = pmd_offset(pgd + i, i << PGDIR_SHIFT);
529                 set_pmd(pmd, __pmd(pmdval));
530                 set_pmd(pmd + 1, __pmd(pmdval + (1 << (PGDIR_SHIFT - 1))));
531         }
532 }
533
534 extern void _stext, _etext;
535
536 /*
537  * Setup initial mappings.  We use the page we allocated for zero page to hold
538  * the mappings, which will get overwritten by the vectors in traps_init().
539  * The mappings must be in virtual address order.
540  */
541 void __init memtable_init(struct meminfo *mi)
542 {
543         struct map_desc *init_maps, *p, *q;
544         unsigned long address = 0;
545         int i;
546
547         build_mem_type_table();
548
549         init_maps = p = alloc_bootmem_low_pages(PAGE_SIZE);
550
551 #ifdef CONFIG_XIP_KERNEL
552         p->physical   = CONFIG_XIP_PHYS_ADDR & PMD_MASK;
553         p->virtual    = (unsigned long)&_stext & PMD_MASK;
554         p->length     = ((unsigned long)&_etext - p->virtual + ~PMD_MASK) & PMD_MASK;
555         p->type       = MT_ROM;
556         p ++;
557 #endif
558
559         for (i = 0; i < mi->nr_banks; i++) {
560                 if (mi->bank[i].size == 0)
561                         continue;
562
563                 p->physical   = mi->bank[i].start;
564                 p->virtual    = __phys_to_virt(p->physical);
565                 p->length     = mi->bank[i].size;
566                 p->type       = MT_MEMORY;
567                 p ++;
568         }
569
570 #ifdef FLUSH_BASE
571         p->physical   = FLUSH_BASE_PHYS;
572         p->virtual    = FLUSH_BASE;
573         p->length     = PGDIR_SIZE;
574         p->type       = MT_CACHECLEAN;
575         p ++;
576 #endif
577
578 #ifdef FLUSH_BASE_MINICACHE
579         p->physical   = FLUSH_BASE_PHYS + PGDIR_SIZE;
580         p->virtual    = FLUSH_BASE_MINICACHE;
581         p->length     = PGDIR_SIZE;
582         p->type       = MT_MINICLEAN;
583         p ++;
584 #endif
585
586         /*
587          * Go through the initial mappings, but clear out any
588          * pgdir entries that are not in the description.
589          */
590         q = init_maps;
591         do {
592                 if (address < q->virtual || q == p) {
593                         clear_mapping(address);
594                         address += PGDIR_SIZE;
595                 } else {
596                         create_mapping(q);
597
598                         address = q->virtual + q->length;
599                         address = (address + PGDIR_SIZE - 1) & PGDIR_MASK;
600
601                         q ++;
602                 }
603         } while (address != 0);
604
605         /*
606          * Create a mapping for the machine vectors at the high-vectors
607          * location (0xffff0000).  If we aren't using high-vectors, also
608          * create a mapping at the low-vectors virtual address.
609          */
610         init_maps->physical   = virt_to_phys(init_maps);
611         init_maps->virtual    = 0xffff0000;
612         init_maps->length     = PAGE_SIZE;
613         init_maps->type       = MT_HIGH_VECTORS;
614         create_mapping(init_maps);
615
616         if (!vectors_high()) {
617                 init_maps->virtual = 0;
618                 init_maps->type = MT_LOW_VECTORS;
619                 create_mapping(init_maps);
620         }
621
622         flush_cache_all();
623         flush_tlb_all();
624 }
625
626 /*
627  * Create the architecture specific mappings
628  */
629 void __init iotable_init(struct map_desc *io_desc, int nr)
630 {
631         int i;
632
633         for (i = 0; i < nr; i++)
634                 create_mapping(io_desc + i);
635 }
636
637 static inline void
638 free_memmap(int node, unsigned long start_pfn, unsigned long end_pfn)
639 {
640         struct page *start_pg, *end_pg;
641         unsigned long pg, pgend;
642
643         /*
644          * Convert start_pfn/end_pfn to a struct page pointer.
645          */
646         start_pg = pfn_to_page(start_pfn);
647         end_pg = pfn_to_page(end_pfn);
648
649         /*
650          * Convert to physical addresses, and
651          * round start upwards and end downwards.
652          */
653         pg = PAGE_ALIGN(__pa(start_pg));
654         pgend = __pa(end_pg) & PAGE_MASK;
655
656         /*
657          * If there are free pages between these,
658          * free the section of the memmap array.
659          */
660         if (pg < pgend)
661                 free_bootmem_node(NODE_DATA(node), pg, pgend - pg);
662 }
663
664 static inline void free_unused_memmap_node(int node, struct meminfo *mi)
665 {
666         unsigned long bank_start, prev_bank_end = 0;
667         unsigned int i;
668
669         /*
670          * [FIXME] This relies on each bank being in address order.  This
671          * may not be the case, especially if the user has provided the
672          * information on the command line.
673          */
674         for (i = 0; i < mi->nr_banks; i++) {
675                 if (mi->bank[i].size == 0 || mi->bank[i].node != node)
676                         continue;
677
678                 bank_start = mi->bank[i].start >> PAGE_SHIFT;
679                 if (bank_start < prev_bank_end) {
680                         printk(KERN_ERR "MEM: unordered memory banks.  "
681                                 "Not freeing memmap.\n");
682                         break;
683                 }
684
685                 /*
686                  * If we had a previous bank, and there is a space
687                  * between the current bank and the previous, free it.
688                  */
689                 if (prev_bank_end && prev_bank_end != bank_start)
690                         free_memmap(node, prev_bank_end, bank_start);
691
692                 prev_bank_end = PAGE_ALIGN(mi->bank[i].start +
693                                            mi->bank[i].size) >> PAGE_SHIFT;
694         }
695 }
696
697 /*
698  * The mem_map array can get very big.  Free
699  * the unused area of the memory map.
700  */
701 void __init create_memmap_holes(struct meminfo *mi)
702 {
703         int node;
704
705         for_each_online_node(node)
706                 free_unused_memmap_node(node, mi);
707 }