spu_base.c 16.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Low-level SPU handling
 *
 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
 *
 * Author: Arnd Bergmann <arndb@de.ibm.com>
 *
 * 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
#undef DEBUG
24 25 26 27 28 29 30

#include <linux/interrupt.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/ptrace.h>
#include <linux/slab.h>
#include <linux/wait.h>
31 32
#include <linux/mm.h>
#include <linux/io.h>
33
#include <linux/mutex.h>
34
#include <linux/linux_logo.h>
35
#include <asm/spu.h>
36
#include <asm/spu_priv1.h>
37
#include <asm/xmon.h>
38
#include <asm/prom.h>
39

40
const struct spu_management_ops *spu_management_ops;
41 42
EXPORT_SYMBOL_GPL(spu_management_ops);

43
const struct spu_priv1_ops *spu_priv1_ops;
44
EXPORT_SYMBOL_GPL(spu_priv1_ops);
45

46 47
struct cbe_spu_info cbe_spu_info[MAX_NUMNODES];
EXPORT_SYMBOL_GPL(cbe_spu_info);
48

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/*
 * Protects cbe_spu_info and spu->number.
 */
static DEFINE_SPINLOCK(spu_lock);

/*
 * List of all spus in the system.
 *
 * This list is iterated by callers from irq context and callers that
 * want to sleep.  Thus modifications need to be done with both
 * spu_full_list_lock and spu_full_list_mutex held, while iterating
 * through it requires either of these locks.
 *
 * In addition spu_full_list_lock protects all assignmens to
 * spu->mm.
 */
static LIST_HEAD(spu_full_list);
static DEFINE_SPINLOCK(spu_full_list_lock);
static DEFINE_MUTEX(spu_full_list_mutex);
68

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
void spu_invalidate_slbs(struct spu *spu)
{
	struct spu_priv2 __iomem *priv2 = spu->priv2;

	if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
		out_be64(&priv2->slb_invalidate_all_W, 0UL);
}
EXPORT_SYMBOL_GPL(spu_invalidate_slbs);

/* This is called by the MM core when a segment size is changed, to
 * request a flush of all the SPEs using a given mm
 */
void spu_flush_all_slbs(struct mm_struct *mm)
{
	struct spu *spu;
	unsigned long flags;

86
	spin_lock_irqsave(&spu_full_list_lock, flags);
87 88 89 90
	list_for_each_entry(spu, &spu_full_list, full_list) {
		if (spu->mm == mm)
			spu_invalidate_slbs(spu);
	}
91
	spin_unlock_irqrestore(&spu_full_list_lock, flags);
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
}

/* The hack below stinks... try to do something better one of
 * these days... Does it even work properly with NR_CPUS == 1 ?
 */
static inline void mm_needs_global_tlbie(struct mm_struct *mm)
{
	int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;

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

void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
{
	unsigned long flags;

109
	spin_lock_irqsave(&spu_full_list_lock, flags);
110
	spu->mm = mm;
111
	spin_unlock_irqrestore(&spu_full_list_lock, flags);
112 113 114 115 116
	if (mm)
		mm_needs_global_tlbie(mm);
}
EXPORT_SYMBOL_GPL(spu_associate_mm);

117 118 119
static int __spu_trap_invalid_dma(struct spu *spu)
{
	pr_debug("%s\n", __FUNCTION__);
120
	spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
121 122 123 124 125 126
	return 0;
}

static int __spu_trap_dma_align(struct spu *spu)
{
	pr_debug("%s\n", __FUNCTION__);
127
	spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
128 129 130 131 132 133
	return 0;
}

static int __spu_trap_error(struct spu *spu)
{
	pr_debug("%s\n", __FUNCTION__);
134
	spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
135 136 137 138 139 140
	return 0;
}

static void spu_restart_dma(struct spu *spu)
{
	struct spu_priv2 __iomem *priv2 = spu->priv2;
141

142
	if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
143
		out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
144 145 146 147
}

static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
{
148 149
	struct spu_priv2 __iomem *priv2 = spu->priv2;
	struct mm_struct *mm = spu->mm;
150
	u64 esid, vsid, llp;
151
	int psize;
152 153 154

	pr_debug("%s\n", __FUNCTION__);

155
	if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
156 157 158
		/* SLBs are pre-loaded for context switch, so
		 * we should never get here!
		 */
159 160 161
		printk("%s: invalid access during switch!\n", __func__);
		return 1;
	}
162 163 164 165
	esid = (ea & ESID_MASK) | SLB_ESID_V;

	switch(REGION_ID(ea)) {
	case USER_REGION_ID:
166 167 168 169
#ifdef CONFIG_PPC_MM_SLICES
		psize = get_slice_psize(mm, ea);
#else
		psize = mm->context.user_psize;
170 171
#endif
		vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) |
172
				SLB_VSID_USER;
173 174
		break;
	case VMALLOC_REGION_ID:
175 176 177 178
		if (ea < VMALLOC_END)
			psize = mmu_vmalloc_psize;
		else
			psize = mmu_io_psize;
179
		vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
180
			SLB_VSID_KERNEL;
181 182
		break;
	case KERNEL_REGION_ID:
183
		psize = mmu_linear_psize;
184
		vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
185
			SLB_VSID_KERNEL;
186 187
		break;
	default:
188 189 190
		/* Future: support kernel segments so that drivers
		 * can use SPUs.
		 */
191 192 193
		pr_debug("invalid region access at %016lx\n", ea);
		return 1;
	}
