ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / i386 / kernel / srat.c
1 /*
2  * Some of the code in this file has been gleaned from the 64 bit 
3  * discontigmem support code base.
4  *
5  * Copyright (C) 2002, IBM Corp.
6  *
7  * All rights reserved.          
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
17  * NON INFRINGEMENT.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  *
24  * Send feedback to Pat Gaughen <gone@us.ibm.com>
25  */
26 #include <linux/config.h>
27 #include <linux/mm.h>
28 #include <linux/bootmem.h>
29 #include <linux/mmzone.h>
30 #include <linux/acpi.h>
31 #include <asm/srat.h>
32
33 /*
34  * proximity macros and definitions
35  */
36 #define NODE_ARRAY_INDEX(x)     ((x) / 8)       /* 8 bits/char */
37 #define NODE_ARRAY_OFFSET(x)    ((x) % 8)       /* 8 bits/char */
38 #define BMAP_SET(bmap, bit)     ((bmap)[NODE_ARRAY_INDEX(bit)] |= 1 << NODE_ARRAY_OFFSET(bit))
39 #define BMAP_TEST(bmap, bit)    ((bmap)[NODE_ARRAY_INDEX(bit)] & (1 << NODE_ARRAY_OFFSET(bit)))
40 #define MAX_PXM_DOMAINS         256     /* 1 byte and no promises about values */
41 /* bitmap length; _PXM is at most 255 */
42 #define PXM_BITMAP_LEN (MAX_PXM_DOMAINS / 8) 
43 static u8 pxm_bitmap[PXM_BITMAP_LEN];   /* bitmap of proximity domains */
44
45 #define MAX_CHUNKS_PER_NODE     4
46 #define MAXCHUNKS               (MAX_CHUNKS_PER_NODE * MAX_NUMNODES)
47 struct node_memory_chunk_s {
48         unsigned long   start_pfn;
49         unsigned long   end_pfn;
50         u8      pxm;            // proximity domain of node
51         u8      nid;            // which cnode contains this chunk?
52         u8      bank;           // which mem bank on this node
53 };
54 static struct node_memory_chunk_s node_memory_chunk[MAXCHUNKS];
55
56 static int num_memory_chunks;           /* total number of memory chunks */
57 static int zholes_size_init;
58 static unsigned long zholes_size[MAX_NUMNODES * MAX_NR_ZONES];
59
60 extern unsigned long node_start_pfn[], node_end_pfn[];
61
62 extern void * boot_ioremap(unsigned long, unsigned long);
63
64 /* Identify CPU proximity domains */
65 static void __init parse_cpu_affinity_structure(char *p)
66 {
67         struct acpi_table_processor_affinity *cpu_affinity = 
68                                 (struct acpi_table_processor_affinity *) p;
69
70         if (!cpu_affinity->flags.enabled)
71                 return;         /* empty entry */
72
73         /* mark this node as "seen" in node bitmap */
74         BMAP_SET(pxm_bitmap, cpu_affinity->proximity_domain);
75
76         printk("CPU 0x%02X in proximity domain 0x%02X\n",
77                 cpu_affinity->apic_id, cpu_affinity->proximity_domain);
78 }
79
80 /*
81  * Identify memory proximity domains and hot-remove capabilities.
82  * Fill node memory chunk list structure.
83  */
84 static void __init parse_memory_affinity_structure (char *sratp)
85 {
86         unsigned long long paddr, size;
87         unsigned long start_pfn, end_pfn; 
88         u8 pxm;
89         struct node_memory_chunk_s *p, *q, *pend;
90         struct acpi_table_memory_affinity *memory_affinity =
91                         (struct acpi_table_memory_affinity *) sratp;
92
93         if (!memory_affinity->flags.enabled)
94                 return;         /* empty entry */
95
96         /* mark this node as "seen" in node bitmap */
97         BMAP_SET(pxm_bitmap, memory_affinity->proximity_domain);
98
99         /* calculate info for memory chunk structure */
100         paddr = memory_affinity->base_addr_hi;
101         paddr = (paddr << 32) | memory_affinity->base_addr_lo;
102         size = memory_affinity->length_hi;
103         size = (size << 32) | memory_affinity->length_lo;
104         
105         start_pfn = paddr >> PAGE_SHIFT;
106         end_pfn = (paddr + size) >> PAGE_SHIFT;
107         
108         pxm = memory_affinity->proximity_domain;
109
110         if (num_memory_chunks >= MAXCHUNKS) {
111                 printk("Too many mem chunks in SRAT. Ignoring %lld MBytes at %llx\n",
112                         size/(1024*1024), paddr);
113                 return;
114         }
115
116         /* Insertion sort based on base address */
117         pend = &node_memory_chunk[num_memory_chunks];
118         for (p = &node_memory_chunk[0]; p < pend; p++) {
119                 if (start_pfn < p->start_pfn)
120                         break;
121         }
122         if (p < pend) {
123                 for (q = pend; q >= p; q--)
124                         *(q + 1) = *q;
125         }
126         p->start_pfn = start_pfn;
127         p->end_pfn = end_pfn;
128         p->pxm = pxm;
129
130         num_memory_chunks++;
131
132         printk("Memory range 0x%lX to 0x%lX (type 0x%X) in proximity domain 0x%02X %s\n",
133                 start_pfn, end_pfn,
134                 memory_affinity->memory_type,
135                 memory_affinity->proximity_domain,
136                 (memory_affinity->flags.hot_pluggable ?
137                  "enabled and removable" : "enabled" ) );
138 }
139
140 #if MAX_NR_ZONES != 3
141 #error "MAX_NR_ZONES != 3, chunk_to_zone requires review"
142 #endif
143 /* Take a chunk of pages from page frame cstart to cend and count the number
144  * of pages in each zone, returned via zones[].
145  */
146 static __init void chunk_to_zones(unsigned long cstart, unsigned long cend, 
147                 unsigned long *zones)
148 {
149         unsigned long max_dma;
150         extern unsigned long max_low_pfn;
151
152         int z;
153         unsigned long rend;
154
155         /* FIXME: MAX_DMA_ADDRESS and max_low_pfn are trying to provide
156          * similarly scoped information and should be handled in a consistant
157          * manner.
158          */
159         max_dma = virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
160
161         /* Split the hole into the zones in which it falls.  Repeatedly
162          * take the segment in which the remaining hole starts, round it
163          * to the end of that zone.
164          */
165         memset(zones, 0, MAX_NR_ZONES * sizeof(long));
166         while (cstart < cend) {
167                 if (cstart < max_dma) {
168                         z = ZONE_DMA;
169                         rend = (cend < max_dma)? cend : max_dma;
170
171                 } else if (cstart < max_low_pfn) {
172                         z = ZONE_NORMAL;
173                         rend = (cend < max_low_pfn)? cend : max_low_pfn;
174
175                 } else {
176                         z = ZONE_HIGHMEM;
177                         rend = cend;
178                 }
179                 zones[z] += rend - cstart;
180                 cstart = rend;
181         }
182 }
183
184 static void __init initialize_physnode_map(void)
185 {
186         int i;
187         unsigned long pfn;
188         struct node_memory_chunk_s *nmcp;
189
190         /* Run the list of memory chunks and fill in the phymap. */
191         nmcp = node_memory_chunk;
192         for (i = num_memory_chunks; --i >= 0; nmcp++) {
193                 for (pfn = nmcp->start_pfn; pfn <= nmcp->end_pfn;
194                                                 pfn += PAGES_PER_ELEMENT)
195                 {
196                         physnode_map[pfn / PAGES_PER_ELEMENT] = (int)nmcp->nid;
197                 }
198         }
199 }
200
201 /* Parse the ACPI Static Resource Affinity Table */
202 static int __init acpi20_parse_srat(struct acpi_table_srat *sratp)
203 {
204         u8 *start, *end, *p;
205         int i, j, nid;
206         u8 pxm_to_nid_map[MAX_PXM_DOMAINS];/* _PXM to logical node ID map */
207         u8 nid_to_pxm_map[MAX_NUMNODES];/* logical node ID to _PXM map */
208
209         start = (u8 *)(&(sratp->reserved) + 1); /* skip header */
210         p = start;
211         end = (u8 *)sratp + sratp->header.length;
212
213         memset(pxm_bitmap, 0, sizeof(pxm_bitmap));      /* init proximity domain bitmap */
214         memset(node_memory_chunk, 0, sizeof(node_memory_chunk));
215         memset(zholes_size, 0, sizeof(zholes_size));
216
217         /* -1 in these maps means not available */
218         memset(pxm_to_nid_map, -1, sizeof(pxm_to_nid_map));
219         memset(nid_to_pxm_map, -1, sizeof(nid_to_pxm_map));
220
221         num_memory_chunks = 0;
222         while (p < end) {
223                 switch (*p) {
224                 case ACPI_SRAT_PROCESSOR_AFFINITY:
225                         parse_cpu_affinity_structure(p);
226                         break;
227                 case ACPI_SRAT_MEMORY_AFFINITY:
228                         parse_memory_affinity_structure(p);
229                         break;
230                 default:
231                         printk("ACPI 2.0 SRAT: unknown entry skipped: type=0x%02X, len=%d\n", p[0], p[1]);
232                         break;
233                 }
234                 p += p[1];
235                 if (p[1] == 0) {
236                         printk("acpi20_parse_srat: Entry length value is zero;"
237                                 " can't parse any further!\n");
238                         break;
239                 }
240         }
241
242         if (num_memory_chunks == 0) {
243                 printk("could not finy any ACPI SRAT memory areas.\n");
244                 goto out_fail;
245         }
246
247         /* Calculate total number of nodes in system from PXM bitmap and create
248          * a set of sequential node IDs starting at zero.  (ACPI doesn't seem
249          * to specify the range of _PXM values.)
250          */
251         numnodes = 0;           /* init total nodes in system */
252         for (i = 0; i < MAX_PXM_DOMAINS; i++) {
253                 if (BMAP_TEST(pxm_bitmap, i)) {
254                         pxm_to_nid_map[i] = numnodes;
255                         nid_to_pxm_map[numnodes] = i;
256                         node_set_online(numnodes);
257                         ++numnodes;
258                 }
259         }
260
261         if (numnodes == 0)
262                 BUG();
263
264         /* set cnode id in memory chunk structure */
265         for (i = 0; i < num_memory_chunks; i++)
266                 node_memory_chunk[i].nid = pxm_to_nid_map[node_memory_chunk[i].pxm];
267
268         initialize_physnode_map();
269         
270         printk("pxm bitmap: ");
271         for (i = 0; i < sizeof(pxm_bitmap); i++) {
272                 printk("%02X ", pxm_bitmap[i]);
273         }
274         printk("\n");
275         printk("Number of logical nodes in system = %d\n", numnodes);
276         printk("Number of memory chunks in system = %d\n", num_memory_chunks);
277
278         for (j = 0; j < num_memory_chunks; j++){
279                 printk("chunk %d nid %d start_pfn %08lx end_pfn %08lx\n",
280                        j, node_memory_chunk[j].nid,
281                        node_memory_chunk[j].start_pfn,
282                        node_memory_chunk[j].end_pfn);
283         }
284  
285         /*calculate node_start_pfn/node_end_pfn arrays*/
286         for (nid = 0; nid < numnodes; nid++) {
287                 int been_here_before = 0;
288
289                 for (j = 0; j < num_memory_chunks; j++){
290                         if (node_memory_chunk[j].nid == nid) {
291                                 if (been_here_before == 0) {
292                                         node_start_pfn[nid] = node_memory_chunk[j].start_pfn;
293                                         node_end_pfn[nid] = node_memory_chunk[j].end_pfn;
294                                         been_here_before = 1;
295                                 } else { /* We've found another chunk of memory for the node */
296                                         if (node_start_pfn[nid] < node_memory_chunk[j].start_pfn) {
297                                                 node_end_pfn[nid] = node_memory_chunk[j].end_pfn;
298                                         }
299                                 }
300                         }
301                 }
302         }
303         return 1;
304 out_fail:
305         return 0;
306 }
307
308 int __init get_memcfg_from_srat(void)
309 {
310         struct acpi_table_header *header = NULL;
311         struct acpi_table_rsdp *rsdp = NULL;
312         struct acpi_table_rsdt *rsdt = NULL;
313         struct acpi_pointer *rsdp_address = NULL;
314         struct acpi_table_rsdt saved_rsdt;
315         int tables = 0;
316         int i = 0;
317
318         acpi_find_root_pointer(ACPI_PHYSICAL_ADDRESSING, rsdp_address);
319
320         if (rsdp_address->pointer_type == ACPI_PHYSICAL_POINTER) {
321                 printk("%s: assigning address to rsdp\n", __FUNCTION__);
322                 rsdp = (struct acpi_table_rsdp *)
323                                 (u32)rsdp_address->pointer.physical;
324         } else {
325                 printk("%s: rsdp_address is not a physical pointer\n", __FUNCTION__);
326                 goto out_err;
327         }
328         if (!rsdp) {
329                 printk("%s: Didn't find ACPI root!\n", __FUNCTION__);
330                 goto out_err;
331         }
332
333         printk(KERN_INFO "%.8s v%d [%.6s]\n", rsdp->signature, rsdp->revision,
334                 rsdp->oem_id);
335
336         if (strncmp(rsdp->signature, RSDP_SIG,strlen(RSDP_SIG))) {
337                 printk(KERN_WARNING "%s: RSDP table signature incorrect\n", __FUNCTION__);
338                 goto out_err;
339         }
340
341         rsdt = (struct acpi_table_rsdt *)
342             boot_ioremap(rsdp->rsdt_address, sizeof(struct acpi_table_rsdt));
343
344         if (!rsdt) {
345                 printk(KERN_WARNING
346                        "%s: ACPI: Invalid root system description tables (RSDT)\n",
347                        __FUNCTION__);
348                 goto out_err;
349         }
350
351         header = & rsdt->header;
352
353         if (strncmp(header->signature, RSDT_SIG, strlen(RSDT_SIG))) {
354                 printk(KERN_WARNING "ACPI: RSDT signature incorrect\n");
355                 goto out_err;
356         }
357
358         /* 
359          * The number of tables is computed by taking the 
360          * size of all entries (header size minus total 
361          * size of RSDT) divided by the size of each entry
362          * (4-byte table pointers).
363          */
364         tables = (header->length - sizeof(struct acpi_table_header)) / 4;
365
366         if (!tables)
367                 goto out_err;
368
369         memcpy(&saved_rsdt, rsdt, sizeof(saved_rsdt));
370
371         if (saved_rsdt.header.length > sizeof(saved_rsdt)) {
372                 printk(KERN_WARNING "ACPI: Too big length in RSDT: %d\n",
373                        saved_rsdt.header.length);
374                 goto out_err;
375         }
376
377         printk("Begin SRAT table scan....\n");
378
379         for (i = 0; i < tables; i++) {
380                 /* Map in header, then map in full table length. */
381                 header = (struct acpi_table_header *)
382                         boot_ioremap(saved_rsdt.entry[i], sizeof(struct acpi_table_header));
383                 if (!header)
384                         break;
385                 header = (struct acpi_table_header *)
386                         boot_ioremap(saved_rsdt.entry[i], header->length);
387                 if (!header)
388                         break;
389
390                 if (strncmp((char *) &header->signature, "SRAT", 4))
391                         continue;
392
393                 /* we've found the srat table. don't need to look at any more tables */
394                 return acpi20_parse_srat((struct acpi_table_srat *)header);
395         }
396 out_err:
397         printk("failed to get NUMA memory information from SRAT table\n");
398         return 0;
399 }
400
401 /* For each node run the memory list to determine whether there are
402  * any memory holes.  For each hole determine which ZONE they fall
403  * into.
404  *
405  * NOTE#1: this requires knowledge of the zone boundries and so
406  * _cannot_ be performed before those are calculated in setup_memory.
407  * 
408  * NOTE#2: we rely on the fact that the memory chunks are ordered by
409  * start pfn number during setup.
410  */
411 static void __init get_zholes_init(void)
412 {
413         int nid;
414         int c;
415         int first;
416         unsigned long end = 0;
417
418         for (nid = 0; nid < numnodes; nid++) {
419                 first = 1;
420                 for (c = 0; c < num_memory_chunks; c++){
421                         if (node_memory_chunk[c].nid == nid) {
422                                 if (first) {
423                                         end = node_memory_chunk[c].end_pfn;
424                                         first = 0;
425
426                                 } else {
427                                         /* Record any gap between this chunk
428                                          * and the previous chunk on this node
429                                          * against the zones it spans.
430                                          */
431                                         chunk_to_zones(end,
432                                                 node_memory_chunk[c].start_pfn,
433                                                 &zholes_size[nid * MAX_NR_ZONES]);
434                                 }
435                         }
436                 }
437         }
438 }
439
440 unsigned long * __init get_zholes_size(int nid)
441 {
442         if (!zholes_size_init) {
443                 zholes_size_init++;
444                 get_zholes_init();
445         }
446         if((nid >= numnodes) | (nid >= MAX_NUMNODES))
447                 printk("%s: nid = %d is invalid. numnodes = %d",
448                        __FUNCTION__, nid, numnodes);
449         return &zholes_size[nid * MAX_NR_ZONES];
450 }