blob: f16434568a51da26ea8524ae11fa84f0c7405717 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mm.h>
27#include <linux/bootmem.h>
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070028#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mmzone.h>
30#include <linux/acpi.h>
31#include <linux/nodemask.h>
32#include <asm/srat.h>
33#include <asm/topology.h>
keith mannthey3b086062006-09-29 01:58:46 -070034#include <asm/smp.h>
Yinghai Lu7b2a0a62008-06-03 19:35:04 -070035#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/*
38 * proximity macros and definitions
39 */
40#define NODE_ARRAY_INDEX(x) ((x) / 8) /* 8 bits/char */
41#define NODE_ARRAY_OFFSET(x) ((x) % 8) /* 8 bits/char */
42#define BMAP_SET(bmap, bit) ((bmap)[NODE_ARRAY_INDEX(bit)] |= 1 << NODE_ARRAY_OFFSET(bit))
43#define BMAP_TEST(bmap, bit) ((bmap)[NODE_ARRAY_INDEX(bit)] & (1 << NODE_ARRAY_OFFSET(bit)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* bitmap length; _PXM is at most 255 */
45#define PXM_BITMAP_LEN (MAX_PXM_DOMAINS / 8)
Yinghai Lu1c6e5502008-06-17 15:41:45 -070046static u8 __initdata pxm_bitmap[PXM_BITMAP_LEN]; /* bitmap of proximity domains */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Christoph Lameterb9b15782006-09-25 23:31:16 -070048#define MAX_CHUNKS_PER_NODE 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define MAXCHUNKS (MAX_CHUNKS_PER_NODE * MAX_NUMNODES)
50struct node_memory_chunk_s {
51 unsigned long start_pfn;
52 unsigned long end_pfn;
53 u8 pxm; // proximity domain of node
54 u8 nid; // which cnode contains this chunk?
55 u8 bank; // which mem bank on this node
56};
Yinghai Lu1c6e5502008-06-17 15:41:45 -070057static struct node_memory_chunk_s __initdata node_memory_chunk[MAXCHUNKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Yinghai Lu1c6e5502008-06-17 15:41:45 -070059static int __initdata num_memory_chunks; /* total number of memory chunks */
keith mannthey3b086062006-09-29 01:58:46 -070060static u8 __initdata apicid_to_pxm[MAX_APICID];
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Yinghai Lu1c6e5502008-06-17 15:41:45 -070062int numa_off __initdata;
63int acpi_numa __initdata;
64
65static __init void bad_srat(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Yinghai Lu1c6e5502008-06-17 15:41:45 -070067 printk(KERN_ERR "SRAT: SRAT not used.\n");
68 acpi_numa = -1;
69 num_memory_chunks = 0;
70}
71
72static __init inline int srat_disabled(void)
73{
74 return numa_off || acpi_numa < 0;
75}
76
77/* Identify CPU proximity domains */
78void __init
79acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *cpu_affinity)
80{
81 if (srat_disabled())
82 return;
83 if (cpu_affinity->header.length !=
84 sizeof(struct acpi_srat_cpu_affinity)) {
85 bad_srat();
86 return;
87 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Alexey Starikovskiy0e568332007-02-02 21:37:53 -050089 if ((cpu_affinity->flags & ACPI_SRAT_CPU_ENABLED) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return; /* empty entry */
91
92 /* mark this node as "seen" in node bitmap */
Alexey Starikovskiy0e568332007-02-02 21:37:53 -050093 BMAP_SET(pxm_bitmap, cpu_affinity->proximity_domain_lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Yinghai Lud3bd0582010-12-16 19:09:58 -080095 /* don't need to check apic_id here, because it is always 8 bits */
Alexey Starikovskiy0e568332007-02-02 21:37:53 -050096 apicid_to_pxm[cpu_affinity->apic_id] = cpu_affinity->proximity_domain_lo;
keith mannthey3b086062006-09-29 01:58:46 -070097
Yinghai Luc0943452008-06-23 16:41:30 -070098 printk(KERN_DEBUG "CPU %02x in proximity domain %02x\n",
Alexey Starikovskiy0e568332007-02-02 21:37:53 -050099 cpu_affinity->apic_id, cpu_affinity->proximity_domain_lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102/*
103 * Identify memory proximity domains and hot-remove capabilities.
104 * Fill node memory chunk list structure.
105 */
Yinghai Lu1c6e5502008-06-17 15:41:45 -0700106void __init
107acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *memory_affinity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 unsigned long long paddr, size;
Alexey Starikovskiy0e568332007-02-02 21:37:53 -0500110 unsigned long start_pfn, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 u8 pxm;
112 struct node_memory_chunk_s *p, *q, *pend;
Yinghai Lu1c6e5502008-06-17 15:41:45 -0700113
114 if (srat_disabled())
115 return;
116 if (memory_affinity->header.length !=
117 sizeof(struct acpi_srat_mem_affinity)) {
118 bad_srat();
119 return;
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Alexey Starikovskiy0e568332007-02-02 21:37:53 -0500122 if ((memory_affinity->flags & ACPI_SRAT_MEM_ENABLED) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return; /* empty entry */
124
Alexey Starikovskiy0e568332007-02-02 21:37:53 -0500125 pxm = memory_affinity->proximity_domain & 0xff;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* mark this node as "seen" in node bitmap */
Alexey Starikovskiy0e568332007-02-02 21:37:53 -0500128 BMAP_SET(pxm_bitmap, pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 /* calculate info for memory chunk structure */
Alexey Starikovskiy0e568332007-02-02 21:37:53 -0500131 paddr = memory_affinity->base_address;
132 size = memory_affinity->length;
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 start_pfn = paddr >> PAGE_SHIFT;
135 end_pfn = (paddr + size) >> PAGE_SHIFT;
Alexey Starikovskiy0e568332007-02-02 21:37:53 -0500136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 if (num_memory_chunks >= MAXCHUNKS) {
Yinghai Luc0943452008-06-23 16:41:30 -0700139 printk(KERN_WARNING "Too many mem chunks in SRAT."
140 " Ignoring %lld MBytes at %llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 size/(1024*1024), paddr);
142 return;
143 }
144
145 /* Insertion sort based on base address */
146 pend = &node_memory_chunk[num_memory_chunks];
147 for (p = &node_memory_chunk[0]; p < pend; p++) {
148 if (start_pfn < p->start_pfn)
149 break;
150 }
151 if (p < pend) {
152 for (q = pend; q >= p; q--)
153 *(q + 1) = *q;
154 }
155 p->start_pfn = start_pfn;
156 p->end_pfn = end_pfn;
157 p->pxm = pxm;
158
159 num_memory_chunks++;
160
Bob Moore19d0cfe2008-06-10 15:54:40 +0800161 printk(KERN_DEBUG "Memory range %08lx to %08lx"
Yinghai Luc0943452008-06-23 16:41:30 -0700162 " in proximity domain %02x %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 start_pfn, end_pfn,
Alexey Starikovskiy0e568332007-02-02 21:37:53 -0500164 pxm,
165 ((memory_affinity->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 "enabled and removable" : "enabled" ) );
167}
168
Yinghai Lu1c6e5502008-06-17 15:41:45 -0700169/* Callback for SLIT parsing */
170void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
171{
172}
173
174void acpi_numa_arch_fixup(void)
175{
176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*
178 * The SRAT table always lists ascending addresses, so can always
179 * assume that the first "start" address that you see is the real
180 * start of the node, and that the current "end" address is after
181 * the previous one.
182 */
Yinghai Lu858f7742008-08-14 02:16:29 -0700183static __init int node_read_chunk(int nid, struct node_memory_chunk_s *memory_chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 /*
186 * Only add present memory as told by the e820.
187 * There is no guarantee from the SRAT that the memory it
188 * enumerates is present at boot time because it represents
189 * *possible* memory hotplug areas the same as normal RAM.
190 */
191 if (memory_chunk->start_pfn >= max_pfn) {
Yinghai Luc0943452008-06-23 16:41:30 -0700192 printk(KERN_INFO "Ignoring SRAT pfns: %08lx - %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 memory_chunk->start_pfn, memory_chunk->end_pfn);
Yinghai Lu858f7742008-08-14 02:16:29 -0700194 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196 if (memory_chunk->nid != nid)
Yinghai Lu858f7742008-08-14 02:16:29 -0700197 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (!node_has_online_mem(nid))
200 node_start_pfn[nid] = memory_chunk->start_pfn;
201
202 if (node_start_pfn[nid] > memory_chunk->start_pfn)
203 node_start_pfn[nid] = memory_chunk->start_pfn;
204
205 if (node_end_pfn[nid] < memory_chunk->end_pfn)
206 node_end_pfn[nid] = memory_chunk->end_pfn;
Yinghai Lu858f7742008-08-14 02:16:29 -0700207
208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Yinghai Lu1c6e5502008-06-17 15:41:45 -0700211int __init get_memcfg_from_srat(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int i, j, nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Yinghai Lu1c6e5502008-06-17 15:41:45 -0700216 if (srat_disabled())
217 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 if (num_memory_chunks == 0) {
Rafael J. Wysocki23b6c522009-09-05 01:07:45 +0200220 printk(KERN_DEBUG
Nikanth Karthikesane0e5ea32009-05-04 09:08:26 +0530221 "could not find any ACPI SRAT memory areas.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 goto out_fail;
223 }
224
225 /* Calculate total number of nodes in system from PXM bitmap and create
226 * a set of sequential node IDs starting at zero. (ACPI doesn't seem
227 * to specify the range of _PXM values.)
228 */
229 /*
230 * MCD - we no longer HAVE to number nodes sequentially. PXM domain
231 * numbers could go as high as 256, and MAX_NUMNODES for i386 is typically
232 * 32, so we will continue numbering them in this manner until MAX_NUMNODES
233 * approaches MAX_PXM_DOMAINS for i386.
234 */
235 nodes_clear(node_online_map);
236 for (i = 0; i < MAX_PXM_DOMAINS; i++) {
237 if (BMAP_TEST(pxm_bitmap, i)) {
Yasunori Goto762834e2006-06-23 02:03:19 -0700238 int nid = acpi_map_pxm_to_node(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 node_set_online(nid);
240 }
241 }
242 BUG_ON(num_online_nodes() == 0);
243
244 /* set cnode id in memory chunk structure */
245 for (i = 0; i < num_memory_chunks; i++)
Yasunori Goto762834e2006-06-23 02:03:19 -0700246 node_memory_chunk[i].nid = pxm_to_node(node_memory_chunk[i].pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Yinghai Luc0943452008-06-23 16:41:30 -0700248 printk(KERN_DEBUG "pxm bitmap: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 for (i = 0; i < sizeof(pxm_bitmap); i++) {
Yinghai Luc0943452008-06-23 16:41:30 -0700250 printk(KERN_CONT "%02x ", pxm_bitmap[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
Yinghai Luc0943452008-06-23 16:41:30 -0700252 printk(KERN_CONT "\n");
253 printk(KERN_DEBUG "Number of logical nodes in system = %d\n",
254 num_online_nodes());
255 printk(KERN_DEBUG "Number of memory chunks in system = %d\n",
256 num_memory_chunks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
keith mannthey3b086062006-09-29 01:58:46 -0700258 for (i = 0; i < MAX_APICID; i++)
259 apicid_2_node[i] = pxm_to_node(apicid_to_pxm[i]);
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 for (j = 0; j < num_memory_chunks; j++){
262 struct node_memory_chunk_s * chunk = &node_memory_chunk[j];
Yinghai Luc0943452008-06-23 16:41:30 -0700263 printk(KERN_DEBUG
264 "chunk %d nid %d start_pfn %08lx end_pfn %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 j, chunk->nid, chunk->start_pfn, chunk->end_pfn);
Yinghai Lu858f7742008-08-14 02:16:29 -0700266 if (node_read_chunk(chunk->nid, chunk))
267 continue;
268
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700269 memblock_x86_register_active_regions(chunk->nid, chunk->start_pfn,
Yinghai Lu7b2a0a62008-06-03 19:35:04 -0700270 min(chunk->end_pfn, max_pfn));
Ingo Molnar23774942008-06-09 10:57:16 +0200271 }
Yinghai Lu32996252009-12-15 17:59:02 -0800272 /* for out of order entries in SRAT */
273 sort_node_map();
Yinghai Lu1c6e5502008-06-17 15:41:45 -0700274
Ingo Molnar23774942008-06-09 10:57:16 +0200275 for_each_online_node(nid) {
276 unsigned long start = node_start_pfn[nid];
Yinghai Luc3ff0162008-06-06 18:54:26 -0700277 unsigned long end = min(node_end_pfn[nid], max_pfn);
Ingo Molnar23774942008-06-09 10:57:16 +0200278
279 memory_present(nid, start, end);
280 node_remap_size[nid] = node_memmap_size_bytes(nid, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 return 1;
283out_fail:
Rafael J. Wysocki23b6c522009-09-05 01:07:45 +0200284 printk(KERN_DEBUG "failed to get NUMA memory information from SRAT"
Yinghai Luc0943452008-06-23 16:41:30 -0700285 " table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return 0;
287}