194
	llp = mmu_psize_defs[psize].sllp;
195

196
	out_be64(&priv2->slb_index_W, spu->slb_replace);
197
	out_be64(&priv2->slb_vsid_RW, vsid | llp);
198 199 200
	out_be64(&priv2->slb_esid_RW, esid);

	spu->slb_replace++;
201 202 203 204
	if (spu->slb_replace >= 8)
		spu->slb_replace = 0;

	spu_restart_dma(spu);
205
	spu->stats.slb_flt++;
206 207 208
	return 0;
}

209
extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
210
static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
211
{
212
	pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
213

214 215 216 217 218 219 220 221 222
	/* Handle kernel space hash faults immediately.
	   User hash faults need to be deferred to process context. */
	if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
	    && REGION_ID(ea) != USER_REGION_ID
	    && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
		spu_restart_dma(spu);
		return 0;
	}

223
	if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
224 225 226
		printk("%s: invalid access during switch!\n", __func__);
		return 1;
	}
227

228 229 230
	spu->dar = ea;
	spu->dsisr = dsisr;
	mb();
231
	spu->stop_callback(spu);
232 233 234 235
	return 0;
}

static irqreturn_t
236
spu_irq_class_0(int irq, void *data)
237 238 239 240 241
{
	struct spu *spu;

	spu = data;
	spu->class_0_pending = 1;
242
	spu->stop_callback(spu);
243 244 245 246

	return IRQ_HANDLED;
}

247
int
248 249
spu_irq_class_0_bottom(struct spu *spu)
{
250
	unsigned long stat, mask;
251
	unsigned long flags;
252 253 254

	spu->class_0_pending = 0;

255
	spin_lock_irqsave(&spu->register_lock, flags);
256 257
	mask = spu_int_mask_get(spu, 0);
	stat = spu_int_stat_get(spu, 0);
258

259 260
	stat &= mask;

261
	if (stat & 1) /* invalid DMA alignment */
262 263
		__spu_trap_dma_align(spu);

264 265 266
	if (stat & 2) /* invalid MFC DMA */
		__spu_trap_invalid_dma(spu);

267 268 269
	if (stat & 4) /* error on SPU */
		__spu_trap_error(spu);

270
	spu_int_stat_clear(spu, 0, stat);
271
	spin_unlock_irqrestore(&spu->register_lock, flags);
272 273

	return (stat & 0x7) ? -EIO : 0;
274
}
275
EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
276 277

static irqreturn_t
278
spu_irq_class_1(int irq, void *data)
279 280
{
	struct spu *spu;
281
	unsigned long stat, mask, dar, dsisr;
282 283

	spu = data;
284 285 286

	/* atomically read & clear class1 status. */
	spin_lock(&spu->register_lock);
287 288 289 290
	mask  = spu_int_mask_get(spu, 1);
	stat  = spu_int_stat_get(spu, 1) & mask;
	dar   = spu_mfc_dar_get(spu);
	dsisr = spu_mfc_dsisr_get(spu);
291
	if (stat & 2) /* mapping fault */
292 293
		spu_mfc_dsisr_set(spu, 0ul);
	spu_int_stat_clear(spu, 1, stat);
294
	spin_unlock(&spu->register_lock);
295 296
	pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
			dar, dsisr);
