blob: e12d351082256be89dc12a5b89ba9c63ce6bc20a [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
Christoph Hellwig9a0ef982017-06-20 01:37:55 +020042static cpumask_var_t *alloc_node_to_present_cpumask(void)
43{
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
65static void free_node_to_present_cpumask(cpumask_var_t *masks)
66{
67 int node;
68
69 for (node = 0; node < nr_node_ids; node++)
70 free_cpumask_var(masks[node]);
71 kfree(masks);
72}
73
74static void build_node_to_present_cpumask(cpumask_var_t *masks)
75{
76 int cpu;
77
78 for_each_present_cpu(cpu)
79 cpumask_set_cpu(cpu, masks[cpu_to_node(cpu)]);
80}
81
82static int get_nodes_in_cpumask(cpumask_var_t *node_to_present_cpumask,
83 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) {
89 if (cpumask_intersects(mask, node_to_present_cpumask[n])) {
Thomas Gleixner34c3d982016-09-14 16:18:48 +020090 node_set(n, *nodemsk);
91 nodes++;
92 }
93 }
94 return nodes;
95}
96
97/**
98 * irq_create_affinity_masks - Create affinity masks for multiqueue spreading
Christoph Hellwig67c93c22016-11-08 17:15:03 -080099 * @nvecs: The total number of vectors
100 * @affd: Description of the affinity requirements
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200101 *
102 * Returns the masks pointer or NULL if allocation failed.
103 */
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800104struct cpumask *
105irq_create_affinity_masks(int nvecs, const struct irq_affinity *affd)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200106{
Keith Busch7bf82222017-04-03 15:25:53 -0400107 int n, nodes, cpus_per_vec, extra_vecs, curvec;
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800108 int affv = nvecs - affd->pre_vectors - affd->post_vectors;
Christoph Hellwigbfe13072016-11-15 10:12:58 +0100109 int last_affv = affv + affd->pre_vectors;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200110 nodemask_t nodemsk = NODE_MASK_NONE;
111 struct cpumask *masks;
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200112 cpumask_var_t nmsk, *node_to_present_cpumask;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200113
Michael Hernandez6f9a22b2017-05-18 10:47:47 -0700114 /*
115 * If there aren't any vectors left after applying the pre/post
116 * vectors don't bother with assigning affinity.
117 */
118 if (!affv)
119 return NULL;
120
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200121 if (!zalloc_cpumask_var(&nmsk, GFP_KERNEL))
122 return NULL;
123
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800124 masks = kcalloc(nvecs, sizeof(*masks), GFP_KERNEL);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200125 if (!masks)
126 goto out;
127
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200128 node_to_present_cpumask = alloc_node_to_present_cpumask();
129 if (!node_to_present_cpumask)
130 goto out;
131
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800132 /* Fill out vectors at the beginning that don't need affinity */
133 for (curvec = 0; curvec < affd->pre_vectors; curvec++)
Thomas Gleixnerb6e5d5b2016-11-16 18:36:44 +0100134 cpumask_copy(masks + curvec, irq_default_affinity);
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800135
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200136 /* Stabilize the cpumasks */
137 get_online_cpus();
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200138 build_node_to_present_cpumask(node_to_present_cpumask);
139 nodes = get_nodes_in_cpumask(node_to_present_cpumask, cpu_present_mask,
140 &nodemsk);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200141
142 /*
Guilherme G. Piccolic0af5242016-12-14 16:01:12 -0200143 * If the number of nodes in the mask is greater than or equal the
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200144 * number of vectors we just spread the vectors across the nodes.
145 */
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800146 if (affv <= nodes) {
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200147 for_each_node_mask(n, nodemsk) {
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200148 cpumask_copy(masks + curvec,
149 node_to_present_cpumask[n]);
Christoph Hellwigbfe13072016-11-15 10:12:58 +0100150 if (++curvec == last_affv)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200151 break;
152 }
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800153 goto done;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200154 }
155
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200156 for_each_node_mask(n, nodemsk) {
Keith Busch7bf82222017-04-03 15:25:53 -0400157 int ncpus, v, vecs_to_assign, vecs_per_node;
158
159 /* Spread the vectors per node */
Keith Buschb72f8052017-04-19 19:51:10 -0400160 vecs_per_node = (affv - (curvec - affd->pre_vectors)) / nodes;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200161
162 /* Get the cpus on this node which are in the mask */
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200163 cpumask_and(nmsk, cpu_present_mask, node_to_present_cpumask[n]);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200164
165 /* Calculate the number of cpus per vector */
166 ncpus = cpumask_weight(nmsk);
Keith Busch7bf82222017-04-03 15:25:53 -0400167 vecs_to_assign = min(vecs_per_node, ncpus);
168
169 /* Account for rounding errors */
Keith Busch34123862017-04-13 13:28:12 -0400170 extra_vecs = ncpus - vecs_to_assign * (ncpus / vecs_to_assign);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200171
Christoph Hellwigbfe13072016-11-15 10:12:58 +0100172 for (v = 0; curvec < last_affv && v < vecs_to_assign;
173 curvec++, v++) {
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200174 cpus_per_vec = ncpus / vecs_to_assign;
175
176 /* Account for extra vectors to compensate rounding errors */
177 if (extra_vecs) {
178 cpus_per_vec++;
Keith Busch7bf82222017-04-03 15:25:53 -0400179 --extra_vecs;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200180 }
181 irq_spread_init_one(masks + curvec, nmsk, cpus_per_vec);
182 }
183
Christoph Hellwigbfe13072016-11-15 10:12:58 +0100184 if (curvec >= last_affv)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200185 break;
Keith Busch7bf82222017-04-03 15:25:53 -0400186 --nodes;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200187 }
188
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800189done:
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200190 put_online_cpus();
Christoph Hellwig67c93c22016-11-08 17:15:03 -0800191
192 /* Fill out vectors at the end that don't need affinity */
193 for (; curvec < nvecs; curvec++)
Thomas Gleixnerb6e5d5b2016-11-16 18:36:44 +0100194 cpumask_copy(masks + curvec, irq_default_affinity);
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200195 free_node_to_present_cpumask(node_to_present_cpumask);
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200196out:
197 free_cpumask_var(nmsk);
198 return masks;
199}
200
201/**
Christoph Hellwig212bd842016-11-08 17:15:02 -0800202 * irq_calc_affinity_vectors - Calculate the optimal number of vectors
Michael Hernandez6f9a22b2017-05-18 10:47:47 -0700203 * @minvec: The minimum number of vectors available
Christoph Hellwig212bd842016-11-08 17:15:02 -0800204 * @maxvec: The maximum number of vectors available
205 * @affd: Description of the affinity requirements
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200206 */
Michael Hernandez6f9a22b2017-05-18 10:47:47 -0700207int irq_calc_affinity_vectors(int minvec, int maxvec, const struct irq_affinity *affd)
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200208{
Christoph Hellwig212bd842016-11-08 17:15:02 -0800209 int resv = affd->pre_vectors + affd->post_vectors;
210 int vecs = maxvec - resv;
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200211 int ret;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200212
Michael Hernandez6f9a22b2017-05-18 10:47:47 -0700213 if (resv > minvec)
214 return 0;
215
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200216 get_online_cpus();
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200217 ret = min_t(int, cpumask_weight(cpu_present_mask), vecs) + resv;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200218 put_online_cpus();
Christoph Hellwig9a0ef982017-06-20 01:37:55 +0200219 return ret;
Thomas Gleixner34c3d982016-09-14 16:18:48 +0200220}