numa.c 9.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  acpi_numa.c - ACPI NUMA support
 *
 *  Copyright (C) 2002 Takayoshi Kochi <t-kochi@bq.jp.nec.com>
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 */
21 22 23

#define pr_fmt(fmt) "ACPI: " fmt

L
Linus Torvalds 已提交
24 25 26 27 28 29
#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/acpi.h>
D
David Rientjes 已提交
30
#include <linux/numa.h>
31 32
#include <linux/nodemask.h>
#include <linux/topology.h>
L
Linus Torvalds 已提交
33 34 35

#define ACPI_NUMA	0x80000000
#define _COMPONENT	ACPI_NUMA
36
ACPI_MODULE_NAME("numa");
L
Linus Torvalds 已提交
37

38 39 40
static nodemask_t nodes_found_map = NODE_MASK_NONE;

/* maps to convert between proximity domain and logical node ID */
J
Jan Beulich 已提交
41
static int pxm_to_node_map[MAX_PXM_DOMAINS]
D
David Rientjes 已提交
42
			= { [0 ... MAX_PXM_DOMAINS - 1] = NUMA_NO_NODE };
J
Jan Beulich 已提交
43
static int node_to_pxm_map[MAX_NUMNODES]
D
David Rientjes 已提交
44
			= { [0 ... MAX_NUMNODES - 1] = PXM_INVAL };
45

K
Kurt Garloff 已提交
46 47
unsigned char acpi_srat_revision __initdata;

48
int pxm_to_node(int pxm)
49 50
{
	if (pxm < 0)
D
David Rientjes 已提交
51
		return NUMA_NO_NODE;
52 53 54
	return pxm_to_node_map[pxm];
}

55
int node_to_pxm(int node)
56 57 58 59 60 61
{
	if (node < 0)
		return PXM_INVAL;
	return node_to_pxm_map[node];
}

62
static void __acpi_map_pxm_to_node(int pxm, int node)
63
{
64 65 66 67
	if (pxm_to_node_map[pxm] == NUMA_NO_NODE || node < pxm_to_node_map[pxm])
		pxm_to_node_map[pxm] = node;
	if (node_to_pxm_map[node] == PXM_INVAL || pxm < node_to_pxm_map[node])
		node_to_pxm_map[node] = pxm;
68 69
}

70
int acpi_map_pxm_to_node(int pxm)
71
{
72 73 74 75 76 77
	int node;

	if (pxm < 0 || pxm >= MAX_PXM_DOMAINS)
		return NUMA_NO_NODE;

	node = pxm_to_node_map[pxm];
78

J
Jianguo Wu 已提交
79
	if (node == NUMA_NO_NODE) {
80
		if (nodes_weight(nodes_found_map) >= MAX_NUMNODES)
D
David Rientjes 已提交
81
			return NUMA_NO_NODE;
82
		node = first_unset_node(nodes_found_map);
83
		__acpi_map_pxm_to_node(pxm, node);
84 85 86 87 88 89
		node_set(node, nodes_found_map);
	}

	return node;
}

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
/**
 * acpi_map_pxm_to_online_node - Map proximity ID to online node
 * @pxm: ACPI proximity ID
 *
 * This is similar to acpi_map_pxm_to_node(), but always returns an online
 * node.  When the mapped node from a given proximity ID is offline, it
 * looks up the node distance table and returns the nearest online node.
 *
 * ACPI device drivers, which are called after the NUMA initialization has
 * completed in the kernel, can call this interface to obtain their device
 * NUMA topology from ACPI tables.  Such drivers do not have to deal with
 * offline nodes.  A node may be offline when a device proximity ID is
 * unique, SRAT memory entry does not exist, or NUMA is disabled, ex.
 * "numa=off" on x86.
 */
int acpi_map_pxm_to_online_node(int pxm)
{
	int node, n, dist, min_dist;

	node = acpi_map_pxm_to_node(pxm);

	if (node == NUMA_NO_NODE)
		node = 0;

	if (!node_online(node)) {
		min_dist = INT_MAX;
		for_each_online_node(n) {
			dist = node_distance(node, n);
			if (dist < min_dist) {
				min_dist = dist;
				node = n;
			}
		}
	}

	return node;
}
EXPORT_SYMBOL(acpi_map_pxm_to_online_node);

