sched.c 8.4 KB
Newer Older
1 2 3 4 5
/* sched.c - SPU scheduler.
 *
 * Copyright (C) IBM 2005
 * Author: Mark Nutter <mnutter@us.ibm.com>
 *
6
 * 2006-03-31	NUMA domains added.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

23 24
#undef DEBUG

25 26 27 28 29 30 31 32 33 34 35
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/completion.h>
#include <linux/vmalloc.h>
#include <linux/smp.h>
#include <linux/smp_lock.h>
#include <linux/stddef.h>
#include <linux/unistd.h>
36 37
#include <linux/numa.h>
#include <linux/mutex.h>
38
#include <linux/notifier.h>
39 40 41 42 43

#include <asm/io.h>
#include <asm/mmu_context.h>
#include <asm/spu.h>
#include <asm/spu_csa.h>
44
#include <asm/spu_priv1.h>
45 46
#include "spufs.h"

47
#define SPU_MIN_TIMESLICE 	(100 * HZ / 1000)
48

49 50 51 52
#define SPU_BITMAP_SIZE (((MAX_PRIO+BITS_PER_LONG)/BITS_PER_LONG)+1)
struct spu_prio_array {
	unsigned long bitmap[SPU_BITMAP_SIZE];
	wait_queue_head_t waitq[MAX_PRIO];
53 54
	struct list_head active_list[MAX_NUMNODES];
	struct mutex active_mutex[MAX_NUMNODES];
55 56
};

57
static struct spu_prio_array *spu_prio;
58

59
static inline int node_allowed(int node)
60
{
61
	cpumask_t mask;
62

63 64 65 66 67 68
	if (!nr_cpus_node(node))
		return 0;
	mask = node_to_cpumask(node);
	if (!cpus_intersects(mask, current->cpus_allowed))
		return 0;
	return 1;
69 70 71 72
}

static inline void mm_needs_global_tlbie(struct mm_struct *mm)
{
73 74
	int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;

75
	/* Global TLBIE broadcast required with SPEs. */
76
	__cpus_setall(&mm->cpu_vm_mask, nr);
77 78
}

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
static BLOCKING_NOTIFIER_HEAD(spu_switch_notifier);

static void spu_switch_notify(struct spu *spu, struct spu_context *ctx)
{
	blocking_notifier_call_chain(&spu_switch_notifier,
			    ctx ? ctx->object_id : 0, spu);
}

int spu_switch_event_register(struct notifier_block * n)
{
	return blocking_notifier_chain_register(&spu_switch_notifier, n);
}

int spu_switch_event_unregister(struct notifier_block * n)
{
	return blocking_notifier_chain_unregister(&spu_switch_notifier, n);
}


98 99
static inline void bind_context(struct spu *spu, struct spu_context *ctx)
{
100 101
	pr_debug("%s: pid=%d SPU=%d NODE=%d\n", __FUNCTION__, current->pid,
		 spu->number, spu->node);
102 103 104 105 106 107 108 109 110 111
	spu->ctx = ctx;
	spu->flags = 0;
	ctx->spu = spu;
	ctx->ops = &spu_hw_ops;
	spu->pid = current->pid;
	spu->prio = current->prio;
	spu->mm = ctx->owner;
	mm_needs_global_tlbie(spu->mm);
	spu->ibox_callback = spufs_ibox_callback;
	spu->wbox_callback = spufs_wbox_callback;
112
	spu->stop_callback = spufs_stop_callback;
113
	spu->mfc_callback = spufs_mfc_callback;
114
	spu->dma_callback = spufs_dma_callback;
115
	mb();
116
	spu_unmap_mappings(ctx);
117
	spu_restore(&ctx->csa, spu);
118
	spu->timestamp = jiffies;
119
	spu_cpu_affinity_set(spu, raw_smp_processor_id());
120
	spu_switch_notify(spu, ctx);
121 122 123 124
}

