blob: 213695a27ddb73b2ceeffdde07ebc4af05622b29 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwig9a0ef982017-06-20 01:37:55 +02002/*
3 * Copyright (C) 2016 Thomas Gleixner.
4 * Copyright (C) 2016-2017 Christoph Hellwig.
5 */
Christoph Hellwig5e385a62016-07-04 17:39:27 +09006#include <linux/interrupt.h>
7#include <linux/kernel.h>
8#include <linux/slab.h>
9#include <linux/cpu.h>
10
Thomas Gleixner34c3d982016-09-14 16:18:48 +020011static void irq_spread_init_one(struct cpumask *irqmsk, struct cpumask *nmsk,
12 int cpus_per_vec)
13{
14 const struct cpumask *siblmsk;
15 int cpu, sibl;
16
17 for ( ; cpus_per_vec > 0; ) {
18 cpu = cpumask_first(nmsk);
19
20 /* Should not happen, but I'm too lazy to think about it */
21 if (cpu >= nr_cpu_ids)
22 return;
23
24 cpumask_clear_cpu(cpu, nmsk);
25 cpumask_set_cpu(cpu, irqmsk);
26 cpus_per_vec--;
27
28 /* If the cpu has siblings, use them first */
29 siblmsk = topology_sibling_cpumask(cpu);
30 for (sibl = -1; cpus_per_vec > 0; ) {
31 sibl = cpumask_next(sibl, siblmsk);
32 if (sibl >= nr_cpu_ids)
33 break;
34 if (!cpumask_test_and_clear_cpu(sibl, nmsk))
35 continue;
36 cpumask_set_cpu(sibl, irqmsk);
37 cpus_per_vec--;
38 }
39 }
40}
41
Ming Lei47778f332018-03-08 18:53:55 +080042static cpumask_var_t *alloc_node_to_cpumask(void)
Christoph Hellwig9a0ef982017-06-20 01:37:55 +020043{
44 cpumask_var_t *masks;
45 int node;
46
47 masks = kcalloc(nr_node_ids, sizeof(cpumask_var_t), GFP_KERNEL);
48 if (!masks)
49 return NULL;
50
51 for (node = 0; node < nr_node_ids; node++) {
52 if (!zalloc_cpumask_var(&masks[node], GFP_KERNEL))
53 goto out_unwind;
54 }
55
56 return masks;
57
58out_unwind:
59 while (--node >= 0)
60 free_cpumask_var(masks[node]);
61 kfree(masks);
62 return NULL;
63}
64
Ming Lei47778f332018-03-08 18:53:55 +080065static void free_node_to_cpumask(cpumask_var_t *masks)
Christoph Hellwig9a0ef982017-06-20 01:37:55 +020066{
67 int node;
68
69 for (node = 0; node < nr_node_ids; node++)
70 free_cpumask_var(masks[node]);
71 kfree(masks);
72}
73
Ming Lei47778f332018-03-08 18:53:55 +080074static void build_node_to_cpumask(cpumask_var_t *masks)
Christoph Hellwig9a0ef982017-06-20 01:37:55 +020075{
76 int cpu;
77
Christoph Hellwig84676c12018-01-12 10:53:05 +080078 for_each_possible_cpu(cpu)
Christoph Hellwig9a0ef982017-06-20 01:37:55 +020079 cpumask_set_cpu(cpu, masks[cpu_to_node(cpu)]);
80}
81
Ming Lei47778f332018-03-08 18:53:55 +080082static int get_nodes_in_cpumask(cpumask_var_t *node_to_cpumask,
Christoph Hellwig9a0ef982017-06-20 01:37:55 +020083 const struct cpumask *mask, nodemask_t *nodemsk)
Thomas Gleixner34c3d982016-09-14 16:18:48 +020084{
Guilherme G. Piccolic0af5242016-12-14 16:01:12 -020085 int n, nodes = 0;
Thomas Gleixner34c3d982016-09-14 16:18:48 +020086
87 /* Calculate the number of nodes in the supplied affinity mask */
Christoph Hellwig9a0ef982017-06-20 01:37:55 +020088 for_each_node(n) {
Ming Lei47778f332018-03-08 18:53:55 +080089 if (cpumask_intersects(mask, node_to_cpumask[n])) {
Thomas Gleixner34c3d982016-09-14 16:18:48 +020090 node_set(n, *nodemsk);
91 nodes++;
92 }
93 }
94 return nodes;
95}
96
Ming Lei1a2d0912018-03-08 18:53:57 +080097static int irq_build_affinity_masks(const struct irq_affinity *affd,
98 int startvec, int numvecs,
Ming Leib3e6aaa2018-03-08 18:53:56 +080099 cpumask_var_t *node_to_cpumask,
100 const struct cpumask *cpu_mask,
101 struct cpumask *nmsk,
102 struct cpumask *masks)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200103{
Ming Lei1a2d0912018-03-08 18:53:57 +0800104 int n, nodes, cpus_per_vec, extra_vecs, done = 0;
105 int last_affv = affd->pre_vectors + numvecs;
106 int curvec = startvec;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200107 nodemask_t nodemsk = NODE_MASK_NONE;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200108
Ming Leib3e6aaa2018-03-08 18:53:56 +0800109 nodes = get_nodes_in_cpumask(node_to_cpumask, cpu_mask, &nodemsk);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200110
111 /*
Guilherme G. Piccolic0af5242016-12-14 16:01:12 -0200112 * If the number of nodes in the mask is greater than or equal the
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200113 * number of vectors we just spread the vectors across the nodes.
114 */
Ming Lei1a2d0912018-03-08 18:53:57 +0800115 if (numvecs <= nodes) {
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200116 for_each_node_mask(n, nodemsk) {
Ming Lei1a2d0912018-03-08 18:53:57 +0800117 cpumask_copy(masks + curvec, node_to_cpumask[n]);
118 if (++done == numvecs)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200119 break;
Ming Lei1a2d0912018-03-08 18:53:57 +0800120 if (++curvec == last_affv)
121 curvec = affd->pre_vectors;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200122 }
Ming Leib3e6aaa2018-03-08 18:53:56 +0800123 goto out;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200124 }
125
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200126 for_each_node_mask(n, nodemsk) {
Keith Busch7bf82222017-04-03 15:25:53 -0400127 int ncpus, v, vecs_to_assign, vecs_per_node;
128
129 /* Spread the vectors per node */
Ming Lei1a2d0912018-03-08 18:53:57 +0800130 vecs_per_node = (numvecs - (curvec - affd->pre_vectors)) / nodes;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200131
132 /* Get the cpus on this node which are in the mask */
Ming Leib3e6aaa2018-03-08 18:53:56 +0800133 cpumask_and(nmsk, cpu_mask, node_to_cpumask[n]);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200134
135 /* Calculate the number of cpus per vector */
136 ncpus = cpumask_weight(nmsk);
Keith Busch7bf82222017-04-03 15:25:53 -0400137 vecs_to_assign = min(vecs_per_node, ncpus);
138
139 /* Account for rounding errors */
Keith Busch34123862017-04-13 13:28:12 -0400140 extra_vecs = ncpus - vecs_to_assign * (ncpus / vecs_to_assign);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200141
Christoph Hellwigbfe13072016-11-15 10:12:58 +0100142 for (v = 0; curvec < last_affv && v < vecs_to_assign;
143 curvec++, v++) {
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200144 cpus_per_vec = ncpus / vecs_to_assign;
145
146 /* Account for extra vectors to compensate rounding errors */
147 if (extra_vecs) {
148 cpus_per_vec++;
Keith Busch7bf82222017-04-03 15:25:53 -0400149 --extra_vecs;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200150 }
151 irq_spread_init_one(masks + curvec, nmsk, cpus_per_vec);
152 }
153
Ming Lei1a2d0912018-03-08 18:53:57 +0800154 done += v;
155 if (done >= numvecs)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200156 break;
Ming Lei1a2d0912018-03-08 18:53:57 +0800157 if (curvec >= last_affv)
158 curvec = affd->pre_vectors;
Keith Busch7bf82222017-04-03 15:25:53 -0400159 --nodes;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200160 }
161
Ming Leib3e6aaa2018-03-08 18:53:56 +0800162out:
Ming Lei1a2d0912018-03-08 18:53:57 +0800163 return done;
Ming Leib3e6aaa2018-03-08 18:53:56 +0800164}
165
166/**
167 * irq_create_affinity_masks - Create affinity masks for multiqueue spreading
168 * @nvecs: The total number of vectors
169 * @affd: Description of the affinity requirements
170 *
171 * Returns the masks pointer or NULL if allocation failed.
172 */
173struct cpumask *
174irq_create_affinity_masks(int nvecs, const struct irq_affinity *affd)
175{
Ming Lei1a2d0912018-03-08 18:53:57 +0800176 int curvec, affvecs = nvecs - affd->pre_vectors - affd->post_vectors;
Ming Leib3e6aaa2018-03-08 18:53:56 +0800177 cpumask_var_t nmsk, *node_to_cpumask;
178 struct cpumask *masks = NULL;
Ming Leib3e6aaa2018-03-08 18:53:56 +0800179
180 /*
181 * If there aren't any vectors left after applying the pre/post
182 * vectors don't bother with assigning affinity.
183 */
184 if (nvecs == affd->pre_vectors + affd->post_vectors)
185 return NULL;
186
187 if (!zalloc_cpumask_var(&nmsk, GFP_KERNEL))
188 return NULL;
189
190 node_to_cpumask = alloc_node_to_cpumask();
191 if (!node_to_cpumask)
192 goto outcpumsk;
193
194 masks = kcalloc(nvecs, sizeof(*masks), GFP_KERNEL);
195 if (!masks)
196 goto outnodemsk;
197
198 /* Fill out vectors at the beginning that don't need affinity */
199 for (curvec = 0; curvec < affd->pre_vectors; curvec++)
200 cpumask_copy(masks + curvec, irq_default_affinity);
201
202 /* Stabilize the cpumasks */
203 get_online_cpus();
204 build_node_to_cpumask(node_to_cpumask);
Ming Lei1a2d0912018-03-08 18:53:57 +0800205 curvec += irq_build_affinity_masks(affd, curvec, affvecs,
206 node_to_cpumask, cpu_possible_mask,
207 nmsk, masks);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200208 put_online_cpus();
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800209
210 /* Fill out vectors at the end that don't need affinity */
211 for (; curvec < nvecs; curvec++)
Thomas Gleixnerb6e5d5b2016-11-16 18:36:44 +0100212 cpumask_copy(masks + curvec, irq_default_affinity);
Thomas Gleixner0211e122018-04-04 12:40:07 +0200213outnodemsk:
Ming Lei47778f332018-03-08 18:53:55 +0800214 free_node_to_cpumask(node_to_cpumask);
Thomas Gleixner0211e122018-04-04 12:40:07 +0200215outcpumsk:
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200216 free_cpumask_var(nmsk);
217 return masks;
218}
219
220/**
Christoph Hellwig212bd842016-11-08 17:15:02 -0800221 * irq_calc_affinity_vectors - Calculate the optimal number of vectors
Michael Hernandez6f9a22b2017-05-18 10:47:47 -0700222 * @minvec: The minimum number of vectors available
Christoph Hellwig212bd842016-11-08 17:15:02 -0800223 * @maxvec: The maximum number of vectors available
224 * @affd: Description of the affinity requirements
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200225 */
Michael Hernandez6f9a22b2017-05-18 10:47:47 -0700226int irq_calc_affinity_vectors(int minvec, int maxvec, const struct irq_affinity *affd)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200227{
Christoph Hellwig212bd842016-11-08 17:15:02 -0800228 int resv = affd->pre_vectors + affd->post_vectors;
229 int vecs = maxvec - resv;
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200230 int ret;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200231
Michael Hernandez6f9a22b2017-05-18 10:47:47 -0700232 if (resv > minvec)
233 return 0;
234
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200235 get_online_cpus();
Christoph Hellwig84676c12018-01-12 10:53:05 +0800236 ret = min_t(int, cpumask_weight(cpu_possible_mask), vecs) + resv;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200237 put_online_cpus();
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200238 return ret;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200239}