2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* ACPI 3.0 based NUMA setup
|
|
|
|
* Copyright 2004 Andi Kleen, SuSE Labs.
|
|
|
|
*
|
|
|
|
* Reads the ACPI SRAT table to figure out what memory belongs to which CPUs.
|
|
|
|
*
|
|
|
|
* Called from acpi_numa_init while reading the SRAT and SLIT tables.
|
|
|
|
* Assumes all memory regions belonging to a single proximity domain
|
|
|
|
* are in one chunk. Holes between them will be included in the node.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/acpi.h>
|
|
|
|
#include <linux/mmzone.h>
|
|
|
|
#include <linux/bitmap.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/topology.h>
|
2006-04-07 17:49:18 +00:00
|
|
|
#include <linux/bootmem.h>
|
2010-08-25 20:39:17 +00:00
|
|
|
#include <linux/memblock.h>
|
2006-04-07 17:49:18 +00:00
|
|
|
#include <linux/mm.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/proto.h>
|
|
|
|
#include <asm/numa.h>
|
2006-01-11 21:44:39 +00:00
|
|
|
#include <asm/e820.h>
|
2009-02-17 12:58:15 +00:00
|
|
|
#include <asm/apic.h>
|
2009-01-21 09:24:27 +00:00
|
|
|
#include <asm/uv/uv.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-26 08:52:33 +00:00
|
|
|
int acpi_numa __initdata;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static struct acpi_table_slit *acpi_slit;
|
|
|
|
|
2006-10-01 06:27:06 +00:00
|
|
|
static struct bootnode nodes_add[MAX_NUMNODES];
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static __init int setup_node(int pxm)
|
|
|
|
{
|
2006-06-23 09:03:19 +00:00
|
|
|
return acpi_map_pxm_to_node(pxm);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __init void bad_srat(void)
|
|
|
|
{
|
|
|
|
printk(KERN_ERR "SRAT: SRAT not used.\n");
|
|
|
|
acpi_numa = -1;
|
2011-02-16 16:11:09 +00:00
|
|
|
memset(nodes_add, 0, sizeof(nodes_add));
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __init inline int srat_disabled(void)
|
|
|
|
{
|
2011-02-16 11:13:06 +00:00
|
|
|
return acpi_numa < 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Callback for SLIT parsing */
|
|
|
|
void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
|
|
|
|
{
|
2008-07-11 03:36:37 +00:00
|
|
|
unsigned length;
|
|
|
|
unsigned long phys;
|
|
|
|
|
|
|
|
length = slit->header.length;
|
2010-08-25 20:39:17 +00:00
|
|
|
phys = memblock_find_in_range(0, max_pfn_mapped<<PAGE_SHIFT, length,
|
2008-07-11 03:36:37 +00:00
|
|
|
PAGE_SIZE);
|
|
|
|
|
2010-08-25 20:39:17 +00:00
|
|
|
if (phys == MEMBLOCK_ERROR)
|
2008-07-11 03:36:37 +00:00
|
|
|
panic(" Can not save slit!\n");
|
|
|
|
|
|
|
|
acpi_slit = __va(phys);
|
|
|
|
memcpy(acpi_slit, slit, length);
|
2010-08-25 20:39:17 +00:00
|
|
|
memblock_x86_reserve_range(phys, phys + length, "ACPI SLIT");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-30 21:55:30 +00:00
|
|
|
/* Callback for Proximity Domain -> x2APIC mapping */
|
|
|
|
void __init
|
|
|
|
acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa)
|
|
|
|
{
|
|
|
|
int pxm, node;
|
|
|
|
int apic_id;
|
|
|
|
|
|
|
|
if (srat_disabled())
|
|
|
|
return;
|
|
|
|
if (pa->header.length < sizeof(struct acpi_srat_x2apic_cpu_affinity)) {
|
|
|
|
bad_srat();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
|
|
|
|
return;
|
|
|
|
pxm = pa->proximity_domain;
|
|
|
|
node = setup_node(pxm);
|
|
|
|
if (node < 0) {
|
|
|
|
printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
|
|
|
|
bad_srat();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
apic_id = pa->apic_id;
|
2010-12-17 03:09:58 +00:00
|
|
|
if (apic_id >= MAX_LOCAL_APIC) {
|
|
|
|
printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
|
|
|
|
return;
|
|
|
|
}
|
2011-01-23 13:37:39 +00:00
|
|
|
set_apicid_to_node(apic_id, node);
|
2011-02-16 16:11:09 +00:00
|
|
|
node_set(node, numa_nodes_parsed);
|
2009-03-30 21:55:30 +00:00
|
|
|
acpi_numa = 1;
|
2009-11-21 08:23:37 +00:00
|
|
|
printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n",
|
2009-03-30 21:55:30 +00:00
|
|
|
pxm, apic_id, node);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Callback for Proximity Domain -> LAPIC mapping */
|
|
|
|
void __init
|
2007-02-02 16:48:22 +00:00
|
|
|
acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int pxm, node;
|
2008-01-30 12:33:10 +00:00
|
|
|
int apic_id;
|
|
|
|
|
2006-02-03 20:51:26 +00:00
|
|
|
if (srat_disabled())
|
|
|
|
return;
|
2007-02-02 16:48:22 +00:00
|
|
|
if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) {
|
2006-05-15 16:19:44 +00:00
|
|
|
bad_srat();
|
2006-02-03 20:51:26 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-02-02 16:48:22 +00:00
|
|
|
if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
2007-02-02 16:48:22 +00:00
|
|
|
pxm = pa->proximity_domain_lo;
|
2005-04-16 22:20:36 +00:00
|
|
|
node = setup_node(pxm);
|
|
|
|
if (node < 0) {
|
|
|
|
printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
|
|
|
|
bad_srat();
|
|
|
|
return;
|
|
|
|
}
|
2008-02-17 07:00:22 +00:00
|
|
|
|
2008-09-23 20:37:13 +00:00
|
|
|
if (get_uv_system_type() >= UV_X2APIC)
|
2008-03-28 19:12:08 +00:00
|
|
|
apic_id = (pa->apic_id << 8) | pa->local_sapic_eid;
|
|
|
|
else
|
|
|
|
apic_id = pa->apic_id;
|
2010-12-17 03:09:58 +00:00
|
|
|
|
|
|
|
if (apic_id >= MAX_LOCAL_APIC) {
|
|
|
|
printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-23 13:37:39 +00:00
|
|
|
set_apicid_to_node(apic_id, node);
|
2011-02-16 16:11:09 +00:00
|
|
|
node_set(node, numa_nodes_parsed);
|
2005-04-16 22:20:36 +00:00
|
|
|
acpi_numa = 1;
|
2009-11-21 08:23:37 +00:00
|
|
|
printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u\n",
|
2008-01-30 12:33:10 +00:00
|
|
|
pxm, apic_id, node);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-10-01 06:27:05 +00:00
|
|
|
#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
|
|
|
|
static inline int save_add_info(void) {return 1;}
|
|
|
|
#else
|
|
|
|
static inline int save_add_info(void) {return 0;}
|
|
|
|
#endif
|
2006-04-07 17:49:18 +00:00
|
|
|
/*
|
2009-05-15 20:59:37 +00:00
|
|
|
* Update nodes_add[]
|
|
|
|
* This code supports one contiguous hot add area per node
|
2006-04-07 17:49:18 +00:00
|
|
|
*/
|
2009-05-15 20:59:37 +00:00
|
|
|
static void __init
|
|
|
|
update_nodes_add(int node, unsigned long start, unsigned long end)
|
2006-04-07 17:49:18 +00:00
|
|
|
{
|
|
|
|
unsigned long s_pfn = start >> PAGE_SHIFT;
|
|
|
|
unsigned long e_pfn = end >> PAGE_SHIFT;
|
2009-05-15 20:59:37 +00:00
|
|
|
int changed = 0;
|
2006-04-07 17:49:18 +00:00
|
|
|
struct bootnode *nd = &nodes_add[node];
|
|
|
|
|
|
|
|
/* I had some trouble with strange memory hotadd regions breaking
|
|
|
|
the boot. Be very strict here and reject anything unexpected.
|
|
|
|
If you want working memory hotadd write correct SRATs.
|
|
|
|
|
|
|
|
The node size check is a basic sanity check to guard against
|
|
|
|
mistakes */
|
|
|
|
if ((signed long)(end - start) < NODE_MIN_SIZE) {
|
|
|
|
printk(KERN_ERR "SRAT: Hotplug area too small\n");
|
2009-05-15 20:59:37 +00:00
|
|
|
return;
|
2006-04-07 17:49:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This check might be a bit too strict, but I'm keeping it for now. */
|
2006-09-27 08:49:52 +00:00
|
|
|
if (absent_pages_in_range(s_pfn, e_pfn) != e_pfn - s_pfn) {
|
2006-09-27 08:49:58 +00:00
|
|
|
printk(KERN_ERR
|
|
|
|
"SRAT: Hotplug area %lu -> %lu has existing memory\n",
|
|
|
|
s_pfn, e_pfn);
|
2009-05-15 20:59:37 +00:00
|
|
|
return;
|
2006-04-07 17:49:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Looks good */
|
|
|
|
|
|
|
|
if (nd->start == nd->end) {
|
2007-02-02 16:48:22 +00:00
|
|
|
nd->start = start;
|
|
|
|
nd->end = end;
|
2006-04-07 17:49:18 +00:00
|
|
|
changed = 1;
|
2007-02-02 16:48:22 +00:00
|
|
|
} else {
|
|
|
|
if (nd->start == end) {
|
|
|
|
nd->start = start;
|
2006-04-07 17:49:18 +00:00
|
|
|
changed = 1;
|
|
|
|
}
|
2007-02-02 16:48:22 +00:00
|
|
|
if (nd->end == start) {
|
|
|
|
nd->end = end;
|
2006-04-07 17:49:18 +00:00
|
|
|
changed = 1;
|
|
|
|
}
|
|
|
|
if (!changed)
|
|
|
|
printk(KERN_ERR "SRAT: Hotplug zone not continuous. Partly ignored\n");
|
2007-02-02 16:48:22 +00:00
|
|
|
}
|
2006-04-07 17:49:18 +00:00
|
|
|
|
2010-01-20 20:10:47 +00:00
|
|
|
if (changed) {
|
2011-02-16 16:11:09 +00:00
|
|
|
node_set(node, numa_nodes_parsed);
|
2009-05-15 20:59:37 +00:00
|
|
|
printk(KERN_INFO "SRAT: hot plug zone found %Lx - %Lx\n",
|
|
|
|
nd->start, nd->end);
|
2010-01-20 20:10:47 +00:00
|
|
|
}
|
2006-04-07 17:49:18 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Callback for parsing of the Proximity Domain <-> Memory Area mappings */
|
|
|
|
void __init
|
2007-02-02 16:48:22 +00:00
|
|
|
acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long start, end;
|
|
|
|
int node, pxm;
|
|
|
|
|
2006-02-03 20:51:26 +00:00
|
|
|
if (srat_disabled())
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
2007-02-02 16:48:22 +00:00
|
|
|
if (ma->header.length != sizeof(struct acpi_srat_mem_affinity)) {
|
2006-02-03 20:51:26 +00:00
|
|
|
bad_srat();
|
|
|
|
return;
|
|
|
|
}
|
2007-02-02 16:48:22 +00:00
|
|
|
if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0)
|
2006-02-03 20:51:26 +00:00
|
|
|
return;
|
2007-02-02 16:48:22 +00:00
|
|
|
|
|
|
|
if ((ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) && !save_add_info())
|
2006-04-07 17:49:18 +00:00
|
|
|
return;
|
2007-02-02 16:48:22 +00:00
|
|
|
start = ma->base_address;
|
|
|
|
end = start + ma->length;
|
2005-04-16 22:20:36 +00:00
|
|
|
pxm = ma->proximity_domain;
|
|
|
|
node = setup_node(pxm);
|
|
|
|
if (node < 0) {
|
|
|
|
printk(KERN_ERR "SRAT: Too many proximity domains.\n");
|
|
|
|
bad_srat();
|
|
|
|
return;
|
|
|
|
}
|
2011-02-16 16:11:07 +00:00
|
|
|
|
|
|
|
if (numa_add_memblk(node, start, end) < 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
bad_srat();
|
|
|
|
return;
|
|
|
|
}
|
2006-04-07 17:49:18 +00:00
|
|
|
|
2008-03-25 17:14:35 +00:00
|
|
|
printk(KERN_INFO "SRAT: Node %u PXM %u %lx-%lx\n", node, pxm,
|
|
|
|
start, end);
|
2006-04-07 17:49:18 +00:00
|
|
|
|
2011-02-16 16:11:09 +00:00
|
|
|
if (ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE)
|
2009-05-15 20:59:37 +00:00
|
|
|
update_nodes_add(node, start, end);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init acpi_numa_arch_fixup(void) {}
|
|
|
|
|
2011-02-16 11:13:06 +00:00
|
|
|
int __init x86_acpi_numa_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = acpi_numa_init();
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
return srat_disabled() ? -EINVAL : 0;
|
|
|
|
}
|
|
|
|
|
2007-07-21 15:10:32 +00:00
|
|
|
#ifdef CONFIG_NUMA_EMU
|
2008-01-30 12:33:10 +00:00
|
|
|
static int fake_node_to_pxm_map[MAX_NUMNODES] __initdata = {
|
|
|
|
[0 ... MAX_NUMNODES-1] = PXM_INVAL
|
|
|
|
};
|
2008-01-30 12:33:21 +00:00
|
|
|
static s16 fake_apicid_to_node[MAX_LOCAL_APIC] __initdata = {
|
2008-01-30 12:33:10 +00:00
|
|
|
[0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
|
|
|
|
};
|
2007-07-21 15:10:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* In NUMA emulation, we need to setup proximity domain (_PXM) to node ID
|
|
|
|
* mappings that respect the real ACPI topology but reflect our emulated
|
|
|
|
* environment. For each emulated node, we find which real node it appears on
|
|
|
|
* and create PXM to NID mappings for those fake nodes which mirror that
|
|
|
|
* locality. SLIT will now represent the correct distances between emulated
|
|
|
|
* nodes as a result of the real topology.
|
|
|
|
*/
|
|
|
|
void __init acpi_fake_nodes(const struct bootnode *fake_nodes, int num_nodes)
|
|
|
|
{
|
2007-07-21 15:10:33 +00:00
|
|
|
int i, j;
|
2007-07-21 15:10:32 +00:00
|
|
|
|
|
|
|
for (i = 0; i < num_nodes; i++) {
|
|
|
|
int nid, pxm;
|
|
|
|
|
|
|
|
nid = find_node_by_addr(fake_nodes[i].start);
|
|
|
|
if (nid == NUMA_NO_NODE)
|
|
|
|
continue;
|
|
|
|
pxm = node_to_pxm(nid);
|
|
|
|
if (pxm == PXM_INVAL)
|
|
|
|
continue;
|
|
|
|
fake_node_to_pxm_map[i] = pxm;
|
2007-07-21 15:10:33 +00:00
|
|
|
/*
|
|
|
|
* For each apicid_to_node mapping that exists for this real
|
|
|
|
* node, it must now point to the fake node ID.
|
|
|
|
*/
|
|
|
|
for (j = 0; j < MAX_LOCAL_APIC; j++)
|
2011-01-23 13:37:39 +00:00
|
|
|
if (__apicid_to_node[j] == nid &&
|
2010-05-06 09:24:34 +00:00
|
|
|
fake_apicid_to_node[j] == NUMA_NO_NODE)
|
2007-07-21 15:10:33 +00:00
|
|
|
fake_apicid_to_node[j] = i;
|
2007-07-21 15:10:32 +00:00
|
|
|
}
|
2010-12-23 01:23:56 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If there are apicid-to-node mappings for physical nodes that do not
|
|
|
|
* have a corresponding emulated node, it should default to a guaranteed
|
|
|
|
* value.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < MAX_LOCAL_APIC; i++)
|
2011-01-23 13:37:39 +00:00
|
|
|
if (__apicid_to_node[i] != NUMA_NO_NODE &&
|
2010-12-23 01:23:56 +00:00
|
|
|
fake_apicid_to_node[i] == NUMA_NO_NODE)
|
|
|
|
fake_apicid_to_node[i] = 0;
|
|
|
|
|
2007-07-21 15:10:32 +00:00
|
|
|
for (i = 0; i < num_nodes; i++)
|
|
|
|
__acpi_map_pxm_to_node(fake_node_to_pxm_map[i], i);
|
2011-01-23 13:37:39 +00:00
|
|
|
memcpy(__apicid_to_node, fake_apicid_to_node, sizeof(__apicid_to_node));
|
2007-07-21 15:10:32 +00:00
|
|
|
|
|
|
|
for (i = 0; i < num_nodes; i++)
|
|
|
|
if (fake_nodes[i].start != fake_nodes[i].end)
|
2011-02-16 16:11:09 +00:00
|
|
|
node_set(i, numa_nodes_parsed);
|
2007-07-21 15:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int null_slit_node_compare(int a, int b)
|
|
|
|
{
|
|
|
|
return node_to_pxm(a) == node_to_pxm(b);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static int null_slit_node_compare(int a, int b)
|
|
|
|
{
|
|
|
|
return a == b;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NUMA_EMU */
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
int __node_distance(int a, int b)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
|
|
|
|
if (!acpi_slit)
|
2007-07-21 15:10:32 +00:00
|
|
|
return null_slit_node_compare(a, b) ? LOCAL_DISTANCE :
|
|
|
|
REMOTE_DISTANCE;
|
2007-02-02 16:48:22 +00:00
|
|
|
index = acpi_slit->locality_count * node_to_pxm(a);
|
2005-04-16 22:20:36 +00:00
|
|
|
return acpi_slit->entry[index + node_to_pxm(b)];
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(__node_distance);
|
2006-10-01 06:27:06 +00:00
|
|
|
|
2008-05-12 13:43:38 +00:00
|
|
|
#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || defined(CONFIG_ACPI_HOTPLUG_MEMORY)
|
2006-10-01 06:27:06 +00:00
|
|
|
int memory_add_physaddr_to_nid(u64 start)
|
|
|
|
{
|
|
|
|
int i, ret = 0;
|
|
|
|
|
|
|
|
for_each_node(i)
|
|
|
|
if (nodes_add[i].start <= start && nodes_add[i].end > start)
|
|
|
|
ret = i;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2006-10-01 06:27:07 +00:00
|
|
|
EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
|
2008-05-12 13:43:38 +00:00
|
|
|
#endif
|