[PATCH] x86-64: Remove redundant max_mapnr and replace with end_pfn
[pandora-kernel.git] / arch / x86_64 / mm / srat.c
1 /*
2  * ACPI 3.0 based NUMA setup
3  * Copyright 2004 Andi Kleen, SuSE Labs.
4  *
5  * Reads the ACPI SRAT table to figure out what memory belongs to which CPUs.
6  *
7  * Called from acpi_numa_init while reading the SRAT and SLIT tables.
8  * Assumes all memory regions belonging to a single proximity domain
9  * are in one chunk. Holes between them will be included in the node.
10  */
11
12 #include <linux/kernel.h>
13 #include <linux/acpi.h>
14 #include <linux/mmzone.h>
15 #include <linux/bitmap.h>
16 #include <linux/module.h>
17 #include <linux/topology.h>
18 #include <asm/proto.h>
19 #include <asm/numa.h>
20
21 static struct acpi_table_slit *acpi_slit;
22
23 static nodemask_t nodes_parsed __initdata;
24 static nodemask_t nodes_found __initdata;
25 static struct node nodes[MAX_NUMNODES] __initdata;
26 static __u8  pxm2node[256] = { [0 ... 255] = 0xff };
27
28 static __init int setup_node(int pxm)
29 {
30         unsigned node = pxm2node[pxm];
31         if (node == 0xff) {
32                 if (nodes_weight(nodes_found) >= MAX_NUMNODES)
33                         return -1;
34                 node = first_unset_node(nodes_found); 
35                 node_set(node, nodes_found);
36                 pxm2node[pxm] = node;
37         }
38         return pxm2node[pxm];
39 }
40
41 static __init int conflicting_nodes(unsigned long start, unsigned long end)
42 {
43         int i;
44         for_each_online_node(i) {
45                 struct node *nd = &nodes[i];
46                 if (nd->start == nd->end)
47                         continue;
48                 if (nd->end > start && nd->start < end)
49                         return 1;
50                 if (nd->end == end && nd->start == start)
51                         return 1;
52         }
53         return -1;
54 }
55
56 static __init void cutoff_node(int i, unsigned long start, unsigned long end)
57 {
58         struct node *nd = &nodes[i];
59         if (nd->start < start) {
60                 nd->start = start;
61                 if (nd->end < nd->start)
62                         nd->start = nd->end;
63         }
64         if (nd->end > end) {
65                 if (!(end & 0xfff))
66                         end--;
67                 nd->end = end;
68                 if (nd->start > nd->end)
69                         nd->start = nd->end;
70         }
71 }
72
73 static __init void bad_srat(void)
74 {
75         printk(KERN_ERR "SRAT: SRAT not used.\n");
76         acpi_numa = -1;
77 }
78
79 static __init inline int srat_disabled(void)
80 {
81         return numa_off || acpi_numa < 0;
82 }
83
84 /* Callback for SLIT parsing */
85 void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
86 {
87         acpi_slit = slit;
88 }
89
90 /* Callback for Proximity Domain -> LAPIC mapping */
91 void __init
92 acpi_numa_processor_affinity_init(struct acpi_table_processor_affinity *pa)
93 {
94         int pxm, node;
95         if (srat_disabled() || pa->flags.enabled == 0)
96                 return;
97         pxm = pa->proximity_domain;
98         node = setup_node(pxm);
99         if (node < 0) {
100                 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
101                 bad_srat();
102                 return;
103         }
104         apicid_to_node[pa->apic_id] = node;
105         acpi_numa = 1;
106         printk(KERN_INFO "SRAT: PXM %u -> APIC %u -> Node %u\n",
107                pxm, pa->apic_id, node);
108 }
109
110 /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */
111 void __init
112 acpi_numa_memory_affinity_init(struct acpi_table_memory_affinity *ma)
113 {
114         struct node *nd;
115         unsigned long start, end;
116         int node, pxm;
117         int i;
118
119         if (srat_disabled() || ma->flags.enabled == 0)
120                 return;
121         pxm = ma->proximity_domain;
122         node = setup_node(pxm);
123         if (node < 0) {
124                 printk(KERN_ERR "SRAT: Too many proximity domains.\n");
125                 bad_srat();
126                 return;
127         }
128         start = ma->base_addr_lo | ((u64)ma->base_addr_hi << 32);
129         end = start + (ma->length_lo | ((u64)ma->length_hi << 32));
130         /* It is fine to add this area to the nodes data it will be used later*/
131         if (ma->flags.hot_pluggable == 1)
132                 printk(KERN_INFO "SRAT: hot plug zone found %lx - %lx \n",
133                                 start, end);
134         i = conflicting_nodes(start, end);
135         if (i >= 0) {
136                 printk(KERN_ERR
137                        "SRAT: pxm %d overlap %lx-%lx with node %d(%Lx-%Lx)\n",
138                        pxm, start, end, i, nodes[i].start, nodes[i].end);
139                 bad_srat();
140                 return;
141         }
142         nd = &nodes[node];
143         if (!node_test_and_set(node, nodes_parsed)) {
144                 nd->start = start;
145                 nd->end = end;
146         } else {
147                 if (start < nd->start)
148                         nd->start = start;
149                 if (nd->end < end)
150                         nd->end = end;
151         }
152         if (!(nd->end & 0xfff))
153                 nd->end--;
154         printk(KERN_INFO "SRAT: Node %u PXM %u %Lx-%Lx\n", node, pxm,
155                nd->start, nd->end);
156 }
157
158 void __init acpi_numa_arch_fixup(void) {}
159
160 /* Use the information discovered above to actually set up the nodes. */
161 int __init acpi_scan_nodes(unsigned long start, unsigned long end)
162 {
163         int i;
164         if (acpi_numa <= 0)
165                 return -1;
166         memnode_shift = compute_hash_shift(nodes, nodes_weight(nodes_parsed));
167         if (memnode_shift < 0) {
168                 printk(KERN_ERR
169                      "SRAT: No NUMA node hash function found. Contact maintainer\n");
170                 bad_srat();
171                 return -1;
172         }
173         for (i = 0; i < MAX_NUMNODES; i++) {
174                 if (!node_isset(i, nodes_parsed))
175                         continue;
176                 cutoff_node(i, start, end);
177                 if (nodes[i].start == nodes[i].end) { 
178                         node_clear(i, nodes_parsed);
179                         continue;
180                 }
181                 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
182         }
183         for (i = 0; i < NR_CPUS; i++) { 
184                 if (cpu_to_node[i] == NUMA_NO_NODE)
185                         continue;
186                 if (!node_isset(cpu_to_node[i], nodes_parsed))
187                         cpu_to_node[i] = NUMA_NO_NODE; 
188         }
189         numa_init_array();
190         return 0;
191 }
192
193 int node_to_pxm(int n)
194 {
195        int i;
196        if (pxm2node[n] == n)
197                return n;
198        for (i = 0; i < 256; i++)
199                if (pxm2node[i] == n)
200                        return i;
201        return 0;
202 }
203
204 int __node_distance(int a, int b)
205 {
206         int index;
207
208         if (!acpi_slit)
209                 return a == b ? 10 : 20;
210         index = acpi_slit->localities * node_to_pxm(a);
211         return acpi_slit->entry[index + node_to_pxm(b)];
212 }
213
214 EXPORT_SYMBOL(__node_distance);