2 * Low-level SPU handling
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
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)
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.
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.
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>
33 #include <linux/mutex.h>
35 #include <asm/spu_priv1.h>
38 const struct spu_management_ops *spu_management_ops;
39 const struct spu_priv1_ops *spu_priv1_ops;
41 EXPORT_SYMBOL_GPL(spu_priv1_ops);
43 static int __spu_trap_invalid_dma(struct spu *spu)
45 pr_debug("%s\n", __FUNCTION__);
46 spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
50 static int __spu_trap_dma_align(struct spu *spu)
52 pr_debug("%s\n", __FUNCTION__);
53 spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
57 static int __spu_trap_error(struct spu *spu)
59 pr_debug("%s\n", __FUNCTION__);
60 spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
64 static void spu_restart_dma(struct spu *spu)
66 struct spu_priv2 __iomem *priv2 = spu->priv2;
68 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
69 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
72 static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
74 struct spu_priv2 __iomem *priv2 = spu->priv2;
75 struct mm_struct *mm = spu->mm;
78 pr_debug("%s\n", __FUNCTION__);
80 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
81 /* SLBs are pre-loaded for context switch, so
82 * we should never get here!
84 printk("%s: invalid access during switch!\n", __func__);
87 esid = (ea & ESID_MASK) | SLB_ESID_V;
89 switch(REGION_ID(ea)) {
91 #ifdef CONFIG_HUGETLB_PAGE
92 if (in_hugepage_area(mm->context, ea))
93 llp = mmu_psize_defs[mmu_huge_psize].sllp;
96 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
97 vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) |
100 case VMALLOC_REGION_ID:
101 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
102 vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
103 SLB_VSID_KERNEL | llp;
105 case KERNEL_REGION_ID:
106 llp = mmu_psize_defs[mmu_linear_psize].sllp;
107 vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
108 SLB_VSID_KERNEL | llp;
111 /* Future: support kernel segments so that drivers
114 pr_debug("invalid region access at %016lx\n", ea);
118 out_be64(&priv2->slb_index_W, spu->slb_replace);
119 out_be64(&priv2->slb_vsid_RW, vsid);
120 out_be64(&priv2->slb_esid_RW, esid);
123 if (spu->slb_replace >= 8)
124 spu->slb_replace = 0;
126 spu_restart_dma(spu);
131 extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
132 static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
134 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
136 /* Handle kernel space hash faults immediately.
137 User hash faults need to be deferred to process context. */
138 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
139 && REGION_ID(ea) != USER_REGION_ID
140 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
141 spu_restart_dma(spu);
145 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
146 printk("%s: invalid access during switch!\n", __func__);
153 spu->stop_callback(spu);
158 spu_irq_class_0(int irq, void *data)
163 spu->class_0_pending = 1;
164 spu->stop_callback(spu);
170 spu_irq_class_0_bottom(struct spu *spu)
172 unsigned long stat, mask;
174 spu->class_0_pending = 0;
176 mask = spu_int_mask_get(spu, 0);
177 stat = spu_int_stat_get(spu, 0);
181 if (stat & 1) /* invalid DMA alignment */
182 __spu_trap_dma_align(spu);
184 if (stat & 2) /* invalid MFC DMA */
185 __spu_trap_invalid_dma(spu);
187 if (stat & 4) /* error on SPU */
188 __spu_trap_error(spu);
190 spu_int_stat_clear(spu, 0, stat);
192 return (stat & 0x7) ? -EIO : 0;
194 EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
197 spu_irq_class_1(int irq, void *data)
200 unsigned long stat, mask, dar, dsisr;
204 /* atomically read & clear class1 status. */
205 spin_lock(&spu->register_lock);
206 mask = spu_int_mask_get(spu, 1);
207 stat = spu_int_stat_get(spu, 1) & mask;
208 dar = spu_mfc_dar_get(spu);
209 dsisr = spu_mfc_dsisr_get(spu);
210 if (stat & 2) /* mapping fault */
211 spu_mfc_dsisr_set(spu, 0ul);
212 spu_int_stat_clear(spu, 1, stat);
213 spin_unlock(&spu->register_lock);
214 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
217 if (stat & 1) /* segment fault */
218 __spu_trap_data_seg(spu, dar);
220 if (stat & 2) { /* mapping fault */
221 __spu_trap_data_map(spu, dar, dsisr);
224 if (stat & 4) /* ls compare & suspend on get */
227 if (stat & 8) /* ls compare & suspend on put */
230 return stat ? IRQ_HANDLED : IRQ_NONE;
232 EXPORT_SYMBOL_GPL(spu_irq_class_1_bottom);
235 spu_irq_class_2(int irq, void *data)
242 spin_lock(&spu->register_lock);
243 stat = spu_int_stat_get(spu, 2);
244 mask = spu_int_mask_get(spu, 2);
245 /* ignore interrupts we're not waiting for */
248 * mailbox interrupts (0x1 and 0x10) are level triggered.
249 * mask them now before acknowledging.
252 spu_int_mask_and(spu, 2, ~(stat & 0x11));
253 /* acknowledge all interrupts before the callbacks */
254 spu_int_stat_clear(spu, 2, stat);
255 spin_unlock(&spu->register_lock);
257 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
259 if (stat & 1) /* PPC core mailbox */
260 spu->ibox_callback(spu);
262 if (stat & 2) /* SPU stop-and-signal */
263 spu->stop_callback(spu);
265 if (stat & 4) /* SPU halted */
266 spu->stop_callback(spu);
268 if (stat & 8) /* DMA tag group complete */
269 spu->mfc_callback(spu);
271 if (stat & 0x10) /* SPU mailbox threshold */
272 spu->wbox_callback(spu);
274 return stat ? IRQ_HANDLED : IRQ_NONE;
277 static int spu_request_irqs(struct spu *spu)
281 if (spu->irqs[0] != NO_IRQ) {
282 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
284 ret = request_irq(spu->irqs[0], spu_irq_class_0,
290 if (spu->irqs[1] != NO_IRQ) {
291 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
293 ret = request_irq(spu->irqs[1], spu_irq_class_1,
299 if (spu->irqs[2] != NO_IRQ) {
300 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
302 ret = request_irq(spu->irqs[2], spu_irq_class_2,
311 if (spu->irqs[1] != NO_IRQ)
312 free_irq(spu->irqs[1], spu);
314 if (spu->irqs[0] != NO_IRQ)
315 free_irq(spu->irqs[0], spu);
320 static void spu_free_irqs(struct spu *spu)
322 if (spu->irqs[0] != NO_IRQ)
323 free_irq(spu->irqs[0], spu);
324 if (spu->irqs[1] != NO_IRQ)
325 free_irq(spu->irqs[1], spu);
326 if (spu->irqs[2] != NO_IRQ)
327 free_irq(spu->irqs[2], spu);
330 static struct list_head spu_list[MAX_NUMNODES];
331 static LIST_HEAD(spu_full_list);
332 static DEFINE_MUTEX(spu_mutex);
334 static void spu_init_channels(struct spu *spu)
336 static const struct {
340 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
341 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
343 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
344 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
345 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
347 struct spu_priv2 __iomem *priv2;
352 /* initialize all channel data to zero */
353 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
356 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
357 for (count = 0; count < zero_list[i].count; count++)
358 out_be64(&priv2->spu_chnldata_RW, 0);
361 /* initialize channel counts to meaningful values */
362 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
363 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
364 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
368 struct spu *spu_alloc_node(int node)
370 struct spu *spu = NULL;
372 mutex_lock(&spu_mutex);
373 if (!list_empty(&spu_list[node])) {
374 spu = list_entry(spu_list[node].next, struct spu, list);
375 list_del_init(&spu->list);
376 pr_debug("Got SPU %d %d\n", spu->number, spu->node);
377 spu_init_channels(spu);
379 mutex_unlock(&spu_mutex);
383 EXPORT_SYMBOL_GPL(spu_alloc_node);
385 struct spu *spu_alloc(void)
387 struct spu *spu = NULL;
390 for (node = 0; node < MAX_NUMNODES; node++) {
391 spu = spu_alloc_node(node);
399 void spu_free(struct spu *spu)
401 mutex_lock(&spu_mutex);
402 list_add_tail(&spu->list, &spu_list[spu->node]);
403 mutex_unlock(&spu_mutex);
405 EXPORT_SYMBOL_GPL(spu_free);
407 static int spu_handle_mm_fault(struct spu *spu)
409 struct mm_struct *mm = spu->mm;
410 struct vm_area_struct *vma;
411 u64 ea, dsisr, is_write;
417 if (!IS_VALID_EA(ea)) {
424 if (mm->pgd == NULL) {
428 down_read(&mm->mmap_sem);
429 vma = find_vma(mm, ea);
432 if (vma->vm_start <= ea)
434 if (!(vma->vm_flags & VM_GROWSDOWN))
437 if (expand_stack(vma, ea))
441 is_write = dsisr & MFC_DSISR_ACCESS_PUT;
443 if (!(vma->vm_flags & VM_WRITE))
446 if (dsisr & MFC_DSISR_ACCESS_DENIED)
448 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
452 switch (handle_mm_fault(mm, vma, ea, is_write)) {
459 case VM_FAULT_SIGBUS:
468 up_read(&mm->mmap_sem);
472 up_read(&mm->mmap_sem);
476 int spu_irq_class_1_bottom(struct spu *spu)
478 u64 ea, dsisr, access, error = 0UL;
483 if (dsisr & (MFC_DSISR_PTE_NOT_FOUND | MFC_DSISR_ACCESS_DENIED)) {
486 access = (_PAGE_PRESENT | _PAGE_USER);
487 access |= (dsisr & MFC_DSISR_ACCESS_PUT) ? _PAGE_RW : 0UL;
488 local_irq_save(flags);
489 if (hash_page(ea, access, 0x300) != 0)
490 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
491 local_irq_restore(flags);
493 if (error & CLASS1_ENABLE_STORAGE_FAULT_INTR) {
494 if ((ret = spu_handle_mm_fault(spu)) != 0)
495 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
497 error &= ~CLASS1_ENABLE_STORAGE_FAULT_INTR;
502 spu_restart_dma(spu);
504 spu->dma_callback(spu, SPE_EVENT_SPE_DATA_STORAGE);
509 struct sysdev_class spu_sysdev_class = {
513 int spu_add_sysdev_attr(struct sysdev_attribute *attr)
516 mutex_lock(&spu_mutex);
518 list_for_each_entry(spu, &spu_full_list, full_list)
519 sysdev_create_file(&spu->sysdev, attr);
521 mutex_unlock(&spu_mutex);
524 EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
526 int spu_add_sysdev_attr_group(struct attribute_group *attrs)
529 mutex_lock(&spu_mutex);
531 list_for_each_entry(spu, &spu_full_list, full_list)
532 sysfs_create_group(&spu->sysdev.kobj, attrs);
534 mutex_unlock(&spu_mutex);
537 EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
540 void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
543 mutex_lock(&spu_mutex);
545 list_for_each_entry(spu, &spu_full_list, full_list)
546 sysdev_remove_file(&spu->sysdev, attr);
548 mutex_unlock(&spu_mutex);
550 EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
552 void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
555 mutex_lock(&spu_mutex);
557 list_for_each_entry(spu, &spu_full_list, full_list)
558 sysfs_remove_group(&spu->sysdev.kobj, attrs);
560 mutex_unlock(&spu_mutex);
562 EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
564 static int spu_create_sysdev(struct spu *spu)
568 spu->sysdev.id = spu->number;
569 spu->sysdev.cls = &spu_sysdev_class;
570 ret = sysdev_register(&spu->sysdev);
572 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
577 sysfs_add_device_to_node(&spu->sysdev, spu->node);
582 static void spu_destroy_sysdev(struct spu *spu)
584 sysfs_remove_device_from_node(&spu->sysdev, spu->node);
585 sysdev_unregister(&spu->sysdev);
588 static int __init create_spu(void *data)
595 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
599 spin_lock_init(&spu->register_lock);
600 mutex_lock(&spu_mutex);
601 spu->number = number++;
602 mutex_unlock(&spu_mutex);
604 ret = spu_create_spu(spu, data);
609 spu_mfc_sdr_setup(spu);
610 spu_mfc_sr1_set(spu, 0x33);
611 ret = spu_request_irqs(spu);
615 ret = spu_create_sysdev(spu);
619 mutex_lock(&spu_mutex);
620 list_add(&spu->list, &spu_list[spu->node]);
621 list_add(&spu->full_list, &spu_full_list);
622 mutex_unlock(&spu_mutex);
629 spu_destroy_spu(spu);
636 static void destroy_spu(struct spu *spu)
638 list_del_init(&spu->list);
639 list_del_init(&spu->full_list);
641 spu_destroy_sysdev(spu);
643 spu_destroy_spu(spu);
647 static void cleanup_spu_base(void)
649 struct spu *spu, *tmp;
652 mutex_lock(&spu_mutex);
653 for (node = 0; node < MAX_NUMNODES; node++) {
654 list_for_each_entry_safe(spu, tmp, &spu_list[node], list)
657 mutex_unlock(&spu_mutex);
658 sysdev_class_unregister(&spu_sysdev_class);
660 module_exit(cleanup_spu_base);
662 static int __init init_spu_base(void)
666 if (!spu_management_ops)
669 /* create sysdev class for spus */
670 ret = sysdev_class_register(&spu_sysdev_class);
674 for (i = 0; i < MAX_NUMNODES; i++)
675 INIT_LIST_HEAD(&spu_list[i]);
677 ret = spu_enumerate_spus(create_spu);
680 printk(KERN_WARNING "%s: Error initializing spus\n",
686 xmon_register_spus(&spu_full_list);
690 module_init(init_spu_base);
692 MODULE_LICENSE("GPL");
693 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");