[PATCH] spufs: implement mfc access for PPE-side DMA
[deliverable/linux.git] / arch / powerpc / platforms / cell / spu_base.c
CommitLineData
67207b96
AB
1/*
2 * Low-level SPU handling
3 *
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
5 *
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
7 *
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
3b3d22cb 23#undef DEBUG
67207b96
AB
24
25#include <linux/interrupt.h>
26#include <linux/list.h>
27#include <linux/module.h>
28#include <linux/poll.h>
29#include <linux/ptrace.h>
30#include <linux/slab.h>
31#include <linux/wait.h>
32
33#include <asm/io.h>
34#include <asm/prom.h>
14cc3e2b 35#include <linux/mutex.h>
67207b96
AB
36#include <asm/spu.h>
37#include <asm/mmu_context.h>
38
39#include "interrupt.h"
40
41static int __spu_trap_invalid_dma(struct spu *spu)
42{
43 pr_debug("%s\n", __FUNCTION__);
44 force_sig(SIGBUS, /* info, */ current);
45 return 0;
46}
47
48static int __spu_trap_dma_align(struct spu *spu)
49{
50 pr_debug("%s\n", __FUNCTION__);
51 force_sig(SIGBUS, /* info, */ current);
52 return 0;
53}
54
55static int __spu_trap_error(struct spu *spu)
56{
57 pr_debug("%s\n", __FUNCTION__);
58 force_sig(SIGILL, /* info, */ current);
59 return 0;
60}
61
62static void spu_restart_dma(struct spu *spu)
63{
64 struct spu_priv2 __iomem *priv2 = spu->priv2;
5473af04 65
8837d921 66 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
5473af04 67 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
67207b96
AB
68}
69
70static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
71{
8b3d6663
AB
72 struct spu_priv2 __iomem *priv2 = spu->priv2;
73 struct mm_struct *mm = spu->mm;
74 u64 esid, vsid;
67207b96
AB
75
76 pr_debug("%s\n", __FUNCTION__);
77
8837d921 78 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
8b3d6663
AB
79 /* SLBs are pre-loaded for context switch, so
80 * we should never get here!
81 */
5473af04
MN
82 printk("%s: invalid access during switch!\n", __func__);
83 return 1;
84 }
8b3d6663
AB
85 if (!mm || (REGION_ID(ea) != USER_REGION_ID)) {
86 /* Future: support kernel segments so that drivers
87 * can use SPUs.
88 */
67207b96
AB
89 pr_debug("invalid region access at %016lx\n", ea);
90 return 1;
91 }
92
8b3d6663
AB
93 esid = (ea & ESID_MASK) | SLB_ESID_V;
94 vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) | SLB_VSID_USER;
95 if (in_hugepage_area(mm->context, ea))
96 vsid |= SLB_VSID_L;
67207b96 97
8b3d6663
AB
98 out_be64(&priv2->slb_index_W, spu->slb_replace);
99 out_be64(&priv2->slb_vsid_RW, vsid);
100 out_be64(&priv2->slb_esid_RW, esid);
101
102 spu->slb_replace++;
67207b96
AB
103 if (spu->slb_replace >= 8)
104 spu->slb_replace = 0;
105
67207b96
AB
106 spu_restart_dma(spu);
107
67207b96
AB
108 return 0;
109}
110
5473af04 111extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
8b3d6663 112static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
67207b96 113{
a33a7d73 114 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
67207b96 115
5473af04
MN
116 /* Handle kernel space hash faults immediately.
117 User hash faults need to be deferred to process context. */
118 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
119 && REGION_ID(ea) != USER_REGION_ID
120 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
121 spu_restart_dma(spu);
122 return 0;
123 }
124
8837d921 125 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
5473af04
MN
126 printk("%s: invalid access during switch!\n", __func__);
127 return 1;
128 }
67207b96 129
8b3d6663
AB
130 spu->dar = ea;
131 spu->dsisr = dsisr;
132 mb();
5110459f
AB
133 if (spu->stop_callback)
134 spu->stop_callback(spu);
67207b96
AB
135 return 0;
136}
137
138static int __spu_trap_mailbox(struct spu *spu)
139{
8b3d6663
AB
140 if (spu->ibox_callback)
141 spu->ibox_callback(spu);
67207b96
AB
142
143 /* atomically disable SPU mailbox interrupts */
144 spin_lock(&spu->register_lock);
f0831acc 145 spu_int_mask_and(spu, 2, ~0x1);
67207b96
AB
146 spin_unlock(&spu->register_lock);
147 return 0;
148}
149
150static int __spu_trap_stop(struct spu *spu)
151{
152 pr_debug("%s\n", __FUNCTION__);
153 spu->stop_code = in_be32(&spu->problem->spu_status_R);
5110459f
AB
154 if (spu->stop_callback)
155 spu->stop_callback(spu);
67207b96
AB
156 return 0;
157}
158
159static int __spu_trap_halt(struct spu *spu)
160{
161 pr_debug("%s\n", __FUNCTION__);
162 spu->stop_code = in_be32(&spu->problem->spu_status_R);
5110459f
AB
163 if (spu->stop_callback)
164 spu->stop_callback(spu);
67207b96
AB
165 return 0;
166}
167
168static int __spu_trap_tag_group(struct spu *spu)
169{
170 pr_debug("%s\n", __FUNCTION__);
a33a7d73 171 spu->mfc_callback(spu);
67207b96
AB
172 return 0;
173}
174
175static int __spu_trap_spubox(struct spu *spu)
176{
8b3d6663
AB
177 if (spu->wbox_callback)
178 spu->wbox_callback(spu);
67207b96
AB
179
180 /* atomically disable SPU mailbox interrupts */
181 spin_lock(&spu->register_lock);
f0831acc 182 spu_int_mask_and(spu, 2, ~0x10);
67207b96
AB
183 spin_unlock(&spu->register_lock);
184 return 0;
185}
186
187static irqreturn_t
188spu_irq_class_0(int irq, void *data, struct pt_regs *regs)
189{
190 struct spu *spu;
191
192 spu = data;
193 spu->class_0_pending = 1;
5110459f
AB
194 if (spu->stop_callback)
195 spu->stop_callback(spu);
67207b96
AB
196
197 return IRQ_HANDLED;
198}
199
5110459f 200int
67207b96
AB
201spu_irq_class_0_bottom(struct spu *spu)
202{
3a843d7c 203 unsigned long stat, mask;
67207b96
AB
204
205 spu->class_0_pending = 0;
206
f0831acc
AB
207 mask = spu_int_mask_get(spu, 0);
208 stat = spu_int_stat_get(spu, 0);
67207b96 209
3a843d7c
AB
210 stat &= mask;
211
67207b96
AB
212 if (stat & 1) /* invalid MFC DMA */
213 __spu_trap_invalid_dma(spu);
214
215 if (stat & 2) /* invalid DMA alignment */
216 __spu_trap_dma_align(spu);
217
218 if (stat & 4) /* error on SPU */
219 __spu_trap_error(spu);
220
f0831acc 221 spu_int_stat_clear(spu, 0, stat);
5110459f
AB
222
223 return (stat & 0x7) ? -EIO : 0;
67207b96 224}
5110459f 225EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
67207b96
AB
226
227static irqreturn_t
228spu_irq_class_1(int irq, void *data, struct pt_regs *regs)
229{
230 struct spu *spu;
8b3d6663 231 unsigned long stat, mask, dar, dsisr;
67207b96
AB
232
233 spu = data;
8b3d6663
AB
234
235 /* atomically read & clear class1 status. */
236 spin_lock(&spu->register_lock);
f0831acc
AB
237 mask = spu_int_mask_get(spu, 1);
238 stat = spu_int_stat_get(spu, 1) & mask;
239 dar = spu_mfc_dar_get(spu);
240 dsisr = spu_mfc_dsisr_get(spu);
38307341 241 if (stat & 2) /* mapping fault */
f0831acc
AB
242 spu_mfc_dsisr_set(spu, 0ul);
243 spu_int_stat_clear(spu, 1, stat);
8b3d6663 244 spin_unlock(&spu->register_lock);
a33a7d73
AB
245 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
246 dar, dsisr);
67207b96
AB
247
248 if (stat & 1) /* segment fault */
249 __spu_trap_data_seg(spu, dar);
250
251 if (stat & 2) { /* mapping fault */
8b3d6663 252 __spu_trap_data_map(spu, dar, dsisr);
67207b96
AB
253 }
254
255 if (stat & 4) /* ls compare & suspend on get */
256 ;
257
258 if (stat & 8) /* ls compare & suspend on put */
259 ;
260
67207b96
AB
261 return stat ? IRQ_HANDLED : IRQ_NONE;
262}
5110459f 263EXPORT_SYMBOL_GPL(spu_irq_class_1_bottom);
67207b96
AB
264
265static irqreturn_t
266spu_irq_class_2(int irq, void *data, struct pt_regs *regs)
267{
268 struct spu *spu;
269 unsigned long stat;
3a843d7c 270 unsigned long mask;
67207b96
AB
271
272 spu = data;
f0831acc
AB
273 stat = spu_int_stat_get(spu, 2);
274 mask = spu_int_mask_get(spu, 2);
67207b96 275
3a843d7c 276 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
67207b96 277
3a843d7c 278 stat &= mask;
67207b96
AB
279
280 if (stat & 1) /* PPC core mailbox */
281 __spu_trap_mailbox(spu);
282
283 if (stat & 2) /* SPU stop-and-signal */
284 __spu_trap_stop(spu);
285
286 if (stat & 4) /* SPU halted */
287 __spu_trap_halt(spu);
288
289 if (stat & 8) /* DMA tag group complete */
290 __spu_trap_tag_group(spu);
291
292 if (stat & 0x10) /* SPU mailbox threshold */
293 __spu_trap_spubox(spu);
294
f0831acc 295 spu_int_stat_clear(spu, 2, stat);
67207b96
AB
296 return stat ? IRQ_HANDLED : IRQ_NONE;
297}
298
299static int
300spu_request_irqs(struct spu *spu)
301{
302 int ret;
303 int irq_base;
304
305 irq_base = IIC_NODE_STRIDE * spu->node + IIC_SPE_OFFSET;
306
307 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0", spu->number);
308 ret = request_irq(irq_base + spu->isrc,
309 spu_irq_class_0, 0, spu->irq_c0, spu);
310 if (ret)
311 goto out;
67207b96
AB
312
313 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1", spu->number);
314 ret = request_irq(irq_base + IIC_CLASS_STRIDE + spu->isrc,
315 spu_irq_class_1, 0, spu->irq_c1, spu);
316 if (ret)
317 goto out1;
67207b96
AB
318
319 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2", spu->number);
320 ret = request_irq(irq_base + 2*IIC_CLASS_STRIDE + spu->isrc,
321 spu_irq_class_2, 0, spu->irq_c2, spu);
322 if (ret)
323 goto out2;
67207b96
AB
324 goto out;
325
326out2:
327 free_irq(irq_base + IIC_CLASS_STRIDE + spu->isrc, spu);
328out1:
329 free_irq(irq_base + spu->isrc, spu);
330out:
331 return ret;
332}
333
334static void
335spu_free_irqs(struct spu *spu)
336{
337 int irq_base;
338
339 irq_base = IIC_NODE_STRIDE * spu->node + IIC_SPE_OFFSET;
340
341 free_irq(irq_base + spu->isrc, spu);
342 free_irq(irq_base + IIC_CLASS_STRIDE + spu->isrc, spu);
343 free_irq(irq_base + 2*IIC_CLASS_STRIDE + spu->isrc, spu);
344}
345
346static LIST_HEAD(spu_list);
14cc3e2b 347static DEFINE_MUTEX(spu_mutex);
67207b96
AB
348
349static void spu_init_channels(struct spu *spu)
350{
351 static const struct {
352 unsigned channel;
353 unsigned count;
354 } zero_list[] = {
355 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
356 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
357 }, count_list[] = {
358 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
359 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
360 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
361 };
6ff730c3 362 struct spu_priv2 __iomem *priv2;
67207b96
AB
363 int i;
364
365 priv2 = spu->priv2;
366
367 /* initialize all channel data to zero */
368 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
369 int count;
370
371 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
372 for (count = 0; count < zero_list[i].count; count++)
373 out_be64(&priv2->spu_chnldata_RW, 0);
374 }
375
376 /* initialize channel counts to meaningful values */
377 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
378 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
379 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
380 }
381}
382
67207b96
AB
383struct spu *spu_alloc(void)
384{
385 struct spu *spu;
386
14cc3e2b 387 mutex_lock(&spu_mutex);
67207b96
AB
388 if (!list_empty(&spu_list)) {
389 spu = list_entry(spu_list.next, struct spu, list);
390 list_del_init(&spu->list);
391 pr_debug("Got SPU %x %d\n", spu->isrc, spu->number);
392 } else {
393 pr_debug("No SPU left\n");
394 spu = NULL;
395 }
14cc3e2b 396 mutex_unlock(&spu_mutex);
67207b96 397
f0831acc 398 if (spu)
67207b96 399 spu_init_channels(spu);
67207b96
AB
400
401 return spu;
402}
39c73c33 403EXPORT_SYMBOL_GPL(spu_alloc);
67207b96
AB
404
405void spu_free(struct spu *spu)
406{
14cc3e2b 407 mutex_lock(&spu_mutex);
67207b96 408 list_add_tail(&spu->list, &spu_list);
14cc3e2b 409 mutex_unlock(&spu_mutex);
67207b96 410}
39c73c33 411EXPORT_SYMBOL_GPL(spu_free);
67207b96 412
67207b96
AB
413static int spu_handle_mm_fault(struct spu *spu)
414{
67207b96
AB
415 struct mm_struct *mm = spu->mm;
416 struct vm_area_struct *vma;
417 u64 ea, dsisr, is_write;
418 int ret;
419
8b3d6663
AB
420 ea = spu->dar;
421 dsisr = spu->dsisr;
67207b96
AB
422#if 0
423 if (!IS_VALID_EA(ea)) {
424 return -EFAULT;
425 }
426#endif /* XXX */
427 if (mm == NULL) {
428 return -EFAULT;
429 }
430 if (mm->pgd == NULL) {
431 return -EFAULT;
432 }
433
434 down_read(&mm->mmap_sem);
435 vma = find_vma(mm, ea);
436 if (!vma)
437 goto bad_area;
438 if (vma->vm_start <= ea)
439 goto good_area;
440 if (!(vma->vm_flags & VM_GROWSDOWN))
441 goto bad_area;
442#if 0
443 if (expand_stack(vma, ea))
444 goto bad_area;
445#endif /* XXX */
446good_area:
447 is_write = dsisr & MFC_DSISR_ACCESS_PUT;
448 if (is_write) {
449 if (!(vma->vm_flags & VM_WRITE))
450 goto bad_area;
451 } else {
452 if (dsisr & MFC_DSISR_ACCESS_DENIED)
453 goto bad_area;
454 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
455 goto bad_area;
456 }
457 ret = 0;
458 switch (handle_mm_fault(mm, vma, ea, is_write)) {
459 case VM_FAULT_MINOR:
460 current->min_flt++;
461 break;
462 case VM_FAULT_MAJOR:
463 current->maj_flt++;
464 break;
465 case VM_FAULT_SIGBUS:
466 ret = -EFAULT;
467 goto bad_area;
468 case VM_FAULT_OOM:
469 ret = -ENOMEM;
470 goto bad_area;
471 default:
472 BUG();
473 }
474 up_read(&mm->mmap_sem);
475 return ret;
476
477bad_area:
478 up_read(&mm->mmap_sem);
479 return -EFAULT;
480}
481
5110459f 482int spu_irq_class_1_bottom(struct spu *spu)
67207b96 483{
67207b96
AB
484 u64 ea, dsisr, access, error = 0UL;
485 int ret = 0;
486
8b3d6663
AB
487 ea = spu->dar;
488 dsisr = spu->dsisr;
67207b96 489 if (dsisr & MFC_DSISR_PTE_NOT_FOUND) {
8b3d6663
AB
490 access = (_PAGE_PRESENT | _PAGE_USER);
491 access |= (dsisr & MFC_DSISR_ACCESS_PUT) ? _PAGE_RW : 0UL;
67207b96
AB
492 if (hash_page(ea, access, 0x300) != 0)
493 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
494 }
495 if ((error & CLASS1_ENABLE_STORAGE_FAULT_INTR) ||
496 (dsisr & MFC_DSISR_ACCESS_DENIED)) {
497 if ((ret = spu_handle_mm_fault(spu)) != 0)
498 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
499 else
500 error &= ~CLASS1_ENABLE_STORAGE_FAULT_INTR;
501 }
8b3d6663
AB
502 spu->dar = 0UL;
503 spu->dsisr = 0UL;
504 if (!error) {
67207b96 505 spu_restart_dma(spu);
8b3d6663
AB
506 } else {
507 __spu_trap_invalid_dma(spu);
508 }
67207b96
AB
509 return ret;
510}
511
2fb9d206
AB
512void spu_irq_setaffinity(struct spu *spu, int cpu)
513{
514 u64 target = iic_get_target_id(cpu);
515 u64 route = target << 48 | target << 32 | target << 16;
516 spu_int_route_set(spu, route);
517}
518EXPORT_SYMBOL_GPL(spu_irq_setaffinity);
519
67207b96
AB
520static void __iomem * __init map_spe_prop(struct device_node *n,
521 const char *name)
522{
523 struct address_prop {
524 unsigned long address;
525 unsigned int len;
526 } __attribute__((packed)) *prop;
527
528 void *p;
529 int proplen;
530
531 p = get_property(n, name, &proplen);
532 if (proplen != sizeof (struct address_prop))
533 return NULL;
534
535 prop = p;
536
537 return ioremap(prop->address, prop->len);
538}
539
540static void spu_unmap(struct spu *spu)
541{
542 iounmap(spu->priv2);
543 iounmap(spu->priv1);
544 iounmap(spu->problem);
545 iounmap((u8 __iomem *)spu->local_store);
546}
547
548static int __init spu_map_device(struct spu *spu, struct device_node *spe)
549{
550 char *prop;
551 int ret;
552
553 ret = -ENODEV;
554 prop = get_property(spe, "isrc", NULL);
555 if (!prop)
556 goto out;
557 spu->isrc = *(unsigned int *)prop;
558
559 spu->name = get_property(spe, "name", NULL);
560 if (!spu->name)
561 goto out;
562
563 prop = get_property(spe, "local-store", NULL);
564 if (!prop)
565 goto out;
566 spu->local_store_phys = *(unsigned long *)prop;
567
568 /* we use local store as ram, not io memory */
569 spu->local_store = (void __force *)map_spe_prop(spe, "local-store");
570 if (!spu->local_store)
571 goto out;
572
573 spu->problem= map_spe_prop(spe, "problem");
574 if (!spu->problem)
575 goto out_unmap;
576
577 spu->priv1= map_spe_prop(spe, "priv1");
f0831acc 578 /* priv1 is not available on a hypervisor */
67207b96
AB
579
580 spu->priv2= map_spe_prop(spe, "priv2");
581 if (!spu->priv2)
582 goto out_unmap;
583 ret = 0;
584 goto out;
585
586out_unmap:
587 spu_unmap(spu);
588out:
589 return ret;
590}
591
592static int __init find_spu_node_id(struct device_node *spe)
593{
594 unsigned int *id;
595 struct device_node *cpu;
596
597 cpu = spe->parent->parent;
598 id = (unsigned int *)get_property(cpu, "node-id", NULL);
599
600 return id ? *id : 0;
601}
602
603static int __init create_spu(struct device_node *spe)
604{
605 struct spu *spu;
606 int ret;
607 static int number;
608
609 ret = -ENOMEM;
610 spu = kmalloc(sizeof (*spu), GFP_KERNEL);
611 if (!spu)
612 goto out;
613
614 ret = spu_map_device(spu, spe);
615 if (ret)
616 goto out_free;
617
618 spu->node = find_spu_node_id(spe);
619 spu->stop_code = 0;
620 spu->slb_replace = 0;
621 spu->mm = NULL;
8b3d6663
AB
622 spu->ctx = NULL;
623 spu->rq = NULL;
624 spu->pid = 0;
67207b96 625 spu->class_0_pending = 0;
5473af04 626 spu->flags = 0UL;
8b3d6663
AB
627 spu->dar = 0UL;
628 spu->dsisr = 0UL;
67207b96
AB
629 spin_lock_init(&spu->register_lock);
630
f0831acc
AB
631 spu_mfc_sdr_set(spu, mfspr(SPRN_SDR1));
632 spu_mfc_sr1_set(spu, 0x33);
67207b96 633
8b3d6663
AB
634 spu->ibox_callback = NULL;
635 spu->wbox_callback = NULL;
5110459f 636 spu->stop_callback = NULL;
a33a7d73 637 spu->mfc_callback = NULL;
67207b96 638
14cc3e2b 639 mutex_lock(&spu_mutex);
67207b96
AB
640 spu->number = number++;
641 ret = spu_request_irqs(spu);
642 if (ret)
643 goto out_unmap;
644
645 list_add(&spu->list, &spu_list);
14cc3e2b 646 mutex_unlock(&spu_mutex);
67207b96
AB
647
648 pr_debug(KERN_DEBUG "Using SPE %s %02x %p %p %p %p %d\n",
649 spu->name, spu->isrc, spu->local_store,
650 spu->problem, spu->priv1, spu->priv2, spu->number);
651 goto out;
652
653out_unmap:
14cc3e2b 654 mutex_unlock(&spu_mutex);
67207b96
AB
655 spu_unmap(spu);
656out_free:
657 kfree(spu);
658out:
659 return ret;
660}
661
662static void destroy_spu(struct spu *spu)
663{
664 list_del_init(&spu->list);
665
666 spu_free_irqs(spu);
667 spu_unmap(spu);
668 kfree(spu);
669}
670
671static void cleanup_spu_base(void)
672{
673 struct spu *spu, *tmp;
14cc3e2b 674 mutex_lock(&spu_mutex);
67207b96
AB
675 list_for_each_entry_safe(spu, tmp, &spu_list, list)
676 destroy_spu(spu);
14cc3e2b 677 mutex_unlock(&spu_mutex);
67207b96
AB
678}
679module_exit(cleanup_spu_base);
680
681static int __init init_spu_base(void)
682{
683 struct device_node *node;
684 int ret;
685
686 ret = -ENODEV;
687 for (node = of_find_node_by_type(NULL, "spe");
688 node; node = of_find_node_by_type(node, "spe")) {
689 ret = create_spu(node);
690 if (ret) {
691 printk(KERN_WARNING "%s: Error initializing %s\n",
692 __FUNCTION__, node->name);
693 cleanup_spu_base();
694 break;
695 }
696 }
697 /* in some old firmware versions, the spe is called 'spc', so we
698 look for that as well */
699 for (node = of_find_node_by_type(NULL, "spc");
700 node; node = of_find_node_by_type(node, "spc")) {
701 ret = create_spu(node);
702 if (ret) {
703 printk(KERN_WARNING "%s: Error initializing %s\n",
704 __FUNCTION__, node->name);
705 cleanup_spu_base();
706 break;
707 }
708 }
709 return ret;
710}
711module_init(init_spu_base);
712
713MODULE_LICENSE("GPL");
714MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
This page took 0.090982 seconds and 5 git commands to generate.