1 // SPDX-License-Identifier: GPL-2.0-only
3 * kernel/sched/cpudeadline.c
5 * Global CPU deadline management
7 * Author: Juri Lelli <j.lelli@sssup.it>
10 static inline int parent(int i)
15 static inline int left_child(int i)
20 static inline int right_child(int i)
25 static void cpudl_heapify_down(struct cpudl *cp, int idx)
29 int orig_cpu = cp->elements[idx].cpu;
30 u64 orig_dl = cp->elements[idx].dl;
32 if (left_child(idx) >= cp->size)
35 /* adapted from lib/prio_heap.c */
44 if ((l < cp->size) && dl_time_before(orig_dl,
45 cp->elements[l].dl)) {
47 largest_dl = cp->elements[l].dl;
49 if ((r < cp->size) && dl_time_before(largest_dl,
56 /* pull largest child onto idx */
57 cp->elements[idx].cpu = cp->elements[largest].cpu;
58 cp->elements[idx].dl = cp->elements[largest].dl;
59 cp->elements[cp->elements[idx].cpu].idx = idx;
62 /* actual push down of saved original values orig_* */
63 cp->elements[idx].cpu = orig_cpu;
64 cp->elements[idx].dl = orig_dl;
65 cp->elements[cp->elements[idx].cpu].idx = idx;
68 static void cpudl_heapify_up(struct cpudl *cp, int idx)
72 int orig_cpu = cp->elements[idx].cpu;
73 u64 orig_dl = cp->elements[idx].dl;
80 if (dl_time_before(orig_dl, cp->elements[p].dl))
82 /* pull parent onto idx */
83 cp->elements[idx].cpu = cp->elements[p].cpu;
84 cp->elements[idx].dl = cp->elements[p].dl;
85 cp->elements[cp->elements[idx].cpu].idx = idx;
88 /* actual push up of saved original values orig_* */
89 cp->elements[idx].cpu = orig_cpu;
90 cp->elements[idx].dl = orig_dl;
91 cp->elements[cp->elements[idx].cpu].idx = idx;
94 static void cpudl_heapify(struct cpudl *cp, int idx)
96 if (idx > 0 && dl_time_before(cp->elements[parent(idx)].dl,
97 cp->elements[idx].dl))
98 cpudl_heapify_up(cp, idx);
100 cpudl_heapify_down(cp, idx);
103 static inline int cpudl_maximum(struct cpudl *cp)
105 return cp->elements[0].cpu;
109 * cpudl_find - find the best (later-dl) CPU in the system
110 * @cp: the cpudl max-heap context
112 * @later_mask: a mask to fill in with the selected CPUs (or NULL)
114 * Returns: int - CPUs were found
116 int cpudl_find(struct cpudl *cp, struct task_struct *p,
117 struct cpumask *later_mask)
119 const struct sched_dl_entity *dl_se = &p->dl;
122 cpumask_and(later_mask, cp->free_cpus, &p->cpus_mask)) {
123 unsigned long cap, max_cap = 0;
124 int cpu, max_cpu = -1;
126 if (!sched_asym_cpucap_active())
129 /* Ensure the capacity of the CPUs fits the task. */
130 for_each_cpu(cpu, later_mask) {
131 if (!dl_task_fits_capacity(p, cpu)) {
132 cpumask_clear_cpu(cpu, later_mask);
134 cap = capacity_orig_of(cpu);
137 (cpu == task_cpu(p) && cap == max_cap)) {
144 if (cpumask_empty(later_mask))
145 cpumask_set_cpu(max_cpu, later_mask);
149 int best_cpu = cpudl_maximum(cp);
151 WARN_ON(best_cpu != -1 && !cpu_present(best_cpu));
153 if (cpumask_test_cpu(best_cpu, &p->cpus_mask) &&
154 dl_time_before(dl_se->deadline, cp->elements[0].dl)) {
156 cpumask_set_cpu(best_cpu, later_mask);
165 * cpudl_clear - remove a CPU from the cpudl max-heap
166 * @cp: the cpudl max-heap context
167 * @cpu: the target CPU
169 * Notes: assumes cpu_rq(cpu)->lock is locked
173 void cpudl_clear(struct cpudl *cp, int cpu)
175 int old_idx, new_cpu;
178 WARN_ON(!cpu_present(cpu));
180 raw_spin_lock_irqsave(&cp->lock, flags);
182 old_idx = cp->elements[cpu].idx;
183 if (old_idx == IDX_INVALID) {
185 * Nothing to remove if old_idx was invalid.
186 * This could happen if a rq_offline_dl is
187 * called for a CPU without -dl tasks running.
190 new_cpu = cp->elements[cp->size - 1].cpu;
191 cp->elements[old_idx].dl = cp->elements[cp->size - 1].dl;
192 cp->elements[old_idx].cpu = new_cpu;
194 cp->elements[new_cpu].idx = old_idx;
195 cp->elements[cpu].idx = IDX_INVALID;
196 cpudl_heapify(cp, old_idx);
198 cpumask_set_cpu(cpu, cp->free_cpus);
200 raw_spin_unlock_irqrestore(&cp->lock, flags);
204 * cpudl_set - update the cpudl max-heap
205 * @cp: the cpudl max-heap context
206 * @cpu: the target CPU
207 * @dl: the new earliest deadline for this CPU
209 * Notes: assumes cpu_rq(cpu)->lock is locked
213 void cpudl_set(struct cpudl *cp, int cpu, u64 dl)
218 WARN_ON(!cpu_present(cpu));
220 raw_spin_lock_irqsave(&cp->lock, flags);
222 old_idx = cp->elements[cpu].idx;
223 if (old_idx == IDX_INVALID) {
224 int new_idx = cp->size++;
226 cp->elements[new_idx].dl = dl;
227 cp->elements[new_idx].cpu = cpu;
228 cp->elements[cpu].idx = new_idx;
229 cpudl_heapify_up(cp, new_idx);
230 cpumask_clear_cpu(cpu, cp->free_cpus);
232 cp->elements[old_idx].dl = dl;
233 cpudl_heapify(cp, old_idx);
236 raw_spin_unlock_irqrestore(&cp->lock, flags);
240 * cpudl_set_freecpu - Set the cpudl.free_cpus
241 * @cp: the cpudl max-heap context
242 * @cpu: rd attached CPU
244 void cpudl_set_freecpu(struct cpudl *cp, int cpu)
246 cpumask_set_cpu(cpu, cp->free_cpus);
250 * cpudl_clear_freecpu - Clear the cpudl.free_cpus
251 * @cp: the cpudl max-heap context
252 * @cpu: rd attached CPU
254 void cpudl_clear_freecpu(struct cpudl *cp, int cpu)
256 cpumask_clear_cpu(cpu, cp->free_cpus);
260 * cpudl_init - initialize the cpudl structure
261 * @cp: the cpudl max-heap context
263 int cpudl_init(struct cpudl *cp)
267 raw_spin_lock_init(&cp->lock);
270 cp->elements = kcalloc(nr_cpu_ids,
271 sizeof(struct cpudl_item),
276 if (!zalloc_cpumask_var(&cp->free_cpus, GFP_KERNEL)) {
281 for_each_possible_cpu(i)
282 cp->elements[i].idx = IDX_INVALID;
288 * cpudl_cleanup - clean up the cpudl structure
289 * @cp: the cpudl max-heap context
291 void cpudl_cleanup(struct cpudl *cp)
293 free_cpumask_var(cp->free_cpus);