129 130
static void __init
acpi_table_print_srat_entry(struct acpi_subtable_header *header)
L
Linus Torvalds 已提交
131 132
{

L
Len Brown 已提交
133
	ACPI_FUNCTION_NAME("acpi_table_print_srat_entry");
L
Linus Torvalds 已提交
134 135 136 137 138 139

	if (!header)
		return;

	switch (header->type) {

140
	case ACPI_SRAT_TYPE_CPU_AFFINITY:
L
Linus Torvalds 已提交
141
#ifdef ACPI_DEBUG_OUTPUT
L
Len Brown 已提交
142
		{
143 144
			struct acpi_srat_cpu_affinity *p =
			    (struct acpi_srat_cpu_affinity *)header;
L
Len Brown 已提交
145 146
			ACPI_DEBUG_PRINT((ACPI_DB_INFO,
					  "SRAT Processor (id[0x%02x] eid[0x%02x]) in proximity domain %d %s\n",
147 148 149 150
					  p->apic_id, p->local_sapic_eid,
					  p->proximity_domain_lo,
					  (p->flags & ACPI_SRAT_CPU_ENABLED)?
					  "enabled" : "disabled"));
L
Len Brown 已提交
151 152
		}
#endif				/* ACPI_DEBUG_OUTPUT */
L
Linus Torvalds 已提交
153 154
		break;

155
	case ACPI_SRAT_TYPE_MEMORY_AFFINITY:
L
Linus Torvalds 已提交
156
#ifdef ACPI_DEBUG_OUTPUT
L
Len Brown 已提交
157
		{
158 159
			struct acpi_srat_mem_affinity *p =
			    (struct acpi_srat_mem_affinity *)header;
L
Len Brown 已提交
160
			ACPI_DEBUG_PRINT((ACPI_DB_INFO,
161
					  "SRAT Memory (0x%lx length 0x%lx) in proximity domain %d %s%s%s\n",
162 163
					  (unsigned long)p->base_address,
					  (unsigned long)p->length,
164
					  p->proximity_domain,
165 166 167
					  (p->flags & ACPI_SRAT_MEM_ENABLED)?
					  "enabled" : "disabled",
					  (p->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE)?
168 169 170
					  " hot-pluggable" : "",
					  (p->flags & ACPI_SRAT_MEM_NON_VOLATILE)?
					  " non-volatile" : ""));
L
Len Brown 已提交
171 172
		}
#endif				/* ACPI_DEBUG_OUTPUT */
L
Linus Torvalds 已提交
173 174
		break;

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
	case ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY:
#ifdef ACPI_DEBUG_OUTPUT
		{
			struct acpi_srat_x2apic_cpu_affinity *p =
			    (struct acpi_srat_x2apic_cpu_affinity *)header;
			ACPI_DEBUG_PRINT((ACPI_DB_INFO,
					  "SRAT Processor (x2apicid[0x%08x]) in"
					  " proximity domain %d %s\n",
					  p->apic_id,
					  p->proximity_domain,
					  (p->flags & ACPI_SRAT_CPU_ENABLED) ?
					  "enabled" : "disabled"));
		}
#endif				/* ACPI_DEBUG_OUTPUT */
		break;
L
Linus Torvalds 已提交
190
	default:
191 192
		pr_warn("Found unsupported SRAT entry (type = 0x%x)\n",
			header->type);
L
Linus Torvalds 已提交
193 194 195 196
		break;
	}
}

197 198 199 200 201 202
/*
 * A lot of BIOS fill in 10 (= no distance) everywhere. This messes
 * up the NUMA heuristics which wants the local node to have a smaller
 * distance than the others.
 * Do some quick checks here and only use the SLIT if it passes.
 */
203
static int __init slit_valid(struct acpi_table_slit *slit)
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
{
	int i, j;
	int d = slit->locality_count;
	for (i = 0; i < d; i++) {
		for (j = 0; j < d; j++)  {
			u8 val = slit->entry[d*i + j];
			if (i == j) {
				if (val != LOCAL_DISTANCE)
					return 0;
			} else if (val <= LOCAL_DISTANCE)
				return 0;
		}
	}
	return 1;
}

220
static int __init acpi_parse_slit(struct acpi_table_header *table)
L
Linus Torvalds 已提交
221
{
222
	struct acpi_table_slit *slit = (struct acpi_table_slit *)table;
L
Linus Torvalds 已提交
223

224
	if (!slit_valid(slit)) {
225
		pr_info("SLIT table looks invalid. Not used.\n");
226 227
		return -EINVAL;
	}
L
Linus Torvalds 已提交
228 229 230 231 232
	acpi_numa_slit_init(slit);

	return 0;
}

233
void __init __weak
234 235
acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa)
{
236
	pr_warn("Found unsupported x2apic [0x%08x] SRAT entry\n", pa->apic_id);
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
}

static int __init
acpi_parse_x2apic_affinity(struct acpi_subtable_header *header,
			   const unsigned long end)
{
	struct acpi_srat_x2apic_cpu_affinity *processor_affinity;

	processor_affinity = (struct acpi_srat_x2apic_cpu_affinity *)header;
	if (!processor_affinity)
		return -EINVAL;

	acpi_table_print_srat_entry(header);

	/* let architecture-dependent part to do it */
	acpi_numa_x2apic_affinity_init(processor_affinity);

	return 0;
}

L
Linus Torvalds 已提交
257
static int __init
258
acpi_parse_processor_affinity(struct acpi_subtable_header *header,
L
Len Brown 已提交
259
			      const unsigned long end)
