blob: fe6b13608e5101458254d4f522454df65dc2e8fa [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001// SPDX-License-Identifier: GPL-2.0
David Daney298535c2016-04-08 15:50:25 -07002/*
3 * OF NUMA Parsing support.
4 *
5 * Copyright (C) 2015 - 2016 Cavium Inc.
David Daney298535c2016-04-08 15:50:25 -07006 */
7
Kefeng Wangad021802016-09-01 14:54:58 +08008#define pr_fmt(fmt) "OF: NUMA: " fmt
9
David Daney298535c2016-04-08 15:50:25 -070010#include <linux/of.h>
11#include <linux/of_address.h>
12#include <linux/nodemask.h>
13
14#include <asm/numa.h>
15
16/* define default numa node to 0 */
17#define DEFAULT_NODE 0
18
19/*
20 * Even though we connect cpus to numa domains later in SMP
21 * init, we need to know the node ids now for all cpus.
22*/
23static void __init of_numa_parse_cpu_nodes(void)
24{
25 u32 nid;
26 int r;
Rob Herring651d44f2018-08-27 09:47:00 -050027 struct device_node *np;
David Daney298535c2016-04-08 15:50:25 -070028
Rob Herring651d44f2018-08-27 09:47:00 -050029 for_each_of_cpu_node(np) {
David Daney298535c2016-04-08 15:50:25 -070030 r = of_property_read_u32(np, "numa-node-id", &nid);
31 if (r)
32 continue;
33
Kefeng Wangad021802016-09-01 14:54:58 +080034 pr_debug("CPU on %u\n", nid);
David Daney298535c2016-04-08 15:50:25 -070035 if (nid >= MAX_NUMNODES)
Kefeng Wangad021802016-09-01 14:54:58 +080036 pr_warn("Node id %u exceeds maximum value\n", nid);
David Daney298535c2016-04-08 15:50:25 -070037 else
38 node_set(nid, numa_nodes_parsed);
39 }
40}
41
42static int __init of_numa_parse_memory_nodes(void)
43{
44 struct device_node *np = NULL;
45 struct resource rsrc;
46 u32 nid;
Zhen Lei84b14252016-09-01 14:54:53 +080047 int i, r;
David Daney298535c2016-04-08 15:50:25 -070048
Zhen Lei84b14252016-09-01 14:54:53 +080049 for_each_node_by_type(np, "memory") {
David Daney298535c2016-04-08 15:50:25 -070050 r = of_property_read_u32(np, "numa-node-id", &nid);
51 if (r == -EINVAL)
52 /*
53 * property doesn't exist if -EINVAL, continue
54 * looking for more memory nodes with
55 * "numa-node-id" property
56 */
57 continue;
David Daney298535c2016-04-08 15:50:25 -070058
Zhen Lei571a5882016-09-01 14:54:54 +080059 if (nid >= MAX_NUMNODES) {
Kefeng Wangad021802016-09-01 14:54:58 +080060 pr_warn("Node id %u exceeds maximum value\n", nid);
Zhen Lei571a5882016-09-01 14:54:54 +080061 r = -EINVAL;
62 }
63
Zhen Lei84b14252016-09-01 14:54:53 +080064 for (i = 0; !r && !of_address_to_resource(np, i, &rsrc); i++)
65 r = numa_add_memblk(nid, rsrc.start, rsrc.end + 1);
66
67 if (!i || r) {
68 of_node_put(np);
Kefeng Wangad021802016-09-01 14:54:58 +080069 pr_err("bad property in memory node\n");
Zhen Lei84b14252016-09-01 14:54:53 +080070 return r ? : -EINVAL;
David Daney298535c2016-04-08 15:50:25 -070071 }
David Daney298535c2016-04-08 15:50:25 -070072 }
David Daney298535c2016-04-08 15:50:25 -070073
Zhen Lei84b14252016-09-01 14:54:53 +080074 return 0;
David Daney298535c2016-04-08 15:50:25 -070075}
76
77static int __init of_numa_parse_distance_map_v1(struct device_node *map)
78{
79 const __be32 *matrix;
80 int entry_count;
81 int i;
82
Kefeng Wangad021802016-09-01 14:54:58 +080083 pr_info("parsing numa-distance-map-v1\n");
David Daney298535c2016-04-08 15:50:25 -070084
85 matrix = of_get_property(map, "distance-matrix", NULL);
86 if (!matrix) {
Kefeng Wangad021802016-09-01 14:54:58 +080087 pr_err("No distance-matrix property in distance-map\n");
David Daney298535c2016-04-08 15:50:25 -070088 return -EINVAL;
89 }
90
91 entry_count = of_property_count_u32_elems(map, "distance-matrix");
92 if (entry_count <= 0) {
Kefeng Wangad021802016-09-01 14:54:58 +080093 pr_err("Invalid distance-matrix\n");
David Daney298535c2016-04-08 15:50:25 -070094 return -EINVAL;
95 }
96
97 for (i = 0; i + 2 < entry_count; i += 3) {
98 u32 nodea, nodeb, distance;
99
100 nodea = of_read_number(matrix, 1);
101 matrix++;
102 nodeb = of_read_number(matrix, 1);
103 matrix++;
104 distance = of_read_number(matrix, 1);
105 matrix++;
106
John Garry89c38422018-11-08 18:17:03 +0800107 if ((nodea == nodeb && distance != LOCAL_DISTANCE) ||
108 (nodea != nodeb && distance <= LOCAL_DISTANCE)) {
109 pr_err("Invalid distance[node%d -> node%d] = %d\n",
110 nodea, nodeb, distance);
111 return -EINVAL;
112 }
113
David Daney298535c2016-04-08 15:50:25 -0700114 numa_set_distance(nodea, nodeb, distance);
David Daney298535c2016-04-08 15:50:25 -0700115
116 /* Set default distance of node B->A same as A->B */
117 if (nodeb > nodea)
118 numa_set_distance(nodeb, nodea, distance);
119 }
120
121 return 0;
122}
123
124static int __init of_numa_parse_distance_map(void)
125{
126 int ret = 0;
127 struct device_node *np;
128
129 np = of_find_compatible_node(NULL, NULL,
130 "numa-distance-map-v1");
131 if (np)
132 ret = of_numa_parse_distance_map_v1(np);
133
134 of_node_put(np);
135 return ret;
136}
137
138int of_node_to_nid(struct device_node *device)
139{
140 struct device_node *np;
141 u32 nid;
142 int r = -ENODATA;
143
144 np = of_node_get(device);
145
146 while (np) {
David Daney298535c2016-04-08 15:50:25 -0700147 r = of_property_read_u32(np, "numa-node-id", &nid);
148 /*
149 * -EINVAL indicates the property was not found, and
150 * we walk up the tree trying to find a parent with a
151 * "numa-node-id". Any other type of error indicates
152 * a bad device tree and we give up.
153 */
154 if (r != -EINVAL)
155 break;
156
Kefeng Wang837dae12016-09-01 14:54:57 +0800157 np = of_get_next_parent(np);
David Daney298535c2016-04-08 15:50:25 -0700158 }
159 if (np && r)
Rob Herringa613b262018-08-27 20:00:19 -0500160 pr_warn("Invalid \"numa-node-id\" property in node %pOFn\n",
161 np);
David Daney298535c2016-04-08 15:50:25 -0700162 of_node_put(np);
163
David Daneyb6cc9472016-10-28 14:15:02 -0700164 /*
165 * If numa=off passed on command line, or with a defective
166 * device tree, the nid may not be in the set of possible
167 * nodes. Check for this case and return NUMA_NO_NODE.
168 */
169 if (!r && nid < MAX_NUMNODES && node_possible(nid))
Zhen Lei9787ed62016-09-01 14:54:55 +0800170 return nid;
David Daney298535c2016-04-08 15:50:25 -0700171
172 return NUMA_NO_NODE;
173}
David Daney298535c2016-04-08 15:50:25 -0700174
175int __init of_numa_init(void)
176{
177 int r;
178
179 of_numa_parse_cpu_nodes();
180 r = of_numa_parse_memory_nodes();
181 if (r)
182 return r;
183 return of_numa_parse_distance_map();
184}