aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/k8topology_64.c
diff options
context:
space:
mode:
authorDavid Rientjes <rientjes@google.com>2009-09-25 18:20:00 -0400
committerIngo Molnar <mingo@elte.hu>2009-10-12 16:56:45 -0400
commit8ee2debce32412118cf8c239e0026ace56ea1425 (patch)
tree644da3b622f5266cf61e0771c23cca33943a3614 /arch/x86/mm/k8topology_64.c
parent1af5ba514f0c2f2e2af965a4ffa5e8ab269271b9 (diff)
x86: Export k8 physical topology
To eventually interleave emulated nodes over physical nodes, we need to know the physical topology of the machine without actually registering it. This does the k8 node setup in two parts: detection and registration. NUMA emulation can then used the physical topology detected to setup the address ranges of emulated nodes accordingly. If emulation isn't used, the k8 nodes are registered as normal. Two formals are added to the x86 NUMA setup functions: `acpi' and `k8'. These represent whether ACPI or K8 NUMA has been detected; both cannot be true at the same time. This specifies to the NUMA emulation code whether an underlying physical NUMA topology exists and which interface to use. This patch deals solely with separating the k8 setup path into Northbridge detection and registration steps and leaves the ACPI changes for a subsequent patch. The `acpi' formal is added here, however, to avoid touching all the header files again in the next patch. This approach also ensures emulated nodes will not span physical nodes so the true memory latency is not misrepresented. k8_get_nodes() may now be used to export the k8 physical topology of the machine for NUMA emulation. Signed-off-by: David Rientjes <rientjes@google.com> Cc: Andreas Herrmann <andreas.herrmann3@amd.com> Cc: Yinghai Lu <yinghai@kernel.org> Cc: Balbir Singh <balbir@linux.vnet.ibm.com> Cc: Ankita Garg <ankita@in.ibm.com> Cc: Len Brown <len.brown@intel.com> LKML-Reference: <alpine.DEB.1.00.0909251518400.14754@chino.kir.corp.google.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/k8topology_64.c')
-rw-r--r--arch/x86/mm/k8topology_64.c52
1 files changed, 39 insertions, 13 deletions
diff --git a/arch/x86/mm/k8topology_64.c b/arch/x86/mm/k8topology_64.c
index a81561acc20f..b9e2dbfe55c3 100644
--- a/arch/x86/mm/k8topology_64.c
+++ b/arch/x86/mm/k8topology_64.c
@@ -24,6 +24,9 @@
24#include <asm/apic.h> 24#include <asm/apic.h>
25#include <asm/k8.h> 25#include <asm/k8.h>
26 26
27static struct bootnode __initdata nodes[8];
28static nodemask_t __initdata nodes_parsed = NODE_MASK_NONE;
29
27static __init int find_northbridge(void) 30static __init int find_northbridge(void)
28{ 31{
29 int num; 32 int num;
@@ -76,12 +79,26 @@ static __init void early_get_boot_cpu_id(void)
76 early_init_lapic_mapping(); 79 early_init_lapic_mapping();
77} 80}
78 81
79int __init k8_scan_nodes(unsigned long start, unsigned long end) 82int __init k8_get_nodes(struct bootnode *physnodes)
80{ 83{
81 unsigned numnodes, cores, bits, apicid_base; 84 int i;
85 int ret = 0;
86
87 for_each_node_mask(i, nodes_parsed) {
88 physnodes[ret].start = nodes[i].start;
89 physnodes[ret].end = nodes[i].end;
90 ret++;
91 }
92 return ret;
93}
94
95int __init k8_numa_init(unsigned long start_pfn, unsigned long end_pfn)
96{
97 unsigned long start = PFN_PHYS(start_pfn);
98 unsigned long end = PFN_PHYS(end_pfn);
99 unsigned numnodes;
82 unsigned long prevbase; 100 unsigned long prevbase;
83 struct bootnode nodes[8]; 101 int i, nb, found = 0;
84 int i, j, nb, found = 0;
85 u32 nodeid, reg; 102 u32 nodeid, reg;
86 103
87 if (!early_pci_allowed()) 104 if (!early_pci_allowed())
@@ -98,9 +115,8 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
98 if (numnodes <= 1) 115 if (numnodes <= 1)
99 return -1; 116 return -1;
100 117
101 pr_info("Number of nodes %d\n", numnodes); 118 pr_info("Number of physical nodes %d\n", numnodes);
102 119
103 memset(&nodes, 0, sizeof(nodes));
104 prevbase = 0; 120 prevbase = 0;
105 for (i = 0; i < 8; i++) { 121 for (i = 0; i < 8; i++) {
106 unsigned long base, limit; 122 unsigned long base, limit;
@@ -130,7 +146,7 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
130 nodeid, (base >> 8) & 3, (limit >> 8) & 3); 146 nodeid, (base >> 8) & 3, (limit >> 8) & 3);
131 return -1; 147 return -1;
132 } 148 }
133 if (node_isset(nodeid, node_possible_map)) { 149 if (node_isset(nodeid, nodes_parsed)) {
134 pr_info("Node %d already present, skipping\n", 150 pr_info("Node %d already present, skipping\n",
135 nodeid); 151 nodeid);
136 continue; 152 continue;
@@ -141,8 +157,8 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
141 limit |= (1<<24)-1; 157 limit |= (1<<24)-1;
142 limit++; 158 limit++;
143 159
144 if (limit > max_pfn << PAGE_SHIFT) 160 if (limit > end)
145 limit = max_pfn << PAGE_SHIFT; 161 limit = end;
146 if (limit <= base) 162 if (limit <= base)
147 continue; 163 continue;
148 164
@@ -180,12 +196,23 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
180 196
181 prevbase = base; 197 prevbase = base;
182 198
183 node_set(nodeid, node_possible_map); 199 node_set(nodeid, nodes_parsed);
184 } 200 }
185 201
186 if (!found) 202 if (!found)
187 return -1; 203 return -1;
204 return 0;
205}
188 206
207int __init k8_scan_nodes(void)
208{
209 unsigned int bits;
210 unsigned int cores;
211 unsigned int apicid_base;
212 int i;
213
214 BUG_ON(nodes_empty(nodes_parsed));
215 node_possible_map = nodes_parsed;
189 memnode_shift = compute_hash_shift(nodes, 8, NULL); 216 memnode_shift = compute_hash_shift(nodes, 8, NULL);
190 if (memnode_shift < 0) { 217 if (memnode_shift < 0) {
191 pr_err("No NUMA node hash function found. Contact maintainer\n"); 218 pr_err("No NUMA node hash function found. Contact maintainer\n");
@@ -204,9 +231,8 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
204 apicid_base = boot_cpu_physical_apicid; 231 apicid_base = boot_cpu_physical_apicid;
205 } 232 }
206 233
207 for (i = 0; i < 8; i++) { 234 for_each_node_mask(i, node_possible_map) {
208 if (nodes[i].start == nodes[i].end) 235 int j;
209 continue;
210 236
211 e820_register_active_regions(i, 237 e820_register_active_regions(i,
212 nodes[i].start >> PAGE_SHIFT, 238 nodes[i].start >> PAGE_SHIFT,