L
Linus Torvalds 已提交
260
{
261
	struct acpi_srat_cpu_affinity *processor_affinity;
L
Linus Torvalds 已提交
262

263
	processor_affinity = (struct acpi_srat_cpu_affinity *)header;
L
Linus Torvalds 已提交
264 265 266 267 268 269 270 271 272 273 274
	if (!processor_affinity)
		return -EINVAL;

	acpi_table_print_srat_entry(header);

	/* let architecture-dependent part to do it */
	acpi_numa_processor_affinity_init(processor_affinity);

	return 0;
}

275 276
static int __initdata parsed_numa_memblks;

L
Linus Torvalds 已提交
277
static int __init
278
acpi_parse_memory_affinity(struct acpi_subtable_header * header,
L
Len Brown 已提交
279
			   const unsigned long end)
L
Linus Torvalds 已提交
280
{
281
	struct acpi_srat_mem_affinity *memory_affinity;
L
Linus Torvalds 已提交
282

283
	memory_affinity = (struct acpi_srat_mem_affinity *)header;
L
Linus Torvalds 已提交
284 285 286 287 288 289
	if (!memory_affinity)
		return -EINVAL;

	acpi_table_print_srat_entry(header);

	/* let architecture-dependent part to do it */
290 291
	if (!acpi_numa_memory_affinity_init(memory_affinity))
		parsed_numa_memblks++;
L
Linus Torvalds 已提交
292 293 294
	return 0;
}

295
static int __init acpi_parse_srat(struct acpi_table_header *table)
L
Linus Torvalds 已提交
296
{
297
	struct acpi_table_srat *srat = (struct acpi_table_srat *)table;
L
Linus Torvalds 已提交
298

K
Kurt Garloff 已提交
299 300
	acpi_srat_revision = srat->header.revision;

301
	/* Real work done in acpi_table_parse_srat below. */
L
Linus Torvalds 已提交
302 303 304 305

	return 0;
}

306
static int __init
307
acpi_table_parse_srat(enum acpi_srat_type id,
308
		      acpi_tbl_entry_handler handler, unsigned int max_entries)
L
Linus Torvalds 已提交
309
{
310
	return acpi_table_parse_entries(ACPI_SIG_SRAT,
L
Len Brown 已提交
311 312
					    sizeof(struct acpi_table_srat), id,
					    handler, max_entries);
L
Linus Torvalds 已提交
313 314
}

315
int __init acpi_numa_init(void)
316
{
317 318
	int cnt = 0;

319 320 321 322 323
	/*
	 * Should not limit number with cpu num that is from NR_CPUS or nr_cpus=
	 * SRAT cpu entries could have different order with that in MADT.
	 * So go over all cpu entries in SRAT to get apicid to node mapping.
	 */
324

L
Linus Torvalds 已提交
325
	/* SRAT: Static Resource Affinity Table */
326
	if (!acpi_table_parse(ACPI_SIG_SRAT, acpi_parse_srat)) {
327 328 329 330 331 332 333 334 335 336 337 338
		struct acpi_subtable_proc srat_proc[2];

		memset(srat_proc, 0, sizeof(srat_proc));
		srat_proc[0].id = ACPI_SRAT_TYPE_CPU_AFFINITY;
		srat_proc[0].handler = acpi_parse_processor_affinity;
		srat_proc[1].id = ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY;
		srat_proc[1].handler = acpi_parse_x2apic_affinity;

		acpi_table_parse_entries_array(ACPI_SIG_SRAT,
					sizeof(struct acpi_table_srat),
					srat_proc, ARRAY_SIZE(srat_proc), 0);

339 340 341
		cnt = acpi_table_parse_srat(ACPI_SRAT_TYPE_MEMORY_AFFINITY,
					    acpi_parse_memory_affinity,
					    NR_NODE_MEMBLKS);
L
Linus Torvalds 已提交
342 343 344
	}

	/* SLIT: System Locality Information Table */
345
	acpi_table_parse(ACPI_SIG_SLIT, acpi_parse_slit);
L
Linus Torvalds 已提交
346 347

	acpi_numa_arch_fixup();
348

349 350
	if (cnt < 0)
		return cnt;
351
	else if (!parsed_numa_memblks)
352
		return -ENOENT;
353
	return 0;
L
Linus Torvalds 已提交
354 355
}

356
static int acpi_get_pxm(acpi_handle h)
L
Linus Torvalds 已提交
357
{
358
	unsigned long long pxm;
L
Linus Torvalds 已提交
359 360 361 362 363 364 365 366
	acpi_status status;
	acpi_handle handle;
	acpi_handle phandle = h;

	do {
		handle = phandle;
		status = acpi_evaluate_integer(handle, "_PXM", NULL, &pxm);
		if (ACPI_SUCCESS(status))
367
			return pxm;
L
Linus Torvalds 已提交
368
		status = acpi_get_parent(handle, &phandle);
L
Len Brown 已提交
369
	} while (ACPI_SUCCESS(status));
L
Linus Torvalds 已提交
370 371
	return -1;
}
372

373
int acpi_get_node(acpi_handle handle)
374
{
375
	int pxm;
376 377 378

	pxm = acpi_get_pxm(handle);

379
	return acpi_map_pxm_to_node(pxm);
380 381
}
EXPORT_SYMBOL(acpi_get_node);