]> err.no Git - linux-2.6/blob - arch/powerpc/platforms/cell/spu_base.c
[POWERPC] spufs: make spu page faults not block scheduling
[linux-2.6] / arch / powerpc / platforms / cell / spu_base.c
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
23 #undef DEBUG
24
25 #include <linux/interrupt.h>
26 #include <linux/list.h>
27 #include <linux/module.h>
28 #include <linux/ptrace.h>
29 #include <linux/slab.h>
30 #include <linux/wait.h>
31 #include <linux/mm.h>
32 #include <linux/io.h>
33 #include <linux/mutex.h>
34 #include <asm/spu.h>
35 #include <asm/spu_priv1.h>
36 #include <asm/xmon.h>
37
38 const struct spu_management_ops *spu_management_ops;
39 const struct spu_priv1_ops *spu_priv1_ops;
40
41 static struct list_head spu_list[MAX_NUMNODES];
42 static LIST_HEAD(spu_full_list);
43 static DEFINE_MUTEX(spu_mutex);
44 static spinlock_t spu_list_lock = SPIN_LOCK_UNLOCKED;
45
46 EXPORT_SYMBOL_GPL(spu_priv1_ops);
47
48 void spu_invalidate_slbs(struct spu *spu)
49 {
50         struct spu_priv2 __iomem *priv2 = spu->priv2;
51
52         if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
53                 out_be64(&priv2->slb_invalidate_all_W, 0UL);
54 }
55 EXPORT_SYMBOL_GPL(spu_invalidate_slbs);
56
57 /* This is called by the MM core when a segment size is changed, to
58  * request a flush of all the SPEs using a given mm
59  */
60 void spu_flush_all_slbs(struct mm_struct *mm)
61 {
62         struct spu *spu;
63         unsigned long flags;
64
65         spin_lock_irqsave(&spu_list_lock, flags);
66         list_for_each_entry(spu, &spu_full_list, full_list) {
67                 if (spu->mm == mm)
68                         spu_invalidate_slbs(spu);
69         }
70         spin_unlock_irqrestore(&spu_list_lock, flags);
71 }
72
73 /* The hack below stinks... try to do something better one of
74  * these days... Does it even work properly with NR_CPUS == 1 ?
75  */
76 static inline void mm_needs_global_tlbie(struct mm_struct *mm)
77 {
78         int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
79
80         /* Global TLBIE broadcast required with SPEs. */
81         __cpus_setall(&mm->cpu_vm_mask, nr);
82 }
83
84 void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
85 {
86         unsigned long flags;
87
88         spin_lock_irqsave(&spu_list_lock, flags);
89         spu->mm = mm;
90         spin_unlock_irqrestore(&spu_list_lock, flags);
91         if (mm)
92                 mm_needs_global_tlbie(mm);
93 }
94 EXPORT_SYMBOL_GPL(spu_associate_mm);
95
96 static int __spu_trap_invalid_dma(struct spu *spu)
97 {
98         pr_debug("%s\n", __FUNCTION__);
99         spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
100         return 0;
101 }
102
103 static int __spu_trap_dma_align(struct spu *spu)
104 {
105         pr_debug("%s\n", __FUNCTION__);
106         spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
107         return 0;
108 }
109
110 static int __spu_trap_error(struct spu *spu)
111 {
112         pr_debug("%s\n", __FUNCTION__);
113         spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
114         return 0;
115 }
116
117 static void spu_restart_dma(struct spu *spu)
118 {
119         struct spu_priv2 __iomem *priv2 = spu->priv2;
120
121         if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
122                 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
123 }
124
125 static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
126 {
127         struct spu_priv2 __iomem *priv2 = spu->priv2;
128         struct mm_struct *mm = spu->mm;
129         u64 esid, vsid, llp;
130         int psize;
131
132         pr_debug("%s\n", __FUNCTION__);
133
134         if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
135                 /* SLBs are pre-loaded for context switch, so
136                  * we should never get here!
137                  */
138                 printk("%s: invalid access during switch!\n", __func__);
139                 return 1;
140         }
141         esid = (ea & ESID_MASK) | SLB_ESID_V;
142
143         switch(REGION_ID(ea)) {
144         case USER_REGION_ID:
145 #ifdef CONFIG_HUGETLB_PAGE
146                 if (in_hugepage_area(mm->context, ea))
147                         psize = mmu_huge_psize;
148                 else
149 #endif
150                         psize = mm->context.user_psize;
151                 vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) |
152                                 SLB_VSID_USER;
153                 break;
154         case VMALLOC_REGION_ID:
155                 if (ea < VMALLOC_END)
156                         psize = mmu_vmalloc_psize;
157                 else
158                         psize = mmu_io_psize;
159                 vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
160                         SLB_VSID_KERNEL;
161                 break;
162         case KERNEL_REGION_ID:
163                 psize = mmu_linear_psize;
164                 vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
165                         SLB_VSID_KERNEL;
166                 break;
167         default:
168                 /* Future: support kernel segments so that drivers
169                  * can use SPUs.
170                  */
171                 pr_debug("invalid region access at %016lx\n", ea);
172                 return 1;
173         }
174         llp = mmu_psize_defs[psize].sllp;
175
176         out_be64(&priv2->slb_index_W, spu->slb_replace);
177         out_be64(&priv2->slb_vsid_RW, vsid | llp);
178         out_be64(&priv2->slb_esid_RW, esid);
179
180         spu->slb_replace++;
181         if (spu->slb_replace >= 8)
182                 spu->slb_replace = 0;
183
184         spu_restart_dma(spu);
185
186         return 0;
187 }
188
189 extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
190 static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
191 {
192         pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
193
194         /* Handle kernel space hash faults immediately.
195            User hash faults need to be deferred to process context. */
196         if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
197             && REGION_ID(ea) != USER_REGION_ID
198             && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
199                 spu_restart_dma(spu);
200                 return 0;
201         }
202
203         if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
204                 printk("%s: invalid access during switch!\n", __func__);
205                 return 1;
206         }
207
208         spu->dar = ea;
209         spu->dsisr = dsisr;
210         mb();
211         spu->stop_callback(spu);
212         return 0;
213 }
214
215 static irqreturn_t
216 spu_irq_class_0(int irq, void *data)
217 {
218         struct spu *spu;
219
220         spu = data;
221         spu->class_0_pending = 1;
222         spu->stop_callback(spu);
223
224         return IRQ_HANDLED;
225 }
226
227 int
228 spu_irq_class_0_bottom(struct spu *spu)
229 {
230         unsigned long stat, mask;
231         unsigned long flags;
232
233         spu->class_0_pending = 0;
234
235         spin_lock_irqsave(&spu->register_lock, flags);
236         mask = spu_int_mask_get(spu, 0);
237         stat = spu_int_stat_get(spu, 0);
238
239         stat &= mask;
240
241         if (stat & 1) /* invalid DMA alignment */
242                 __spu_trap_dma_align(spu);
243
244         if (stat & 2) /* invalid MFC DMA */
245                 __spu_trap_invalid_dma(spu);
246
247         if (stat & 4) /* error on SPU */
248                 __spu_trap_error(spu);
249
250         spu_int_stat_clear(spu, 0, stat);
251         spin_unlock_irqrestore(&spu->register_lock, flags);
252
253         return (stat & 0x7) ? -EIO : 0;
254 }
255 EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
256
257 static irqreturn_t
258 spu_irq_class_1(int irq, void *data)
259 {
260         struct spu *spu;
261         unsigned long stat, mask, dar, dsisr;
262
263         spu = data;
264
265         /* atomically read & clear class1 status. */
266         spin_lock(&spu->register_lock);
267         mask  = spu_int_mask_get(spu, 1);
268         stat  = spu_int_stat_get(spu, 1) & mask;
269         dar   = spu_mfc_dar_get(spu);
270         dsisr = spu_mfc_dsisr_get(spu);
271         if (stat & 2) /* mapping fault */
272                 spu_mfc_dsisr_set(spu, 0ul);
273         spu_int_stat_clear(spu, 1, stat);
274         spin_unlock(&spu->register_lock);
275         pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
276                         dar, dsisr);
277
278         if (stat & 1) /* segment fault */
279                 __spu_trap_data_seg(spu, dar);
280
281         if (stat & 2) { /* mapping fault */
282                 __spu_trap_data_map(spu, dar, dsisr);
283         }
284
285         if (stat & 4) /* ls compare & suspend on get */
286                 ;
287
288         if (stat & 8) /* ls compare & suspend on put */
289                 ;
290
291         return stat ? IRQ_HANDLED : IRQ_NONE;
292 }
293
294 static irqreturn_t
295 spu_irq_class_2(int irq, void *data)
296 {
297         struct spu *spu;
298         unsigned long stat;
299         unsigned long mask;
300
301         spu = data;
302         spin_lock(&spu->register_lock);
303         stat = spu_int_stat_get(spu, 2);
304         mask = spu_int_mask_get(spu, 2);
305         /* ignore interrupts we're not waiting for */
306         stat &= mask;
307         /*
308          * mailbox interrupts (0x1 and 0x10) are level triggered.
309          * mask them now before acknowledging.
310          */
311         if (stat & 0x11)
312                 spu_int_mask_and(spu, 2, ~(stat & 0x11));
313         /* acknowledge all interrupts before the callbacks */
314         spu_int_stat_clear(spu, 2, stat);
315         spin_unlock(&spu->register_lock);
316
317         pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
318
319         if (stat & 1)  /* PPC core mailbox */
320                 spu->ibox_callback(spu);
321
322         if (stat & 2) /* SPU stop-and-signal */
323                 spu->stop_callback(spu);
324
325         if (stat & 4) /* SPU halted */
326                 spu->stop_callback(spu);
327
328         if (stat & 8) /* DMA tag group complete */
329                 spu->mfc_callback(spu);
330
331         if (stat & 0x10) /* SPU mailbox threshold */
332                 spu->wbox_callback(spu);
333
334         return stat ? IRQ_HANDLED : IRQ_NONE;
335 }
336
337 static int spu_request_irqs(struct spu *spu)
338 {
339         int ret = 0;
340
341         if (spu->irqs[0] != NO_IRQ) {
342                 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
343                          spu->number);
344                 ret = request_irq(spu->irqs[0], spu_irq_class_0,
345                                   IRQF_DISABLED,
346                                   spu->irq_c0, spu);
347                 if (ret)
348                         goto bail0;
349         }
350         if (spu->irqs[1] != NO_IRQ) {
351                 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
352                          spu->number);
353                 ret = request_irq(spu->irqs[1], spu_irq_class_1,
354                                   IRQF_DISABLED,
355                                   spu->irq_c1, spu);
356                 if (ret)
357                         goto bail1;
358         }
359         if (spu->irqs[2] != NO_IRQ) {
360                 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
361                          spu->number);
362                 ret = request_irq(spu->irqs[2], spu_irq_class_2,
363                                   IRQF_DISABLED,
364                                   spu->irq_c2, spu);
365                 if (ret)
366                         goto bail2;
367         }
368         return 0;
369
370 bail2:
371         if (spu->irqs[1] != NO_IRQ)
372                 free_irq(spu->irqs[1], spu);
373 bail1:
374         if (spu->irqs[0] != NO_IRQ)
375                 free_irq(spu->irqs[0], spu);
376 bail0:
377         return ret;
378 }
379
380 static void spu_free_irqs(struct spu *spu)
381 {
382         if (spu->irqs[0] != NO_IRQ)
383                 free_irq(spu->irqs[0], spu);
384         if (spu->irqs[1] != NO_IRQ)
385                 free_irq(spu->irqs[1], spu);
386         if (spu->irqs[2] != NO_IRQ)
387                 free_irq(spu->irqs[2], spu);
388 }
389
390 static void spu_init_channels(struct spu *spu)
391 {
392         static const struct {
393                  unsigned channel;
394                  unsigned count;
395         } zero_list[] = {
396                 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
397                 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
398         }, count_list[] = {
399                 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
400                 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
401                 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
402         };
403         struct spu_priv2 __iomem *priv2;
404         int i;
405
406         priv2 = spu->priv2;
407
408         /* initialize all channel data to zero */
409         for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
410                 int count;
411
412                 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
413                 for (count = 0; count < zero_list[i].count; count++)
414                         out_be64(&priv2->spu_chnldata_RW, 0);
415         }
416
417         /* initialize channel counts to meaningful values */
418         for (i = 0; i < ARRAY_SIZE(count_list); i++) {
419                 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
420                 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
421         }
422 }
423
424 struct spu *spu_alloc_node(int node)
425 {
426         struct spu *spu = NULL;
427
428         mutex_lock(&spu_mutex);
429         if (!list_empty(&spu_list[node])) {
430                 spu = list_entry(spu_list[node].next, struct spu, list);
431                 list_del_init(&spu->list);
432                 pr_debug("Got SPU %d %d\n", spu->number, spu->node);
433         }
434         mutex_unlock(&spu_mutex);
435
436         if (spu)
437                 spu_init_channels(spu);
438         return spu;
439 }
440 EXPORT_SYMBOL_GPL(spu_alloc_node);
441
442 struct spu *spu_alloc(void)
443 {
444         struct spu *spu = NULL;
445         int node;
446
447         for (node = 0; node < MAX_NUMNODES; node++) {
448                 spu = spu_alloc_node(node);
449                 if (spu)
450                         break;
451         }
452
453         return spu;
454 }
455
456 void spu_free(struct spu *spu)
457 {
458         mutex_lock(&spu_mutex);
459         list_add_tail(&spu->list, &spu_list[spu->node]);
460         mutex_unlock(&spu_mutex);
461 }
462 EXPORT_SYMBOL_GPL(spu_free);
463
464 struct sysdev_class spu_sysdev_class = {
465         set_kset_name("spu")
466 };
467
468 int spu_add_sysdev_attr(struct sysdev_attribute *attr)
469 {
470         struct spu *spu;
471         mutex_lock(&spu_mutex);
472
473         list_for_each_entry(spu, &spu_full_list, full_list)
474                 sysdev_create_file(&spu->sysdev, attr);
475
476         mutex_unlock(&spu_mutex);
477         return 0;
478 }
479 EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
480
481 int spu_add_sysdev_attr_group(struct attribute_group *attrs)
482 {
483         struct spu *spu;
484         mutex_lock(&spu_mutex);
485
486         list_for_each_entry(spu, &spu_full_list, full_list)
487                 sysfs_create_group(&spu->sysdev.kobj, attrs);
488
489         mutex_unlock(&spu_mutex);
490         return 0;
491 }
492 EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
493
494
495 void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
496 {
497         struct spu *spu;
498         mutex_lock(&spu_mutex);
499
500         list_for_each_entry(spu, &spu_full_list, full_list)
501                 sysdev_remove_file(&spu->sysdev, attr);
502
503         mutex_unlock(&spu_mutex);
504 }
505 EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
506
507 void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
508 {
509         struct spu *spu;
510         mutex_lock(&spu_mutex);
511
512         list_for_each_entry(spu, &spu_full_list, full_list)
513                 sysfs_remove_group(&spu->sysdev.kobj, attrs);
514
515         mutex_unlock(&spu_mutex);
516 }
517 EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
518
519 static int spu_create_sysdev(struct spu *spu)
520 {
521         int ret;
522
523         spu->sysdev.id = spu->number;
524         spu->sysdev.cls = &spu_sysdev_class;
525         ret = sysdev_register(&spu->sysdev);
526         if (ret) {
527                 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
528                                 spu->number);
529                 return ret;
530         }
531
532         sysfs_add_device_to_node(&spu->sysdev, spu->node);
533
534         return 0;
535 }
536
537 static void spu_destroy_sysdev(struct spu *spu)
538 {
539         sysfs_remove_device_from_node(&spu->sysdev, spu->node);
540         sysdev_unregister(&spu->sysdev);
541 }
542
543 static int __init create_spu(void *data)
544 {
545         struct spu *spu;
546         int ret;
547         static int number;
548         unsigned long flags;
549
550         ret = -ENOMEM;
551         spu = kzalloc(sizeof (*spu), GFP_KERNEL);
552         if (!spu)
553                 goto out;
554
555         spin_lock_init(&spu->register_lock);
556         mutex_lock(&spu_mutex);
557         spu->number = number++;
558         mutex_unlock(&spu_mutex);
559
560         ret = spu_create_spu(spu, data);
561
562         if (ret)
563                 goto out_free;
564
565         spu_mfc_sdr_setup(spu);
566         spu_mfc_sr1_set(spu, 0x33);
567         ret = spu_request_irqs(spu);
568         if (ret)
569                 goto out_destroy;
570
571         ret = spu_create_sysdev(spu);
572         if (ret)
573                 goto out_free_irqs;
574
575         mutex_lock(&spu_mutex);
576         spin_lock_irqsave(&spu_list_lock, flags);
577         list_add(&spu->list, &spu_list[spu->node]);
578         list_add(&spu->full_list, &spu_full_list);
579         spin_unlock_irqrestore(&spu_list_lock, flags);
580         mutex_unlock(&spu_mutex);
581
582         goto out;
583
584 out_free_irqs:
585         spu_free_irqs(spu);
586 out_destroy:
587         spu_destroy_spu(spu);
588 out_free:
589         kfree(spu);
590 out:
591         return ret;
592 }
593
594 static void destroy_spu(struct spu *spu)
595 {
596         list_del_init(&spu->list);
597         list_del_init(&spu->full_list);
598
599         spu_destroy_sysdev(spu);
600         spu_free_irqs(spu);
601         spu_destroy_spu(spu);
602         kfree(spu);
603 }
604
605 static void cleanup_spu_base(void)
606 {
607         struct spu *spu, *tmp;
608         int node;
609
610         mutex_lock(&spu_mutex);
611         for (node = 0; node < MAX_NUMNODES; node++) {
612                 list_for_each_entry_safe(spu, tmp, &spu_list[node], list)
613                         destroy_spu(spu);
614         }
615         mutex_unlock(&spu_mutex);
616         sysdev_class_unregister(&spu_sysdev_class);
617 }
618 module_exit(cleanup_spu_base);
619
620 static int __init init_spu_base(void)
621 {
622         int i, ret;
623
624         if (!spu_management_ops)
625                 return 0;
626
627         /* create sysdev class for spus */
628         ret = sysdev_class_register(&spu_sysdev_class);
629         if (ret)
630                 return ret;
631
632         for (i = 0; i < MAX_NUMNODES; i++)
633                 INIT_LIST_HEAD(&spu_list[i]);
634
635         ret = spu_enumerate_spus(create_spu);
636
637         if (ret) {
638                 printk(KERN_WARNING "%s: Error initializing spus\n",
639                         __FUNCTION__);
640                 cleanup_spu_base();
641                 return ret;
642         }
643
644         xmon_register_spus(&spu_full_list);
645
646         return ret;
647 }
648 module_init(init_spu_base);
649
650 MODULE_LICENSE("GPL");
651 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");