blob: f21962c435ed78026a41b97d40717a7dc035599c [file] [log] [blame]
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +01001/*
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +02002 * AMD NUMA support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Discover the memory map and associated nodes.
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +01004 *
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +02005 * This version reads it directly from the AMD northbridge.
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +01006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright 2002,2003 Andi Kleen, SuSE Labs.
8 */
9#include <linux/kernel.h>
10#include <linux/init.h>
11#include <linux/string.h>
12#include <linux/module.h>
13#include <linux/nodemask.h>
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070014#include <linux/memblock.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/io.h>
17#include <linux/pci_ids.h>
Yinghai Lucbf9bd62008-02-19 03:21:06 -080018#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/types.h>
20#include <asm/mmzone.h>
21#include <asm/proto.h>
22#include <asm/e820.h>
23#include <asm/pci-direct.h>
24#include <asm/numa.h>
Yinghai Lucbf9bd62008-02-19 03:21:06 -080025#include <asm/mpspec.h>
26#include <asm/apic.h>
Andreas Herrmann23ac4ae2010-09-17 18:03:43 +020027#include <asm/amd_nb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
David Rientjes8ee2deb2009-09-25 15:20:00 -070029static struct bootnode __initdata nodes[8];
David Rientjesf51bf302010-12-22 17:23:51 -080030static unsigned char __initdata nodeids[8];
David Rientjes8ee2deb2009-09-25 15:20:00 -070031static nodemask_t __initdata nodes_parsed = NODE_MASK_NONE;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static __init int find_northbridge(void)
34{
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010035 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010037 for (num = 0; num < 32; num++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 u32 header;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010039
40 header = read_pci_config(0, num, 0, 0x00);
Joachim Deguarabb4a1d62008-01-30 13:34:12 +010041 if (header != (PCI_VENDOR_ID_AMD | (0x1100<<16)) &&
42 header != (PCI_VENDOR_ID_AMD | (0x1200<<16)) &&
43 header != (PCI_VENDOR_ID_AMD | (0x1300<<16)))
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010044 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010046 header = read_pci_config(0, num, 1, 0x00);
Joachim Deguarabb4a1d62008-01-30 13:34:12 +010047 if (header != (PCI_VENDOR_ID_AMD | (0x1101<<16)) &&
48 header != (PCI_VENDOR_ID_AMD | (0x1201<<16)) &&
49 header != (PCI_VENDOR_ID_AMD | (0x1301<<16)))
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010050 continue;
51 return num;
52 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010054 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Yinghai Lucbf9bd62008-02-19 03:21:06 -080057static __init void early_get_boot_cpu_id(void)
58{
59 /*
Robert Richterf6e9456c2010-07-21 19:03:58 +020060 * need to get the APIC ID of the BSP so can use that to
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +020061 * create apicid_to_node in amd_scan_nodes()
Yinghai Lucbf9bd62008-02-19 03:21:06 -080062 */
Yinghai Lua4caa182008-06-19 12:15:01 -070063#ifdef CONFIG_X86_MPPARSE
Yinghai Lucbf9bd62008-02-19 03:21:06 -080064 /*
65 * get boot-time SMP configuration:
66 */
67 if (smp_found_config)
68 early_get_smp_config();
Yinghai Lua4caa182008-06-19 12:15:01 -070069#endif
Yinghai Lucbf9bd62008-02-19 03:21:06 -080070}
71
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +020072int __init amd_numa_init(unsigned long start_pfn, unsigned long end_pfn)
David Rientjes8ee2deb2009-09-25 15:20:00 -070073{
74 unsigned long start = PFN_PHYS(start_pfn);
75 unsigned long end = PFN_PHYS(end_pfn);
76 unsigned numnodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned long prevbase;
David Rientjes8ee2deb2009-09-25 15:20:00 -070078 int i, nb, found = 0;
Thomas Gleixnerd34c0892008-05-12 15:43:35 +020079 u32 nodeid, reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Andi Kleen0637a702006-09-26 10:52:41 +020081 if (!early_pci_allowed())
82 return -1;
83
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010084 nb = find_northbridge();
85 if (nb < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return nb;
87
David Rientjes1af5ba52009-09-25 15:19:47 -070088 pr_info("Scanning NUMA topology in Northbridge %d\n", nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010090 reg = read_pci_config(0, nb, 0, 0x60);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 numnodes = ((reg >> 4) & 0xF) + 1;
Andi Kleen3bea9c92007-05-02 19:27:21 +020092 if (numnodes <= 1)
93 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
David Rientjes8ee2deb2009-09-25 15:20:00 -070095 pr_info("Number of physical nodes %d\n", numnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 prevbase = 0;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010098 for (i = 0; i < 8; i++) {
99 unsigned long base, limit;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 base = read_pci_config(0, nb, 1, 0x40 + i*8);
102 limit = read_pci_config(0, nb, 1, 0x44 + i*8);
103
David Rientjesf51bf302010-12-22 17:23:51 -0800104 nodeids[i] = nodeid = limit & 7;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100105 if ((base & 3) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (i < numnodes)
David Rientjes1af5ba52009-09-25 15:19:47 -0700107 pr_info("Skipping disabled node %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 continue;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (nodeid >= numnodes) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700111 pr_info("Ignoring excess node %d (%lx:%lx)\n", nodeid,
112 base, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 continue;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100116 if (!limit) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700117 pr_info("Skipping node entry %d (base %lx)\n",
118 i, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 continue;
120 }
121 if ((base >> 8) & 3 || (limit >> 8) & 3) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700122 pr_err("Node %d using interleaving mode %lx/%lx\n",
123 nodeid, (base >> 8) & 3, (limit >> 8) & 3);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100124 return -1;
125 }
David Rientjes8ee2deb2009-09-25 15:20:00 -0700126 if (node_isset(nodeid, nodes_parsed)) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700127 pr_info("Node %d already present, skipping\n",
128 nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 continue;
130 }
131
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100132 limit >>= 16;
133 limit <<= 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 limit |= (1<<24)-1;
Magnus Dammffd10a22005-11-05 17:25:54 +0100135 limit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
David Rientjes8ee2deb2009-09-25 15:20:00 -0700137 if (limit > end)
138 limit = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (limit <= base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 continue;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100141
142 base >>= 16;
143 base <<= 24;
144
145 if (base < start)
146 base = start;
147 if (limit > end)
148 limit = end;
149 if (limit == base) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700150 pr_err("Empty node %d\n", nodeid);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100151 continue;
152 }
153 if (limit < base) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700154 pr_err("Node %d bogus settings %lx-%lx.\n",
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100155 nodeid, base, limit);
156 continue;
157 }
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* Could sort here, but pun for now. Should not happen anyroads. */
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100160 if (prevbase > base) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700161 pr_err("Node map not sorted %lx,%lx\n",
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100162 prevbase, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return -1;
164 }
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100165
David Rientjes1af5ba52009-09-25 15:19:47 -0700166 pr_info("Node %d MemBase %016lx Limit %016lx\n",
167 nodeid, base, limit);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 found++;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100170
171 nodes[nodeid].start = base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 nodes[nodeid].end = limit;
173
174 prevbase = base;
175
David Rientjes8ee2deb2009-09-25 15:20:00 -0700176 node_set(nodeid, nodes_parsed);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 if (!found)
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100180 return -1;
David Rientjes8ee2deb2009-09-25 15:20:00 -0700181 return 0;
182}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
David Rientjesf51bf302010-12-22 17:23:51 -0800184#ifdef CONFIG_NUMA_EMU
185static s16 fake_apicid_to_node[MAX_LOCAL_APIC] __initdata = {
186 [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
187};
188
David Rientjesa387e952010-12-22 17:23:56 -0800189void __init amd_get_nodes(struct bootnode *physnodes)
David Rientjesf51bf302010-12-22 17:23:51 -0800190{
191 int i;
David Rientjesf51bf302010-12-22 17:23:51 -0800192
193 for_each_node_mask(i, nodes_parsed) {
David Rientjesa387e952010-12-22 17:23:56 -0800194 physnodes[i].start = nodes[i].start;
195 physnodes[i].end = nodes[i].end;
David Rientjesf51bf302010-12-22 17:23:51 -0800196 }
David Rientjesf51bf302010-12-22 17:23:51 -0800197}
198
199static int __init find_node_by_addr(unsigned long addr)
200{
201 int ret = NUMA_NO_NODE;
202 int i;
203
204 for (i = 0; i < 8; i++)
205 if (addr >= nodes[i].start && addr < nodes[i].end) {
206 ret = i;
207 break;
208 }
209 return ret;
210}
211
212/*
213 * For NUMA emulation, fake proximity domain (_PXM) to node id mappings must be
214 * setup to represent the physical topology but reflect the emulated
215 * environment. For each emulated node, the real node which it appears on is
216 * found and a fake pxm to nid mapping is created which mirrors the actual
217 * locality. node_distance() then represents the correct distances between
218 * emulated nodes by using the fake acpi mappings to pxms.
219 */
220void __init amd_fake_nodes(const struct bootnode *nodes, int nr_nodes)
221{
222 unsigned int bits;
223 unsigned int cores;
224 unsigned int apicid_base = 0;
225 int i;
226
227 bits = boot_cpu_data.x86_coreid_bits;
228 cores = 1 << bits;
229 early_get_boot_cpu_id();
230 if (boot_cpu_physical_apicid > 0)
231 apicid_base = boot_cpu_physical_apicid;
232
233 for (i = 0; i < nr_nodes; i++) {
234 int index;
235 int nid;
236 int j;
237
238 nid = find_node_by_addr(nodes[i].start);
239 if (nid == NUMA_NO_NODE)
240 continue;
241
242 index = nodeids[nid] << bits;
243 if (fake_apicid_to_node[index + apicid_base] == NUMA_NO_NODE)
244 for (j = apicid_base; j < cores + apicid_base; j++)
245 fake_apicid_to_node[index + j] = i;
246#ifdef CONFIG_ACPI_NUMA
247 __acpi_map_pxm_to_node(nid, i);
248#endif
249 }
250 memcpy(apicid_to_node, fake_apicid_to_node, sizeof(apicid_to_node));
251}
252#endif /* CONFIG_NUMA_EMU */
253
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +0200254int __init amd_scan_nodes(void)
David Rientjes8ee2deb2009-09-25 15:20:00 -0700255{
256 unsigned int bits;
257 unsigned int cores;
258 unsigned int apicid_base;
259 int i;
260
261 BUG_ON(nodes_empty(nodes_parsed));
262 node_possible_map = nodes_parsed;
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700263 memnode_shift = compute_hash_shift(nodes, 8, NULL);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100264 if (memnode_shift < 0) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700265 pr_err("No NUMA node hash function found. Contact maintainer\n");
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100266 return -1;
267 }
David Rientjes1af5ba52009-09-25 15:19:47 -0700268 pr_info("Using node hash shift of %d\n", memnode_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Yinghai Lu3f6e5a12008-01-30 13:30:39 +0100270 /* use the coreid bits from early_identify_cpu */
271 bits = boot_cpu_data.x86_coreid_bits;
272 cores = (1<<bits);
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800273 apicid_base = 0;
Robert Richterf6e9456c2010-07-21 19:03:58 +0200274 /* get the APIC ID of the BSP early for systems with apicid lifting */
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800275 early_get_boot_cpu_id();
276 if (boot_cpu_physical_apicid > 0) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700277 pr_info("BSP APIC ID: %02x\n", boot_cpu_physical_apicid);
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800278 apicid_base = boot_cpu_physical_apicid;
279 }
Yinghai Lu3f6e5a12008-01-30 13:30:39 +0100280
David Rientjes8ee2deb2009-09-25 15:20:00 -0700281 for_each_node_mask(i, node_possible_map) {
282 int j;
Yinghai Lu40bcc692009-01-05 18:39:01 -0800283
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700284 memblock_x86_register_active_regions(i,
Yinghai Lu40bcc692009-01-05 18:39:01 -0800285 nodes[i].start >> PAGE_SHIFT,
286 nodes[i].end >> PAGE_SHIFT);
287 for (j = apicid_base; j < cores + apicid_base; j++)
288 apicid_to_node[(i << bits) + j] = i;
289 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
292 numa_init_array();
293 return 0;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100294}