2 * sparse memory mappings.
5 #include <linux/mmzone.h>
6 #include <linux/bootmem.h>
7 #include <linux/highmem.h>
8 #include <linux/module.h>
9 #include <linux/spinlock.h>
10 #include <linux/vmalloc.h>
12 #include <asm/pgalloc.h>
13 #include <asm/pgtable.h>
16 * Permanent SPARSEMEM data:
18 * 1) mem_section - memory sections, mem_map's for valid memory
20 #ifdef CONFIG_SPARSEMEM_EXTREME
21 struct mem_section
*mem_section
[NR_SECTION_ROOTS
]
22 ____cacheline_internodealigned_in_smp
;
24 struct mem_section mem_section
[NR_SECTION_ROOTS
][SECTIONS_PER_ROOT
]
25 ____cacheline_internodealigned_in_smp
;
27 EXPORT_SYMBOL(mem_section
);
29 #ifdef NODE_NOT_IN_PAGE_FLAGS
31 * If we did not store the node number in the page then we have to
32 * do a lookup in the section_to_node_table in order to find which
33 * node the page belongs to.
35 #if MAX_NUMNODES <= 256
36 static u8 section_to_node_table
[NR_MEM_SECTIONS
] __cacheline_aligned
;
38 static u16 section_to_node_table
[NR_MEM_SECTIONS
] __cacheline_aligned
;
41 int page_to_nid(struct page
*page
)
43 return section_to_node_table
[page_to_section(page
)];
45 EXPORT_SYMBOL(page_to_nid
);
47 static void set_section_nid(unsigned long section_nr
, int nid
)
49 section_to_node_table
[section_nr
] = nid
;
51 #else /* !NODE_NOT_IN_PAGE_FLAGS */
52 static inline void set_section_nid(unsigned long section_nr
, int nid
)
57 #ifdef CONFIG_SPARSEMEM_EXTREME
58 static struct mem_section noinline __init_refok
*sparse_index_alloc(int nid
)
60 struct mem_section
*section
= NULL
;
61 unsigned long array_size
= SECTIONS_PER_ROOT
*
62 sizeof(struct mem_section
);
64 if (slab_is_available())
65 section
= kmalloc_node(array_size
, GFP_KERNEL
, nid
);
67 section
= alloc_bootmem_node(NODE_DATA(nid
), array_size
);
70 memset(section
, 0, array_size
);
75 static int __meminit
sparse_index_init(unsigned long section_nr
, int nid
)
77 static DEFINE_SPINLOCK(index_init_lock
);
78 unsigned long root
= SECTION_NR_TO_ROOT(section_nr
);
79 struct mem_section
*section
;
82 if (mem_section
[root
])
85 section
= sparse_index_alloc(nid
);
87 * This lock keeps two different sections from
88 * reallocating for the same index
90 spin_lock(&index_init_lock
);
92 if (mem_section
[root
]) {
97 mem_section
[root
] = section
;
99 spin_unlock(&index_init_lock
);
102 #else /* !SPARSEMEM_EXTREME */
103 static inline int sparse_index_init(unsigned long section_nr
, int nid
)
110 * Although written for the SPARSEMEM_EXTREME case, this happens
111 * to also work for the flat array case because
112 * NR_SECTION_ROOTS==NR_MEM_SECTIONS.
114 int __section_nr(struct mem_section
* ms
)
116 unsigned long root_nr
;
117 struct mem_section
* root
;
119 for (root_nr
= 0; root_nr
< NR_SECTION_ROOTS
; root_nr
++) {
120 root
= __nr_to_section(root_nr
* SECTIONS_PER_ROOT
);
124 if ((ms
>= root
) && (ms
< (root
+ SECTIONS_PER_ROOT
)))
128 return (root_nr
* SECTIONS_PER_ROOT
) + (ms
- root
);
132 * During early boot, before section_mem_map is used for an actual
133 * mem_map, we use section_mem_map to store the section's NUMA
134 * node. This keeps us from having to use another data structure. The
135 * node information is cleared just before we store the real mem_map.
137 static inline unsigned long sparse_encode_early_nid(int nid
)
139 return (nid
<< SECTION_NID_SHIFT
);
142 static inline int sparse_early_nid(struct mem_section
*section
)
144 return (section
->section_mem_map
>> SECTION_NID_SHIFT
);
147 /* Record a memory area against a node. */
148 void __init
memory_present(int nid
, unsigned long start
, unsigned long end
)
152 start
&= PAGE_SECTION_MASK
;
153 for (pfn
= start
; pfn
< end
; pfn
+= PAGES_PER_SECTION
) {
154 unsigned long section
= pfn_to_section_nr(pfn
);
155 struct mem_section
*ms
;
157 sparse_index_init(section
, nid
);
158 set_section_nid(section
, nid
);
160 ms
= __nr_to_section(section
);
161 if (!ms
->section_mem_map
)
162 ms
->section_mem_map
= sparse_encode_early_nid(nid
) |
163 SECTION_MARKED_PRESENT
;
168 * Only used by the i386 NUMA architecures, but relatively
171 unsigned long __init
node_memmap_size_bytes(int nid
, unsigned long start_pfn
,
172 unsigned long end_pfn
)
175 unsigned long nr_pages
= 0;
177 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
+= PAGES_PER_SECTION
) {
178 if (nid
!= early_pfn_to_nid(pfn
))
181 if (pfn_present(pfn
))
182 nr_pages
+= PAGES_PER_SECTION
;
185 return nr_pages
* sizeof(struct page
);
189 * Subtle, we encode the real pfn into the mem_map such that
190 * the identity pfn - section_mem_map will return the actual
191 * physical page frame number.
193 static unsigned long sparse_encode_mem_map(struct page
*mem_map
, unsigned long pnum
)
195 return (unsigned long)(mem_map
- (section_nr_to_pfn(pnum
)));
199 * We need this if we ever free the mem_maps. While not implemented yet,
200 * this function is included for parity with its sibling.
202 static __attribute((unused
))
203 struct page
*sparse_decode_mem_map(unsigned long coded_mem_map
, unsigned long pnum
)
205 return ((struct page
*)coded_mem_map
) + section_nr_to_pfn(pnum
);
208 static int __meminit
sparse_init_one_section(struct mem_section
*ms
,
209 unsigned long pnum
, struct page
*mem_map
,
210 unsigned long *pageblock_bitmap
)
212 if (!present_section(ms
))
215 ms
->section_mem_map
&= ~SECTION_MAP_MASK
;
216 ms
->section_mem_map
|= sparse_encode_mem_map(mem_map
, pnum
) |
218 ms
->pageblock_flags
= pageblock_bitmap
;
223 static unsigned long usemap_size(void)
225 unsigned long size_bytes
;
226 size_bytes
= roundup(SECTION_BLOCKFLAGS_BITS
, 8) / 8;
227 size_bytes
= roundup(size_bytes
, sizeof(unsigned long));
231 #ifdef CONFIG_MEMORY_HOTPLUG
232 static unsigned long *__kmalloc_section_usemap(void)
234 return kmalloc(usemap_size(), GFP_KERNEL
);
236 #endif /* CONFIG_MEMORY_HOTPLUG */
238 static unsigned long *sparse_early_usemap_alloc(unsigned long pnum
)
240 unsigned long *usemap
;
241 struct mem_section
*ms
= __nr_to_section(pnum
);
242 int nid
= sparse_early_nid(ms
);
244 usemap
= alloc_bootmem_node(NODE_DATA(nid
), usemap_size());
248 /* Stupid: suppress gcc warning for SPARSEMEM && !NUMA */
251 printk(KERN_WARNING
"%s: allocation failed\n", __FUNCTION__
);
255 #ifndef CONFIG_SPARSEMEM_VMEMMAP
256 struct page __init
*sparse_mem_map_populate(unsigned long pnum
, int nid
)
260 map
= alloc_remap(nid
, sizeof(struct page
) * PAGES_PER_SECTION
);
264 map
= alloc_bootmem_node(NODE_DATA(nid
),
265 sizeof(struct page
) * PAGES_PER_SECTION
);
268 #endif /* !CONFIG_SPARSEMEM_VMEMMAP */
270 struct page __init
*sparse_early_mem_map_alloc(unsigned long pnum
)
273 struct mem_section
*ms
= __nr_to_section(pnum
);
274 int nid
= sparse_early_nid(ms
);
276 map
= sparse_mem_map_populate(pnum
, nid
);
280 printk(KERN_ERR
"%s: sparsemem memory map backing failed "
281 "some memory will not be available.\n", __FUNCTION__
);
282 ms
->section_mem_map
= 0;
287 * Allocate the accumulated non-linear sections, allocate a mem_map
288 * for each and record the physical to section mapping.
290 void __init
sparse_init(void)
294 unsigned long *usemap
;
296 for (pnum
= 0; pnum
< NR_MEM_SECTIONS
; pnum
++) {
297 if (!present_section_nr(pnum
))
300 map
= sparse_early_mem_map_alloc(pnum
);
304 usemap
= sparse_early_usemap_alloc(pnum
);
308 sparse_init_one_section(__nr_to_section(pnum
), pnum
, map
,
313 #ifdef CONFIG_MEMORY_HOTPLUG
314 #ifdef CONFIG_SPARSEMEM_VMEMMAP
315 static inline struct page
*kmalloc_section_memmap(unsigned long pnum
, int nid
,
316 unsigned long nr_pages
)
318 /* This will make the necessary allocations eventually. */
319 return sparse_mem_map_populate(pnum
, nid
);
321 static void __kfree_section_memmap(struct page
*memmap
, unsigned long nr_pages
)
323 return; /* XXX: Not implemented yet */
326 static struct page
*__kmalloc_section_memmap(unsigned long nr_pages
)
328 struct page
*page
, *ret
;
329 unsigned long memmap_size
= sizeof(struct page
) * nr_pages
;
331 page
= alloc_pages(GFP_KERNEL
|__GFP_NOWARN
, get_order(memmap_size
));
335 ret
= vmalloc(memmap_size
);
341 ret
= (struct page
*)pfn_to_kaddr(page_to_pfn(page
));
343 memset(ret
, 0, memmap_size
);
348 static inline struct page
*kmalloc_section_memmap(unsigned long pnum
, int nid
,
349 unsigned long nr_pages
)
351 return __kmalloc_section_memmap(nr_pages
);
354 static int vaddr_in_vmalloc_area(void *addr
)
356 if (addr
>= (void *)VMALLOC_START
&&
357 addr
< (void *)VMALLOC_END
)
362 static void __kfree_section_memmap(struct page
*memmap
, unsigned long nr_pages
)
364 if (vaddr_in_vmalloc_area(memmap
))
367 free_pages((unsigned long)memmap
,
368 get_order(sizeof(struct page
) * nr_pages
));
370 #endif /* CONFIG_SPARSEMEM_VMEMMAP */
373 * returns the number of sections whose mem_maps were properly
374 * set. If this is <=0, then that means that the passed-in
375 * map was not consumed and must be freed.
377 int sparse_add_one_section(struct zone
*zone
, unsigned long start_pfn
,
380 unsigned long section_nr
= pfn_to_section_nr(start_pfn
);
381 struct pglist_data
*pgdat
= zone
->zone_pgdat
;
382 struct mem_section
*ms
;
384 unsigned long *usemap
;
389 * no locking for this, because it does its own
390 * plus, it does a kmalloc
392 sparse_index_init(section_nr
, pgdat
->node_id
);
393 memmap
= kmalloc_section_memmap(section_nr
, pgdat
->node_id
, nr_pages
);
394 usemap
= __kmalloc_section_usemap();
396 pgdat_resize_lock(pgdat
, &flags
);
398 ms
= __pfn_to_section(start_pfn
);
399 if (ms
->section_mem_map
& SECTION_MARKED_PRESENT
) {
408 ms
->section_mem_map
|= SECTION_MARKED_PRESENT
;
410 ret
= sparse_init_one_section(ms
, section_nr
, memmap
, usemap
);
413 pgdat_resize_unlock(pgdat
, &flags
);
415 __kfree_section_memmap(memmap
, nr_pages
);