blob: 95001cdfaa260dfa48377aa9ec3062811834b8fe [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>
Geert Uytterhoevenbce94512007-07-17 04:05:52 -070034#include <linux/linux_logo.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050035#include <asm/spu.h>
Geoff Levand540270d2006-06-19 20:33:29 +020036#include <asm/spu_priv1.h>
Jeremy Kerr58bd4032007-12-05 13:49:31 +110037#include <asm/spu_csa.h>
Michael Ellermanff8a8f22006-10-24 18:31:27 +020038#include <asm/xmon.h>
Arnd Bergmann3ad216c2007-07-20 21:39:46 +020039#include <asm/prom.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050040
Geoff Levande28b0032006-11-23 00:46:49 +010041const struct spu_management_ops *spu_management_ops;
Jeremy Kerrccf17e92007-04-23 21:08:29 +020042EXPORT_SYMBOL_GPL(spu_management_ops);
43
Geoff Levand540270d2006-06-19 20:33:29 +020044const struct spu_priv1_ops *spu_priv1_ops;
Geoff Levand540270d2006-06-19 20:33:29 +020045EXPORT_SYMBOL_GPL(spu_priv1_ops);
46
Christoph Hellwig24140592007-07-20 21:39:51 +020047struct cbe_spu_info cbe_spu_info[MAX_NUMNODES];
48EXPORT_SYMBOL_GPL(cbe_spu_info);
49
50/*
Jeremy Kerr3ce2f622007-12-05 13:49:31 +110051 * The spufs fault-handling code needs to call force_sig_info to raise signals
52 * on DMA errors. Export it here to avoid general kernel-wide access to this
53 * function
54 */
55EXPORT_SYMBOL_GPL(force_sig_info);
56
57/*
Christoph Hellwig24140592007-07-20 21:39:51 +020058 * Protects cbe_spu_info and spu->number.
59 */
60static DEFINE_SPINLOCK(spu_lock);
61
62/*
63 * List of all spus in the system.
64 *
65 * This list is iterated by callers from irq context and callers that
66 * want to sleep. Thus modifications need to be done with both
67 * spu_full_list_lock and spu_full_list_mutex held, while iterating
68 * through it requires either of these locks.
69 *
70 * In addition spu_full_list_lock protects all assignmens to
71 * spu->mm.
72 */
73static LIST_HEAD(spu_full_list);
74static DEFINE_SPINLOCK(spu_full_list_lock);
75static DEFINE_MUTEX(spu_full_list_mutex);
76
Jeremy Kerr58bd4032007-12-05 13:49:31 +110077struct spu_slb {
78 u64 esid, vsid;
79};
80
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010081void spu_invalidate_slbs(struct spu *spu)
82{
83 struct spu_priv2 __iomem *priv2 = spu->priv2;
84
85 if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
86 out_be64(&priv2->slb_invalidate_all_W, 0UL);
87}
88EXPORT_SYMBOL_GPL(spu_invalidate_slbs);
89
90/* This is called by the MM core when a segment size is changed, to
91 * request a flush of all the SPEs using a given mm
92 */
93void spu_flush_all_slbs(struct mm_struct *mm)
94{
95 struct spu *spu;
96 unsigned long flags;
97
Christoph Hellwig24140592007-07-20 21:39:51 +020098 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010099 list_for_each_entry(spu, &spu_full_list, full_list) {
100 if (spu->mm == mm)
101 spu_invalidate_slbs(spu);
102 }
Christoph Hellwig24140592007-07-20 21:39:51 +0200103 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100104}
105
106/* The hack below stinks... try to do something better one of
107 * these days... Does it even work properly with NR_CPUS == 1 ?
108 */
109static inline void mm_needs_global_tlbie(struct mm_struct *mm)
110{
111 int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
112
113 /* Global TLBIE broadcast required with SPEs. */
114 __cpus_setall(&mm->cpu_vm_mask, nr);
115}
116
117void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
118{
119 unsigned long flags;
120
Christoph Hellwig24140592007-07-20 21:39:51 +0200121 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100122 spu->mm = mm;
Christoph Hellwig24140592007-07-20 21:39:51 +0200123 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100124 if (mm)
125 mm_needs_global_tlbie(mm);
126}
127EXPORT_SYMBOL_GPL(spu_associate_mm);
128
Jeremy Kerrf6eb7d7f2007-12-05 13:49:31 +1100129int spu_64k_pages_available(void)
130{
131 return mmu_psize_defs[MMU_PAGE_64K].shift != 0;
132}
133EXPORT_SYMBOL_GPL(spu_64k_pages_available);
134
Arnd Bergmann67207b92005-11-15 15:53:48 -0500135static int __spu_trap_invalid_dma(struct spu *spu)
136{
137 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200138 spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500139 return 0;
140}
141
142static int __spu_trap_dma_align(struct spu *spu)
143{
144 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200145 spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500146 return 0;
147}
148
149static int __spu_trap_error(struct spu *spu)
150{
151 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200152 spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500153 return 0;
154}
155
156static void spu_restart_dma(struct spu *spu)
157{
158 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -0500159
Arnd Bergmann8837d922006-01-04 20:31:28 +0100160 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -0500161 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500162}
163
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100164static inline void spu_load_slb(struct spu *spu, int slbe, struct spu_slb *slb)
165{
166 struct spu_priv2 __iomem *priv2 = spu->priv2;
167
168 pr_debug("%s: adding SLB[%d] 0x%016lx 0x%016lx\n",
169 __func__, slbe, slb->vsid, slb->esid);
170
171 out_be64(&priv2->slb_index_W, slbe);
172 out_be64(&priv2->slb_vsid_RW, slb->vsid);
173 out_be64(&priv2->slb_esid_RW, slb->esid);
174}
175
Arnd Bergmann67207b92005-11-15 15:53:48 -0500176static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
177{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500178 struct mm_struct *mm = spu->mm;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100179 struct spu_slb slb;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100180 int psize;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500181
182 pr_debug("%s\n", __FUNCTION__);
183
Arnd Bergmann8837d922006-01-04 20:31:28 +0100184 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500185 /* SLBs are pre-loaded for context switch, so
186 * we should never get here!
187 */
Mark Nutter5473af02005-11-15 15:53:49 -0500188 printk("%s: invalid access during switch!\n", __func__);
189 return 1;
190 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100191 slb.esid = (ea & ESID_MASK) | SLB_ESID_V;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200192
193 switch(REGION_ID(ea)) {
194 case USER_REGION_ID:
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000195#ifdef CONFIG_PPC_MM_SLICES
196 psize = get_slice_psize(mm, ea);
197#else
198 psize = mm->context.user_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200199#endif
Jeremy Kerr4d434662007-12-05 13:49:31 +1100200 slb.vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M)
201 << SLB_VSID_SHIFT) | SLB_VSID_USER;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200202 break;
203 case VMALLOC_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100204 if (ea < VMALLOC_END)
205 psize = mmu_vmalloc_psize;
206 else
207 psize = mmu_io_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100208 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
209 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200210 break;
211 case KERNEL_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100212 psize = mmu_linear_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100213 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
214 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200215 break;
216 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500217 /* Future: support kernel segments so that drivers
218 * can use SPUs.
219 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500220 pr_debug("invalid region access at %016lx\n", ea);
221 return 1;
222 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100223 slb.vsid |= mmu_psize_defs[psize].sllp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500224
Jeremy Kerr4d434662007-12-05 13:49:31 +1100225 spu_load_slb(spu, spu->slb_replace, &slb);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500226
227 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500228 if (spu->slb_replace >= 8)
229 spu->slb_replace = 0;
230
Arnd Bergmann67207b92005-11-15 15:53:48 -0500231 spu_restart_dma(spu);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000232 spu->stats.slb_flt++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500233 return 0;
234}
235
Mark Nutter5473af02005-11-15 15:53:49 -0500236extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500237static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500238{
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100239 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500240
Mark Nutter5473af02005-11-15 15:53:49 -0500241 /* Handle kernel space hash faults immediately.
242 User hash faults need to be deferred to process context. */
243 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
244 && REGION_ID(ea) != USER_REGION_ID
245 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
246 spu_restart_dma(spu);
247 return 0;
248 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500249
Arnd Bergmann8837d922006-01-04 20:31:28 +0100250 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Mark Nutter5473af02005-11-15 15:53:49 -0500251 printk("%s: invalid access during switch!\n", __func__);
252 return 1;
253 }
254
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500255 spu->dar = ea;
256 spu->dsisr = dsisr;
257 mb();
Masato Noguchiba723fe22006-06-19 20:33:33 +0200258 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500259 return 0;
260}
261
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100262static void __spu_kernel_slb(void *addr, struct spu_slb *slb)
263{
264 unsigned long ea = (unsigned long)addr;
265 u64 llp;
266
267 if (REGION_ID(ea) == KERNEL_REGION_ID)
268 llp = mmu_psize_defs[mmu_linear_psize].sllp;
269 else
270 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
271
272 slb->vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
273 SLB_VSID_KERNEL | llp;
274 slb->esid = (ea & ESID_MASK) | SLB_ESID_V;
275}
276
277/**
278 * Setup the SPU kernel SLBs, in preparation for a context save/restore. We
279 * need to map both the context save area, and the save/restore code.
280 */
281void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa, void *code)
282{
283 struct spu_slb code_slb, lscsa_slb;
284
285 __spu_kernel_slb(lscsa, &lscsa_slb);
286 __spu_kernel_slb(code, &code_slb);
287
288 spu_load_slb(spu, 0, &lscsa_slb);
289 if (lscsa_slb.esid != code_slb.esid)
290 spu_load_slb(spu, 1, &code_slb);
291}
292EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs);
293
Arnd Bergmann67207b92005-11-15 15:53:48 -0500294static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200295spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500296{
297 struct spu *spu;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000298 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500299
300 spu = data;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000301
302 mask = spu_int_mask_get(spu, 0);
303 stat = spu_int_stat_get(spu, 0);
304 stat &= mask;
305
306 spin_lock(&spu->register_lock);
307 spu->class_0_pending |= stat;
308 spin_unlock(&spu->register_lock);
309
Masato Noguchiba723fe22006-06-19 20:33:33 +0200310 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500311
Masato Noguchib7f90a42007-09-07 18:28:27 +1000312 spu_int_stat_clear(spu, 0, stat);
313
Arnd Bergmann67207b92005-11-15 15:53:48 -0500314 return IRQ_HANDLED;
315}
316
Arnd Bergmann51104592005-12-05 22:52:25 -0500317int
Arnd Bergmann67207b92005-11-15 15:53:48 -0500318spu_irq_class_0_bottom(struct spu *spu)
319{
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900320 unsigned long flags;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000321 unsigned long stat;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500322
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900323 spin_lock_irqsave(&spu->register_lock, flags);
Masato Noguchib7f90a42007-09-07 18:28:27 +1000324 stat = spu->class_0_pending;
325 spu->class_0_pending = 0;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500326
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200327 if (stat & 1) /* invalid DMA alignment */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500328 __spu_trap_dma_align(spu);
329
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200330 if (stat & 2) /* invalid MFC DMA */
331 __spu_trap_invalid_dma(spu);
332
Arnd Bergmann67207b92005-11-15 15:53:48 -0500333 if (stat & 4) /* error on SPU */
334 __spu_trap_error(spu);
335
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900336 spin_unlock_irqrestore(&spu->register_lock, flags);
Arnd Bergmann51104592005-12-05 22:52:25 -0500337
338 return (stat & 0x7) ? -EIO : 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500339}
Arnd Bergmann51104592005-12-05 22:52:25 -0500340EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500341
342static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200343spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500344{
345 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500346 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500347
348 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500349
350 /* atomically read & clear class1 status. */
351 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100352 mask = spu_int_mask_get(spu, 1);
353 stat = spu_int_stat_get(spu, 1) & mask;
354 dar = spu_mfc_dar_get(spu);
355 dsisr = spu_mfc_dsisr_get(spu);
Arnd Bergmann38307342005-12-09 19:04:18 +0100356 if (stat & 2) /* mapping fault */
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100357 spu_mfc_dsisr_set(spu, 0ul);
358 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500359 spin_unlock(&spu->register_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100360 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
361 dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500362
363 if (stat & 1) /* segment fault */
364 __spu_trap_data_seg(spu, dar);
365
366 if (stat & 2) { /* mapping fault */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500367 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500368 }
369
370 if (stat & 4) /* ls compare & suspend on get */
371 ;
372
373 if (stat & 8) /* ls compare & suspend on put */
374 ;
375
Arnd Bergmann67207b92005-11-15 15:53:48 -0500376 return stat ? IRQ_HANDLED : IRQ_NONE;
377}
378
379static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200380spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500381{
382 struct spu *spu;
383 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500384 unsigned long mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500385
386 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200387 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100388 stat = spu_int_stat_get(spu, 2);
389 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200390 /* ignore interrupts we're not waiting for */
391 stat &= mask;
392 /*
393 * mailbox interrupts (0x1 and 0x10) are level triggered.
394 * mask them now before acknowledging.
395 */
396 if (stat & 0x11)
397 spu_int_mask_and(spu, 2, ~(stat & 0x11));
398 /* acknowledge all interrupts before the callbacks */
399 spu_int_stat_clear(spu, 2, stat);
400 spin_unlock(&spu->register_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500401
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500402 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500403
Arnd Bergmann67207b92005-11-15 15:53:48 -0500404 if (stat & 1) /* PPC core mailbox */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200405 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500406
407 if (stat & 2) /* SPU stop-and-signal */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200408 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500409
410 if (stat & 4) /* SPU halted */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200411 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500412
413 if (stat & 8) /* DMA tag group complete */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200414 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500415
416 if (stat & 0x10) /* SPU mailbox threshold */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200417 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500418
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000419 spu->stats.class2_intr++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500420 return stat ? IRQ_HANDLED : IRQ_NONE;
421}
422
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000423static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500424{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000425 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500426
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000427 if (spu->irqs[0] != NO_IRQ) {
428 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
429 spu->number);
430 ret = request_irq(spu->irqs[0], spu_irq_class_0,
431 IRQF_DISABLED,
432 spu->irq_c0, spu);
433 if (ret)
434 goto bail0;
435 }
436 if (spu->irqs[1] != NO_IRQ) {
437 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
438 spu->number);
439 ret = request_irq(spu->irqs[1], spu_irq_class_1,
440 IRQF_DISABLED,
441 spu->irq_c1, spu);
442 if (ret)
443 goto bail1;
444 }
445 if (spu->irqs[2] != NO_IRQ) {
446 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
447 spu->number);
448 ret = request_irq(spu->irqs[2], spu_irq_class_2,
449 IRQF_DISABLED,
450 spu->irq_c2, spu);
451 if (ret)
452 goto bail2;
453 }
454 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500455
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000456bail2:
457 if (spu->irqs[1] != NO_IRQ)
458 free_irq(spu->irqs[1], spu);
459bail1:
460 if (spu->irqs[0] != NO_IRQ)
461 free_irq(spu->irqs[0], spu);
462bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500463 return ret;
464}
465
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000466static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500467{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000468 if (spu->irqs[0] != NO_IRQ)
469 free_irq(spu->irqs[0], spu);
470 if (spu->irqs[1] != NO_IRQ)
471 free_irq(spu->irqs[1], spu);
472 if (spu->irqs[2] != NO_IRQ)
473 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500474}
475
Christoph Hellwig486acd42007-07-20 21:39:54 +0200476void spu_init_channels(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500477{
478 static const struct {
479 unsigned channel;
480 unsigned count;
481 } zero_list[] = {
482 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
483 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
484 }, count_list[] = {
485 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
486 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
487 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
488 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100489 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500490 int i;
491
492 priv2 = spu->priv2;
493
494 /* initialize all channel data to zero */
495 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
496 int count;
497
498 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
499 for (count = 0; count < zero_list[i].count; count++)
500 out_be64(&priv2->spu_chnldata_RW, 0);
501 }
502
503 /* initialize channel counts to meaningful values */
504 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
505 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
506 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
507 }
508}
Christoph Hellwig486acd42007-07-20 21:39:54 +0200509EXPORT_SYMBOL_GPL(spu_init_channels);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500510
Geoff Levand6deac062007-06-16 07:17:32 +1000511static int spu_shutdown(struct sys_device *sysdev)
512{
513 struct spu *spu = container_of(sysdev, struct spu, sysdev);
514
515 spu_free_irqs(spu);
516 spu_destroy_spu(spu);
517 return 0;
518}
519
Sebastian Siewior12388192007-09-19 14:38:12 +1000520static struct sysdev_class spu_sysdev_class = {
Geoff Levand6deac062007-06-16 07:17:32 +1000521 set_kset_name("spu"),
522 .shutdown = spu_shutdown,
Jeremy Kerr1d640932006-06-19 20:33:19 +0200523};
524
Christian Kraffte570beb2006-10-24 18:31:23 +0200525int spu_add_sysdev_attr(struct sysdev_attribute *attr)
526{
527 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200528
Christoph Hellwig24140592007-07-20 21:39:51 +0200529 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200530 list_for_each_entry(spu, &spu_full_list, full_list)
531 sysdev_create_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200532 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200533
Christian Kraffte570beb2006-10-24 18:31:23 +0200534 return 0;
535}
536EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
537
538int spu_add_sysdev_attr_group(struct attribute_group *attrs)
539{
540 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200541
Christoph Hellwig24140592007-07-20 21:39:51 +0200542 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200543 list_for_each_entry(spu, &spu_full_list, full_list)
544 sysfs_create_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200545 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200546
Christian Kraffte570beb2006-10-24 18:31:23 +0200547 return 0;
548}
549EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
550
551
552void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
553{
554 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200555
Christoph Hellwig24140592007-07-20 21:39:51 +0200556 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200557 list_for_each_entry(spu, &spu_full_list, full_list)
558 sysdev_remove_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200559 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200560}
561EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
562
563void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
564{
565 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200566
Christoph Hellwig24140592007-07-20 21:39:51 +0200567 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200568 list_for_each_entry(spu, &spu_full_list, full_list)
569 sysfs_remove_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200570 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200571}
572EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
573
Jeremy Kerr1d640932006-06-19 20:33:19 +0200574static int spu_create_sysdev(struct spu *spu)
575{
576 int ret;
577
578 spu->sysdev.id = spu->number;
579 spu->sysdev.cls = &spu_sysdev_class;
580 ret = sysdev_register(&spu->sysdev);
581 if (ret) {
582 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
583 spu->number);
584 return ret;
585 }
586
Geoff Levand00215502006-11-20 18:45:02 +0100587 sysfs_add_device_to_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200588
589 return 0;
590}
591
Geoff Levande28b0032006-11-23 00:46:49 +0100592static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500593{
594 struct spu *spu;
595 int ret;
596 static int number;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100597 unsigned long flags;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200598 struct timespec ts;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500599
600 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200601 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500602 if (!spu)
603 goto out;
604
Christoph Hellwig486acd42007-07-20 21:39:54 +0200605 spu->alloc_state = SPU_FREE;
606
Geoff Levande28b0032006-11-23 00:46:49 +0100607 spin_lock_init(&spu->register_lock);
Christoph Hellwig24140592007-07-20 21:39:51 +0200608 spin_lock(&spu_lock);
Geoff Levande28b0032006-11-23 00:46:49 +0100609 spu->number = number++;
Christoph Hellwig24140592007-07-20 21:39:51 +0200610 spin_unlock(&spu_lock);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000611
Geoff Levande28b0032006-11-23 00:46:49 +0100612 ret = spu_create_spu(spu, data);
613
Arnd Bergmann67207b92005-11-15 15:53:48 -0500614 if (ret)
615 goto out_free;
616
Masato Noguchi24f43b32006-10-24 18:31:14 +0200617 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100618 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500619 ret = spu_request_irqs(spu);
620 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100621 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500622
Jeremy Kerr1d640932006-06-19 20:33:19 +0200623 ret = spu_create_sysdev(spu);
624 if (ret)
625 goto out_free_irqs;
626
Christoph Hellwig486acd42007-07-20 21:39:54 +0200627 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200628 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
629 cbe_spu_info[spu->node].n_spus++;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200630 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
Christoph Hellwig24140592007-07-20 21:39:51 +0200631
632 mutex_lock(&spu_full_list_mutex);
633 spin_lock_irqsave(&spu_full_list_lock, flags);
Christian Kraffte570beb2006-10-24 18:31:23 +0200634 list_add(&spu->full_list, &spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200635 spin_unlock_irqrestore(&spu_full_list_lock, flags);
636 mutex_unlock(&spu_full_list_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500637
Andre Detsch27ec41d2007-07-20 21:39:33 +0200638 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
639 ktime_get_ts(&ts);
640 spu->stats.tstamp = timespec_to_ns(&ts);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000641
Arnd Bergmann9d92af62007-07-20 21:39:45 +0200642 INIT_LIST_HEAD(&spu->aff_list);
643
Arnd Bergmann67207b92005-11-15 15:53:48 -0500644 goto out;
645
Jeremy Kerr1d640932006-06-19 20:33:19 +0200646out_free_irqs:
647 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100648out_destroy:
649 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500650out_free:
651 kfree(spu);
652out:
653 return ret;
654}
655
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000656static const char *spu_state_names[] = {
657 "user", "system", "iowait", "idle"
658};
659
660static unsigned long long spu_acct_time(struct spu *spu,
661 enum spu_utilization_state state)
662{
Andre Detsch27ec41d2007-07-20 21:39:33 +0200663 struct timespec ts;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000664 unsigned long long time = spu->stats.times[state];
665
Andre Detsch27ec41d2007-07-20 21:39:33 +0200666 /*
667 * If the spu is idle or the context is stopped, utilization
668 * statistics are not updated. Apply the time delta from the
669 * last recorded state of the spu.
670 */
671 if (spu->stats.util_state == state) {
672 ktime_get_ts(&ts);
673 time += timespec_to_ns(&ts) - spu->stats.tstamp;
674 }
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000675
Andre Detsch27ec41d2007-07-20 21:39:33 +0200676 return time / NSEC_PER_MSEC;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000677}
678
679
680static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf)
681{
682 struct spu *spu = container_of(sysdev, struct spu, sysdev);
683
684 return sprintf(buf, "%s %llu %llu %llu %llu "
685 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +0200686 spu_state_names[spu->stats.util_state],
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000687 spu_acct_time(spu, SPU_UTIL_USER),
688 spu_acct_time(spu, SPU_UTIL_SYSTEM),
689 spu_acct_time(spu, SPU_UTIL_IOWAIT),
Andre Detsch27ec41d2007-07-20 21:39:33 +0200690 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000691 spu->stats.vol_ctx_switch,
692 spu->stats.invol_ctx_switch,
693 spu->stats.slb_flt,
694 spu->stats.hash_flt,
695 spu->stats.min_flt,
696 spu->stats.maj_flt,
697 spu->stats.class2_intr,
698 spu->stats.libassist);
699}
700
701static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);
702
Arnd Bergmann67207b92005-11-15 15:53:48 -0500703static int __init init_spu_base(void)
704{
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200705 int i, ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500706
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200707 for (i = 0; i < MAX_NUMNODES; i++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200708 mutex_init(&cbe_spu_info[i].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200709 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200710 }
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200711
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100712 if (!spu_management_ops)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200713 goto out;
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100714
Jeremy Kerr1d640932006-06-19 20:33:19 +0200715 /* create sysdev class for spus */
716 ret = sysdev_class_register(&spu_sysdev_class);
717 if (ret)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200718 goto out;
Jeremy Kerr1d640932006-06-19 20:33:19 +0200719
Geoff Levande28b0032006-11-23 00:46:49 +0100720 ret = spu_enumerate_spus(create_spu);
721
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700722 if (ret < 0) {
Geoff Levande28b0032006-11-23 00:46:49 +0100723 printk(KERN_WARNING "%s: Error initializing spus\n",
724 __FUNCTION__);
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200725 goto out_unregister_sysdev_class;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500726 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200727
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700728 if (ret > 0) {
729 /*
730 * We cannot put the forward declaration in
731 * <linux/linux_logo.h> because of conflicting session type
732 * conflicts for const and __initdata with different compiler
733 * versions
734 */
735 extern const struct linux_logo logo_spe_clut224;
736
737 fb_append_extra_logo(&logo_spe_clut224, ret);
738 }
739
Christoph Hellwig24140592007-07-20 21:39:51 +0200740 mutex_lock(&spu_full_list_mutex);
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200741 xmon_register_spus(&spu_full_list);
Andre Detsch8d2655e2007-07-20 21:39:27 +0200742 crash_register_spus(&spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200743 mutex_unlock(&spu_full_list_mutex);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000744 spu_add_sysdev_attr(&attr_stat);
745
Andre Detschf5996442007-08-03 18:53:46 -0700746 spu_init_affinity();
Arnd Bergmann3ad216c2007-07-20 21:39:46 +0200747
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200748 return 0;
749
750 out_unregister_sysdev_class:
751 sysdev_class_unregister(&spu_sysdev_class);
752 out:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500753 return ret;
754}
755module_init(init_spu_base);
756
757MODULE_LICENSE("GPL");
758MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");