blob: dac07e4f5834ea458f96aab1f6651732965155fb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * ACPI 3.0 based NUMA setup
4 * Copyright 2004 Andi Kleen, SuSE Labs.
5 *
6 * Reads the ACPI SRAT table to figure out what memory belongs to which CPUs.
7 *
8 * Called from acpi_numa_init while reading the SRAT and SLIT tables.
9 * Assumes all memory regions belonging to a single proximity domain
10 * are in one chunk. Holes between them will be included in the node.
11 */
12
13#include <linux/kernel.h>
14#include <linux/acpi.h>
15#include <linux/mmzone.h>
16#include <linux/bitmap.h>
Paul Gortmaker4b599fe2016-07-13 20:18:55 -040017#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/topology.h>
Andi Kleen68a3a7f2006-04-07 19:49:18 +020019#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/proto.h>
21#include <asm/numa.h>
Ingo Molnar66441bd2017-01-27 10:27:10 +010022#include <asm/e820/api.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010023#include <asm/apic.h>
Ingo Molnar4ec71fa2009-01-21 10:24:27 +010024#include <asm/uv/uv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Suresh Siddha7237d3d2009-03-30 13:55:30 -080026/* Callback for Proximity Domain -> x2APIC mapping */
27void __init
28acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa)
29{
30 int pxm, node;
31 int apic_id;
32
33 if (srat_disabled())
34 return;
35 if (pa->header.length < sizeof(struct acpi_srat_x2apic_cpu_affinity)) {
36 bad_srat();
37 return;
38 }
39 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
40 return;
41 pxm = pa->proximity_domain;
Yinghai Lua35fd282011-12-21 17:45:16 -080042 apic_id = pa->apic_id;
Steffen Persvoldb7157ac2012-03-16 20:25:35 +010043 if (!apic->apic_id_valid(apic_id)) {
Yinghai Lua35fd282011-12-21 17:45:16 -080044 printk(KERN_INFO "SRAT: PXM %u -> X2APIC 0x%04x ignored\n",
45 pxm, apic_id);
46 return;
47 }
Hanjun Guo2faeff1d2016-05-24 15:35:38 -070048 node = acpi_map_pxm_to_node(pxm);
Suresh Siddha7237d3d2009-03-30 13:55:30 -080049 if (node < 0) {
50 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
51 bad_srat();
52 return;
53 }
54
Yinghai Lud3bd0582010-12-16 19:09:58 -080055 if (apic_id >= MAX_LOCAL_APIC) {
56 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
57 return;
58 }
Tejun Heobbc9e2f2011-01-23 14:37:39 +010059 set_apicid_to_node(apic_id, node);
Tejun Heo92d4a432011-02-16 17:11:09 +010060 node_set(node, numa_nodes_parsed);
Yinghai Lu163d3862009-11-21 00:23:37 -080061 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n",
Suresh Siddha7237d3d2009-03-30 13:55:30 -080062 pxm, apic_id, node);
63}
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* Callback for Proximity Domain -> LAPIC mapping */
66void __init
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030067acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 int pxm, node;
travis@sgi.comef970012008-01-30 13:33:10 +010070 int apic_id;
71
Andi Kleend22fe802006-02-03 21:51:26 +010072 if (srat_disabled())
73 return;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030074 if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) {
Andi Kleenfad79062006-05-15 18:19:44 +020075 bad_srat();
Andi Kleend22fe802006-02-03 21:51:26 +010076 return;
77 }
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030078 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030080 pxm = pa->proximity_domain_lo;
Kurt Garloffcd298f62012-01-17 04:20:31 -050081 if (acpi_srat_revision >= 2)
82 pxm |= *((unsigned int*)pa->proximity_domain_hi) << 8;
Hanjun Guo2faeff1d2016-05-24 15:35:38 -070083 node = acpi_map_pxm_to_node(pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (node < 0) {
85 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
86 bad_srat();
87 return;
88 }
Yinghai Lubeafe912008-02-16 23:00:22 -080089
Jack Steiner2e420602008-09-23 15:37:13 -050090 if (get_uv_system_type() >= UV_X2APIC)
Jack Steinera65d1d62008-03-28 14:12:08 -050091 apic_id = (pa->apic_id << 8) | pa->local_sapic_eid;
92 else
93 apic_id = pa->apic_id;
Yinghai Lud3bd0582010-12-16 19:09:58 -080094
95 if (apic_id >= MAX_LOCAL_APIC) {
96 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
97 return;
98 }
99
Tejun Heobbc9e2f2011-01-23 14:37:39 +0100100 set_apicid_to_node(apic_id, node);
Tejun Heo92d4a432011-02-16 17:11:09 +0100101 node_set(node, numa_nodes_parsed);
Yinghai Lu163d3862009-11-21 00:23:37 -0800102 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u\n",
travis@sgi.comef970012008-01-30 13:33:10 +0100103 pxm, apic_id, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Tejun Heoa9aec562011-02-16 12:13:06 +0100106int __init x86_acpi_numa_init(void)
107{
108 int ret;
109
110 ret = acpi_numa_init();
111 if (ret < 0)
112 return ret;
113 return srat_disabled() ? -EINVAL : 0;
114}