blob: 1149c348f0d197345e57f55d02c5f58787e28d67 [file] [log] [blame]
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001/* sched.c - SPU scheduler.
2 *
3 * Copyright (C) IBM 2005
4 * Author: Mark Nutter <mnutter@us.ibm.com>
5 *
Mark Nuttera68cf982006-10-04 17:26:12 +02006 * 2006-03-31 NUMA domains added.
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
Arnd Bergmann3b3d22c2005-12-05 22:52:24 -050023#undef DEBUG
24
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050025#include <linux/errno.h>
26#include <linux/sched.h>
Ingo Molnarbadaff82017-02-08 08:45:17 +010027#include <linux/sched/loadavg.h>
Ingo Molnar993db4b2013-02-11 10:45:33 +010028#include <linux/sched/rt.h>
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050029#include <linux/kernel.h>
30#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050032#include <linux/completion.h>
33#include <linux/vmalloc.h>
34#include <linux/smp.h>
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050035#include <linux/stddef.h>
36#include <linux/unistd.h>
Mark Nuttera68cf982006-10-04 17:26:12 +020037#include <linux/numa.h>
38#include <linux/mutex.h>
Arnd Bergmann86767272006-10-04 17:26:21 +020039#include <linux/notifier.h>
Christoph Hellwig37901802007-06-29 10:57:51 +100040#include <linux/kthread.h>
Christoph Hellwig65de66f2007-06-29 10:58:02 +100041#include <linux/pid_namespace.h>
42#include <linux/proc_fs.h>
43#include <linux/seq_file.h>
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050044
45#include <asm/io.h>
46#include <asm/mmu_context.h>
47#include <asm/spu.h>
48#include <asm/spu_csa.h>
Geoff Levanda91942a2006-06-19 20:33:30 +020049#include <asm/spu_priv1.h>
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050050#include "spufs.h"
Christoph Hellwigae142e02009-06-12 04:31:52 +000051#define CREATE_TRACE_POINTS
52#include "sputrace.h"
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050053
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050054struct spu_prio_array {
Christoph Hellwig72cb3602007-02-13 21:54:28 +010055 DECLARE_BITMAP(bitmap, MAX_PRIO);
Christoph Hellwig079cdb62007-02-13 21:54:23 +010056 struct list_head runq[MAX_PRIO];
57 spinlock_t runq_lock;
Christoph Hellwig65de66f2007-06-29 10:58:02 +100058 int nr_waiting;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050059};
60
Christoph Hellwig65de66f2007-06-29 10:58:02 +100061static unsigned long spu_avenrun[3];
Mark Nuttera68cf982006-10-04 17:26:12 +020062static struct spu_prio_array *spu_prio;
Christoph Hellwig37901802007-06-29 10:57:51 +100063static struct task_struct *spusched_task;
64static struct timer_list spusched_timer;
Aegis Lin90608a22007-12-20 16:39:59 +090065static struct timer_list spuloadavg_timer;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050066
Christoph Hellwigfe443ef2007-06-29 10:57:52 +100067/*
68 * Priority of a normal, non-rt, non-niced'd process (aka nice level 0).
69 */
70#define NORMAL_PRIO 120
71
72/*
73 * Frequency of the spu scheduler tick. By default we do one SPU scheduler
74 * tick for every 10 CPU scheduler ticks.
75 */
76#define SPUSCHED_TICK (10)
77
78/*
79 * These are the 'tuning knobs' of the scheduler:
80 *
Jeremy Kerr60e24232007-06-29 10:57:53 +100081 * Minimum timeslice is 5 msecs (or 1 spu scheduler tick, whichever is
82 * larger), default timeslice is 100 msecs, maximum timeslice is 800 msecs.
Christoph Hellwigfe443ef2007-06-29 10:57:52 +100083 */
Jeremy Kerr60e24232007-06-29 10:57:53 +100084#define MIN_SPU_TIMESLICE max(5 * HZ / (1000 * SPUSCHED_TICK), 1)
85#define DEF_SPU_TIMESLICE (100 * HZ / (1000 * SPUSCHED_TICK))
Christoph Hellwigfe443ef2007-06-29 10:57:52 +100086
Christoph Hellwigfe443ef2007-06-29 10:57:52 +100087#define SCALE_PRIO(x, prio) \
88 max(x * (MAX_PRIO - prio) / (MAX_USER_PRIO / 2), MIN_SPU_TIMESLICE)
89
90/*
91 * scale user-nice values [ -20 ... 0 ... 19 ] to time slice values:
92 * [800ms ... 100ms ... 5ms]
93 *
94 * The higher a thread's priority, the bigger timeslices
95 * it gets during one round of execution. But even the lowest
96 * priority thread gets MIN_TIMESLICE worth of execution time.
97 */
98void spu_set_timeslice(struct spu_context *ctx)
99{
100 if (ctx->prio < NORMAL_PRIO)
101 ctx->time_slice = SCALE_PRIO(DEF_SPU_TIMESLICE * 4, ctx->prio);
102 else
103 ctx->time_slice = SCALE_PRIO(DEF_SPU_TIMESLICE, ctx->prio);
104}
105
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000106/*
107 * Update scheduling information from the owning thread.
108 */
109void __spu_update_sched_info(struct spu_context *ctx)
110{
111 /*
Luke Browning91569532007-12-20 16:39:59 +0900112 * assert that the context is not on the runqueue, so it is safe
113 * to change its scheduling parameters.
114 */
115 BUG_ON(!list_empty(&ctx->rq));
116
117 /*
Julio M. Merino Vidal9b1d21f2007-12-20 16:39:59 +0900118 * 32-Bit assignments are atomic on powerpc, and we don't care about
119 * memory ordering here because retrieving the controlling thread is
120 * per definition racy.
Christoph Hellwig476273a2007-06-29 10:58:01 +1000121 */
122 ctx->tid = current->pid;
123
124 /*
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000125 * We do our own priority calculations, so we normally want
Julio M. Merino Vidal9b1d21f2007-12-20 16:39:59 +0900126 * ->static_prio to start with. Unfortunately this field
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000127 * contains junk for threads with a realtime scheduling
128 * policy so we have to look at ->prio in this case.
129 */
130 if (rt_prio(current->prio))
131 ctx->prio = current->prio;
132 else
133 ctx->prio = current->static_prio;
134 ctx->policy = current->policy;
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000135
136 /*
Luke Browning91569532007-12-20 16:39:59 +0900137 * TO DO: the context may be loaded, so we may need to activate
138 * it again on a different node. But it shouldn't hurt anything
139 * to update its parameters, because we know that the scheduler
140 * is not actively looking at this field, since it is not on the
141 * runqueue. The context will be rescheduled on the proper node
142 * if it is timesliced or preempted.
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000143 */
KOSAKI Motohiro104699c2011-04-28 05:07:23 +0000144 cpumask_copy(&ctx->cpus_allowed, tsk_cpus_allowed(current));
Luke Browning7a214202008-04-28 14:32:34 +1000145
146 /* Save the current cpu id for spu interrupt routing. */
147 ctx->last_ran = raw_smp_processor_id();
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000148}
149
150void spu_update_sched_info(struct spu_context *ctx)
151{
Luke Browning91569532007-12-20 16:39:59 +0900152 int node;
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000153
Luke Browning91569532007-12-20 16:39:59 +0900154 if (ctx->state == SPU_STATE_RUNNABLE) {
155 node = ctx->spu->node;
Luke Browninge65c2f62007-12-20 16:39:59 +0900156
157 /*
158 * Take list_mutex to sync with find_victim().
159 */
Luke Browning91569532007-12-20 16:39:59 +0900160 mutex_lock(&cbe_spu_info[node].list_mutex);
161 __spu_update_sched_info(ctx);
162 mutex_unlock(&cbe_spu_info[node].list_mutex);
163 } else {
164 __spu_update_sched_info(ctx);
165 }
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000166}
167
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000168static int __node_allowed(struct spu_context *ctx, int node)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500169{
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000170 if (nr_cpus_node(node)) {
Rusty Russell86c6f272008-12-26 22:23:39 +1030171 const struct cpumask *mask = cpumask_of_node(node);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500172
Rusty Russell86c6f272008-12-26 22:23:39 +1030173 if (cpumask_intersects(mask, &ctx->cpus_allowed))
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000174 return 1;
175 }
176
177 return 0;
178}
179
180static int node_allowed(struct spu_context *ctx, int node)
181{
182 int rval;
183
184 spin_lock(&spu_prio->runq_lock);
185 rval = __node_allowed(ctx, node);
186 spin_unlock(&spu_prio->runq_lock);
187
188 return rval;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500189}
190
Bob Nelsonaed3a8c2007-12-15 01:27:30 +1100191void do_notify_spus_active(void)
Bob Nelson36aaccc2007-07-20 21:39:52 +0200192{
193 int node;
194
195 /*
196 * Wake up the active spu_contexts.
197 *
198 * When the awakened processes see their "notify_active" flag is set,
Julio M. Merino Vidal9b1d21f2007-12-20 16:39:59 +0900199 * they will call spu_switch_notify().
Bob Nelson36aaccc2007-07-20 21:39:52 +0200200 */
201 for_each_online_node(node) {
202 struct spu *spu;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200203
204 mutex_lock(&cbe_spu_info[node].list_mutex);
205 list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list) {
206 if (spu->alloc_state != SPU_FREE) {
207 struct spu_context *ctx = spu->ctx;
208 set_bit(SPU_SCHED_NOTIFY_ACTIVE,
209 &ctx->sched_flags);
210 mb();
211 wake_up_all(&ctx->stop_wq);
212 }
Bob Nelson36aaccc2007-07-20 21:39:52 +0200213 }
Christoph Hellwig486acd42007-07-20 21:39:54 +0200214 mutex_unlock(&cbe_spu_info[node].list_mutex);
Bob Nelson36aaccc2007-07-20 21:39:52 +0200215 }
216}
217
Christoph Hellwig202557d2007-02-13 21:36:49 +0100218/**
219 * spu_bind_context - bind spu context to physical spu
220 * @spu: physical spu to bind to
221 * @ctx: context to bind
222 */
223static void spu_bind_context(struct spu *spu, struct spu_context *ctx)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500224{
Christoph Hellwig038200c2008-01-11 15:03:26 +1100225 spu_context_trace(spu_bind_context__enter, ctx, spu);
226
Andre Detsch27ec41d2007-07-20 21:39:33 +0200227 spuctx_switch_state(ctx, SPU_UTIL_SYSTEM);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000228
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200229 if (ctx->flags & SPU_CREATE_NOSCHED)
230 atomic_inc(&cbe_spu_info[spu->node].reserved_spus);
231
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000232 ctx->stats.slb_flt_base = spu->stats.slb_flt;
233 ctx->stats.class2_intr_base = spu->stats.class2_intr;
234
Luke Browning2c911a12008-06-13 14:17:35 +1000235 spu_associate_mm(spu, ctx->owner);
236
237 spin_lock_irq(&spu->register_lock);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500238 spu->ctx = ctx;
239 spu->flags = 0;
240 ctx->spu = spu;
241 ctx->ops = &spu_hw_ops;
242 spu->pid = current->pid;
Bob Nelson14748552007-07-20 21:39:53 +0200243 spu->tgid = current->tgid;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500244 spu->ibox_callback = spufs_ibox_callback;
245 spu->wbox_callback = spufs_wbox_callback;
Arnd Bergmann51104592005-12-05 22:52:25 -0500246 spu->stop_callback = spufs_stop_callback;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100247 spu->mfc_callback = spufs_mfc_callback;
Luke Browning2c911a12008-06-13 14:17:35 +1000248 spin_unlock_irq(&spu->register_lock);
249
Arnd Bergmann51104592005-12-05 22:52:25 -0500250 spu_unmap_mappings(ctx);
Luke Browning2c911a12008-06-13 14:17:35 +1000251
Christoph Hellwig5158e9b2008-04-29 17:08:38 +1000252 spu_switch_log_notify(spu, ctx, SWITCH_LOG_START, 0);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500253 spu_restore(&ctx->csa, spu);
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500254 spu->timestamp = jiffies;
Arnd Bergmann86767272006-10-04 17:26:21 +0200255 spu_switch_notify(spu, ctx);
Christoph Hellwig81998ba2007-02-13 21:36:48 +0100256 ctx->state = SPU_STATE_RUNNABLE;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200257
Andre Detsch2a58aa32008-02-25 15:07:42 -0300258 spuctx_switch_state(ctx, SPU_UTIL_USER);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500259}
260
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200261/*
Christoph Hellwig486acd42007-07-20 21:39:54 +0200262 * Must be used with the list_mutex held.
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200263 */
264static inline int sched_spu(struct spu *spu)
265{
Christoph Hellwig486acd42007-07-20 21:39:54 +0200266 BUG_ON(!mutex_is_locked(&cbe_spu_info[spu->node].list_mutex));
267
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200268 return (!spu->ctx || !(spu->ctx->flags & SPU_CREATE_NOSCHED));
269}
270
271static void aff_merge_remaining_ctxs(struct spu_gang *gang)
272{
273 struct spu_context *ctx;
274
275 list_for_each_entry(ctx, &gang->aff_list_head, aff_list) {
276 if (list_empty(&ctx->aff_list))
277 list_add(&ctx->aff_list, &gang->aff_list_head);
278 }
279 gang->aff_flags |= AFF_MERGED;
280}
281
282static void aff_set_offsets(struct spu_gang *gang)
283{
284 struct spu_context *ctx;
285 int offset;
286
287 offset = -1;
288 list_for_each_entry_reverse(ctx, &gang->aff_ref_ctx->aff_list,
289 aff_list) {
290 if (&ctx->aff_list == &gang->aff_list_head)
291 break;
292 ctx->aff_offset = offset--;
293 }
294
295 offset = 0;
296 list_for_each_entry(ctx, gang->aff_ref_ctx->aff_list.prev, aff_list) {
297 if (&ctx->aff_list == &gang->aff_list_head)
298 break;
299 ctx->aff_offset = offset++;
300 }
301
302 gang->aff_flags |= AFF_OFFSETS_SET;
303}
304
305static struct spu *aff_ref_location(struct spu_context *ctx, int mem_aff,
306 int group_size, int lowest_offset)
307{
308 struct spu *spu;
309 int node, n;
310
311 /*
312 * TODO: A better algorithm could be used to find a good spu to be
313 * used as reference location for the ctxs chain.
314 */
315 node = cpu_to_node(raw_smp_processor_id());
316 for (n = 0; n < MAX_NUMNODES; n++, node++) {
Andre Detsch10baa262008-10-21 11:15:23 +1100317 /*
318 * "available_spus" counts how many spus are not potentially
319 * going to be used by other affinity gangs whose reference
320 * context is already in place. Although this code seeks to
321 * avoid having affinity gangs with a summed amount of
322 * contexts bigger than the amount of spus in the node,
323 * this may happen sporadically. In this case, available_spus
324 * becomes negative, which is harmless.
325 */
Andre Detschad1ede12008-07-24 11:01:54 +1000326 int available_spus;
327
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200328 node = (node < MAX_NUMNODES) ? node : 0;
329 if (!node_allowed(ctx, node))
330 continue;
Andre Detschad1ede12008-07-24 11:01:54 +1000331
332 available_spus = 0;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200333 mutex_lock(&cbe_spu_info[node].list_mutex);
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200334 list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list) {
Andre Detsch10baa262008-10-21 11:15:23 +1100335 if (spu->ctx && spu->ctx->gang && !spu->ctx->aff_offset
336 && spu->ctx->gang->aff_ref_spu)
337 available_spus -= spu->ctx->gang->contexts;
338 available_spus++;
Andre Detschad1ede12008-07-24 11:01:54 +1000339 }
340 if (available_spus < ctx->gang->contexts) {
341 mutex_unlock(&cbe_spu_info[node].list_mutex);
342 continue;
343 }
344
345 list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list) {
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200346 if ((!mem_aff || spu->has_mem_affinity) &&
Christoph Hellwig486acd42007-07-20 21:39:54 +0200347 sched_spu(spu)) {
348 mutex_unlock(&cbe_spu_info[node].list_mutex);
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200349 return spu;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200350 }
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200351 }
Christoph Hellwig486acd42007-07-20 21:39:54 +0200352 mutex_unlock(&cbe_spu_info[node].list_mutex);
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200353 }
354 return NULL;
355}
356
357static void aff_set_ref_point_location(struct spu_gang *gang)
358{
359 int mem_aff, gs, lowest_offset;
360 struct spu_context *ctx;
361 struct spu *tmp;
362
363 mem_aff = gang->aff_ref_ctx->flags & SPU_CREATE_AFFINITY_MEM;
364 lowest_offset = 0;
365 gs = 0;
366
367 list_for_each_entry(tmp, &gang->aff_list_head, aff_list)
368 gs++;
369
370 list_for_each_entry_reverse(ctx, &gang->aff_ref_ctx->aff_list,
371 aff_list) {
372 if (&ctx->aff_list == &gang->aff_list_head)
373 break;
374 lowest_offset = ctx->aff_offset;
375 }
376
Andre Detsch683e3ab2007-07-31 09:48:11 +1000377 gang->aff_ref_spu = aff_ref_location(gang->aff_ref_ctx, mem_aff, gs,
378 lowest_offset);
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200379}
380
Christoph Hellwig486acd42007-07-20 21:39:54 +0200381static struct spu *ctx_location(struct spu *ref, int offset, int node)
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200382{
383 struct spu *spu;
384
385 spu = NULL;
386 if (offset >= 0) {
387 list_for_each_entry(spu, ref->aff_list.prev, aff_list) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200388 BUG_ON(spu->node != node);
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200389 if (offset == 0)
390 break;
391 if (sched_spu(spu))
392 offset--;
393 }
394 } else {
395 list_for_each_entry_reverse(spu, ref->aff_list.next, aff_list) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200396 BUG_ON(spu->node != node);
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200397 if (offset == 0)
398 break;
399 if (sched_spu(spu))
400 offset++;
401 }
402 }
Christoph Hellwig486acd42007-07-20 21:39:54 +0200403
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200404 return spu;
405}
406
407/*
408 * affinity_check is called each time a context is going to be scheduled.
409 * It returns the spu ptr on which the context must run.
410 */
Christoph Hellwig486acd42007-07-20 21:39:54 +0200411static int has_affinity(struct spu_context *ctx)
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200412{
Christoph Hellwig486acd42007-07-20 21:39:54 +0200413 struct spu_gang *gang = ctx->gang;
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200414
415 if (list_empty(&ctx->aff_list))
Christoph Hellwig486acd42007-07-20 21:39:54 +0200416 return 0;
417
Andre Detsch0855b542008-07-24 10:57:26 +1000418 if (atomic_read(&ctx->gang->aff_sched_count) == 0)
419 ctx->gang->aff_ref_spu = NULL;
420
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200421 if (!gang->aff_ref_spu) {
422 if (!(gang->aff_flags & AFF_MERGED))
423 aff_merge_remaining_ctxs(gang);
424 if (!(gang->aff_flags & AFF_OFFSETS_SET))
425 aff_set_offsets(gang);
426 aff_set_ref_point_location(gang);
427 }
Christoph Hellwig486acd42007-07-20 21:39:54 +0200428
429 return gang->aff_ref_spu != NULL;
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200430}
431
Christoph Hellwig202557d2007-02-13 21:36:49 +0100432/**
433 * spu_unbind_context - unbind spu context from physical spu
434 * @spu: physical spu to unbind from
435 * @ctx: context to unbind
Christoph Hellwig202557d2007-02-13 21:36:49 +0100436 */
Christoph Hellwig678b2ff2007-02-13 21:54:25 +0100437static void spu_unbind_context(struct spu *spu, struct spu_context *ctx)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500438{
Luke Browning028fda02008-06-16 10:42:38 +1000439 u32 status;
440
Christoph Hellwig038200c2008-01-11 15:03:26 +1100441 spu_context_trace(spu_unbind_context__enter, ctx, spu);
442
Andre Detsch27ec41d2007-07-20 21:39:33 +0200443 spuctx_switch_state(ctx, SPU_UTIL_SYSTEM);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000444
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200445 if (spu->ctx->flags & SPU_CREATE_NOSCHED)
446 atomic_dec(&cbe_spu_info[spu->node].reserved_spus);
Andre Detsch36ddbb12007-09-19 14:38:12 +1000447
Andre Detsch0855b542008-07-24 10:57:26 +1000448 if (ctx->gang)
Andre Detsch34318c22008-10-21 11:16:09 +1100449 /*
450 * If ctx->gang->aff_sched_count is positive, SPU affinity is
451 * being considered in this gang. Using atomic_dec_if_positive
452 * allow us to skip an explicit check for affinity in this gang
453 */
Andre Detsch0855b542008-07-24 10:57:26 +1000454 atomic_dec_if_positive(&ctx->gang->aff_sched_count);
Andre Detsch36ddbb12007-09-19 14:38:12 +1000455
Arnd Bergmann86767272006-10-04 17:26:21 +0200456 spu_switch_notify(spu, NULL);
Arnd Bergmann51104592005-12-05 22:52:25 -0500457 spu_unmap_mappings(ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500458 spu_save(&ctx->csa, spu);
Christoph Hellwig5158e9b2008-04-29 17:08:38 +1000459 spu_switch_log_notify(spu, ctx, SWITCH_LOG_STOP, 0);
Luke Browning2c911a12008-06-13 14:17:35 +1000460
461 spin_lock_irq(&spu->register_lock);
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500462 spu->timestamp = jiffies;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500463 ctx->state = SPU_STATE_SAVED;
464 spu->ibox_callback = NULL;
465 spu->wbox_callback = NULL;
Arnd Bergmann51104592005-12-05 22:52:25 -0500466 spu->stop_callback = NULL;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100467 spu->mfc_callback = NULL;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500468 spu->pid = 0;
Bob Nelson14748552007-07-20 21:39:53 +0200469 spu->tgid = 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500470 ctx->ops = &spu_backing_ops;
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500471 spu->flags = 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500472 spu->ctx = NULL;
Luke Browning2c911a12008-06-13 14:17:35 +1000473 spin_unlock_irq(&spu->register_lock);
474
475 spu_associate_mm(spu, NULL);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000476
477 ctx->stats.slb_flt +=
478 (spu->stats.slb_flt - ctx->stats.slb_flt_base);
479 ctx->stats.class2_intr +=
480 (spu->stats.class2_intr - ctx->stats.class2_intr_base);
Andre Detsch27ec41d2007-07-20 21:39:33 +0200481
482 /* This maps the underlying spu state to idle */
483 spuctx_switch_state(ctx, SPU_UTIL_IDLE_LOADED);
484 ctx->spu = NULL;
Luke Browning028fda02008-06-16 10:42:38 +1000485
486 if (spu_stopped(ctx, &status))
487 wake_up_all(&ctx->stop_wq);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500488}
489
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100490/**
491 * spu_add_to_rq - add a context to the runqueue
492 * @ctx: context to add
493 */
Luke Browning4e0f4ed2007-04-23 21:08:13 +0200494static void __spu_add_to_rq(struct spu_context *ctx)
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500495{
Christoph Hellwig27449972007-06-29 10:58:06 +1000496 /*
497 * Unfortunately this code path can be called from multiple threads
498 * on behalf of a single context due to the way the problem state
499 * mmap support works.
500 *
501 * Fortunately we need to wake up all these threads at the same time
502 * and can simply skip the runqueue addition for every but the first
503 * thread getting into this codepath.
504 *
505 * It's still quite hacky, and long-term we should proxy all other
506 * threads through the owner thread so that spu_run is in control
507 * of all the scheduling activity for a given context.
508 */
509 if (list_empty(&ctx->rq)) {
510 list_add_tail(&ctx->rq, &spu_prio->runq[ctx->prio]);
511 set_bit(ctx->prio, spu_prio->bitmap);
512 if (!spu_prio->nr_waiting++)
Ingo Molnar74019222009-02-18 12:23:29 +0100513 mod_timer(&spusched_timer, jiffies + SPUSCHED_TICK);
Christoph Hellwig27449972007-06-29 10:58:06 +1000514 }
Mark Nuttera68cf982006-10-04 17:26:12 +0200515}
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500516
Luke Browninge65c2f62007-12-20 16:39:59 +0900517static void spu_add_to_rq(struct spu_context *ctx)
518{
519 spin_lock(&spu_prio->runq_lock);
520 __spu_add_to_rq(ctx);
521 spin_unlock(&spu_prio->runq_lock);
522}
523
Luke Browning4e0f4ed2007-04-23 21:08:13 +0200524static void __spu_del_from_rq(struct spu_context *ctx)
Christoph Hellwiga475c2f2007-04-23 21:08:11 +0200525{
Luke Browning4e0f4ed2007-04-23 21:08:13 +0200526 int prio = ctx->prio;
527
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000528 if (!list_empty(&ctx->rq)) {
Christoph Hellwigc77239b2007-06-29 10:58:05 +1000529 if (!--spu_prio->nr_waiting)
530 del_timer(&spusched_timer);
Christoph Hellwiga475c2f2007-04-23 21:08:11 +0200531 list_del_init(&ctx->rq);
Christoph Hellwigc77239b2007-06-29 10:58:05 +1000532
533 if (list_empty(&spu_prio->runq[prio]))
534 clear_bit(prio, spu_prio->bitmap);
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000535 }
Mark Nuttera68cf982006-10-04 17:26:12 +0200536}
537
Luke Browninge65c2f62007-12-20 16:39:59 +0900538void spu_del_from_rq(struct spu_context *ctx)
539{
540 spin_lock(&spu_prio->runq_lock);
541 __spu_del_from_rq(ctx);
542 spin_unlock(&spu_prio->runq_lock);
543}
544
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100545static void spu_prio_wait(struct spu_context *ctx)
546{
Mark Nuttera68cf982006-10-04 17:26:12 +0200547 DEFINE_WAIT(wait);
548
Luke Browninge65c2f62007-12-20 16:39:59 +0900549 /*
550 * The caller must explicitly wait for a context to be loaded
551 * if the nosched flag is set. If NOSCHED is not set, the caller
552 * queues the context and waits for an spu event or error.
553 */
554 BUG_ON(!(ctx->flags & SPU_CREATE_NOSCHED));
555
Luke Browning4e0f4ed2007-04-23 21:08:13 +0200556 spin_lock(&spu_prio->runq_lock);
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100557 prepare_to_wait_exclusive(&ctx->stop_wq, &wait, TASK_INTERRUPTIBLE);
Mark Nuttera68cf982006-10-04 17:26:12 +0200558 if (!signal_pending(current)) {
Luke Browning4e0f4ed2007-04-23 21:08:13 +0200559 __spu_add_to_rq(ctx);
560 spin_unlock(&spu_prio->runq_lock);
Christoph Hellwig650f8b02007-02-13 21:36:50 +0100561 mutex_unlock(&ctx->state_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200562 schedule();
Christoph Hellwig650f8b02007-02-13 21:36:50 +0100563 mutex_lock(&ctx->state_mutex);
Luke Browning4e0f4ed2007-04-23 21:08:13 +0200564 spin_lock(&spu_prio->runq_lock);
565 __spu_del_from_rq(ctx);
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500566 }
Luke Browning4e0f4ed2007-04-23 21:08:13 +0200567 spin_unlock(&spu_prio->runq_lock);
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100568 __set_current_state(TASK_RUNNING);
569 remove_wait_queue(&ctx->stop_wq, &wait);
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500570}
571
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100572static struct spu *spu_get_idle(struct spu_context *ctx)
Mark Nuttera68cf982006-10-04 17:26:12 +0200573{
Andre Detsch36ddbb12007-09-19 14:38:12 +1000574 struct spu *spu, *aff_ref_spu;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200575 int node, n;
Mark Nuttera68cf982006-10-04 17:26:12 +0200576
Christoph Hellwig038200c2008-01-11 15:03:26 +1100577 spu_context_nospu_trace(spu_get_idle__enter, ctx);
578
Andre Detsch36ddbb12007-09-19 14:38:12 +1000579 if (ctx->gang) {
580 mutex_lock(&ctx->gang->aff_mutex);
581 if (has_affinity(ctx)) {
582 aff_ref_spu = ctx->gang->aff_ref_spu;
583 atomic_inc(&ctx->gang->aff_sched_count);
584 mutex_unlock(&ctx->gang->aff_mutex);
585 node = aff_ref_spu->node;
Arnd Bergmanncbc23d32007-07-20 21:39:49 +0200586
Andre Detsch36ddbb12007-09-19 14:38:12 +1000587 mutex_lock(&cbe_spu_info[node].list_mutex);
588 spu = ctx_location(aff_ref_spu, ctx->aff_offset, node);
589 if (spu && spu->alloc_state == SPU_FREE)
590 goto found;
591 mutex_unlock(&cbe_spu_info[node].list_mutex);
592
Andre Detsch0855b542008-07-24 10:57:26 +1000593 atomic_dec(&ctx->gang->aff_sched_count);
Christoph Hellwig038200c2008-01-11 15:03:26 +1100594 goto not_found;
Andre Detsch36ddbb12007-09-19 14:38:12 +1000595 }
596 mutex_unlock(&ctx->gang->aff_mutex);
Christoph Hellwig486acd42007-07-20 21:39:54 +0200597 }
Christoph Hellwig486acd42007-07-20 21:39:54 +0200598 node = cpu_to_node(raw_smp_processor_id());
Mark Nuttera68cf982006-10-04 17:26:12 +0200599 for (n = 0; n < MAX_NUMNODES; n++, node++) {
600 node = (node < MAX_NUMNODES) ? node : 0;
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000601 if (!node_allowed(ctx, node))
Mark Nuttera68cf982006-10-04 17:26:12 +0200602 continue;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200603
604 mutex_lock(&cbe_spu_info[node].list_mutex);
605 list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list) {
606 if (spu->alloc_state == SPU_FREE)
607 goto found;
608 }
609 mutex_unlock(&cbe_spu_info[node].list_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200610 }
Christoph Hellwig486acd42007-07-20 21:39:54 +0200611
Christoph Hellwig038200c2008-01-11 15:03:26 +1100612 not_found:
613 spu_context_nospu_trace(spu_get_idle__not_found, ctx);
Christoph Hellwig486acd42007-07-20 21:39:54 +0200614 return NULL;
615
616 found:
617 spu->alloc_state = SPU_USED;
618 mutex_unlock(&cbe_spu_info[node].list_mutex);
Christoph Hellwig038200c2008-01-11 15:03:26 +1100619 spu_context_trace(spu_get_idle__found, ctx, spu);
Christoph Hellwig486acd42007-07-20 21:39:54 +0200620 spu_init_channels(spu);
Mark Nuttera68cf982006-10-04 17:26:12 +0200621 return spu;
622}
623
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100624/**
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100625 * find_victim - find a lower priority context to preempt
Michael Ellerman027dfac2016-06-01 16:34:37 +1000626 * @ctx: candidate context for running
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100627 *
628 * Returns the freed physical spu to run the new context on.
629 */
630static struct spu *find_victim(struct spu_context *ctx)
631{
632 struct spu_context *victim = NULL;
633 struct spu *spu;
634 int node, n;
635
Julio M. Merino Vidal8a476d42008-04-30 15:16:14 +1000636 spu_context_nospu_trace(spu_find_victim__enter, ctx);
Christoph Hellwig038200c2008-01-11 15:03:26 +1100637
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100638 /*
639 * Look for a possible preemption candidate on the local node first.
640 * If there is no candidate look at the other nodes. This isn't
Julio M. Merino Vidal9b1d21f2007-12-20 16:39:59 +0900641 * exactly fair, but so far the whole spu scheduler tries to keep
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100642 * a strong node affinity. We might want to fine-tune this in
643 * the future.
644 */
645 restart:
646 node = cpu_to_node(raw_smp_processor_id());
647 for (n = 0; n < MAX_NUMNODES; n++, node++) {
648 node = (node < MAX_NUMNODES) ? node : 0;
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000649 if (!node_allowed(ctx, node))
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100650 continue;
651
Christoph Hellwig486acd42007-07-20 21:39:54 +0200652 mutex_lock(&cbe_spu_info[node].list_mutex);
653 list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list) {
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100654 struct spu_context *tmp = spu->ctx;
655
Christoph Hellwigc0e7b4a2007-09-19 14:38:12 +1000656 if (tmp && tmp->prio > ctx->prio &&
Luke Browninge65c2f62007-12-20 16:39:59 +0900657 !(tmp->flags & SPU_CREATE_NOSCHED) &&
Jeremy Kerr8d5636f2008-08-14 14:59:12 +1000658 (!victim || tmp->prio > victim->prio)) {
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100659 victim = spu->ctx;
Jeremy Kerr8d5636f2008-08-14 14:59:12 +1000660 }
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100661 }
Jeremy Kerr9f43e392008-09-02 11:57:09 +1000662 if (victim)
663 get_spu_context(victim);
Christoph Hellwig486acd42007-07-20 21:39:54 +0200664 mutex_unlock(&cbe_spu_info[node].list_mutex);
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100665
666 if (victim) {
667 /*
668 * This nests ctx->state_mutex, but we always lock
669 * higher priority contexts before lower priority
670 * ones, so this is safe until we introduce
671 * priority inheritance schemes.
Luke Browning91569532007-12-20 16:39:59 +0900672 *
673 * XXX if the highest priority context is locked,
674 * this can loop a long time. Might be better to
675 * look at another context or give up after X retries.
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100676 */
677 if (!mutex_trylock(&victim->state_mutex)) {
Jeremy Kerr8d5636f2008-08-14 14:59:12 +1000678 put_spu_context(victim);
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100679 victim = NULL;
680 goto restart;
681 }
682
683 spu = victim->spu;
Luke Browningb1925412007-12-20 16:39:59 +0900684 if (!spu || victim->prio <= ctx->prio) {
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100685 /*
686 * This race can happen because we've dropped
Luke Browningb1925412007-12-20 16:39:59 +0900687 * the active list mutex. Not a problem, just
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100688 * restart the search.
689 */
690 mutex_unlock(&victim->state_mutex);
Jeremy Kerr8d5636f2008-08-14 14:59:12 +1000691 put_spu_context(victim);
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100692 victim = NULL;
693 goto restart;
694 }
Christoph Hellwig486acd42007-07-20 21:39:54 +0200695
Christoph Hellwig038200c2008-01-11 15:03:26 +1100696 spu_context_trace(__spu_deactivate__unload, ctx, spu);
697
Christoph Hellwig486acd42007-07-20 21:39:54 +0200698 mutex_lock(&cbe_spu_info[node].list_mutex);
699 cbe_spu_info[node].nr_active--;
Christoph Hellwigc0e7b4a2007-09-19 14:38:12 +1000700 spu_unbind_context(spu, victim);
Christoph Hellwig486acd42007-07-20 21:39:54 +0200701 mutex_unlock(&cbe_spu_info[node].list_mutex);
702
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000703 victim->stats.invol_ctx_switch++;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000704 spu->stats.invol_ctx_switch++;
Luke Browning08fcf1d2008-05-12 14:36:59 +0000705 if (test_bit(SPU_SCHED_SPU_RUN, &victim->sched_flags))
Christoph Hellwig7a28a152008-05-08 15:26:32 +1000706 spu_add_to_rq(victim);
Luke Browninge65c2f62007-12-20 16:39:59 +0900707
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100708 mutex_unlock(&victim->state_mutex);
Jeremy Kerr8d5636f2008-08-14 14:59:12 +1000709 put_spu_context(victim);
Luke Browninge65c2f62007-12-20 16:39:59 +0900710
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100711 return spu;
712 }
713 }
714
715 return NULL;
716}
717
Luke Browninge65c2f62007-12-20 16:39:59 +0900718static void __spu_schedule(struct spu *spu, struct spu_context *ctx)
719{
720 int node = spu->node;
721 int success = 0;
722
723 spu_set_timeslice(ctx);
724
725 mutex_lock(&cbe_spu_info[node].list_mutex);
726 if (spu->ctx == NULL) {
727 spu_bind_context(spu, ctx);
728 cbe_spu_info[node].nr_active++;
729 spu->alloc_state = SPU_USED;
730 success = 1;
731 }
732 mutex_unlock(&cbe_spu_info[node].list_mutex);
733
734 if (success)
735 wake_up_all(&ctx->run_wq);
736 else
737 spu_add_to_rq(ctx);
738}
739
740static void spu_schedule(struct spu *spu, struct spu_context *ctx)
741{
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900742 /* not a candidate for interruptible because it's called either
743 from the scheduler thread or from spu_deactivate */
744 mutex_lock(&ctx->state_mutex);
Andre Detschb2e601d2008-09-04 21:16:27 +0000745 if (ctx->state == SPU_STATE_SAVED)
746 __spu_schedule(spu, ctx);
Luke Browninge65c2f62007-12-20 16:39:59 +0900747 spu_release(ctx);
748}
749
Jeremy Kerrb65fe032008-09-04 15:02:47 +1000750/**
751 * spu_unschedule - remove a context from a spu, and possibly release it.
752 * @spu: The SPU to unschedule from
753 * @ctx: The context currently scheduled on the SPU
754 * @free_spu Whether to free the SPU for other contexts
755 *
756 * Unbinds the context @ctx from the SPU @spu. If @free_spu is non-zero, the
757 * SPU is made available for other contexts (ie, may be returned by
758 * spu_get_idle). If this is zero, the caller is expected to schedule another
759 * context to this spu.
760 *
761 * Should be called with ctx->state_mutex held.
762 */
763static void spu_unschedule(struct spu *spu, struct spu_context *ctx,
764 int free_spu)
Luke Browninge65c2f62007-12-20 16:39:59 +0900765{
766 int node = spu->node;
767
768 mutex_lock(&cbe_spu_info[node].list_mutex);
769 cbe_spu_info[node].nr_active--;
Jeremy Kerrb65fe032008-09-04 15:02:47 +1000770 if (free_spu)
771 spu->alloc_state = SPU_FREE;
Luke Browninge65c2f62007-12-20 16:39:59 +0900772 spu_unbind_context(spu, ctx);
773 ctx->stats.invol_ctx_switch++;
774 spu->stats.invol_ctx_switch++;
775 mutex_unlock(&cbe_spu_info[node].list_mutex);
776}
777
Christoph Hellwig52f04fc2007-02-13 21:54:27 +0100778/**
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100779 * spu_activate - find a free spu for a context and execute it
780 * @ctx: spu context to schedule
781 * @flags: flags (currently ignored)
782 *
Christoph Hellwig08873092007-04-23 21:08:06 +0200783 * Tries to find a free spu to run @ctx. If no free spu is available
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100784 * add the context to the runqueue so it gets woken up once an spu
785 * is available.
786 */
Christoph Hellwig26bec672007-02-13 21:54:24 +0100787int spu_activate(struct spu_context *ctx, unsigned long flags)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500788{
Luke Browninge65c2f62007-12-20 16:39:59 +0900789 struct spu *spu;
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100790
Luke Browninge65c2f62007-12-20 16:39:59 +0900791 /*
792 * If there are multiple threads waiting for a single context
793 * only one actually binds the context while the others will
794 * only be able to acquire the state_mutex once the context
795 * already is in runnable state.
796 */
797 if (ctx->spu)
798 return 0;
Christoph Hellwig27449972007-06-29 10:58:06 +1000799
Luke Browninge65c2f62007-12-20 16:39:59 +0900800spu_activate_top:
801 if (signal_pending(current))
802 return -ERESTARTSYS;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200803
Luke Browninge65c2f62007-12-20 16:39:59 +0900804 spu = spu_get_idle(ctx);
805 /*
806 * If this is a realtime thread we try to get it running by
807 * preempting a lower priority thread.
808 */
809 if (!spu && rt_prio(ctx->prio))
810 spu = find_victim(ctx);
811 if (spu) {
812 unsigned long runcntl;
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100813
Luke Browninge65c2f62007-12-20 16:39:59 +0900814 runcntl = ctx->ops->runcntl_read(ctx);
815 __spu_schedule(spu, ctx);
816 if (runcntl & SPU_RUNCNTL_RUNNABLE)
817 spuctx_switch_state(ctx, SPU_UTIL_USER);
818
819 return 0;
820 }
821
822 if (ctx->flags & SPU_CREATE_NOSCHED) {
Christoph Hellwig50b520d2007-03-10 00:05:36 +0100823 spu_prio_wait(ctx);
Luke Browninge65c2f62007-12-20 16:39:59 +0900824 goto spu_activate_top;
825 }
Christoph Hellwig079cdb62007-02-13 21:54:23 +0100826
Luke Browninge65c2f62007-12-20 16:39:59 +0900827 spu_add_to_rq(ctx);
828
829 return 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500830}
831
Christoph Hellwig678b2ff2007-02-13 21:54:25 +0100832/**
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000833 * grab_runnable_context - try to find a runnable context
834 *
835 * Remove the highest priority context on the runqueue and return it
836 * to the caller. Returns %NULL if no runnable context was found.
837 */
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000838static struct spu_context *grab_runnable_context(int prio, int node)
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000839{
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000840 struct spu_context *ctx;
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000841 int best;
842
843 spin_lock(&spu_prio->runq_lock);
Masato Noguchi7e90b742007-07-20 21:39:43 +0200844 best = find_first_bit(spu_prio->bitmap, prio);
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000845 while (best < prio) {
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000846 struct list_head *rq = &spu_prio->runq[best];
847
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000848 list_for_each_entry(ctx, rq, rq) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300849 /* XXX(hch): check for affinity here as well */
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000850 if (__node_allowed(ctx, node)) {
851 __spu_del_from_rq(ctx);
852 goto found;
853 }
854 }
855 best++;
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000856 }
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000857 ctx = NULL;
858 found:
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000859 spin_unlock(&spu_prio->runq_lock);
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000860 return ctx;
861}
862
863static int __spu_deactivate(struct spu_context *ctx, int force, int max_prio)
864{
865 struct spu *spu = ctx->spu;
866 struct spu_context *new = NULL;
867
868 if (spu) {
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000869 new = grab_runnable_context(max_prio, spu->node);
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000870 if (new || force) {
Jeremy Kerrb65fe032008-09-04 15:02:47 +1000871 spu_unschedule(spu, ctx, new == NULL);
Luke Browninge65c2f62007-12-20 16:39:59 +0900872 if (new) {
873 if (new->flags & SPU_CREATE_NOSCHED)
874 wake_up(&new->stop_wq);
875 else {
876 spu_release(ctx);
877 spu_schedule(spu, new);
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900878 /* this one can't easily be made
879 interruptible */
880 mutex_lock(&ctx->state_mutex);
Luke Browninge65c2f62007-12-20 16:39:59 +0900881 }
882 }
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000883 }
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000884 }
885
886 return new != NULL;
887}
888
889/**
Christoph Hellwig678b2ff2007-02-13 21:54:25 +0100890 * spu_deactivate - unbind a context from it's physical spu
891 * @ctx: spu context to unbind
892 *
893 * Unbind @ctx from the physical spu it is running on and schedule
894 * the highest priority context to run on the freed physical spu.
895 */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500896void spu_deactivate(struct spu_context *ctx)
897{
Christoph Hellwig038200c2008-01-11 15:03:26 +1100898 spu_context_nospu_trace(spu_deactivate__enter, ctx);
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000899 __spu_deactivate(ctx, 1, MAX_PRIO);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500900}
901
Christoph Hellwigae7b4c52007-02-13 21:54:26 +0100902/**
Bob Nelson14748552007-07-20 21:39:53 +0200903 * spu_yield - yield a physical spu if others are waiting
Christoph Hellwigae7b4c52007-02-13 21:54:26 +0100904 * @ctx: spu context to yield
905 *
906 * Check if there is a higher priority context waiting and if yes
907 * unbind @ctx from the physical spu and schedule the highest
908 * priority context to run on the freed physical spu instead.
909 */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500910void spu_yield(struct spu_context *ctx)
911{
Christoph Hellwig038200c2008-01-11 15:03:26 +1100912 spu_context_nospu_trace(spu_yield__enter, ctx);
Christoph Hellwige5c0b9e2007-06-05 11:25:59 +1000913 if (!(ctx->flags & SPU_CREATE_NOSCHED)) {
914 mutex_lock(&ctx->state_mutex);
Andre Detsch27ec41d2007-07-20 21:39:33 +0200915 __spu_deactivate(ctx, 0, MAX_PRIO);
Christoph Hellwige5c0b9e2007-06-05 11:25:59 +1000916 mutex_unlock(&ctx->state_mutex);
917 }
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000918}
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500919
Christoph Hellwig486acd42007-07-20 21:39:54 +0200920static noinline void spusched_tick(struct spu_context *ctx)
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000921{
Luke Browninge65c2f62007-12-20 16:39:59 +0900922 struct spu_context *new = NULL;
923 struct spu *spu = NULL;
Luke Browninge65c2f62007-12-20 16:39:59 +0900924
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900925 if (spu_acquire(ctx))
926 BUG(); /* a kernel thread never has signals pending */
Luke Browninge65c2f62007-12-20 16:39:59 +0900927
928 if (ctx->state != SPU_STATE_RUNNABLE)
929 goto out;
Christoph Hellwigdf09cf32007-06-29 10:57:58 +1000930 if (ctx->flags & SPU_CREATE_NOSCHED)
Luke Browninge65c2f62007-12-20 16:39:59 +0900931 goto out;
Christoph Hellwigdf09cf32007-06-29 10:57:58 +1000932 if (ctx->policy == SCHED_FIFO)
Luke Browninge65c2f62007-12-20 16:39:59 +0900933 goto out;
Christoph Hellwigdf09cf32007-06-29 10:57:58 +1000934
Jeremy Kerrce7c1912008-03-04 20:17:02 +1100935 if (--ctx->time_slice && test_bit(SPU_SCHED_SPU_RUN, &ctx->sched_flags))
Luke Browninge65c2f62007-12-20 16:39:59 +0900936 goto out;
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000937
Luke Browninge65c2f62007-12-20 16:39:59 +0900938 spu = ctx->spu;
Christoph Hellwig038200c2008-01-11 15:03:26 +1100939
940 spu_context_trace(spusched_tick__preempt, ctx, spu);
941
Luke Browninge65c2f62007-12-20 16:39:59 +0900942 new = grab_runnable_context(ctx->prio + 1, spu->node);
943 if (new) {
Jeremy Kerrb65fe032008-09-04 15:02:47 +1000944 spu_unschedule(spu, ctx, 0);
Jeremy Kerrce7c1912008-03-04 20:17:02 +1100945 if (test_bit(SPU_SCHED_SPU_RUN, &ctx->sched_flags))
Jeremy Kerr4ef11012008-02-19 10:05:35 +1100946 spu_add_to_rq(ctx);
Christoph Hellwigbb5db292007-06-04 23:26:51 +1000947 } else {
Christoph Hellwig038200c2008-01-11 15:03:26 +1100948 spu_context_nospu_trace(spusched_tick__newslice, ctx);
Luke Browning2442a8b2008-06-06 11:26:54 +0800949 if (!ctx->time_slice)
950 ctx->time_slice++;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500951 }
Luke Browninge65c2f62007-12-20 16:39:59 +0900952out:
953 spu_release(ctx);
954
955 if (new)
956 spu_schedule(spu, new);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500957}
958
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000959/**
960 * count_active_contexts - count nr of active tasks
961 *
962 * Return the number of tasks currently running or waiting to run.
963 *
Christoph Hellwig486acd42007-07-20 21:39:54 +0200964 * Note that we don't take runq_lock / list_mutex here. Reading
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000965 * a single 32bit value is atomic on powerpc, and we don't care
966 * about memory ordering issues here.
967 */
968static unsigned long count_active_contexts(void)
969{
970 int nr_active = 0, node;
971
972 for (node = 0; node < MAX_NUMNODES; node++)
Christoph Hellwig486acd42007-07-20 21:39:54 +0200973 nr_active += cbe_spu_info[node].nr_active;
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000974 nr_active += spu_prio->nr_waiting;
975
976 return nr_active;
977}
978
979/**
Aegis Lin90608a22007-12-20 16:39:59 +0900980 * spu_calc_load - update the avenrun load estimates.
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000981 *
982 * No locking against reading these values from userspace, as for
983 * the CPU loadavg code.
984 */
Aegis Lin90608a22007-12-20 16:39:59 +0900985static void spu_calc_load(void)
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000986{
987 unsigned long active_tasks; /* fixed-point */
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000988
Aegis Lin90608a22007-12-20 16:39:59 +0900989 active_tasks = count_active_contexts() * FIXED_1;
Johannes Weinerf1675aa2018-10-26 15:06:11 -0700990 spu_avenrun[0] = calc_load(spu_avenrun[0], EXP_1, active_tasks);
991 spu_avenrun[1] = calc_load(spu_avenrun[1], EXP_5, active_tasks);
992 spu_avenrun[2] = calc_load(spu_avenrun[2], EXP_15, active_tasks);
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000993}
994
Christoph Hellwig37901802007-06-29 10:57:51 +1000995static void spusched_wake(unsigned long data)
996{
997 mod_timer(&spusched_timer, jiffies + SPUSCHED_TICK);
998 wake_up_process(spusched_task);
Aegis Lin90608a22007-12-20 16:39:59 +0900999}
1000
1001static void spuloadavg_wake(unsigned long data)
1002{
1003 mod_timer(&spuloadavg_timer, jiffies + LOAD_FREQ);
1004 spu_calc_load();
Christoph Hellwig37901802007-06-29 10:57:51 +10001005}
1006
1007static int spusched_thread(void *unused)
1008{
Christoph Hellwig486acd42007-07-20 21:39:54 +02001009 struct spu *spu;
Christoph Hellwig37901802007-06-29 10:57:51 +10001010 int node;
1011
Christoph Hellwig37901802007-06-29 10:57:51 +10001012 while (!kthread_should_stop()) {
1013 set_current_state(TASK_INTERRUPTIBLE);
1014 schedule();
1015 for (node = 0; node < MAX_NUMNODES; node++) {
Luke Browninge65c2f62007-12-20 16:39:59 +09001016 struct mutex *mtx = &cbe_spu_info[node].list_mutex;
1017
1018 mutex_lock(mtx);
1019 list_for_each_entry(spu, &cbe_spu_info[node].spus,
1020 cbe_list) {
1021 struct spu_context *ctx = spu->ctx;
1022
1023 if (ctx) {
Jeremy Kerr8d5636f2008-08-14 14:59:12 +10001024 get_spu_context(ctx);
Luke Browninge65c2f62007-12-20 16:39:59 +09001025 mutex_unlock(mtx);
1026 spusched_tick(ctx);
1027 mutex_lock(mtx);
Jeremy Kerr8d5636f2008-08-14 14:59:12 +10001028 put_spu_context(ctx);
Luke Browninge65c2f62007-12-20 16:39:59 +09001029 }
1030 }
1031 mutex_unlock(mtx);
Christoph Hellwig37901802007-06-29 10:57:51 +10001032 }
1033 }
1034
Christoph Hellwig37901802007-06-29 10:57:51 +10001035 return 0;
1036}
1037
Jeremy Kerr7cd58e42007-12-20 16:39:59 +09001038void spuctx_switch_state(struct spu_context *ctx,
1039 enum spu_utilization_state new_state)
1040{
1041 unsigned long long curtime;
1042 signed long long delta;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +09001043 struct spu *spu;
1044 enum spu_utilization_state old_state;
Maxim Shchetyninfabb6572008-07-05 05:05:39 +10001045 int node;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +09001046
Thomas Gleixnerf2dec1e2014-07-16 21:04:38 +00001047 curtime = ktime_get_ns();
Jeremy Kerr7cd58e42007-12-20 16:39:59 +09001048 delta = curtime - ctx->stats.tstamp;
1049
1050 WARN_ON(!mutex_is_locked(&ctx->state_mutex));
1051 WARN_ON(delta < 0);
1052
1053 spu = ctx->spu;
1054 old_state = ctx->stats.util_state;
1055 ctx->stats.util_state = new_state;
1056 ctx->stats.tstamp = curtime;
1057
1058 /*
1059 * Update the physical SPU utilization statistics.
1060 */
1061 if (spu) {
1062 ctx->stats.times[old_state] += delta;
1063 spu->stats.times[old_state] += delta;
1064 spu->stats.util_state = new_state;
1065 spu->stats.tstamp = curtime;
Maxim Shchetyninfabb6572008-07-05 05:05:39 +10001066 node = spu->node;
1067 if (old_state == SPU_UTIL_USER)
1068 atomic_dec(&cbe_spu_info[node].busy_spus);
Ilpo Järvinencb9808d2008-08-19 08:48:57 +03001069 if (new_state == SPU_UTIL_USER)
Maxim Shchetyninfabb6572008-07-05 05:05:39 +10001070 atomic_inc(&cbe_spu_info[node].busy_spus);
Jeremy Kerr7cd58e42007-12-20 16:39:59 +09001071 }
1072}
1073
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001074static int show_spu_loadavg(struct seq_file *s, void *private)
1075{
1076 int a, b, c;
1077
1078 a = spu_avenrun[0] + (FIXED_1/200);
1079 b = spu_avenrun[1] + (FIXED_1/200);
1080 c = spu_avenrun[2] + (FIXED_1/200);
1081
1082 /*
1083 * Note that last_pid doesn't really make much sense for the
Julio M. Merino Vidal9b1d21f2007-12-20 16:39:59 +09001084 * SPU loadavg (it even seems very odd on the CPU side...),
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001085 * but we include it here to have a 100% compatible interface.
1086 */
1087 seq_printf(s, "%d.%02d %d.%02d %d.%02d %ld/%d %d\n",
1088 LOAD_INT(a), LOAD_FRAC(a),
1089 LOAD_INT(b), LOAD_FRAC(b),
1090 LOAD_INT(c), LOAD_FRAC(c),
1091 count_active_contexts(),
1092 atomic_read(&nr_spu_contexts),
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08001093 task_active_pid_ns(current)->last_pid);
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001094 return 0;
1095}
1096
1097static int spu_loadavg_open(struct inode *inode, struct file *file)
1098{
1099 return single_open(file, show_spu_loadavg, NULL);
1100}
1101
1102static const struct file_operations spu_loadavg_fops = {
1103 .open = spu_loadavg_open,
1104 .read = seq_read,
1105 .llseek = seq_lseek,
1106 .release = single_release,
1107};
1108
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001109int __init spu_sched_init(void)
1110{
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001111 struct proc_dir_entry *entry;
1112 int err = -ENOMEM, i;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001113
Mark Nuttera68cf982006-10-04 17:26:12 +02001114 spu_prio = kzalloc(sizeof(struct spu_prio_array), GFP_KERNEL);
Christoph Hellwig37901802007-06-29 10:57:51 +10001115 if (!spu_prio)
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001116 goto out;
Christoph Hellwig37901802007-06-29 10:57:51 +10001117
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001118 for (i = 0; i < MAX_PRIO; i++) {
Christoph Hellwig079cdb62007-02-13 21:54:23 +01001119 INIT_LIST_HEAD(&spu_prio->runq[i]);
Mark Nuttera68cf982006-10-04 17:26:12 +02001120 __clear_bit(i, spu_prio->bitmap);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001121 }
Christoph Hellwig079cdb62007-02-13 21:54:23 +01001122 spin_lock_init(&spu_prio->runq_lock);
Christoph Hellwig37901802007-06-29 10:57:51 +10001123
Christoph Hellwigc77239b2007-06-29 10:58:05 +10001124 setup_timer(&spusched_timer, spusched_wake, 0);
Aegis Lin90608a22007-12-20 16:39:59 +09001125 setup_timer(&spuloadavg_timer, spuloadavg_wake, 0);
Christoph Hellwigc77239b2007-06-29 10:58:05 +10001126
Christoph Hellwig37901802007-06-29 10:57:51 +10001127 spusched_task = kthread_run(spusched_thread, NULL, "spusched");
1128 if (IS_ERR(spusched_task)) {
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001129 err = PTR_ERR(spusched_task);
1130 goto out_free_spu_prio;
Christoph Hellwig37901802007-06-29 10:57:51 +10001131 }
Jeremy Kerrf3f59be2007-06-29 10:57:54 +10001132
Aegis Lin90608a22007-12-20 16:39:59 +09001133 mod_timer(&spuloadavg_timer, 0);
1134
Denis V. Lunev66747132008-04-29 01:02:26 -07001135 entry = proc_create("spu_loadavg", 0, NULL, &spu_loadavg_fops);
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001136 if (!entry)
1137 goto out_stop_kthread;
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001138
Jeremy Kerrf3f59be2007-06-29 10:57:54 +10001139 pr_debug("spusched: tick: %d, min ticks: %d, default ticks: %d\n",
1140 SPUSCHED_TICK, MIN_SPU_TIMESLICE, DEF_SPU_TIMESLICE);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001141 return 0;
Christoph Hellwig37901802007-06-29 10:57:51 +10001142
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001143 out_stop_kthread:
1144 kthread_stop(spusched_task);
1145 out_free_spu_prio:
1146 kfree(spu_prio);
1147 out:
1148 return err;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001149}
1150
Sebastian Siewiord1450312007-07-20 21:39:29 +02001151void spu_sched_exit(void)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001152{
Christoph Hellwig486acd42007-07-20 21:39:54 +02001153 struct spu *spu;
Mark Nuttera68cf982006-10-04 17:26:12 +02001154 int node;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001155
Christoph Hellwig65de66f2007-06-29 10:58:02 +10001156 remove_proc_entry("spu_loadavg", NULL);
1157
Christoph Hellwigc77239b2007-06-29 10:58:05 +10001158 del_timer_sync(&spusched_timer);
Aegis Lin90608a22007-12-20 16:39:59 +09001159 del_timer_sync(&spuloadavg_timer);
Christoph Hellwig37901802007-06-29 10:57:51 +10001160 kthread_stop(spusched_task);
1161
Mark Nuttera68cf982006-10-04 17:26:12 +02001162 for (node = 0; node < MAX_NUMNODES; node++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +02001163 mutex_lock(&cbe_spu_info[node].list_mutex);
1164 list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list)
1165 if (spu->alloc_state != SPU_FREE)
1166 spu->alloc_state = SPU_FREE;
1167 mutex_unlock(&cbe_spu_info[node].list_mutex);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001168 }
Mark Nuttera68cf982006-10-04 17:26:12 +02001169 kfree(spu_prio);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001170}