297 298 299 300 301

	if (stat & 1) /* segment fault */
		__spu_trap_data_seg(spu, dar);

	if (stat & 2) { /* mapping fault */
302
		__spu_trap_data_map(spu, dar, dsisr);
303 304 305 306 307 308 309 310 311 312 313 314
	}

	if (stat & 4) /* ls compare & suspend on get */
		;

	if (stat & 8) /* ls compare & suspend on put */
		;

	return stat ? IRQ_HANDLED : IRQ_NONE;
}

static irqreturn_t
315
spu_irq_class_2(int irq, void *data)
316 317 318
{
	struct spu *spu;
	unsigned long stat;
319
	unsigned long mask;
320 321

	spu = data;
322
	spin_lock(&spu->register_lock);
323 324
	stat = spu_int_stat_get(spu, 2);
	mask = spu_int_mask_get(spu, 2);
325 326 327 328 329 330 331 332 333 334 335
	/* ignore interrupts we're not waiting for */
	stat &= mask;
	/*
	 * mailbox interrupts (0x1 and 0x10) are level triggered.
	 * mask them now before acknowledging.
	 */
	if (stat & 0x11)
		spu_int_mask_and(spu, 2, ~(stat & 0x11));
	/* acknowledge all interrupts before the callbacks */
	spu_int_stat_clear(spu, 2, stat);
	spin_unlock(&spu->register_lock);
336

337
	pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
338 339

	if (stat & 1)  /* PPC core mailbox */
340
		spu->ibox_callback(spu);
341 342

	if (stat & 2) /* SPU stop-and-signal */
343
		spu->stop_callback(spu);
344 345

	if (stat & 4) /* SPU halted */
346
		spu->stop_callback(spu);
347 348

	if (stat & 8) /* DMA tag group complete */
349
		spu->mfc_callback(spu);
350 351

	if (stat & 0x10) /* SPU mailbox threshold */
352
		spu->wbox_callback(spu);
353

354
	spu->stats.class2_intr++;
355 356 357
	return stat ? IRQ_HANDLED : IRQ_NONE;
}

358
static int spu_request_irqs(struct spu *spu)
359
{
360
	int ret = 0;
361

362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
	if (spu->irqs[0] != NO_IRQ) {
		snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
			 spu->number);
		ret = request_irq(spu->irqs[0], spu_irq_class_0,
				  IRQF_DISABLED,
				  spu->irq_c0, spu);
		if (ret)
			goto bail0;
	}
	if (spu->irqs[1] != NO_IRQ) {
		snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
			 spu->number);
		ret = request_irq(spu->irqs[1], spu_irq_class_1,
				  IRQF_DISABLED,
				  spu->irq_c1, spu);
		if (ret)
			goto bail1;
	}
	if (spu->irqs[2] != NO_IRQ) {
		snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
			 spu->number);
		ret = request_irq(spu->irqs[2], spu_irq_class_2,
				  IRQF_DISABLED,
				  spu->irq_c2, spu);
		if (ret)
			goto bail2;
	}
	return 0;
390

391 392 393 394 395 396 397
bail2:
	if (spu->irqs[1] != NO_IRQ)
		free_irq(spu->irqs[1], spu);
bail1:
	if (spu->irqs[0] != NO_IRQ)
		free_irq(spu->irqs[0], spu);
bail0:
398 399 400
	return ret;
}

401
static void spu_free_irqs(struct spu *spu)
402
{
403 404 405 406 407 408
	if (spu->irqs[0] != NO_IRQ)
		free_irq(spu->irqs[0], spu);
	if (spu->irqs[1] != NO_IRQ)
		free_irq(spu->irqs[1], spu);
	if (spu->irqs[2] != NO_IRQ)
		free_irq(spu->irqs[2], spu);
409 410
}

