| 
									
										
										
										
											2005-04-16 15:20:36 -07: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 19:49:18 +02:00
										 |  |  | #include <linux/bootmem.h>
 | 
					
						
							| 
									
										
										
										
											2010-08-25 13:39:17 -07:00
										 |  |  | #include <linux/memblock.h>
 | 
					
						
							| 
									
										
										
										
											2006-04-07 19:49:18 +02:00
										 |  |  | #include <linux/mm.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/proto.h>
 | 
					
						
							|  |  |  | #include <asm/numa.h>
 | 
					
						
							| 
									
										
										
										
											2006-01-11 22:44:39 +01:00
										 |  |  | #include <asm/e820.h>
 | 
					
						
							| 
									
										
										
										
											2009-02-17 13:58:15 +01:00
										 |  |  | #include <asm/apic.h>
 | 
					
						
							| 
									
										
										
										
											2009-01-21 10:24:27 +01:00
										 |  |  | #include <asm/uv/uv.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-26 10:52:33 +02:00
										 |  |  | int acpi_numa __initdata; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static __init int setup_node(int pxm) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-23 02:03:19 -07:00
										 |  |  | 	return acpi_map_pxm_to_node(pxm); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static __init void bad_srat(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	printk(KERN_ERR "SRAT: SRAT not used.\n"); | 
					
						
							|  |  |  | 	acpi_numa = -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static __init inline int srat_disabled(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-16 12:13:06 +01:00
										 |  |  | 	return acpi_numa < 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Callback for SLIT parsing */ | 
					
						
							|  |  |  | void __init acpi_numa_slit_init(struct acpi_table_slit *slit) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-16 17:11:09 +01:00
										 |  |  | 	int i, j; | 
					
						
							| 
									
										
										
										
											2008-07-10 20:36:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-16 17:11:09 +01: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 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-30 13:55:30 -08: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; | 
					
						
							| 
									
										
										
										
											2011-12-21 17:45:16 -08:00
										 |  |  | 	apic_id = pa->apic_id; | 
					
						
							| 
									
										
										
										
											2012-03-16 20:25:35 +01:00
										 |  |  | 	if (!apic->apic_id_valid(apic_id)) { | 
					
						
							| 
									
										
										
										
											2011-12-21 17:45:16 -08:00
										 |  |  | 		printk(KERN_INFO "SRAT: PXM %u -> X2APIC 0x%04x ignored\n", | 
					
						
							|  |  |  | 			 pxm, apic_id); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-30 13:55:30 -08:00
										 |  |  | 	node = setup_node(pxm); | 
					
						
							|  |  |  | 	if (node < 0) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm); | 
					
						
							|  |  |  | 		bad_srat(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-16 19:09:58 -08: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 14:37:39 +01:00
										 |  |  | 	set_apicid_to_node(apic_id, node); | 
					
						
							| 
									
										
										
										
											2011-02-16 17:11:09 +01:00
										 |  |  | 	node_set(node, numa_nodes_parsed); | 
					
						
							| 
									
										
										
										
											2009-03-30 13:55:30 -08:00
										 |  |  | 	acpi_numa = 1; | 
					
						
							| 
									
										
										
										
											2009-11-21 00:23:37 -08:00
										 |  |  | 	printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n", | 
					
						
							| 
									
										
										
										
											2009-03-30 13:55:30 -08:00
										 |  |  | 	       pxm, apic_id, node); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* Callback for Proximity Domain -> LAPIC mapping */ | 
					
						
							|  |  |  | void __init | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int pxm, node; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:10 +01:00
										 |  |  | 	int apic_id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-03 21:51:26 +01:00
										 |  |  | 	if (srat_disabled()) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | 	if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) { | 
					
						
							| 
									
										
										
										
											2006-05-15 18:19:44 +02:00
										 |  |  | 		bad_srat(); | 
					
						
							| 
									
										
										
										
											2006-02-03 21:51:26 +01:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | 	if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | 	pxm = pa->proximity_domain_lo; | 
					
						
							| 
									
										
										
										
											2012-01-17 04:20:31 -05:00
										 |  |  | 	if (acpi_srat_revision >= 2) | 
					
						
							|  |  |  | 		pxm |= *((unsigned int*)pa->proximity_domain_hi) << 8; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	node = setup_node(pxm); | 
					
						
							|  |  |  | 	if (node < 0) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm); | 
					
						
							|  |  |  | 		bad_srat(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-02-16 23:00:22 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-23 15:37:13 -05:00
										 |  |  | 	if (get_uv_system_type() >= UV_X2APIC) | 
					
						
							| 
									
										
										
										
											2008-03-28 14:12:08 -05:00
										 |  |  | 		apic_id = (pa->apic_id << 8) | pa->local_sapic_eid; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		apic_id = pa->apic_id; | 
					
						
							| 
									
										
										
										
											2010-12-16 19:09:58 -08: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 14:37:39 +01:00
										 |  |  | 	set_apicid_to_node(apic_id, node); | 
					
						
							| 
									
										
										
										
											2011-02-16 17:11:09 +01:00
										 |  |  | 	node_set(node, numa_nodes_parsed); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	acpi_numa = 1; | 
					
						
							| 
									
										
										
										
											2009-11-21 00:23:37 -08:00
										 |  |  | 	printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u\n", | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:10 +01:00
										 |  |  | 	       pxm, apic_id, node); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-02 14:18:51 +02:00
										 |  |  | #ifdef CONFIG_MEMORY_HOTPLUG
 | 
					
						
							| 
									
										
										
										
											2006-09-30 23:27:05 -07:00
										 |  |  | static inline int save_add_info(void) {return 1;} | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline int save_add_info(void) {return 0;} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-04-07 19:49:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */ | 
					
						
							|  |  |  | void __init | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-02 14:18:52 +02:00
										 |  |  | 	u64 start, end; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int node, pxm; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-03 21:51:26 +01:00
										 |  |  | 	if (srat_disabled()) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | 	if (ma->header.length != sizeof(struct acpi_srat_mem_affinity)) { | 
					
						
							| 
									
										
										
										
											2006-02-03 21:51:26 +01:00
										 |  |  | 		bad_srat(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | 	if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0) | 
					
						
							| 
									
										
										
										
											2006-02-03 21:51:26 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) && !save_add_info()) | 
					
						
							| 
									
										
										
										
											2006-04-07 19:49:18 +02:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2007-02-02 19:48:22 +03:00
										 |  |  | 	start = ma->base_address; | 
					
						
							|  |  |  | 	end = start + ma->length; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	pxm = ma->proximity_domain; | 
					
						
							| 
									
										
										
										
											2012-01-17 04:20:31 -05:00
										 |  |  | 	if (acpi_srat_revision <= 1) | 
					
						
							|  |  |  | 		pxm &= 0xff; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	node = setup_node(pxm); | 
					
						
							|  |  |  | 	if (node < 0) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "SRAT: Too many proximity domains.\n"); | 
					
						
							|  |  |  | 		bad_srat(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-16 17:11:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (numa_add_memblk(node, start, end) < 0) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		bad_srat(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-07 19:49:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-02 14:18:52 +02:00
										 |  |  | 	printk(KERN_INFO "SRAT: Node %u PXM %u %Lx-%Lx\n", node, pxm, | 
					
						
							| 
									
										
										
										
											2008-03-25 10:14:35 -07:00
										 |  |  | 	       start, end); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void __init acpi_numa_arch_fixup(void) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-16 12:13:06 +01:00
										 |  |  | int __init x86_acpi_numa_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = acpi_numa_init(); | 
					
						
							|  |  |  | 	if (ret < 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 	return srat_disabled() ? -EINVAL : 0; | 
					
						
							|  |  |  | } |