]>
Commit | Line | Data |
---|---|---|
d41dee36 AW |
1 | /* |
2 | * sparse memory mappings. | |
3 | */ | |
d41dee36 AW |
4 | #include <linux/mm.h> |
5 | #include <linux/mmzone.h> | |
6 | #include <linux/bootmem.h> | |
0b0acbec | 7 | #include <linux/highmem.h> |
d41dee36 | 8 | #include <linux/module.h> |
28ae55c9 | 9 | #include <linux/spinlock.h> |
0b0acbec | 10 | #include <linux/vmalloc.h> |
d41dee36 | 11 | #include <asm/dma.h> |
8f6aac41 CL |
12 | #include <asm/pgalloc.h> |
13 | #include <asm/pgtable.h> | |
d41dee36 AW |
14 | |
15 | /* | |
16 | * Permanent SPARSEMEM data: | |
17 | * | |
18 | * 1) mem_section - memory sections, mem_map's for valid memory | |
19 | */ | |
3e347261 | 20 | #ifdef CONFIG_SPARSEMEM_EXTREME |
802f192e | 21 | struct mem_section *mem_section[NR_SECTION_ROOTS] |
22fc6ecc | 22 | ____cacheline_internodealigned_in_smp; |
3e347261 BP |
23 | #else |
24 | struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT] | |
22fc6ecc | 25 | ____cacheline_internodealigned_in_smp; |
3e347261 BP |
26 | #endif |
27 | EXPORT_SYMBOL(mem_section); | |
28 | ||
89689ae7 CL |
29 | #ifdef NODE_NOT_IN_PAGE_FLAGS |
30 | /* | |
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. | |
34 | */ | |
35 | #if MAX_NUMNODES <= 256 | |
36 | static u8 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned; | |
37 | #else | |
38 | static u16 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned; | |
39 | #endif | |
40 | ||
25ba77c1 | 41 | int page_to_nid(struct page *page) |
89689ae7 CL |
42 | { |
43 | return section_to_node_table[page_to_section(page)]; | |
44 | } | |
45 | EXPORT_SYMBOL(page_to_nid); | |
85770ffe AW |
46 | |
47 | static void set_section_nid(unsigned long section_nr, int nid) | |
48 | { | |
49 | section_to_node_table[section_nr] = nid; | |
50 | } | |
51 | #else /* !NODE_NOT_IN_PAGE_FLAGS */ | |
52 | static inline void set_section_nid(unsigned long section_nr, int nid) | |
53 | { | |
54 | } | |
89689ae7 CL |
55 | #endif |
56 | ||
3e347261 | 57 | #ifdef CONFIG_SPARSEMEM_EXTREME |
577a32f6 | 58 | static struct mem_section noinline __init_refok *sparse_index_alloc(int nid) |
28ae55c9 DH |
59 | { |
60 | struct mem_section *section = NULL; | |
61 | unsigned long array_size = SECTIONS_PER_ROOT * | |
62 | sizeof(struct mem_section); | |
63 | ||
39d24e64 | 64 | if (slab_is_available()) |
46a66eec MK |
65 | section = kmalloc_node(array_size, GFP_KERNEL, nid); |
66 | else | |
67 | section = alloc_bootmem_node(NODE_DATA(nid), array_size); | |
28ae55c9 DH |
68 | |
69 | if (section) | |
70 | memset(section, 0, array_size); | |
71 | ||
72 | return section; | |
3e347261 | 73 | } |
802f192e | 74 | |
a3142c8e | 75 | static int __meminit sparse_index_init(unsigned long section_nr, int nid) |
802f192e | 76 | { |
34af946a | 77 | static DEFINE_SPINLOCK(index_init_lock); |
28ae55c9 DH |
78 | unsigned long root = SECTION_NR_TO_ROOT(section_nr); |
79 | struct mem_section *section; | |
80 | int ret = 0; | |
802f192e BP |
81 | |
82 | if (mem_section[root]) | |
28ae55c9 | 83 | return -EEXIST; |
3e347261 | 84 | |
28ae55c9 DH |
85 | section = sparse_index_alloc(nid); |
86 | /* | |
87 | * This lock keeps two different sections from | |
88 | * reallocating for the same index | |
89 | */ | |
90 | spin_lock(&index_init_lock); | |
3e347261 | 91 | |
28ae55c9 DH |
92 | if (mem_section[root]) { |
93 | ret = -EEXIST; | |
94 | goto out; | |
95 | } | |
96 | ||
97 | mem_section[root] = section; | |
98 | out: | |
99 | spin_unlock(&index_init_lock); | |
100 | return ret; | |
101 | } | |
102 | #else /* !SPARSEMEM_EXTREME */ | |
103 | static inline int sparse_index_init(unsigned long section_nr, int nid) | |
104 | { | |
105 | return 0; | |
802f192e | 106 | } |
28ae55c9 DH |
107 | #endif |
108 | ||
4ca644d9 DH |
109 | /* |
110 | * Although written for the SPARSEMEM_EXTREME case, this happens | |
cd881a6b | 111 | * to also work for the flat array case because |
4ca644d9 DH |
112 | * NR_SECTION_ROOTS==NR_MEM_SECTIONS. |
113 | */ | |
114 | int __section_nr(struct mem_section* ms) | |
115 | { | |
116 | unsigned long root_nr; | |
117 | struct mem_section* root; | |
118 | ||
12783b00 MK |
119 | for (root_nr = 0; root_nr < NR_SECTION_ROOTS; root_nr++) { |
120 | root = __nr_to_section(root_nr * SECTIONS_PER_ROOT); | |
4ca644d9 DH |
121 | if (!root) |
122 | continue; | |
123 | ||
124 | if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT))) | |
125 | break; | |
126 | } | |
127 | ||
128 | return (root_nr * SECTIONS_PER_ROOT) + (ms - root); | |
129 | } | |
130 | ||
30c253e6 AW |
131 | /* |
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. | |
136 | */ | |
137 | static inline unsigned long sparse_encode_early_nid(int nid) | |
138 | { | |
139 | return (nid << SECTION_NID_SHIFT); | |
140 | } | |
141 | ||
142 | static inline int sparse_early_nid(struct mem_section *section) | |
143 | { | |
144 | return (section->section_mem_map >> SECTION_NID_SHIFT); | |
145 | } | |
146 | ||
d41dee36 | 147 | /* Record a memory area against a node. */ |
a3142c8e | 148 | void __init memory_present(int nid, unsigned long start, unsigned long end) |
d41dee36 AW |
149 | { |
150 | unsigned long pfn; | |
151 | ||
152 | start &= PAGE_SECTION_MASK; | |
153 | for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION) { | |
154 | unsigned long section = pfn_to_section_nr(pfn); | |
802f192e BP |
155 | struct mem_section *ms; |
156 | ||
157 | sparse_index_init(section, nid); | |
85770ffe | 158 | set_section_nid(section, nid); |
802f192e BP |
159 | |
160 | ms = __nr_to_section(section); | |
161 | if (!ms->section_mem_map) | |
30c253e6 AW |
162 | ms->section_mem_map = sparse_encode_early_nid(nid) | |
163 | SECTION_MARKED_PRESENT; | |
d41dee36 AW |
164 | } |
165 | } | |
166 | ||
167 | /* | |
168 | * Only used by the i386 NUMA architecures, but relatively | |
169 | * generic code. | |
170 | */ | |
171 | unsigned long __init node_memmap_size_bytes(int nid, unsigned long start_pfn, | |
172 | unsigned long end_pfn) | |
173 | { | |
174 | unsigned long pfn; | |
175 | unsigned long nr_pages = 0; | |
176 | ||
177 | for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) { | |
178 | if (nid != early_pfn_to_nid(pfn)) | |
179 | continue; | |
180 | ||
540557b9 | 181 | if (pfn_present(pfn)) |
d41dee36 AW |
182 | nr_pages += PAGES_PER_SECTION; |
183 | } | |
184 | ||
185 | return nr_pages * sizeof(struct page); | |
186 | } | |
187 | ||
29751f69 AW |
188 | /* |
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. | |
192 | */ | |
193 | static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum) | |
194 | { | |
195 | return (unsigned long)(mem_map - (section_nr_to_pfn(pnum))); | |
196 | } | |
197 | ||
198 | /* | |
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. | |
201 | */ | |
202 | static __attribute((unused)) | |
203 | struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum) | |
204 | { | |
205 | return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum); | |
206 | } | |
207 | ||
a3142c8e | 208 | static int __meminit sparse_init_one_section(struct mem_section *ms, |
5c0e3066 MG |
209 | unsigned long pnum, struct page *mem_map, |
210 | unsigned long *pageblock_bitmap) | |
29751f69 | 211 | { |
540557b9 | 212 | if (!present_section(ms)) |
29751f69 AW |
213 | return -EINVAL; |
214 | ||
30c253e6 | 215 | ms->section_mem_map &= ~SECTION_MAP_MASK; |
540557b9 AW |
216 | ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum) | |
217 | SECTION_HAS_MEM_MAP; | |
5c0e3066 | 218 | ms->pageblock_flags = pageblock_bitmap; |
29751f69 AW |
219 | |
220 | return 1; | |
221 | } | |
222 | ||
dec2e6b7 | 223 | __attribute__((weak)) __init |
2e1c49db ZN |
224 | void *alloc_bootmem_high_node(pg_data_t *pgdat, unsigned long size) |
225 | { | |
226 | return NULL; | |
227 | } | |
228 | ||
5c0e3066 MG |
229 | static unsigned long usemap_size(void) |
230 | { | |
231 | unsigned long size_bytes; | |
232 | size_bytes = roundup(SECTION_BLOCKFLAGS_BITS, 8) / 8; | |
233 | size_bytes = roundup(size_bytes, sizeof(unsigned long)); | |
234 | return size_bytes; | |
235 | } | |
236 | ||
237 | #ifdef CONFIG_MEMORY_HOTPLUG | |
238 | static unsigned long *__kmalloc_section_usemap(void) | |
239 | { | |
240 | return kmalloc(usemap_size(), GFP_KERNEL); | |
241 | } | |
242 | #endif /* CONFIG_MEMORY_HOTPLUG */ | |
243 | ||
244 | static unsigned long *sparse_early_usemap_alloc(unsigned long pnum) | |
245 | { | |
246 | unsigned long *usemap; | |
247 | struct mem_section *ms = __nr_to_section(pnum); | |
248 | int nid = sparse_early_nid(ms); | |
249 | ||
250 | usemap = alloc_bootmem_node(NODE_DATA(nid), usemap_size()); | |
251 | if (usemap) | |
252 | return usemap; | |
253 | ||
254 | /* Stupid: suppress gcc warning for SPARSEMEM && !NUMA */ | |
255 | nid = 0; | |
256 | ||
257 | printk(KERN_WARNING "%s: allocation failed\n", __FUNCTION__); | |
258 | return NULL; | |
259 | } | |
260 | ||
8f6aac41 | 261 | #ifndef CONFIG_SPARSEMEM_VMEMMAP |
98f3cfc1 | 262 | struct page __init *sparse_mem_map_populate(unsigned long pnum, int nid) |
29751f69 AW |
263 | { |
264 | struct page *map; | |
29751f69 AW |
265 | |
266 | map = alloc_remap(nid, sizeof(struct page) * PAGES_PER_SECTION); | |
267 | if (map) | |
268 | return map; | |
269 | ||
2e1c49db ZN |
270 | map = alloc_bootmem_high_node(NODE_DATA(nid), |
271 | sizeof(struct page) * PAGES_PER_SECTION); | |
272 | if (map) | |
273 | return map; | |
274 | ||
29751f69 AW |
275 | map = alloc_bootmem_node(NODE_DATA(nid), |
276 | sizeof(struct page) * PAGES_PER_SECTION); | |
8f6aac41 CL |
277 | return map; |
278 | } | |
279 | #endif /* !CONFIG_SPARSEMEM_VMEMMAP */ | |
280 | ||
281 | struct page __init *sparse_early_mem_map_alloc(unsigned long pnum) | |
282 | { | |
283 | struct page *map; | |
284 | struct mem_section *ms = __nr_to_section(pnum); | |
285 | int nid = sparse_early_nid(ms); | |
286 | ||
98f3cfc1 | 287 | map = sparse_mem_map_populate(pnum, nid); |
29751f69 AW |
288 | if (map) |
289 | return map; | |
290 | ||
8f6aac41 CL |
291 | printk(KERN_ERR "%s: sparsemem memory map backing failed " |
292 | "some memory will not be available.\n", __FUNCTION__); | |
802f192e | 293 | ms->section_mem_map = 0; |
29751f69 AW |
294 | return NULL; |
295 | } | |
296 | ||
193faea9 SR |
297 | /* |
298 | * Allocate the accumulated non-linear sections, allocate a mem_map | |
299 | * for each and record the physical to section mapping. | |
300 | */ | |
301 | void __init sparse_init(void) | |
302 | { | |
303 | unsigned long pnum; | |
304 | struct page *map; | |
5c0e3066 | 305 | unsigned long *usemap; |
193faea9 SR |
306 | |
307 | for (pnum = 0; pnum < NR_MEM_SECTIONS; pnum++) { | |
540557b9 | 308 | if (!present_section_nr(pnum)) |
193faea9 SR |
309 | continue; |
310 | ||
311 | map = sparse_early_mem_map_alloc(pnum); | |
312 | if (!map) | |
313 | continue; | |
5c0e3066 MG |
314 | |
315 | usemap = sparse_early_usemap_alloc(pnum); | |
316 | if (!usemap) | |
317 | continue; | |
318 | ||
319 | sparse_init_one_section(__nr_to_section(pnum), pnum, map, | |
320 | usemap); | |
193faea9 SR |
321 | } |
322 | } | |
323 | ||
324 | #ifdef CONFIG_MEMORY_HOTPLUG | |
98f3cfc1 YG |
325 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
326 | static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid, | |
327 | unsigned long nr_pages) | |
328 | { | |
329 | /* This will make the necessary allocations eventually. */ | |
330 | return sparse_mem_map_populate(pnum, nid); | |
331 | } | |
332 | static void __kfree_section_memmap(struct page *memmap, unsigned long nr_pages) | |
333 | { | |
334 | return; /* XXX: Not implemented yet */ | |
335 | } | |
336 | #else | |
0b0acbec DH |
337 | static struct page *__kmalloc_section_memmap(unsigned long nr_pages) |
338 | { | |
339 | struct page *page, *ret; | |
340 | unsigned long memmap_size = sizeof(struct page) * nr_pages; | |
341 | ||
f2d0aa5b | 342 | page = alloc_pages(GFP_KERNEL|__GFP_NOWARN, get_order(memmap_size)); |
0b0acbec DH |
343 | if (page) |
344 | goto got_map_page; | |
345 | ||
346 | ret = vmalloc(memmap_size); | |
347 | if (ret) | |
348 | goto got_map_ptr; | |
349 | ||
350 | return NULL; | |
351 | got_map_page: | |
352 | ret = (struct page *)pfn_to_kaddr(page_to_pfn(page)); | |
353 | got_map_ptr: | |
354 | memset(ret, 0, memmap_size); | |
355 | ||
356 | return ret; | |
357 | } | |
358 | ||
98f3cfc1 YG |
359 | static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid, |
360 | unsigned long nr_pages) | |
361 | { | |
362 | return __kmalloc_section_memmap(nr_pages); | |
363 | } | |
364 | ||
0b0acbec DH |
365 | static int vaddr_in_vmalloc_area(void *addr) |
366 | { | |
367 | if (addr >= (void *)VMALLOC_START && | |
368 | addr < (void *)VMALLOC_END) | |
369 | return 1; | |
370 | return 0; | |
371 | } | |
372 | ||
373 | static void __kfree_section_memmap(struct page *memmap, unsigned long nr_pages) | |
374 | { | |
375 | if (vaddr_in_vmalloc_area(memmap)) | |
376 | vfree(memmap); | |
377 | else | |
378 | free_pages((unsigned long)memmap, | |
379 | get_order(sizeof(struct page) * nr_pages)); | |
380 | } | |
98f3cfc1 | 381 | #endif /* CONFIG_SPARSEMEM_VMEMMAP */ |
0b0acbec | 382 | |
29751f69 AW |
383 | /* |
384 | * returns the number of sections whose mem_maps were properly | |
385 | * set. If this is <=0, then that means that the passed-in | |
386 | * map was not consumed and must be freed. | |
387 | */ | |
0b0acbec DH |
388 | int sparse_add_one_section(struct zone *zone, unsigned long start_pfn, |
389 | int nr_pages) | |
29751f69 | 390 | { |
0b0acbec DH |
391 | unsigned long section_nr = pfn_to_section_nr(start_pfn); |
392 | struct pglist_data *pgdat = zone->zone_pgdat; | |
393 | struct mem_section *ms; | |
394 | struct page *memmap; | |
5c0e3066 | 395 | unsigned long *usemap; |
0b0acbec DH |
396 | unsigned long flags; |
397 | int ret; | |
29751f69 | 398 | |
0b0acbec DH |
399 | /* |
400 | * no locking for this, because it does its own | |
401 | * plus, it does a kmalloc | |
402 | */ | |
403 | sparse_index_init(section_nr, pgdat->node_id); | |
98f3cfc1 | 404 | memmap = kmalloc_section_memmap(section_nr, pgdat->node_id, nr_pages); |
5c0e3066 | 405 | usemap = __kmalloc_section_usemap(); |
0b0acbec DH |
406 | |
407 | pgdat_resize_lock(pgdat, &flags); | |
29751f69 | 408 | |
0b0acbec DH |
409 | ms = __pfn_to_section(start_pfn); |
410 | if (ms->section_mem_map & SECTION_MARKED_PRESENT) { | |
411 | ret = -EEXIST; | |
412 | goto out; | |
413 | } | |
5c0e3066 MG |
414 | |
415 | if (!usemap) { | |
416 | ret = -ENOMEM; | |
417 | goto out; | |
418 | } | |
29751f69 AW |
419 | ms->section_mem_map |= SECTION_MARKED_PRESENT; |
420 | ||
5c0e3066 | 421 | ret = sparse_init_one_section(ms, section_nr, memmap, usemap); |
0b0acbec | 422 | |
0b0acbec DH |
423 | out: |
424 | pgdat_resize_unlock(pgdat, &flags); | |
46a66eec MK |
425 | if (ret <= 0) |
426 | __kfree_section_memmap(memmap, nr_pages); | |
0b0acbec | 427 | return ret; |
29751f69 | 428 | } |
a3142c8e | 429 | #endif |