411
void spu_init_channels(struct spu *spu)
412 413 414 415 416 417 418 419 420 421 422 423
{
	static const struct {
		 unsigned channel;
		 unsigned count;
	} zero_list[] = {
		{ 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
		{ 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
	}, count_list[] = {
		{ 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
		{ 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
		{ 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
	};
424
	struct spu_priv2 __iomem *priv2;
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
	int i;

	priv2 = spu->priv2;

	/* initialize all channel data to zero */
	for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
		int count;

		out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
		for (count = 0; count < zero_list[i].count; count++)
			out_be64(&priv2->spu_chnldata_RW, 0);
	}

	/* initialize channel counts to meaningful values */
	for (i = 0; i < ARRAY_SIZE(count_list); i++) {
		out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
		out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
	}
}
444
EXPORT_SYMBOL_GPL(spu_init_channels);
445

446 447 448 449 450 451 452 453 454
static int spu_shutdown(struct sys_device *sysdev)
{
	struct spu *spu = container_of(sysdev, struct spu, sysdev);

	spu_free_irqs(spu);
	spu_destroy_spu(spu);
	return 0;
}

455
struct sysdev_class spu_sysdev_class = {
456 457
	set_kset_name("spu"),
	.shutdown = spu_shutdown,
458 459
};

460 461 462 463
int spu_add_sysdev_attr(struct sysdev_attribute *attr)
{
	struct spu *spu;

464
	mutex_lock(&spu_full_list_mutex);
465 466
	list_for_each_entry(spu, &spu_full_list, full_list)
		sysdev_create_file(&spu->sysdev, attr);
467
	mutex_unlock(&spu_full_list_mutex);
468 469 470 471 472 473 474 475 476

	return 0;
}
EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);

int spu_add_sysdev_attr_group(struct attribute_group *attrs)
{
	struct spu *spu;

477
	mutex_lock(&spu_full_list_mutex);
478 479
	list_for_each_entry(spu, &spu_full_list, full_list)
		sysfs_create_group(&spu->sysdev.kobj, attrs);
480
	mutex_unlock(&spu_full_list_mutex);
481 482 483 484 485 486 487 488 489 490

	return 0;
}
EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);


void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
{
	struct spu *spu;

491
	mutex_lock(&spu_full_list_mutex);
492 493
	list_for_each_entry(spu, &spu_full_list, full_list)
		sysdev_remove_file(&spu->sysdev, attr);
494
	mutex_unlock(&spu_full_list_mutex);
495 496 497 498 499 500 501
}
EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);

void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
{
	struct spu *spu;

502
	mutex_lock(&spu_full_list_mutex);
503 504
	list_for_each_entry(spu, &spu_full_list, full_list)
		sysfs_remove_group(&spu->sysdev.kobj, attrs);
505
	mutex_unlock(&spu_full_list_mutex);
506 507 508
}
EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);

509 510 511 512 513 514 515 516 517 518 519 520 521
static int spu_create_sysdev(struct spu *spu)
{
	int ret;

	spu->sysdev.id = spu->number;
	spu->sysdev.cls = &spu_sysdev_class;
	ret = sysdev_register(&spu->sysdev);
	if (ret) {
		printk(KERN_ERR "Can't register SPU %d with sysfs\n",
				spu->number);
		return ret;
	}

522
	sysfs_add_device_to_node(&spu->sysdev, spu->node);
523 524 525 526

	return 0;
}

527
static int __init create_spu(void *data)
528 529 530 531
{
	struct spu *spu;
	int ret;
	static int number;
532
	unsigned long flags;
533
	struct timespec ts;
534 535

	ret = -ENOMEM;
536
	spu = kzalloc(sizeof (*spu), GFP_KERNEL);
537 538 539
	if (!spu)
		goto out;

540 541
	spu->alloc_state = SPU_FREE;

542
	spin_lock_init(&spu->register_lock);
543
	spin_lock(&spu_lock);
544
	spu->number = number++;
545
	spin_unlock(&spu_lock);
546 547

	ret = spu_create_spu(spu, data);
548

549 550 551
	if (ret)
		goto out_free;

552
	spu_mfc_sdr_setup(spu);
553
	spu_mfc_sr1_set(spu, 0x33);
554 555
	ret = spu_request_irqs(spu);
	if (ret)
556
		goto out_destroy;
557

558 559 560 561
	ret = spu_create_sysdev(spu);
	if (ret)
		goto out_free_irqs;

562
	mutex_lock(&cbe_spu_info[spu->node].list_mutex);
563 564
	list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
	cbe_spu_info[spu->node].n_spus++;
565
	mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
566 567 568

	mutex_lock(&spu_full_list_mutex);
	spin_lock_irqsave(&spu_full_list_lock, flags);
569
	list_add(&spu->full_list, &spu_full_list);
570 571
	spin_unlock_irqrestore(&spu_full_list_lock, flags);
	mutex_unlock(&spu_full_list_mutex);
572

573 574 575
	spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
	ktime_get_ts(&ts);
	spu->stats.tstamp = timespec_to_ns(&ts);
576

577 578
	INIT_LIST_HEAD(&spu->aff_list);

579 580
	goto out;

581 582
out_free_irqs:
	spu_free_irqs(spu);
583 584
out_destroy:
	spu_destroy_spu(spu);
585 586 587 588 589 590
out_free:
	kfree(spu);
out:
	return ret;
}