static inline void unbind_context(struct spu *spu, struct spu_context *ctx)
{
125 126
	pr_debug("%s: unbind pid=%d SPU=%d NODE=%d\n", __FUNCTION__,
		 spu->pid, spu->number, spu->node);
127
	spu_switch_notify(spu, NULL);
128
	spu_unmap_mappings(ctx);
129
	spu_save(&ctx->csa, spu);
130
	spu->timestamp = jiffies;
131 132 133
	ctx->state = SPU_STATE_SAVED;
	spu->ibox_callback = NULL;
	spu->wbox_callback = NULL;
134
	spu->stop_callback = NULL;
135
	spu->mfc_callback = NULL;
136
	spu->dma_callback = NULL;
137 138 139 140 141
	spu->mm = NULL;
	spu->pid = 0;
	spu->prio = MAX_PRIO;
	ctx->ops = &spu_backing_ops;
	ctx->spu = NULL;
142
	spu->flags = 0;
143 144 145
	spu->ctx = NULL;
}

146 147
static inline void spu_add_wq(wait_queue_head_t * wq, wait_queue_t * wait,
			      int prio)
148
{
149 150
	prepare_to_wait_exclusive(wq, wait, TASK_INTERRUPTIBLE);
	set_bit(prio, spu_prio->bitmap);
151
}
152

153 154
static inline void spu_del_wq(wait_queue_head_t * wq, wait_queue_t * wait,
			      int prio)
155
{
156
	u64 flags;
157

158 159 160 161 162 163 164 165 166
	__set_current_state(TASK_RUNNING);

	spin_lock_irqsave(&wq->lock, flags);

	remove_wait_queue_locked(wq, wait);
	if (list_empty(&wq->task_list))
		clear_bit(prio, spu_prio->bitmap);

	spin_unlock_irqrestore(&wq->lock, flags);
167 168
}

169
static void spu_prio_wait(struct spu_context *ctx, u64 flags)
170
{
171 172 173
	int prio = current->prio;
	wait_queue_head_t *wq = &spu_prio->waitq[prio];
	DEFINE_WAIT(wait);
174

175 176 177 178 179 180 181 182 183 184 185
	if (ctx->spu)
		return;

	spu_add_wq(wq, &wait, prio);

	if (!signal_pending(current)) {
		up_write(&ctx->state_sema);
		pr_debug("%s: pid=%d prio=%d\n", __FUNCTION__,
			 current->pid, current->prio);
		schedule();
		down_write(&ctx->state_sema);
186
	}
187 188

	spu_del_wq(wq, &wait, prio);
189 190
}

191
static void spu_prio_wakeup(void)
192
{
193 194 195 196 197
	int best = sched_find_first_bit(spu_prio->bitmap);
	if (best < MAX_PRIO) {
		wait_queue_head_t *wq = &spu_prio->waitq[best];
		wake_up_interruptible_nr(wq, 1);
	}
198 199 200 201
}

static int get_active_spu(struct spu *spu)
{
202
	int node = spu->node;
203 204 205
	struct spu *tmp;
	int rc = 0;

206 207
	mutex_lock(&spu_prio->active_mutex[node]);
	list_for_each_entry(tmp, &spu_prio->active_list[node], list) {
208
		if (tmp == spu) {
209
			list_del_init(&spu->list);
210 211 212 213
			rc = 1;
			break;
		}
	}
214
	mutex_unlock(&spu_prio->active_mutex[node]);
215 216 217 218 219
	return rc;
}

static void put_active_spu(struct spu *spu)
{
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
	int node = spu->node;

	mutex_lock(&spu_prio->active_mutex[node]);
	list_add_tail(&spu->list, &spu_prio->active_list[node]);
	mutex_unlock(&spu_prio->active_mutex[node]);
}

static struct spu *spu_get_idle(struct spu_context *ctx, u64 flags)
{
	struct spu *spu = NULL;
	int node = cpu_to_node(raw_smp_processor_id());
	int n;

	for (n = 0; n < MAX_NUMNODES; n++, node++) {
		node = (node < MAX_NUMNODES) ? node : 0;
		if (!node_allowed(node))
			continue;
		spu = spu_alloc_node(node);
		if (spu)
			break;
	}
	return spu;
}
243

