blob: bfbd0455d8a7eedd070106ae3a11d8c4cb60af58 [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>
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>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080035#include <linux/mutex.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050036#include <asm/spu.h>
Geoff Levand540270d2006-06-19 20:33:29 +020037#include <asm/spu_priv1.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050038#include <asm/mmu_context.h>
39
40#include "interrupt.h"
41
Geoff Levand540270d2006-06-19 20:33:29 +020042const struct spu_priv1_ops *spu_priv1_ops;
43
44EXPORT_SYMBOL_GPL(spu_priv1_ops);
45
Arnd Bergmann67207b92005-11-15 15:53:48 -050046static int __spu_trap_invalid_dma(struct spu *spu)
47{
48 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +020049 spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
Arnd Bergmann67207b92005-11-15 15:53:48 -050050 return 0;
51}
52
53static int __spu_trap_dma_align(struct spu *spu)
54{
55 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +020056 spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
Arnd Bergmann67207b92005-11-15 15:53:48 -050057 return 0;
58}
59
60static int __spu_trap_error(struct spu *spu)
61{
62 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +020063 spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
Arnd Bergmann67207b92005-11-15 15:53:48 -050064 return 0;
65}
66
67static void spu_restart_dma(struct spu *spu)
68{
69 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -050070
Arnd Bergmann8837d922006-01-04 20:31:28 +010071 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -050072 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Arnd Bergmann67207b92005-11-15 15:53:48 -050073}
74
75static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
76{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050077 struct spu_priv2 __iomem *priv2 = spu->priv2;
78 struct mm_struct *mm = spu->mm;
arnd@arndb.de724bd802006-06-19 20:33:23 +020079 u64 esid, vsid, llp;
Arnd Bergmann67207b92005-11-15 15:53:48 -050080
81 pr_debug("%s\n", __FUNCTION__);
82
Arnd Bergmann8837d922006-01-04 20:31:28 +010083 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050084 /* SLBs are pre-loaded for context switch, so
85 * we should never get here!
86 */
Mark Nutter5473af02005-11-15 15:53:49 -050087 printk("%s: invalid access during switch!\n", __func__);
88 return 1;
89 }
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050090 if (!mm || (REGION_ID(ea) != USER_REGION_ID)) {
91 /* Future: support kernel segments so that drivers
92 * can use SPUs.
93 */
Arnd Bergmann67207b92005-11-15 15:53:48 -050094 pr_debug("invalid region access at %016lx\n", ea);
95 return 1;
96 }
97
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050098 esid = (ea & ESID_MASK) | SLB_ESID_V;
arnd@arndb.de724bd802006-06-19 20:33:23 +020099#ifdef CONFIG_HUGETLB_PAGE
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500100 if (in_hugepage_area(mm->context, ea))
arnd@arndb.de724bd802006-06-19 20:33:23 +0200101 llp = mmu_psize_defs[mmu_huge_psize].sllp;
102 else
103#endif
104 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
105 vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) |
106 SLB_VSID_USER | llp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500107
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500108 out_be64(&priv2->slb_index_W, spu->slb_replace);
109 out_be64(&priv2->slb_vsid_RW, vsid);
110 out_be64(&priv2->slb_esid_RW, esid);
111
112 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500113 if (spu->slb_replace >= 8)
114 spu->slb_replace = 0;
115
Arnd Bergmann67207b92005-11-15 15:53:48 -0500116 spu_restart_dma(spu);
117
Arnd Bergmann67207b92005-11-15 15:53:48 -0500118 return 0;
119}
120
Mark Nutter5473af02005-11-15 15:53:49 -0500121extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500122static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500123{
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100124 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500125
Mark Nutter5473af02005-11-15 15:53:49 -0500126 /* Handle kernel space hash faults immediately.
127 User hash faults need to be deferred to process context. */
128 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
129 && REGION_ID(ea) != USER_REGION_ID
130 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
131 spu_restart_dma(spu);
132 return 0;
133 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500134
Arnd Bergmann8837d922006-01-04 20:31:28 +0100135 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Mark Nutter5473af02005-11-15 15:53:49 -0500136 printk("%s: invalid access during switch!\n", __func__);
137 return 1;
138 }
139
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500140 spu->dar = ea;
141 spu->dsisr = dsisr;
142 mb();
Masato Noguchiba723fe22006-06-19 20:33:33 +0200143 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500144 return 0;
145}
146
147static irqreturn_t
148spu_irq_class_0(int irq, void *data, struct pt_regs *regs)
149{
150 struct spu *spu;
151
152 spu = data;
153 spu->class_0_pending = 1;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200154 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500155
156 return IRQ_HANDLED;
157}
158
Arnd Bergmann51104592005-12-05 22:52:25 -0500159int
Arnd Bergmann67207b92005-11-15 15:53:48 -0500160spu_irq_class_0_bottom(struct spu *spu)
161{
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500162 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500163
164 spu->class_0_pending = 0;
165
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100166 mask = spu_int_mask_get(spu, 0);
167 stat = spu_int_stat_get(spu, 0);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500168
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500169 stat &= mask;
170
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200171 if (stat & 1) /* invalid DMA alignment */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500172 __spu_trap_dma_align(spu);
173
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200174 if (stat & 2) /* invalid MFC DMA */
175 __spu_trap_invalid_dma(spu);
176
Arnd Bergmann67207b92005-11-15 15:53:48 -0500177 if (stat & 4) /* error on SPU */
178 __spu_trap_error(spu);
179
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100180 spu_int_stat_clear(spu, 0, stat);
Arnd Bergmann51104592005-12-05 22:52:25 -0500181
182 return (stat & 0x7) ? -EIO : 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500183}
Arnd Bergmann51104592005-12-05 22:52:25 -0500184EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500185
186static irqreturn_t
187spu_irq_class_1(int irq, void *data, struct pt_regs *regs)
188{
189 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500190 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500191
192 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500193
194 /* atomically read & clear class1 status. */
195 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100196 mask = spu_int_mask_get(spu, 1);
197 stat = spu_int_stat_get(spu, 1) & mask;
198 dar = spu_mfc_dar_get(spu);
199 dsisr = spu_mfc_dsisr_get(spu);
Arnd Bergmann38307342005-12-09 19:04:18 +0100200 if (stat & 2) /* mapping fault */
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100201 spu_mfc_dsisr_set(spu, 0ul);
202 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500203 spin_unlock(&spu->register_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100204 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
205 dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500206
207 if (stat & 1) /* segment fault */
208 __spu_trap_data_seg(spu, dar);
209
210 if (stat & 2) { /* mapping fault */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500211 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500212 }
213
214 if (stat & 4) /* ls compare & suspend on get */
215 ;
216
217 if (stat & 8) /* ls compare & suspend on put */
218 ;
219
Arnd Bergmann67207b92005-11-15 15:53:48 -0500220 return stat ? IRQ_HANDLED : IRQ_NONE;
221}
Arnd Bergmann51104592005-12-05 22:52:25 -0500222EXPORT_SYMBOL_GPL(spu_irq_class_1_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500223
224static irqreturn_t
225spu_irq_class_2(int irq, void *data, struct pt_regs *regs)
226{
227 struct spu *spu;
228 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500229 unsigned long mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500230
231 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200232 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100233 stat = spu_int_stat_get(spu, 2);
234 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200235 /* ignore interrupts we're not waiting for */
236 stat &= mask;
237 /*
238 * mailbox interrupts (0x1 and 0x10) are level triggered.
239 * mask them now before acknowledging.
240 */
241 if (stat & 0x11)
242 spu_int_mask_and(spu, 2, ~(stat & 0x11));
243 /* acknowledge all interrupts before the callbacks */
244 spu_int_stat_clear(spu, 2, stat);
245 spin_unlock(&spu->register_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500246
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500247 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500248
Arnd Bergmann67207b92005-11-15 15:53:48 -0500249 if (stat & 1) /* PPC core mailbox */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200250 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500251
252 if (stat & 2) /* SPU stop-and-signal */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200253 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500254
255 if (stat & 4) /* SPU halted */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200256 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500257
258 if (stat & 8) /* DMA tag group complete */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200259 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500260
261 if (stat & 0x10) /* SPU mailbox threshold */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200262 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500263
Arnd Bergmann67207b92005-11-15 15:53:48 -0500264 return stat ? IRQ_HANDLED : IRQ_NONE;
265}
266
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000267static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500268{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000269 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500270
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000271 if (spu->irqs[0] != NO_IRQ) {
272 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
273 spu->number);
274 ret = request_irq(spu->irqs[0], spu_irq_class_0,
275 IRQF_DISABLED,
276 spu->irq_c0, spu);
277 if (ret)
278 goto bail0;
279 }
280 if (spu->irqs[1] != NO_IRQ) {
281 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
282 spu->number);
283 ret = request_irq(spu->irqs[1], spu_irq_class_1,
284 IRQF_DISABLED,
285 spu->irq_c1, spu);
286 if (ret)
287 goto bail1;
288 }
289 if (spu->irqs[2] != NO_IRQ) {
290 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
291 spu->number);
292 ret = request_irq(spu->irqs[2], spu_irq_class_2,
293 IRQF_DISABLED,
294 spu->irq_c2, spu);
295 if (ret)
296 goto bail2;
297 }
298 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500299
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000300bail2:
301 if (spu->irqs[1] != NO_IRQ)
302 free_irq(spu->irqs[1], spu);
303bail1:
304 if (spu->irqs[0] != NO_IRQ)
305 free_irq(spu->irqs[0], spu);
306bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500307 return ret;
308}
309
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000310static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500311{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000312 if (spu->irqs[0] != NO_IRQ)
313 free_irq(spu->irqs[0], spu);
314 if (spu->irqs[1] != NO_IRQ)
315 free_irq(spu->irqs[1], spu);
316 if (spu->irqs[2] != NO_IRQ)
317 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500318}
319
Mark Nuttera68cf982006-10-04 17:26:12 +0200320static struct list_head spu_list[MAX_NUMNODES];
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800321static DEFINE_MUTEX(spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500322
323static void spu_init_channels(struct spu *spu)
324{
325 static const struct {
326 unsigned channel;
327 unsigned count;
328 } zero_list[] = {
329 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
330 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
331 }, count_list[] = {
332 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
333 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
334 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
335 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100336 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500337 int i;
338
339 priv2 = spu->priv2;
340
341 /* initialize all channel data to zero */
342 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
343 int count;
344
345 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
346 for (count = 0; count < zero_list[i].count; count++)
347 out_be64(&priv2->spu_chnldata_RW, 0);
348 }
349
350 /* initialize channel counts to meaningful values */
351 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
352 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
353 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
354 }
355}
356
Mark Nuttera68cf982006-10-04 17:26:12 +0200357struct spu *spu_alloc_node(int node)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500358{
Mark Nuttera68cf982006-10-04 17:26:12 +0200359 struct spu *spu = NULL;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500360
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800361 mutex_lock(&spu_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200362 if (!list_empty(&spu_list[node])) {
363 spu = list_entry(spu_list[node].next, struct spu, list);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500364 list_del_init(&spu->list);
Mark Nuttera68cf982006-10-04 17:26:12 +0200365 pr_debug("Got SPU %x %d %d\n",
366 spu->isrc, spu->number, spu->node);
367 spu_init_channels(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500368 }
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800369 mutex_unlock(&spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500370
Mark Nuttera68cf982006-10-04 17:26:12 +0200371 return spu;
372}
373EXPORT_SYMBOL_GPL(spu_alloc_node);
374
375struct spu *spu_alloc(void)
376{
377 struct spu *spu = NULL;
378 int node;
379
380 for (node = 0; node < MAX_NUMNODES; node++) {
381 spu = spu_alloc_node(node);
382 if (spu)
383 break;
384 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500385
386 return spu;
387}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500388
389void spu_free(struct spu *spu)
390{
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800391 mutex_lock(&spu_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200392 list_add_tail(&spu->list, &spu_list[spu->node]);
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800393 mutex_unlock(&spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500394}
Arnd Bergmann39c73c32005-12-05 22:52:21 -0500395EXPORT_SYMBOL_GPL(spu_free);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500396
Arnd Bergmann67207b92005-11-15 15:53:48 -0500397static int spu_handle_mm_fault(struct spu *spu)
398{
Arnd Bergmann67207b92005-11-15 15:53:48 -0500399 struct mm_struct *mm = spu->mm;
400 struct vm_area_struct *vma;
401 u64 ea, dsisr, is_write;
402 int ret;
403
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500404 ea = spu->dar;
405 dsisr = spu->dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500406#if 0
407 if (!IS_VALID_EA(ea)) {
408 return -EFAULT;
409 }
410#endif /* XXX */
411 if (mm == NULL) {
412 return -EFAULT;
413 }
414 if (mm->pgd == NULL) {
415 return -EFAULT;
416 }
417
418 down_read(&mm->mmap_sem);
419 vma = find_vma(mm, ea);
420 if (!vma)
421 goto bad_area;
422 if (vma->vm_start <= ea)
423 goto good_area;
424 if (!(vma->vm_flags & VM_GROWSDOWN))
425 goto bad_area;
426#if 0
427 if (expand_stack(vma, ea))
428 goto bad_area;
429#endif /* XXX */
430good_area:
431 is_write = dsisr & MFC_DSISR_ACCESS_PUT;
432 if (is_write) {
433 if (!(vma->vm_flags & VM_WRITE))
434 goto bad_area;
435 } else {
436 if (dsisr & MFC_DSISR_ACCESS_DENIED)
437 goto bad_area;
438 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
439 goto bad_area;
440 }
441 ret = 0;
442 switch (handle_mm_fault(mm, vma, ea, is_write)) {
443 case VM_FAULT_MINOR:
444 current->min_flt++;
445 break;
446 case VM_FAULT_MAJOR:
447 current->maj_flt++;
448 break;
449 case VM_FAULT_SIGBUS:
450 ret = -EFAULT;
451 goto bad_area;
452 case VM_FAULT_OOM:
453 ret = -ENOMEM;
454 goto bad_area;
455 default:
456 BUG();
457 }
458 up_read(&mm->mmap_sem);
459 return ret;
460
461bad_area:
462 up_read(&mm->mmap_sem);
463 return -EFAULT;
464}
465
Arnd Bergmann51104592005-12-05 22:52:25 -0500466int spu_irq_class_1_bottom(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500467{
Arnd Bergmann67207b92005-11-15 15:53:48 -0500468 u64 ea, dsisr, access, error = 0UL;
469 int ret = 0;
470
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500471 ea = spu->dar;
472 dsisr = spu->dsisr;
Arnd Bergmann79c227a2006-03-24 19:49:27 +0100473 if (dsisr & (MFC_DSISR_PTE_NOT_FOUND | MFC_DSISR_ACCESS_DENIED)) {
Arnd Bergmannf8072212006-04-29 02:40:21 +0200474 u64 flags;
475
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500476 access = (_PAGE_PRESENT | _PAGE_USER);
477 access |= (dsisr & MFC_DSISR_ACCESS_PUT) ? _PAGE_RW : 0UL;
Arnd Bergmannf8072212006-04-29 02:40:21 +0200478 local_irq_save(flags);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500479 if (hash_page(ea, access, 0x300) != 0)
480 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
Arnd Bergmannf8072212006-04-29 02:40:21 +0200481 local_irq_restore(flags);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500482 }
Arnd Bergmann79c227a2006-03-24 19:49:27 +0100483 if (error & CLASS1_ENABLE_STORAGE_FAULT_INTR) {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500484 if ((ret = spu_handle_mm_fault(spu)) != 0)
485 error |= CLASS1_ENABLE_STORAGE_FAULT_INTR;
486 else
487 error &= ~CLASS1_ENABLE_STORAGE_FAULT_INTR;
488 }
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500489 spu->dar = 0UL;
490 spu->dsisr = 0UL;
491 if (!error) {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500492 spu_restart_dma(spu);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500493 } else {
494 __spu_trap_invalid_dma(spu);
495 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500496 return ret;
497}
498
Joel H Schoppbed120c2006-05-01 12:16:11 -0700499static int __init find_spu_node_id(struct device_node *spe)
500{
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000501 const unsigned int *id;
Joel H Schoppbed120c2006-05-01 12:16:11 -0700502 struct device_node *cpu;
503 cpu = spe->parent->parent;
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000504 id = get_property(cpu, "node-id", NULL);
Joel H Schoppbed120c2006-05-01 12:16:11 -0700505 return id ? *id : 0;
506}
507
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700508static int __init cell_spuprop_present(struct spu *spu, struct device_node *spe,
509 const char *prop)
Joel H Schoppbed120c2006-05-01 12:16:11 -0700510{
511 static DEFINE_MUTEX(add_spumem_mutex);
512
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000513 const struct address_prop {
Joel H Schoppbed120c2006-05-01 12:16:11 -0700514 unsigned long address;
515 unsigned int len;
516 } __attribute__((packed)) *p;
517 int proplen;
518
519 unsigned long start_pfn, nr_pages;
Joel H Schoppbed120c2006-05-01 12:16:11 -0700520 struct pglist_data *pgdata;
521 struct zone *zone;
522 int ret;
523
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000524 p = get_property(spe, prop, &proplen);
Joel H Schoppbed120c2006-05-01 12:16:11 -0700525 WARN_ON(proplen != sizeof (*p));
526
527 start_pfn = p->address >> PAGE_SHIFT;
528 nr_pages = ((unsigned long)p->len + PAGE_SIZE - 1) >> PAGE_SHIFT;
529
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700530 pgdata = NODE_DATA(spu->nid);
Joel H Schoppbed120c2006-05-01 12:16:11 -0700531 zone = pgdata->node_zones;
532
533 /* XXX rethink locking here */
534 mutex_lock(&add_spumem_mutex);
535 ret = __add_pages(zone, start_pfn, nr_pages);
536 mutex_unlock(&add_spumem_mutex);
537
538 return ret;
539}
540
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700541static void __iomem * __init map_spe_prop(struct spu *spu,
542 struct device_node *n, const char *name)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500543{
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000544 const struct address_prop {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500545 unsigned long address;
546 unsigned int len;
547 } __attribute__((packed)) *prop;
548
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000549 const void *p;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500550 int proplen;
Al Viroed2bfcd2006-09-23 01:37:41 +0100551 void __iomem *ret = NULL;
Joel H Schoppbed120c2006-05-01 12:16:11 -0700552 int err = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500553
554 p = get_property(n, name, &proplen);
555 if (proplen != sizeof (struct address_prop))
556 return NULL;
557
558 prop = p;
559
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700560 err = cell_spuprop_present(spu, n, name);
Joel H Schoppbed120c2006-05-01 12:16:11 -0700561 if (err && (err != -EEXIST))
562 goto out;
563
564 ret = ioremap(prop->address, prop->len);
565
566 out:
567 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500568}
569
570static void spu_unmap(struct spu *spu)
571{
572 iounmap(spu->priv2);
573 iounmap(spu->priv1);
574 iounmap(spu->problem);
Al Viroed2bfcd2006-09-23 01:37:41 +0100575 iounmap((__force u8 __iomem *)spu->local_store);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500576}
577
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000578/* This function shall be abstracted for HV platforms */
579static int __init spu_map_interrupts(struct spu *spu, struct device_node *np)
580{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000581 unsigned int isrc;
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000582 const u32 *tmp;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000583
Benjamin Herrenschmidt2e194582006-09-29 15:00:29 +1000584 /* Get the interrupt source unit from the device-tree */
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000585 tmp = get_property(np, "isrc", NULL);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000586 if (!tmp)
587 return -ENODEV;
Benjamin Herrenschmidt2e194582006-09-29 15:00:29 +1000588 isrc = tmp[0];
589
590 /* Add the node number */
591 isrc |= spu->node << IIC_IRQ_NODE_SHIFT;
592 spu->isrc = isrc;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000593
594 /* Now map interrupts of all 3 classes */
Benjamin Herrenschmidt2e194582006-09-29 15:00:29 +1000595 spu->irqs[0] = irq_create_mapping(NULL, IIC_IRQ_CLASS_0 | isrc);
596 spu->irqs[1] = irq_create_mapping(NULL, IIC_IRQ_CLASS_1 | isrc);
597 spu->irqs[2] = irq_create_mapping(NULL, IIC_IRQ_CLASS_2 | isrc);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000598
599 /* Right now, we only fail if class 2 failed */
600 return spu->irqs[2] == NO_IRQ ? -EINVAL : 0;
601}
602
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700603static int __init spu_map_device(struct spu *spu, struct device_node *node)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500604{
Jeremy Kerrc61c27d2006-07-12 15:39:54 +1000605 const char *prop;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500606 int ret;
607
608 ret = -ENODEV;
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700609 spu->name = get_property(node, "name", NULL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500610 if (!spu->name)
611 goto out;
612
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700613 prop = get_property(node, "local-store", NULL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500614 if (!prop)
615 goto out;
616 spu->local_store_phys = *(unsigned long *)prop;
617
618 /* we use local store as ram, not io memory */
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700619 spu->local_store = (void __force *)
620 map_spe_prop(spu, node, "local-store");
Arnd Bergmann67207b92005-11-15 15:53:48 -0500621 if (!spu->local_store)
622 goto out;
623
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700624 prop = get_property(node, "problem", NULL);
Mark Nutter6df10a82006-03-23 00:00:12 +0100625 if (!prop)
626 goto out_unmap;
627 spu->problem_phys = *(unsigned long *)prop;
628
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700629 spu->problem= map_spe_prop(spu, node, "problem");
Arnd Bergmann67207b92005-11-15 15:53:48 -0500630 if (!spu->problem)
631 goto out_unmap;
632
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700633 spu->priv1= map_spe_prop(spu, node, "priv1");
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100634 /* priv1 is not available on a hypervisor */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500635
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700636 spu->priv2= map_spe_prop(spu, node, "priv2");
Arnd Bergmann67207b92005-11-15 15:53:48 -0500637 if (!spu->priv2)
638 goto out_unmap;
639 ret = 0;
640 goto out;
641
642out_unmap:
643 spu_unmap(spu);
644out:
645 return ret;
646}
647
Jeremy Kerr1d640932006-06-19 20:33:19 +0200648struct sysdev_class spu_sysdev_class = {
649 set_kset_name("spu")
650};
651
652static ssize_t spu_show_isrc(struct sys_device *sysdev, char *buf)
653{
654 struct spu *spu = container_of(sysdev, struct spu, sysdev);
655 return sprintf(buf, "%d\n", spu->isrc);
656
657}
658static SYSDEV_ATTR(isrc, 0400, spu_show_isrc, NULL);
659
660extern int attach_sysdev_to_node(struct sys_device *dev, int nid);
661
662static int spu_create_sysdev(struct spu *spu)
663{
664 int ret;
665
666 spu->sysdev.id = spu->number;
667 spu->sysdev.cls = &spu_sysdev_class;
668 ret = sysdev_register(&spu->sysdev);
669 if (ret) {
670 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
671 spu->number);
672 return ret;
673 }
674
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000675 if (spu->isrc != 0)
676 sysdev_create_file(&spu->sysdev, &attr_isrc);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200677 sysfs_add_device_to_node(&spu->sysdev, spu->nid);
678
679 return 0;
680}
681
682static void spu_destroy_sysdev(struct spu *spu)
683{
684 sysdev_remove_file(&spu->sysdev, &attr_isrc);
685 sysfs_remove_device_from_node(&spu->sysdev, spu->nid);
686 sysdev_unregister(&spu->sysdev);
687}
688
Arnd Bergmann67207b92005-11-15 15:53:48 -0500689static int __init create_spu(struct device_node *spe)
690{
691 struct spu *spu;
692 int ret;
693 static int number;
694
695 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200696 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500697 if (!spu)
698 goto out;
699
700 ret = spu_map_device(spu, spe);
701 if (ret)
702 goto out_free;
703
704 spu->node = find_spu_node_id(spe);
Jeremy Kerr8261aa62006-05-01 12:16:13 -0700705 spu->nid = of_node_to_nid(spe);
706 if (spu->nid == -1)
707 spu->nid = 0;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000708 ret = spu_map_interrupts(spu, spe);
709 if (ret)
710 goto out_unmap;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500711 spin_lock_init(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100712 spu_mfc_sdr_set(spu, mfspr(SPRN_SDR1));
713 spu_mfc_sr1_set(spu, 0x33);
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800714 mutex_lock(&spu_mutex);
Jeremy Kerrecec2172006-06-19 20:33:26 +0200715
Arnd Bergmann67207b92005-11-15 15:53:48 -0500716 spu->number = number++;
717 ret = spu_request_irqs(spu);
718 if (ret)
719 goto out_unmap;
720
Jeremy Kerr1d640932006-06-19 20:33:19 +0200721 ret = spu_create_sysdev(spu);
722 if (ret)
723 goto out_free_irqs;
724
Mark Nuttera68cf982006-10-04 17:26:12 +0200725 list_add(&spu->list, &spu_list[spu->node]);
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800726 mutex_unlock(&spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500727
728 pr_debug(KERN_DEBUG "Using SPE %s %02x %p %p %p %p %d\n",
729 spu->name, spu->isrc, spu->local_store,
730 spu->problem, spu->priv1, spu->priv2, spu->number);
731 goto out;
732
Jeremy Kerr1d640932006-06-19 20:33:19 +0200733out_free_irqs:
734 spu_free_irqs(spu);
735
Arnd Bergmann67207b92005-11-15 15:53:48 -0500736out_unmap:
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800737 mutex_unlock(&spu_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500738 spu_unmap(spu);
739out_free:
740 kfree(spu);
741out:
742 return ret;
743}
744
745static void destroy_spu(struct spu *spu)
746{
747 list_del_init(&spu->list);
748
Jeremy Kerr1d640932006-06-19 20:33:19 +0200749 spu_destroy_sysdev(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500750 spu_free_irqs(spu);
751 spu_unmap(spu);
752 kfree(spu);
753}
754
755static void cleanup_spu_base(void)
756{
757 struct spu *spu, *tmp;
Mark Nuttera68cf982006-10-04 17:26:12 +0200758 int node;
759
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800760 mutex_lock(&spu_mutex);
Mark Nuttera68cf982006-10-04 17:26:12 +0200761 for (node = 0; node < MAX_NUMNODES; node++) {
762 list_for_each_entry_safe(spu, tmp, &spu_list[node], list)
763 destroy_spu(spu);
764 }
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800765 mutex_unlock(&spu_mutex);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200766 sysdev_class_unregister(&spu_sysdev_class);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500767}
768module_exit(cleanup_spu_base);
769
770static int __init init_spu_base(void)
771{
772 struct device_node *node;
Mark Nuttera68cf982006-10-04 17:26:12 +0200773 int i, ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500774
Jeremy Kerr1d640932006-06-19 20:33:19 +0200775 /* create sysdev class for spus */
776 ret = sysdev_class_register(&spu_sysdev_class);
777 if (ret)
778 return ret;
779
Mark Nuttera68cf982006-10-04 17:26:12 +0200780 for (i = 0; i < MAX_NUMNODES; i++)
781 INIT_LIST_HEAD(&spu_list[i]);
782
Arnd Bergmann67207b92005-11-15 15:53:48 -0500783 ret = -ENODEV;
784 for (node = of_find_node_by_type(NULL, "spe");
785 node; node = of_find_node_by_type(node, "spe")) {
786 ret = create_spu(node);
787 if (ret) {
788 printk(KERN_WARNING "%s: Error initializing %s\n",
789 __FUNCTION__, node->name);
790 cleanup_spu_base();
791 break;
792 }
793 }
794 /* in some old firmware versions, the spe is called 'spc', so we
795 look for that as well */
796 for (node = of_find_node_by_type(NULL, "spc");
797 node; node = of_find_node_by_type(node, "spc")) {
798 ret = create_spu(node);
799 if (ret) {
800 printk(KERN_WARNING "%s: Error initializing %s\n",
801 __FUNCTION__, node->name);
802 cleanup_spu_base();
803 break;
804 }
805 }
806 return ret;
807}
808module_init(init_spu_base);
809
810MODULE_LICENSE("GPL");
811MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");