blob: 51fae9cfdecb39ba87149dc76f128f6e12e73540 [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];
30static nodemask_t __initdata nodes_parsed = NODE_MASK_NONE;
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static __init int find_northbridge(void)
33{
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010034 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010036 for (num = 0; num < 32; num++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 u32 header;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010038
39 header = read_pci_config(0, num, 0, 0x00);
Joachim Deguarabb4a1d62008-01-30 13:34:12 +010040 if (header != (PCI_VENDOR_ID_AMD | (0x1100<<16)) &&
41 header != (PCI_VENDOR_ID_AMD | (0x1200<<16)) &&
42 header != (PCI_VENDOR_ID_AMD | (0x1300<<16)))
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010043 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010045 header = read_pci_config(0, num, 1, 0x00);
Joachim Deguarabb4a1d62008-01-30 13:34:12 +010046 if (header != (PCI_VENDOR_ID_AMD | (0x1101<<16)) &&
47 header != (PCI_VENDOR_ID_AMD | (0x1201<<16)) &&
48 header != (PCI_VENDOR_ID_AMD | (0x1301<<16)))
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010049 continue;
50 return num;
51 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010053 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
Yinghai Lucbf9bd62008-02-19 03:21:06 -080056static __init void early_get_boot_cpu_id(void)
57{
58 /*
Robert Richterf6e9456c2010-07-21 19:03:58 +020059 * need to get the APIC ID of the BSP so can use that to
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +020060 * create apicid_to_node in amd_scan_nodes()
Yinghai Lucbf9bd62008-02-19 03:21:06 -080061 */
Yinghai Lua4caa182008-06-19 12:15:01 -070062#ifdef CONFIG_X86_MPPARSE
Yinghai Lucbf9bd62008-02-19 03:21:06 -080063 /*
64 * get boot-time SMP configuration:
65 */
66 if (smp_found_config)
67 early_get_smp_config();
Yinghai Lua4caa182008-06-19 12:15:01 -070068#endif
Yinghai Lucbf9bd62008-02-19 03:21:06 -080069 early_init_lapic_mapping();
70}
71
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +020072int __init amd_get_nodes(struct bootnode *physnodes)
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010073{
David Rientjes8ee2deb2009-09-25 15:20:00 -070074 int i;
75 int ret = 0;
76
77 for_each_node_mask(i, nodes_parsed) {
78 physnodes[ret].start = nodes[i].start;
79 physnodes[ret].end = nodes[i].end;
80 ret++;
81 }
82 return ret;
83}
84
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +020085int __init amd_numa_init(unsigned long start_pfn, unsigned long end_pfn)
David Rientjes8ee2deb2009-09-25 15:20:00 -070086{
87 unsigned long start = PFN_PHYS(start_pfn);
88 unsigned long end = PFN_PHYS(end_pfn);
89 unsigned numnodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 unsigned long prevbase;
David Rientjes8ee2deb2009-09-25 15:20:00 -070091 int i, nb, found = 0;
Thomas Gleixnerd34c0892008-05-12 15:43:35 +020092 u32 nodeid, reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Andi Kleen0637a702006-09-26 10:52:41 +020094 if (!early_pci_allowed())
95 return -1;
96
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +010097 nb = find_northbridge();
98 if (nb < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return nb;
100
David Rientjes1af5ba52009-09-25 15:19:47 -0700101 pr_info("Scanning NUMA topology in Northbridge %d\n", nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100103 reg = read_pci_config(0, nb, 0, 0x60);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 numnodes = ((reg >> 4) & 0xF) + 1;
Andi Kleen3bea9c92007-05-02 19:27:21 +0200105 if (numnodes <= 1)
106 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
David Rientjes8ee2deb2009-09-25 15:20:00 -0700108 pr_info("Number of physical nodes %d\n", numnodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 prevbase = 0;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100111 for (i = 0; i < 8; i++) {
112 unsigned long base, limit;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 base = read_pci_config(0, nb, 1, 0x40 + i*8);
115 limit = read_pci_config(0, nb, 1, 0x44 + i*8);
116
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100117 nodeid = limit & 7;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100118 if ((base & 3) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (i < numnodes)
David Rientjes1af5ba52009-09-25 15:19:47 -0700120 pr_info("Skipping disabled node %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 continue;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (nodeid >= numnodes) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700124 pr_info("Ignoring excess node %d (%lx:%lx)\n", nodeid,
125 base, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 continue;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100129 if (!limit) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700130 pr_info("Skipping node entry %d (base %lx)\n",
131 i, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 continue;
133 }
134 if ((base >> 8) & 3 || (limit >> 8) & 3) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700135 pr_err("Node %d using interleaving mode %lx/%lx\n",
136 nodeid, (base >> 8) & 3, (limit >> 8) & 3);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100137 return -1;
138 }
David Rientjes8ee2deb2009-09-25 15:20:00 -0700139 if (node_isset(nodeid, nodes_parsed)) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700140 pr_info("Node %d already present, skipping\n",
141 nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 continue;
143 }
144
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100145 limit >>= 16;
146 limit <<= 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 limit |= (1<<24)-1;
Magnus Dammffd10a22005-11-05 17:25:54 +0100148 limit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
David Rientjes8ee2deb2009-09-25 15:20:00 -0700150 if (limit > end)
151 limit = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (limit <= base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 continue;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100154
155 base >>= 16;
156 base <<= 24;
157
158 if (base < start)
159 base = start;
160 if (limit > end)
161 limit = end;
162 if (limit == base) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700163 pr_err("Empty node %d\n", nodeid);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100164 continue;
165 }
166 if (limit < base) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700167 pr_err("Node %d bogus settings %lx-%lx.\n",
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100168 nodeid, base, limit);
169 continue;
170 }
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* Could sort here, but pun for now. Should not happen anyroads. */
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100173 if (prevbase > base) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700174 pr_err("Node map not sorted %lx,%lx\n",
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100175 prevbase, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return -1;
177 }
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100178
David Rientjes1af5ba52009-09-25 15:19:47 -0700179 pr_info("Node %d MemBase %016lx Limit %016lx\n",
180 nodeid, base, limit);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 found++;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100183
184 nodes[nodeid].start = base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 nodes[nodeid].end = limit;
186
187 prevbase = base;
188
David Rientjes8ee2deb2009-09-25 15:20:00 -0700189 node_set(nodeid, nodes_parsed);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (!found)
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100193 return -1;
David Rientjes8ee2deb2009-09-25 15:20:00 -0700194 return 0;
195}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +0200197int __init amd_scan_nodes(void)
David Rientjes8ee2deb2009-09-25 15:20:00 -0700198{
199 unsigned int bits;
200 unsigned int cores;
201 unsigned int apicid_base;
202 int i;
203
204 BUG_ON(nodes_empty(nodes_parsed));
205 node_possible_map = nodes_parsed;
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700206 memnode_shift = compute_hash_shift(nodes, 8, NULL);
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100207 if (memnode_shift < 0) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700208 pr_err("No NUMA node hash function found. Contact maintainer\n");
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100209 return -1;
210 }
David Rientjes1af5ba52009-09-25 15:19:47 -0700211 pr_info("Using node hash shift of %d\n", memnode_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Yinghai Lu3f6e5a12008-01-30 13:30:39 +0100213 /* use the coreid bits from early_identify_cpu */
214 bits = boot_cpu_data.x86_coreid_bits;
215 cores = (1<<bits);
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800216 apicid_base = 0;
Robert Richterf6e9456c2010-07-21 19:03:58 +0200217 /* get the APIC ID of the BSP early for systems with apicid lifting */
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800218 early_get_boot_cpu_id();
219 if (boot_cpu_physical_apicid > 0) {
David Rientjes1af5ba52009-09-25 15:19:47 -0700220 pr_info("BSP APIC ID: %02x\n", boot_cpu_physical_apicid);
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800221 apicid_base = boot_cpu_physical_apicid;
222 }
Yinghai Lu3f6e5a12008-01-30 13:30:39 +0100223
David Rientjes8ee2deb2009-09-25 15:20:00 -0700224 for_each_node_mask(i, node_possible_map) {
225 int j;
Yinghai Lu40bcc692009-01-05 18:39:01 -0800226
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700227 memblock_x86_register_active_regions(i,
Yinghai Lu40bcc692009-01-05 18:39:01 -0800228 nodes[i].start >> PAGE_SHIFT,
229 nodes[i].end >> PAGE_SHIFT);
230 for (j = apicid_base; j < cores + apicid_base; j++)
231 apicid_to_node[(i << bits) + j] = i;
232 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
235 numa_init_array();
236 return 0;
Carlos R. Mafra3aa88cd2008-01-30 13:32:36 +0100237}