244 245 246 247 248 249 250
static inline struct spu *spu_get(struct spu_context *ctx, u64 flags)
{
	/* Future: spu_get_idle() if possible,
	 * otherwise try to preempt an active
	 * context.
	 */
	return spu_get_idle(ctx, flags);
251 252
}

253 254
/* The three externally callable interfaces
 * for the scheduler begin here.
255
 *
256 257 258
 *	spu_activate	- bind a context to SPU, waiting as needed.
 *	spu_deactivate	- unbind a context from its SPU.
 *	spu_yield	- yield an SPU if others are waiting.
259 260 261 262 263
 */

int spu_activate(struct spu_context *ctx, u64 flags)
{
	struct spu *spu;
264
	int ret = 0;
265

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
	for (;;) {
		if (ctx->spu)
			return 0;
		spu = spu_get(ctx, flags);
		if (spu != NULL) {
			if (ctx->spu != NULL) {
				spu_free(spu);
				spu_prio_wakeup();
				break;
			}
			bind_context(spu, ctx);
			put_active_spu(spu);
			break;
		}
		spu_prio_wait(ctx, flags);
		if (signal_pending(current)) {
			ret = -ERESTARTSYS;
			spu_prio_wakeup();
			break;
		}
	}
	return ret;
288 289 290 291 292 293 294 295 296 297 298 299
}

void spu_deactivate(struct spu_context *ctx)
{
	struct spu *spu;
	int needs_idle;

	spu = ctx->spu;
	if (!spu)
		return;
	needs_idle = get_active_spu(spu);
	unbind_context(spu, ctx);
300 301 302 303
	if (needs_idle) {
		spu_free(spu);
		spu_prio_wakeup();
	}
304 305 306 307 308
}

void spu_yield(struct spu_context *ctx)
{
	struct spu *spu;
309
	int need_yield = 0;
310

311 312 313 314 315 316 317 318 319 320 321 322 323 324
	if (down_write_trylock(&ctx->state_sema)) {
		if ((spu = ctx->spu) != NULL) {
			int best = sched_find_first_bit(spu_prio->bitmap);
			if (best < MAX_PRIO) {
				pr_debug("%s: yielding SPU %d NODE %d\n",
					 __FUNCTION__, spu->number, spu->node);
				spu_deactivate(ctx);
				ctx->state = SPU_STATE_SAVED;
				need_yield = 1;
			} else {
				spu->prio = MAX_PRIO;
			}
		}
		up_write(&ctx->state_sema);
325
	}
326 327
	if (unlikely(need_yield))
		yield();
328 329 330 331 332 333
}

int __init spu_sched_init(void)
{
	int i;

334 335 336
	spu_prio = kzalloc(sizeof(struct spu_prio_array), GFP_KERNEL);
	if (!spu_prio) {
		printk(KERN_WARNING "%s: Unable to allocate priority queue.\n",
337 338 339 340
		       __FUNCTION__);
		return 1;
	}
	for (i = 0; i < MAX_PRIO; i++) {
341 342
		init_waitqueue_head(&spu_prio->waitq[i]);
		__clear_bit(i, spu_prio->bitmap);
343
	}
344 345 346 347
	__set_bit(MAX_PRIO, spu_prio->bitmap);
	for (i = 0; i < MAX_NUMNODES; i++) {
		mutex_init(&spu_prio->active_mutex[i]);
		INIT_LIST_HEAD(&spu_prio->active_list[i]);
348 349 350 351 352 353
	}
	return 0;
}

void __exit spu_sched_exit(void)
{
354 355 356 357 358 359 360 361 362 363 364
	struct spu *spu, *tmp;
	int node;

	for (node = 0; node < MAX_NUMNODES; node++) {
		mutex_lock(&spu_prio->active_mutex[node]);
		list_for_each_entry_safe(spu, tmp, &spu_prio->active_list[node],
					 list) {
			list_del_init(&spu->list);
			spu_free(spu);
		}
		mutex_unlock(&spu_prio->active_mutex[node]);
365
	}
366
	kfree(spu_prio);
367
}