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;
|
|
|
|
|
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)
|
|
|
|
{
|
2011-02-16 16:11:09 +00:00
|
|
|
int i, j;
|
2008-07-11 03:36:37 +00:00
|
|
|
|
2011-02-16 16:11:09 +00:00
|
|
|
for (i = 0; i < slit->locality_count; i++)
|
|
|
|
for (j = 0; j < slit->locality_count; j++)
|
|
|
|
numa_set_distance(pxm_to_node(i), pxm_to_node(j),
|
|
|
|
slit->entry[slit->locality_count * i + j]);
|
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;
|
|
|
|
}
|
|
|
|
|
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
|