1 // SPDX-License-Identifier: GPL-2.0-only
5 * Global CPU deadline management
7 * Author: Juri Lelli <j.lelli@sssup.it>
11 static inline int parent(int i
)
16 static inline int left_child(int i
)
21 static inline int right_child(int i
)
26 static void cpudl_heapify_down(struct cpudl
*cp
, int idx
)
30 int orig_cpu
= cp
->elements
[idx
].cpu
;
31 u64 orig_dl
= cp
->elements
[idx
].dl
;
33 if (left_child(idx
) >= cp
->size
)
36 /* adapted from lib/prio_heap.c */
45 if ((l
< cp
->size
) && dl_time_before(orig_dl
,
46 cp
->elements
[l
].dl
)) {
48 largest_dl
= cp
->elements
[l
].dl
;
50 if ((r
< cp
->size
) && dl_time_before(largest_dl
,
57 /* pull largest child onto idx */
58 cp
->elements
[idx
].cpu
= cp
->elements
[largest
].cpu
;
59 cp
->elements
[idx
].dl
= cp
->elements
[largest
].dl
;
60 cp
->elements
[cp
->elements
[idx
].cpu
].idx
= idx
;
63 /* actual push down of saved original values orig_* */
64 cp
->elements
[idx
].cpu
= orig_cpu
;
65 cp
->elements
[idx
].dl
= orig_dl
;
66 cp
->elements
[cp
->elements
[idx
].cpu
].idx
= idx
;
69 static void cpudl_heapify_up(struct cpudl
*cp
, int idx
)
73 int orig_cpu
= cp
->elements
[idx
].cpu
;
74 u64 orig_dl
= cp
->elements
[idx
].dl
;
81 if (dl_time_before(orig_dl
, cp
->elements
[p
].dl
))
83 /* pull parent onto idx */
84 cp
->elements
[idx
].cpu
= cp
->elements
[p
].cpu
;
85 cp
->elements
[idx
].dl
= cp
->elements
[p
].dl
;
86 cp
->elements
[cp
->elements
[idx
].cpu
].idx
= idx
;
89 /* actual push up of saved original values orig_* */
90 cp
->elements
[idx
].cpu
= orig_cpu
;
91 cp
->elements
[idx
].dl
= orig_dl
;
92 cp
->elements
[cp
->elements
[idx
].cpu
].idx
= idx
;
95 static void cpudl_heapify(struct cpudl
*cp
, int idx
)
97 if (idx
> 0 && dl_time_before(cp
->elements
[parent(idx
)].dl
,
98 cp
->elements
[idx
].dl
))
99 cpudl_heapify_up(cp
, idx
);
101 cpudl_heapify_down(cp
, idx
);
104 static inline int cpudl_maximum(struct cpudl
*cp
)
106 return cp
->elements
[0].cpu
;
110 * cpudl_find - find the best (later-dl) CPU in the system
111 * @cp: the cpudl max-heap context
113 * @later_mask: a mask to fill in with the selected CPUs (or NULL)
115 * Returns: int - CPUs were found
117 int cpudl_find(struct cpudl
*cp
, struct task_struct
*p
,
118 struct cpumask
*later_mask
)
120 const struct sched_dl_entity
*dl_se
= &p
->dl
;
123 cpumask_and(later_mask
, cp
->free_cpus
, &p
->cpus_mask
)) {
124 unsigned long cap
, max_cap
= 0;
125 int cpu
, max_cpu
= -1;
127 if (!static_branch_unlikely(&sched_asym_cpucapacity
))
130 /* Ensure the capacity of the CPUs fits the task. */
131 for_each_cpu(cpu
, later_mask
) {
132 if (!dl_task_fits_capacity(p
, cpu
)) {
133 cpumask_clear_cpu(cpu
, later_mask
);
135 cap
= capacity_orig_of(cpu
);
138 (cpu
== task_cpu(p
) && cap
== max_cap
)) {
145 if (cpumask_empty(later_mask
))
146 cpumask_set_cpu(max_cpu
, later_mask
);
150 int best_cpu
= cpudl_maximum(cp
);
152 WARN_ON(best_cpu
!= -1 && !cpu_present(best_cpu
));
154 if (cpumask_test_cpu(best_cpu
, &p
->cpus_mask
) &&
155 dl_time_before(dl_se
->deadline
, cp
->elements
[0].dl
)) {
157 cpumask_set_cpu(best_cpu
, later_mask
);
166 * cpudl_clear - remove a CPU from the cpudl max-heap
167 * @cp: the cpudl max-heap context
168 * @cpu: the target CPU
170 * Notes: assumes cpu_rq(cpu)->lock is locked
174 void cpudl_clear(struct cpudl
*cp
, int cpu
)
176 int old_idx
, new_cpu
;
179 WARN_ON(!cpu_present(cpu
));
181 raw_spin_lock_irqsave(&cp
->lock
, flags
);
183 old_idx
= cp
->elements
[cpu
].idx
;
184 if (old_idx
== IDX_INVALID
) {
186 * Nothing to remove if old_idx was invalid.
187 * This could happen if a rq_offline_dl is
188 * called for a CPU without -dl tasks running.
191 new_cpu
= cp
->elements
[cp
->size
- 1].cpu
;
192 cp
->elements
[old_idx
].dl
= cp
->elements
[cp
->size
- 1].dl
;
193 cp
->elements
[old_idx
].cpu
= new_cpu
;
195 cp
->elements
[new_cpu
].idx
= old_idx
;
196 cp
->elements
[cpu
].idx
= IDX_INVALID
;
197 cpudl_heapify(cp
, old_idx
);
199 cpumask_set_cpu(cpu
, cp
->free_cpus
);
201 raw_spin_unlock_irqrestore(&cp
->lock
, flags
);
205 * cpudl_set - update the cpudl max-heap
206 * @cp: the cpudl max-heap context
207 * @cpu: the target CPU
208 * @dl: the new earliest deadline for this CPU
210 * Notes: assumes cpu_rq(cpu)->lock is locked
214 void cpudl_set(struct cpudl
*cp
, int cpu
, u64 dl
)
219 WARN_ON(!cpu_present(cpu
));
221 raw_spin_lock_irqsave(&cp
->lock
, flags
);
223 old_idx
= cp
->elements
[cpu
].idx
;
224 if (old_idx
== IDX_INVALID
) {
225 int new_idx
= cp
->size
++;
227 cp
->elements
[new_idx
].dl
= dl
;
228 cp
->elements
[new_idx
].cpu
= cpu
;
229 cp
->elements
[cpu
].idx
= new_idx
;
230 cpudl_heapify_up(cp
, new_idx
);
231 cpumask_clear_cpu(cpu
, cp
->free_cpus
);
233 cp
->elements
[old_idx
].dl
= dl
;
234 cpudl_heapify(cp
, old_idx
);
237 raw_spin_unlock_irqrestore(&cp
->lock
, flags
);
241 * cpudl_set_freecpu - Set the cpudl.free_cpus
242 * @cp: the cpudl max-heap context
243 * @cpu: rd attached CPU
245 void cpudl_set_freecpu(struct cpudl
*cp
, int cpu
)
247 cpumask_set_cpu(cpu
, cp
->free_cpus
);
251 * cpudl_clear_freecpu - Clear the cpudl.free_cpus
252 * @cp: the cpudl max-heap context
253 * @cpu: rd attached CPU
255 void cpudl_clear_freecpu(struct cpudl
*cp
, int cpu
)
257 cpumask_clear_cpu(cpu
, cp
->free_cpus
);
261 * cpudl_init - initialize the cpudl structure
262 * @cp: the cpudl max-heap context
264 int cpudl_init(struct cpudl
*cp
)
268 raw_spin_lock_init(&cp
->lock
);
271 cp
->elements
= kcalloc(nr_cpu_ids
,
272 sizeof(struct cpudl_item
),
277 if (!zalloc_cpumask_var(&cp
->free_cpus
, GFP_KERNEL
)) {
282 for_each_possible_cpu(i
)
283 cp
->elements
[i
].idx
= IDX_INVALID
;
289 * cpudl_cleanup - clean up the cpudl structure
290 * @cp: the cpudl max-heap context
292 void cpudl_cleanup(struct cpudl
*cp
)
294 free_cpumask_var(cp
->free_cpus
);