blob: 35fe69529bc1675f7336caa1413c4a7e4cb84a83 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ACPI 3.0 based NUMA setup
3 * Copyright 2004 Andi Kleen, SuSE Labs.
4 *
5 * Reads the ACPI SRAT table to figure out what memory belongs to which CPUs.
6 *
7 * Called from acpi_numa_init while reading the SRAT and SLIT tables.
8 * Assumes all memory regions belonging to a single proximity domain
9 * are in one chunk. Holes between them will be included in the node.
10 */
11
12#include <linux/kernel.h>
13#include <linux/acpi.h>
14#include <linux/mmzone.h>
15#include <linux/bitmap.h>
Paul Gortmaker4b599fe2016-07-13 20:18:55 -040016#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/topology.h>
Andi Kleen68a3a7f2006-04-07 19:49:18 +020018#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/proto.h>
20#include <asm/numa.h>
Andi Kleen8a6fdd32006-01-11 22:44:39 +010021#include <asm/e820.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010022#include <asm/apic.h>
Ingo Molnar4ec71fa2009-01-21 10:24:27 +010023#include <asm/uv/uv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Suresh Siddha7237d3d2009-03-30 13:55:30 -080025/* Callback for Proximity Domain -> x2APIC mapping */
26void __init
27acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa)
28{
29 int pxm, node;
30 int apic_id;
31
32 if (srat_disabled())
33 return;
34 if (pa->header.length < sizeof(struct acpi_srat_x2apic_cpu_affinity)) {
35 bad_srat();
36 return;
37 }
38 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
39 return;
40 pxm = pa->proximity_domain;
Yinghai Lua35fd282011-12-21 17:45:16 -080041 apic_id = pa->apic_id;
Steffen Persvoldb7157ac2012-03-16 20:25:35 +010042 if (!apic->apic_id_valid(apic_id)) {
Yinghai Lua35fd282011-12-21 17:45:16 -080043 printk(KERN_INFO "SRAT: PXM %u -> X2APIC 0x%04x ignored\n",
44 pxm, apic_id);
45 return;
46 }
Hanjun Guo2faeff12016-05-24 15:35:38 -070047 node = acpi_map_pxm_to_node(pxm);
Suresh Siddha7237d3d2009-03-30 13:55:30 -080048 if (node < 0) {
49 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
50 bad_srat();
51 return;
52 }
53
Yinghai Lud3bd0582010-12-16 19:09:58 -080054 if (apic_id >= MAX_LOCAL_APIC) {
55 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
56 return;
57 }
Tejun Heobbc9e2f2011-01-23 14:37:39 +010058 set_apicid_to_node(apic_id, node);
Tejun Heo92d4a432011-02-16 17:11:09 +010059 node_set(node, numa_nodes_parsed);
Yinghai Lu163d3862009-11-21 00:23:37 -080060 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n",
Suresh Siddha7237d3d2009-03-30 13:55:30 -080061 pxm, apic_id, node);
62}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/* Callback for Proximity Domain -> LAPIC mapping */
65void __init
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030066acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 int pxm, node;
travis@sgi.comef970012008-01-30 13:33:10 +010069 int apic_id;
70
Andi Kleend22fe802006-02-03 21:51:26 +010071 if (srat_disabled())
72 return;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030073 if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) {
Andi Kleenfad79062006-05-15 18:19:44 +020074 bad_srat();
Andi Kleend22fe802006-02-03 21:51:26 +010075 return;
76 }
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030077 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030079 pxm = pa->proximity_domain_lo;
Kurt Garloffcd298f62012-01-17 04:20:31 -050080 if (acpi_srat_revision >= 2)
81 pxm |= *((unsigned int*)pa->proximity_domain_hi) << 8;
Hanjun Guo2faeff12016-05-24 15:35:38 -070082 node = acpi_map_pxm_to_node(pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (node < 0) {
84 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
85 bad_srat();
86 return;
87 }
Yinghai Lubeafe912008-02-16 23:00:22 -080088
Jack Steiner2e420602008-09-23 15:37:13 -050089 if (get_uv_system_type() >= UV_X2APIC)
Jack Steinera65d1d62008-03-28 14:12:08 -050090 apic_id = (pa->apic_id << 8) | pa->local_sapic_eid;
91 else
92 apic_id = pa->apic_id;
Yinghai Lud3bd0582010-12-16 19:09:58 -080093
94 if (apic_id >= MAX_LOCAL_APIC) {
95 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
96 return;
97 }
98
Tejun Heobbc9e2f2011-01-23 14:37:39 +010099 set_apicid_to_node(apic_id, node);
Tejun Heo92d4a432011-02-16 17:11:09 +0100100 node_set(node, numa_nodes_parsed);
Yinghai Lu163d3862009-11-21 00:23:37 -0800101 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u\n",
travis@sgi.comef970012008-01-30 13:33:10 +0100102 pxm, apic_id, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Tejun Heoa9aec562011-02-16 12:13:06 +0100105int __init x86_acpi_numa_init(void)
106{
107 int ret;
108
109 ret = acpi_numa_init();
110 if (ret < 0)
111 return ret;
112 return srat_disabled() ? -EINVAL : 0;
113}