blob: bd7bffc3ddd08be19caf0a15572b5e727c6f0cd2 [file] [log] [blame]
Arnd Bergmann67207b92005-11-15 15:53:48 -05001/*
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
Arnd Bergmann3b3d22c2005-12-05 22:52:24 -050023#undef DEBUG
Arnd Bergmann67207b92005-11-15 15:53:48 -050024
25#include <linux/interrupt.h>
26#include <linux/list.h>
27#include <linux/module.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050028#include <linux/ptrace.h>
29#include <linux/slab.h>
30#include <linux/wait.h>
Geoff Levande28b0032006-11-23 00:46:49 +010031#include <linux/mm.h>
32#include <linux/io.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080033#include <linux/mutex.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050034#include <asm/spu.h>
Geoff Levand540270d2006-06-19 20:33:29 +020035#include <asm/spu_priv1.h>
Michael Ellermanff8a8f22006-10-24 18:31:27 +020036#include <asm/xmon.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050037
Geoff Levande28b0032006-11-23 00:46:49 +010038const struct spu_management_ops *spu_management_ops;
Geoff Levand540270d2006-06-19 20:33:29 +020039const struct spu_priv1_ops *spu_priv1_ops;
40
41EXPORT_SYMBOL_GPL(spu_priv1_ops);
42
Arnd Bergmann67207b92005-11-15 15:53:48 -050043static int __spu_trap_invalid_dma(struct spu *spu)
44{
45 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +020046 spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
Arnd Bergmann67207b92005-11-15 15:53:48 -050047 return 0;
48}
49
50static int __spu_trap_dma_align(struct spu *spu)
51{
52 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +020053 spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
Arnd Bergmann67207b92005-11-15 15:53:48 -050054 return 0;
55}
56
57static int __spu_trap_error(struct spu *spu)
58{
59 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +020060 spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
Arnd Bergmann67207b92005-11-15 15:53:48 -050061 return 0;
62}
63
64static void spu_restart_dma(struct spu *spu)
65{
66 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -050067
Arnd Bergmann8837d922006-01-04 20:31:28 +010068 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -050069 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Arnd Bergmann67207b92005-11-15 15:53:48 -050070}
71
72static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
73{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050074 struct spu_priv2 __iomem *priv2 = spu->priv2;
75 struct mm_struct *mm = spu->mm;
arnd@arndb.de724bd802006-06-19 20:33:23 +020076 u64 esid, vsid, llp;
Arnd Bergmann67207b92005-11-15 15:53:48 -050077
78 pr_debug("%s\n", __FUNCTION__);
79
Arnd Bergmann8837d922006-01-04 20:31:28 +010080 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050081 /* SLBs are pre-loaded for context switch, so
82 * we should never get here!
83 */
Mark Nutter5473af02005-11-15 15:53:49 -050084 printk("%s: invalid access during switch!\n", __func__);
85 return 1;
86 }
arnd@arndb.de0afacde2006-10-24 18:31:18 +020087 esid = (ea & ESID_MASK) | SLB_ESID_V;
88
89 switch(REGION_ID(ea)) {
90 case USER_REGION_ID:
91#ifdef CONFIG_HUGETLB_PAGE
92 if (in_hugepage_area(mm->context, ea))
93 llp = mmu_psize_defs[mmu_huge_psize].sllp;
94 else
95#endif
96 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
97 vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) |
98 SLB_VSID_USER | llp;
99 break;
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;
104 break;
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;
109 break;
110 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500111 /* Future: support kernel segments so that drivers
112 * can use SPUs.
113 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500114 pr_debug("invalid region access at %016lx\n", ea);
115 return 1;
116 }
117
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500118 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);
121
122 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500123 if (spu->slb_replace >= 8)
124 spu->slb_replace = 0;
125
Arnd Bergmann67207b92005-11-15 15:53:48 -0500126 spu_restart_dma(spu);
127
Arnd Bergmann67207b92005-11-15 15:53:48 -0500128 return 0;
129}
130
Mark Nutter5473af02005-11-15 15:53:49 -0500131extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500132static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500133{
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100134 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500135
Mark Nutter5473af02005-11-15 15:53:49 -0500136 /* 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);
142 return 0;
143 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500144
Arnd Bergmann8837d922006-01-04 20:31:28 +0100145 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Mark Nutter5473af02005-11-15 15:53:49 -0500146 printk("%s: invalid access during switch!\n", __func__);
147 return 1;
148 }
149
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500150 spu->dar = ea;
151 spu->dsisr = dsisr;
152 mb();
Masato Noguchiba723fe22006-06-19 20:33:33 +0200153 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500154 return 0;
155}
156
157static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200158spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500159{
160 struct spu *spu;
161
162 spu = data;
163 spu->class_0_pending = 1;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200164 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500165
166 return IRQ_HANDLED;
167}
168
Arnd Bergmann51104592005-12-05 22:52:25 -0500169int
Arnd Bergmann67207b92005-11-15 15:53:48 -0500170spu_irq_class_0_bottom(struct spu *spu)
171{
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500172 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500173
174 spu->class_0_pending = 0;
175
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100176 mask = spu_int_mask_get(spu, 0);
177 stat = spu_int_stat_get(spu, 0);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500178
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500179 stat &= mask;
180
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200181 if (stat & 1) /* invalid DMA alignment */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500182 __spu_trap_dma_align(spu);
183
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200184 if (stat & 2) /* invalid MFC DMA */
185 __spu_trap_invalid_dma(spu);
186
Arnd Bergmann67207b92005-11-15 15:53:48 -0500187 if (stat & 4) /* error on SPU */
188 __spu_trap_error(spu);
189
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100190 spu_int_stat_clear(spu, 0, stat);
Arnd Bergmann51104592005-12-05 22:52:25 -0500191
192 return (stat & 0x7) ? -EIO : 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500193}
Arnd Bergmann51104592005-12-05 22:52:25 -0500194EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500195
196static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200197spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500198{
199 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500200 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500201
202 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500203
204 /* atomically read & clear class1 status. */
205 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100206 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);
Arnd Bergmann38307342005-12-09 19:04:18 +0100210 if (stat & 2) /* mapping fault */
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100211 spu_mfc_dsisr_set(spu, 0ul);
212 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500213 spin_unlock(&spu->register_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100214 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
215 dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500216
217 if (stat & 1) /* segment fault */
218 __spu_trap_data_seg(spu, dar);
219
220 if (stat & 2) { /* mapping fault */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500221 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500222 }
223
224 if (stat & 4) /* ls compare & suspend on get */
225 ;
226
227 if (stat & 8) /* ls compare & suspend on put */
228 ;
229
Arnd Bergmann67207b92005-11-15 15:53:48 -0500230 return stat ? IRQ_HANDLED : IRQ_NONE;
231}
Arnd Bergmann51104592005-12-05 22:52:25 -0500232EXPORT_SYMBOL_GPL(spu_irq_class_1_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500233
234static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200235spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500236{
237 struct spu *spu;
238 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500239 unsigned long mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500240
241 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200242 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100243 stat = spu_int_stat_get(spu, 2);
244 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200245 /* ignore interrupts we're not waiting for */
246 stat &= mask;
247 /*
248 * mailbox interrupts (0x1 and 0x10) are level triggered.
249 * mask them now before acknowledging.
250 */
251 if (stat & 0x11)
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);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500256
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500257 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500258
Arnd Bergmann67207b92005-11-15 15:53:48 -0500259 if (stat & 1) /* PPC core mailbox */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200260 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500261
262 if (stat & 2) /* SPU stop-and-signal */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200263 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500264
265 if (stat & 4) /* SPU halted */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200266 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500267
268 if (stat & 8) /* DMA tag group complete */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200269 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500270
271 if (stat & 0x10) /* SPU mailbox threshold */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200272 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500273
Arnd Bergmann67207b92005-11-15 15:53:48 -0500274 return stat ? IRQ_HANDLED : IRQ_NONE;
275}
276
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000277static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500278{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000279 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500280
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000281 if (spu->irqs[0] != NO_IRQ) {
282 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
283 spu->number);
284 ret = request_irq(spu->irqs[0], spu_irq_class_0,
285 IRQF_DISABLED,
286 spu->irq_c0, spu);
287 if (ret)
288 goto bail0;
289 }
290 if (spu->irqs[1] != NO_IRQ) {
291 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
292 spu->number);
293 ret = request_irq(spu->irqs[1], spu_irq_class_1,
294 IRQF_DISABLED,
295 spu->irq_c1, spu);
296 if (ret)
297 goto bail1;
298 }
299 if (spu->irqs[2] != NO_IRQ) {
300 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
301 spu->number);
302 ret = request_irq(spu->irqs[2], spu_irq_class_2,
303 IRQF_DISABLED,
304 spu->irq_c2, spu);
305 if (ret)
306 goto bail2;
307 }
308 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500309
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000310bail2:
311 if (spu->irqs[1] != NO_IRQ)
312 free_irq(spu->irqs[1], spu);
313bail1:
314 if (spu->irqs[0] != NO_IRQ)
315 free_irq(spu->irqs[0], spu);
316bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500317 return ret;
318}
319
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000320static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500321{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000322 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);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500328}
329
Mark Nuttera68cf982006-10-04 17:26:12 +0200330static struct list_head spu_list[MAX_NUMNODES];
Christian Kraffte570beb2006-10-24 18:31:23 +0200331static LIST_HEAD(spu_full_list);
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800332static DEFINE_MUTEX(spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500333
334static void spu_init_channels(struct spu *spu)
335{
336 static const struct {
337 unsigned channel;
338 unsigned count;
339 } zero_list[] = {
340 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
341 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
342 }, count_list[] = {
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, },
346 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100347 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500348 int i;
349
350 priv2 = spu->priv2;
351
352 /* initialize all channel data to zero */
353 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
354 int count;
355
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);
359 }
360
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);
365 }
366}
367
Mark Nuttera68cf982006-10-04 17:26:12 +0200368struct spu *spu_alloc_node(int node)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500369{
Mark Nuttera68cf982006-10-04 17:26:12 +0200370 struct spu *spu = NULL;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500371
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800372 mutex_lock(&spu_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200373 if (!list_empty(&spu_list[node])) {
374 spu = list_entry(spu_list[node].next, struct spu, list);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500375 list_del_init(&spu->list);
Geoff Levandcc21a662006-10-24 18:31:15 +0200376 pr_debug("Got SPU %d %d\n", spu->number, spu->node);
Mark Nuttera68cf982006-10-04 17:26:12 +0200377 spu_init_channels(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500378 }
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800379 mutex_unlock(&spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500380
Mark Nuttera68cf982006-10-04 17:26:12 +0200381 return spu;
382}
383EXPORT_SYMBOL_GPL(spu_alloc_node);
384
385struct spu *spu_alloc(void)
386{
387 struct spu *spu = NULL;
388 int node;
389
390 for (node = 0; node < MAX_NUMNODES; node++) {
391 spu = spu_alloc_node(node);
392 if (spu)
393 break;
394 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500395
396 return spu;
397}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500398
399void spu_free(struct spu *spu)
400{
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800401 mutex_lock(&spu_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200402 list_add_tail(&spu->list, &spu_list[spu->node]);
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800403 mutex_unlock(&spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500404}
Arnd Bergmann39c73c32005-12-05 22:52:21 -0500405EXPORT_SYMBOL_GPL(spu_free);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500406
Arnd Bergmann67207b92005-11-15 15:53:48 -0500407static int spu_handle_mm_fault(struct spu *spu)
408{
Arnd Bergmann67207b92005-11-15 15:53:48 -0500409 struct mm_struct *mm = spu->mm;
410 struct vm_area_struct *vma;
411 u64 ea, dsisr, is_write;
412 int ret;
413
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500414 ea = spu->dar;
415 dsisr = spu->dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500416#if 0
417 if (!IS_VALID_EA(ea)) {
418 return -EFAULT;
419 }
420#endif /* XXX */
421 if (mm == NULL) {
422 return -EFAULT;
423 }
424 if (mm->pgd == NULL) {
425 return -EFAULT;
426 }
427
428 down_read(&mm->mmap_sem);
429 vma = find_vma(mm, ea);
430 if (!vma)
431 goto bad_area;
432 if (vma->vm_start <= ea)
433 goto good_area;
434 if (!(vma->vm_flags & VM_GROWSDOWN))
435 goto bad_area;
436#if 0
437 if (expand_stack(vma, ea))
438 goto bad_area;
439#endif /* XXX */
440good_area:
441 is_write = dsisr & MFC_DSISR_ACCESS_PUT;
442 if (is_write) {
443 if (!(vma->vm_flags & VM_WRITE))
444 goto bad_area;
445 } else {
446 if (dsisr & MFC_DSISR_ACCESS_DENIED)
447 goto bad_area;
448 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
449 goto bad_area;
450 }
451 ret = 0;
452 switch (handle_mm_fault(mm, vma, ea, is_write)) {
453 case VM_FAULT_MINOR:
454 current->min_flt++;
455 break;
456 case VM_FAULT_MAJOR:
457 current->maj_flt++;
458 break;
459 case VM_FAULT_SIGBUS:
460 ret = -EFAULT;
461 goto bad_area;
462 case VM_FAULT_OOM:
463 ret = -ENOMEM;
464 goto bad_area;
465 default:
466 BUG();
467 }
468 up_read(&mm->mmap_sem);
469 return ret;
470
471bad_area:
472 up_read(&mm->mmap_sem);
473 return -EFAULT;
474}
475
Arnd Bergmann51104592005-12-05 22:52:25 -0500476int spu_irq_class_1_bottom(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500477{
Arnd Bergmann67207b92005-11-15 15:53:48 -0500478 u64 ea, dsisr, access, error = 0UL;
479 int ret = 0;
480
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500481 ea = spu->dar;
482 dsisr = spu->dsisr;
Arnd Bergmann79c227a2006-03-24 19:49:27 +0100483 if (dsisr & (MFC_DSISR_PTE_NOT_FOUND | MFC_DSISR_ACCESS_DENIED)) {
Arnd Bergmannf8072212006-04-29 02:40:21 +0200484 u64 flags;
485
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500486 access = (_PAGE_PRESENT | _PAGE_USER);
487 access |= (dsisr & MFC_DSISR_ACCESS_PUT) ? _PAGE_RW : 0UL;
Arnd Bergmannf8072212006-04-29 02:40:21 +0200488 local_irq_save(flags);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500489 if (hash_page(ea, access, 0x300) != 0)
490 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
Arnd Bergmannf8072212006-04-29 02:40:21 +0200491 local_irq_restore(flags);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500492 }
Arnd Bergmann79c227a2006-03-24 19:49:27 +0100493 if (error & CLASS1_ENABLE_STORAGE_FAULT_INTR) {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500494 if ((ret = spu_handle_mm_fault(spu)) != 0)
495 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
496 else
497 error &= ~CLASS1_ENABLE_STORAGE_FAULT_INTR;
498 }
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500499 spu->dar = 0UL;
500 spu->dsisr = 0UL;
501 if (!error) {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500502 spu_restart_dma(spu);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500503 } else {
Arnd Bergmann453d9f72006-11-20 18:45:03 +0100504 spu->dma_callback(spu, SPE_EVENT_SPE_DATA_STORAGE);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500505 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500506 return ret;
507}
508
Jeremy Kerr1d640932006-06-19 20:33:19 +0200509struct sysdev_class spu_sysdev_class = {
510 set_kset_name("spu")
511};
512
Christian Kraffte570beb2006-10-24 18:31:23 +0200513int spu_add_sysdev_attr(struct sysdev_attribute *attr)
514{
515 struct spu *spu;
516 mutex_lock(&spu_mutex);
517
518 list_for_each_entry(spu, &spu_full_list, full_list)
519 sysdev_create_file(&spu->sysdev, attr);
520
521 mutex_unlock(&spu_mutex);
522 return 0;
523}
524EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
525
526int spu_add_sysdev_attr_group(struct attribute_group *attrs)
527{
528 struct spu *spu;
529 mutex_lock(&spu_mutex);
530
531 list_for_each_entry(spu, &spu_full_list, full_list)
532 sysfs_create_group(&spu->sysdev.kobj, attrs);
533
534 mutex_unlock(&spu_mutex);
535 return 0;
536}
537EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
538
539
540void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
541{
542 struct spu *spu;
543 mutex_lock(&spu_mutex);
544
545 list_for_each_entry(spu, &spu_full_list, full_list)
546 sysdev_remove_file(&spu->sysdev, attr);
547
548 mutex_unlock(&spu_mutex);
549}
550EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
551
552void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
553{
554 struct spu *spu;
555 mutex_lock(&spu_mutex);
556
557 list_for_each_entry(spu, &spu_full_list, full_list)
558 sysfs_remove_group(&spu->sysdev.kobj, attrs);
559
560 mutex_unlock(&spu_mutex);
561}
562EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
563
Jeremy Kerr1d640932006-06-19 20:33:19 +0200564static int spu_create_sysdev(struct spu *spu)
565{
566 int ret;
567
568 spu->sysdev.id = spu->number;
569 spu->sysdev.cls = &spu_sysdev_class;
570 ret = sysdev_register(&spu->sysdev);
571 if (ret) {
572 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
573 spu->number);
574 return ret;
575 }
576
Geoff Levand00215502006-11-20 18:45:02 +0100577 sysfs_add_device_to_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200578
579 return 0;
580}
581
582static void spu_destroy_sysdev(struct spu *spu)
583{
Geoff Levand00215502006-11-20 18:45:02 +0100584 sysfs_remove_device_from_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200585 sysdev_unregister(&spu->sysdev);
586}
587
Geoff Levande28b0032006-11-23 00:46:49 +0100588static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500589{
590 struct spu *spu;
591 int ret;
592 static int number;
593
594 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200595 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500596 if (!spu)
597 goto out;
598
Geoff Levande28b0032006-11-23 00:46:49 +0100599 spin_lock_init(&spu->register_lock);
600 mutex_lock(&spu_mutex);
601 spu->number = number++;
602 mutex_unlock(&spu_mutex);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000603
Geoff Levande28b0032006-11-23 00:46:49 +0100604 ret = spu_create_spu(spu, data);
605
Arnd Bergmann67207b92005-11-15 15:53:48 -0500606 if (ret)
607 goto out_free;
608
Masato Noguchi24f43b32006-10-24 18:31:14 +0200609 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100610 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500611 ret = spu_request_irqs(spu);
612 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100613 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500614
Jeremy Kerr1d640932006-06-19 20:33:19 +0200615 ret = spu_create_sysdev(spu);
616 if (ret)
617 goto out_free_irqs;
618
Geoff Levande28b0032006-11-23 00:46:49 +0100619 mutex_lock(&spu_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200620 list_add(&spu->list, &spu_list[spu->node]);
Christian Kraffte570beb2006-10-24 18:31:23 +0200621 list_add(&spu->full_list, &spu_full_list);
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800622 mutex_unlock(&spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500623
Arnd Bergmann67207b92005-11-15 15:53:48 -0500624 goto out;
625
Jeremy Kerr1d640932006-06-19 20:33:19 +0200626out_free_irqs:
627 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100628out_destroy:
629 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500630out_free:
631 kfree(spu);
632out:
633 return ret;
634}
635
636static void destroy_spu(struct spu *spu)
637{
638 list_del_init(&spu->list);
Christian Kraffte570beb2006-10-24 18:31:23 +0200639 list_del_init(&spu->full_list);
640
Jeremy Kerr1d640932006-06-19 20:33:19 +0200641 spu_destroy_sysdev(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500642 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100643 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500644 kfree(spu);
645}
646
647static void cleanup_spu_base(void)
648{
649 struct spu *spu, *tmp;
Mark Nuttera68cf982006-10-04 17:26:12 +0200650 int node;
651
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800652 mutex_lock(&spu_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200653 for (node = 0; node < MAX_NUMNODES; node++) {
654 list_for_each_entry_safe(spu, tmp, &spu_list[node], list)
655 destroy_spu(spu);
656 }
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800657 mutex_unlock(&spu_mutex);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200658 sysdev_class_unregister(&spu_sysdev_class);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500659}
660module_exit(cleanup_spu_base);
661
662static int __init init_spu_base(void)
663{
Mark Nuttera68cf982006-10-04 17:26:12 +0200664 int i, ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500665
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100666 if (!spu_management_ops)
667 return 0;
668
Jeremy Kerr1d640932006-06-19 20:33:19 +0200669 /* create sysdev class for spus */
670 ret = sysdev_class_register(&spu_sysdev_class);
671 if (ret)
672 return ret;
673
Mark Nuttera68cf982006-10-04 17:26:12 +0200674 for (i = 0; i < MAX_NUMNODES; i++)
675 INIT_LIST_HEAD(&spu_list[i]);
676
Geoff Levande28b0032006-11-23 00:46:49 +0100677 ret = spu_enumerate_spus(create_spu);
678
679 if (ret) {
680 printk(KERN_WARNING "%s: Error initializing spus\n",
681 __FUNCTION__);
682 cleanup_spu_base();
683 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500684 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200685
686 xmon_register_spus(&spu_full_list);
687
Arnd Bergmann67207b92005-11-15 15:53:48 -0500688 return ret;
689}
690module_init(init_spu_base);
691
692MODULE_LICENSE("GPL");
693MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");