591 592 593 594 595 596 597
static const char *spu_state_names[] = {
	"user", "system", "iowait", "idle"
};

static unsigned long long spu_acct_time(struct spu *spu,
		enum spu_utilization_state state)
{
598
	struct timespec ts;
599 600
	unsigned long long time = spu->stats.times[state];

601 602 603 604 605 606 607 608 609
	/*
	 * If the spu is idle or the context is stopped, utilization
	 * statistics are not updated.  Apply the time delta from the
	 * last recorded state of the spu.
	 */
	if (spu->stats.util_state == state) {
		ktime_get_ts(&ts);
		time += timespec_to_ns(&ts) - spu->stats.tstamp;
	}
610

611
	return time / NSEC_PER_MSEC;
612 613 614 615 616 617 618 619 620
}


static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf)
{
	struct spu *spu = container_of(sysdev, struct spu, sysdev);

	return sprintf(buf, "%s %llu %llu %llu %llu "
		      "%llu %llu %llu %llu %llu %llu %llu %llu\n",
621
		spu_state_names[spu->stats.util_state],
622 623 624
		spu_acct_time(spu, SPU_UTIL_USER),
		spu_acct_time(spu, SPU_UTIL_SYSTEM),
		spu_acct_time(spu, SPU_UTIL_IOWAIT),
625
		spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
626 627 628 629 630 631 632 633 634 635 636 637
		spu->stats.vol_ctx_switch,
		spu->stats.invol_ctx_switch,
		spu->stats.slb_flt,
		spu->stats.hash_flt,
		spu->stats.min_flt,
		spu->stats.maj_flt,
		spu->stats.class2_intr,
		spu->stats.libassist);
}

static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);

638 639
static int __init init_spu_base(void)
{
640
	int i, ret = 0;
641

642
	for (i = 0; i < MAX_NUMNODES; i++) {
643
		mutex_init(&cbe_spu_info[i].list_mutex);
644 645
		INIT_LIST_HEAD(&cbe_spu_info[i].spus);
	}
646

647
	if (!spu_management_ops)
648
		goto out;
649

650 651 652
	/* create sysdev class for spus */
	ret = sysdev_class_register(&spu_sysdev_class);
	if (ret)
653
		goto out;
654

655 656
	ret = spu_enumerate_spus(create_spu);

657
	if (ret < 0) {
658 659
		printk(KERN_WARNING "%s: Error initializing spus\n",
			__FUNCTION__);
660
		goto out_unregister_sysdev_class;
661
	}
662

663 664 665 666 667 668 669 670 671 672 673 674
	if (ret > 0) {
		/*
		 * We cannot put the forward declaration in
		 * <linux/linux_logo.h> because of conflicting session type
		 * conflicts for const and __initdata with different compiler
		 * versions
		 */
		extern const struct linux_logo logo_spe_clut224;

		fb_append_extra_logo(&logo_spe_clut224, ret);
	}

675
	mutex_lock(&spu_full_list_mutex);
676
	xmon_register_spus(&spu_full_list);
677
	crash_register_spus(&spu_full_list);
678
	mutex_unlock(&spu_full_list_mutex);
679 680
	spu_add_sysdev_attr(&attr_stat);

681
	spu_init_affinity();
682

683 684 685 686 687
	return 0;

 out_unregister_sysdev_class:
	sysdev_class_unregister(&spu_sysdev_class);
 out:
688 689 690 691 692 693
	return ret;
}
module_init(init_spu_base);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");