blob: b5a21177bb32eb5e801acec382462fd67894f096 [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>
Michael Ellermanff8a8f22006-10-24 18:31:27 +020037#include <asm/xmon.h>
Arnd Bergmann3ad216c2007-07-20 21:39:46 +020038#include <asm/prom.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050039
Geoff Levande28b0032006-11-23 00:46:49 +010040const struct spu_management_ops *spu_management_ops;
Jeremy Kerrccf17e92007-04-23 21:08:29 +020041EXPORT_SYMBOL_GPL(spu_management_ops);
42
Geoff Levand540270d2006-06-19 20:33:29 +020043const struct spu_priv1_ops *spu_priv1_ops;
Geoff Levand540270d2006-06-19 20:33:29 +020044EXPORT_SYMBOL_GPL(spu_priv1_ops);
45
Christoph Hellwig24140592007-07-20 21:39:51 +020046struct cbe_spu_info cbe_spu_info[MAX_NUMNODES];
47EXPORT_SYMBOL_GPL(cbe_spu_info);
48
49/*
50 * Protects cbe_spu_info and spu->number.
51 */
52static DEFINE_SPINLOCK(spu_lock);
53
54/*
55 * List of all spus in the system.
56 *
57 * This list is iterated by callers from irq context and callers that
58 * want to sleep. Thus modifications need to be done with both
59 * spu_full_list_lock and spu_full_list_mutex held, while iterating
60 * through it requires either of these locks.
61 *
62 * In addition spu_full_list_lock protects all assignmens to
63 * spu->mm.
64 */
65static LIST_HEAD(spu_full_list);
66static DEFINE_SPINLOCK(spu_full_list_lock);
67static DEFINE_MUTEX(spu_full_list_mutex);
68
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010069void spu_invalidate_slbs(struct spu *spu)
70{
71 struct spu_priv2 __iomem *priv2 = spu->priv2;
72
73 if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
74 out_be64(&priv2->slb_invalidate_all_W, 0UL);
75}
76EXPORT_SYMBOL_GPL(spu_invalidate_slbs);
77
78/* This is called by the MM core when a segment size is changed, to
79 * request a flush of all the SPEs using a given mm
80 */
81void spu_flush_all_slbs(struct mm_struct *mm)
82{
83 struct spu *spu;
84 unsigned long flags;
85
Christoph Hellwig24140592007-07-20 21:39:51 +020086 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010087 list_for_each_entry(spu, &spu_full_list, full_list) {
88 if (spu->mm == mm)
89 spu_invalidate_slbs(spu);
90 }
Christoph Hellwig24140592007-07-20 21:39:51 +020091 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010092}
93
94/* The hack below stinks... try to do something better one of
95 * these days... Does it even work properly with NR_CPUS == 1 ?
96 */
97static inline void mm_needs_global_tlbie(struct mm_struct *mm)
98{
99 int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
100
101 /* Global TLBIE broadcast required with SPEs. */
102 __cpus_setall(&mm->cpu_vm_mask, nr);
103}
104
105void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
106{
107 unsigned long flags;
108
Christoph Hellwig24140592007-07-20 21:39:51 +0200109 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100110 spu->mm = mm;
Christoph Hellwig24140592007-07-20 21:39:51 +0200111 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100112 if (mm)
113 mm_needs_global_tlbie(mm);
114}
115EXPORT_SYMBOL_GPL(spu_associate_mm);
116
Arnd Bergmann67207b92005-11-15 15:53:48 -0500117static int __spu_trap_invalid_dma(struct spu *spu)
118{
119 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200120 spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500121 return 0;
122}
123
124static int __spu_trap_dma_align(struct spu *spu)
125{
126 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200127 spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500128 return 0;
129}
130
131static int __spu_trap_error(struct spu *spu)
132{
133 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200134 spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500135 return 0;
136}
137
138static void spu_restart_dma(struct spu *spu)
139{
140 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -0500141
Arnd Bergmann8837d922006-01-04 20:31:28 +0100142 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -0500143 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500144}
145
146static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
147{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500148 struct spu_priv2 __iomem *priv2 = spu->priv2;
149 struct mm_struct *mm = spu->mm;
arnd@arndb.de724bd802006-06-19 20:33:23 +0200150 u64 esid, vsid, llp;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100151 int psize;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500152
153 pr_debug("%s\n", __FUNCTION__);
154
Arnd Bergmann8837d922006-01-04 20:31:28 +0100155 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500156 /* SLBs are pre-loaded for context switch, so
157 * we should never get here!
158 */
Mark Nutter5473af02005-11-15 15:53:49 -0500159 printk("%s: invalid access during switch!\n", __func__);
160 return 1;
161 }
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200162 esid = (ea & ESID_MASK) | SLB_ESID_V;
163
164 switch(REGION_ID(ea)) {
165 case USER_REGION_ID:
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000166#ifdef CONFIG_PPC_MM_SLICES
167 psize = get_slice_psize(mm, ea);
168#else
169 psize = mm->context.user_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200170#endif
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200171 vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) |
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100172 SLB_VSID_USER;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200173 break;
174 case VMALLOC_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100175 if (ea < VMALLOC_END)
176 psize = mmu_vmalloc_psize;
177 else
178 psize = mmu_io_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200179 vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100180 SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200181 break;
182 case KERNEL_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100183 psize = mmu_linear_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200184 vsid = (get_kernel_vsid(ea) << SLB_VSID_SHIFT) |
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100185 SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200186 break;
187 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500188 /* Future: support kernel segments so that drivers
189 * can use SPUs.
190 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500191 pr_debug("invalid region access at %016lx\n", ea);
192 return 1;
193 }
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100194 llp = mmu_psize_defs[psize].sllp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500195
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500196 out_be64(&priv2->slb_index_W, spu->slb_replace);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100197 out_be64(&priv2->slb_vsid_RW, vsid | llp);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500198 out_be64(&priv2->slb_esid_RW, esid);
199
200 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500201 if (spu->slb_replace >= 8)
202 spu->slb_replace = 0;
203
Arnd Bergmann67207b92005-11-15 15:53:48 -0500204 spu_restart_dma(spu);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000205 spu->stats.slb_flt++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500206 return 0;
207}
208
Mark Nutter5473af02005-11-15 15:53:49 -0500209extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500210static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500211{
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100212 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500213
Mark Nutter5473af02005-11-15 15:53:49 -0500214 /* Handle kernel space hash faults immediately.
215 User hash faults need to be deferred to process context. */
216 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
217 && REGION_ID(ea) != USER_REGION_ID
218 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
219 spu_restart_dma(spu);
220 return 0;
221 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500222
Arnd Bergmann8837d922006-01-04 20:31:28 +0100223 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Mark Nutter5473af02005-11-15 15:53:49 -0500224 printk("%s: invalid access during switch!\n", __func__);
225 return 1;
226 }
227
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500228 spu->dar = ea;
229 spu->dsisr = dsisr;
230 mb();
Masato Noguchiba723fe22006-06-19 20:33:33 +0200231 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500232 return 0;
233}
234
235static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200236spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500237{
238 struct spu *spu;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000239 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500240
241 spu = data;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000242
243 mask = spu_int_mask_get(spu, 0);
244 stat = spu_int_stat_get(spu, 0);
245 stat &= mask;
246
247 spin_lock(&spu->register_lock);
248 spu->class_0_pending |= stat;
249 spin_unlock(&spu->register_lock);
250
Masato Noguchiba723fe22006-06-19 20:33:33 +0200251 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500252
Masato Noguchib7f90a42007-09-07 18:28:27 +1000253 spu_int_stat_clear(spu, 0, stat);
254
Arnd Bergmann67207b92005-11-15 15:53:48 -0500255 return IRQ_HANDLED;
256}
257
Arnd Bergmann51104592005-12-05 22:52:25 -0500258int
Arnd Bergmann67207b92005-11-15 15:53:48 -0500259spu_irq_class_0_bottom(struct spu *spu)
260{
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900261 unsigned long flags;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000262 unsigned long stat;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500263
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900264 spin_lock_irqsave(&spu->register_lock, flags);
Masato Noguchib7f90a42007-09-07 18:28:27 +1000265 stat = spu->class_0_pending;
266 spu->class_0_pending = 0;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500267
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200268 if (stat & 1) /* invalid DMA alignment */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500269 __spu_trap_dma_align(spu);
270
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200271 if (stat & 2) /* invalid MFC DMA */
272 __spu_trap_invalid_dma(spu);
273
Arnd Bergmann67207b92005-11-15 15:53:48 -0500274 if (stat & 4) /* error on SPU */
275 __spu_trap_error(spu);
276
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900277 spin_unlock_irqrestore(&spu->register_lock, flags);
Arnd Bergmann51104592005-12-05 22:52:25 -0500278
279 return (stat & 0x7) ? -EIO : 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500280}
Arnd Bergmann51104592005-12-05 22:52:25 -0500281EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500282
283static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200284spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500285{
286 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500287 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500288
289 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500290
291 /* atomically read & clear class1 status. */
292 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100293 mask = spu_int_mask_get(spu, 1);
294 stat = spu_int_stat_get(spu, 1) & mask;
295 dar = spu_mfc_dar_get(spu);
296 dsisr = spu_mfc_dsisr_get(spu);
Arnd Bergmann38307342005-12-09 19:04:18 +0100297 if (stat & 2) /* mapping fault */
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100298 spu_mfc_dsisr_set(spu, 0ul);
299 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500300 spin_unlock(&spu->register_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100301 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
302 dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500303
304 if (stat & 1) /* segment fault */
305 __spu_trap_data_seg(spu, dar);
306
307 if (stat & 2) { /* mapping fault */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500308 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500309 }
310
311 if (stat & 4) /* ls compare & suspend on get */
312 ;
313
314 if (stat & 8) /* ls compare & suspend on put */
315 ;
316
Arnd Bergmann67207b92005-11-15 15:53:48 -0500317 return stat ? IRQ_HANDLED : IRQ_NONE;
318}
319
320static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200321spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500322{
323 struct spu *spu;
324 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500325 unsigned long mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500326
327 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200328 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100329 stat = spu_int_stat_get(spu, 2);
330 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200331 /* ignore interrupts we're not waiting for */
332 stat &= mask;
333 /*
334 * mailbox interrupts (0x1 and 0x10) are level triggered.
335 * mask them now before acknowledging.
336 */
337 if (stat & 0x11)
338 spu_int_mask_and(spu, 2, ~(stat & 0x11));
339 /* acknowledge all interrupts before the callbacks */
340 spu_int_stat_clear(spu, 2, stat);
341 spin_unlock(&spu->register_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500342
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500343 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500344
Arnd Bergmann67207b92005-11-15 15:53:48 -0500345 if (stat & 1) /* PPC core mailbox */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200346 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500347
348 if (stat & 2) /* SPU stop-and-signal */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200349 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500350
351 if (stat & 4) /* SPU halted */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200352 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500353
354 if (stat & 8) /* DMA tag group complete */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200355 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500356
357 if (stat & 0x10) /* SPU mailbox threshold */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200358 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500359
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000360 spu->stats.class2_intr++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500361 return stat ? IRQ_HANDLED : IRQ_NONE;
362}
363
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000364static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500365{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000366 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500367
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000368 if (spu->irqs[0] != NO_IRQ) {
369 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
370 spu->number);
371 ret = request_irq(spu->irqs[0], spu_irq_class_0,
372 IRQF_DISABLED,
373 spu->irq_c0, spu);
374 if (ret)
375 goto bail0;
376 }
377 if (spu->irqs[1] != NO_IRQ) {
378 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
379 spu->number);
380 ret = request_irq(spu->irqs[1], spu_irq_class_1,
381 IRQF_DISABLED,
382 spu->irq_c1, spu);
383 if (ret)
384 goto bail1;
385 }
386 if (spu->irqs[2] != NO_IRQ) {
387 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
388 spu->number);
389 ret = request_irq(spu->irqs[2], spu_irq_class_2,
390 IRQF_DISABLED,
391 spu->irq_c2, spu);
392 if (ret)
393 goto bail2;
394 }
395 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500396
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000397bail2:
398 if (spu->irqs[1] != NO_IRQ)
399 free_irq(spu->irqs[1], spu);
400bail1:
401 if (spu->irqs[0] != NO_IRQ)
402 free_irq(spu->irqs[0], spu);
403bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500404 return ret;
405}
406
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000407static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500408{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000409 if (spu->irqs[0] != NO_IRQ)
410 free_irq(spu->irqs[0], spu);
411 if (spu->irqs[1] != NO_IRQ)
412 free_irq(spu->irqs[1], spu);
413 if (spu->irqs[2] != NO_IRQ)
414 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500415}
416
Christoph Hellwig486acd42007-07-20 21:39:54 +0200417void spu_init_channels(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500418{
419 static const struct {
420 unsigned channel;
421 unsigned count;
422 } zero_list[] = {
423 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
424 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
425 }, count_list[] = {
426 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
427 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
428 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
429 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100430 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500431 int i;
432
433 priv2 = spu->priv2;
434
435 /* initialize all channel data to zero */
436 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
437 int count;
438
439 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
440 for (count = 0; count < zero_list[i].count; count++)
441 out_be64(&priv2->spu_chnldata_RW, 0);
442 }
443
444 /* initialize channel counts to meaningful values */
445 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
446 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
447 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
448 }
449}
Christoph Hellwig486acd42007-07-20 21:39:54 +0200450EXPORT_SYMBOL_GPL(spu_init_channels);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500451
Geoff Levand6deac062007-06-16 07:17:32 +1000452static int spu_shutdown(struct sys_device *sysdev)
453{
454 struct spu *spu = container_of(sysdev, struct spu, sysdev);
455
456 spu_free_irqs(spu);
457 spu_destroy_spu(spu);
458 return 0;
459}
460
Sebastian Siewior12388192007-09-19 14:38:12 +1000461static struct sysdev_class spu_sysdev_class = {
Geoff Levand6deac062007-06-16 07:17:32 +1000462 set_kset_name("spu"),
463 .shutdown = spu_shutdown,
Jeremy Kerr1d640932006-06-19 20:33:19 +0200464};
465
Christian Kraffte570beb2006-10-24 18:31:23 +0200466int spu_add_sysdev_attr(struct sysdev_attribute *attr)
467{
468 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200469
Christoph Hellwig24140592007-07-20 21:39:51 +0200470 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200471 list_for_each_entry(spu, &spu_full_list, full_list)
472 sysdev_create_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200473 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200474
Christian Kraffte570beb2006-10-24 18:31:23 +0200475 return 0;
476}
477EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
478
479int spu_add_sysdev_attr_group(struct attribute_group *attrs)
480{
481 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200482
Christoph Hellwig24140592007-07-20 21:39:51 +0200483 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200484 list_for_each_entry(spu, &spu_full_list, full_list)
485 sysfs_create_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200486 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200487
Christian Kraffte570beb2006-10-24 18:31:23 +0200488 return 0;
489}
490EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
491
492
493void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
494{
495 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200496
Christoph Hellwig24140592007-07-20 21:39:51 +0200497 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200498 list_for_each_entry(spu, &spu_full_list, full_list)
499 sysdev_remove_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200500 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200501}
502EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
503
504void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
505{
506 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200507
Christoph Hellwig24140592007-07-20 21:39:51 +0200508 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200509 list_for_each_entry(spu, &spu_full_list, full_list)
510 sysfs_remove_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200511 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200512}
513EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
514
Jeremy Kerr1d640932006-06-19 20:33:19 +0200515static int spu_create_sysdev(struct spu *spu)
516{
517 int ret;
518
519 spu->sysdev.id = spu->number;
520 spu->sysdev.cls = &spu_sysdev_class;
521 ret = sysdev_register(&spu->sysdev);
522 if (ret) {
523 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
524 spu->number);
525 return ret;
526 }
527
Geoff Levand00215502006-11-20 18:45:02 +0100528 sysfs_add_device_to_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200529
530 return 0;
531}
532
Geoff Levande28b0032006-11-23 00:46:49 +0100533static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500534{
535 struct spu *spu;
536 int ret;
537 static int number;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100538 unsigned long flags;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200539 struct timespec ts;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500540
541 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200542 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500543 if (!spu)
544 goto out;
545
Christoph Hellwig486acd42007-07-20 21:39:54 +0200546 spu->alloc_state = SPU_FREE;
547
Geoff Levande28b0032006-11-23 00:46:49 +0100548 spin_lock_init(&spu->register_lock);
Christoph Hellwig24140592007-07-20 21:39:51 +0200549 spin_lock(&spu_lock);
Geoff Levande28b0032006-11-23 00:46:49 +0100550 spu->number = number++;
Christoph Hellwig24140592007-07-20 21:39:51 +0200551 spin_unlock(&spu_lock);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000552
Geoff Levande28b0032006-11-23 00:46:49 +0100553 ret = spu_create_spu(spu, data);
554
Arnd Bergmann67207b92005-11-15 15:53:48 -0500555 if (ret)
556 goto out_free;
557
Masato Noguchi24f43b32006-10-24 18:31:14 +0200558 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100559 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500560 ret = spu_request_irqs(spu);
561 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100562 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500563
Jeremy Kerr1d640932006-06-19 20:33:19 +0200564 ret = spu_create_sysdev(spu);
565 if (ret)
566 goto out_free_irqs;
567
Christoph Hellwig486acd42007-07-20 21:39:54 +0200568 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200569 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
570 cbe_spu_info[spu->node].n_spus++;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200571 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
Christoph Hellwig24140592007-07-20 21:39:51 +0200572
573 mutex_lock(&spu_full_list_mutex);
574 spin_lock_irqsave(&spu_full_list_lock, flags);
Christian Kraffte570beb2006-10-24 18:31:23 +0200575 list_add(&spu->full_list, &spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200576 spin_unlock_irqrestore(&spu_full_list_lock, flags);
577 mutex_unlock(&spu_full_list_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500578
Andre Detsch27ec41d2007-07-20 21:39:33 +0200579 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
580 ktime_get_ts(&ts);
581 spu->stats.tstamp = timespec_to_ns(&ts);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000582
Arnd Bergmann9d92af62007-07-20 21:39:45 +0200583 INIT_LIST_HEAD(&spu->aff_list);
584
Arnd Bergmann67207b92005-11-15 15:53:48 -0500585 goto out;
586
Jeremy Kerr1d640932006-06-19 20:33:19 +0200587out_free_irqs:
588 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100589out_destroy:
590 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500591out_free:
592 kfree(spu);
593out:
594 return ret;
595}
596
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000597static const char *spu_state_names[] = {
598 "user", "system", "iowait", "idle"
599};
600
601static unsigned long long spu_acct_time(struct spu *spu,
602 enum spu_utilization_state state)
603{
Andre Detsch27ec41d2007-07-20 21:39:33 +0200604 struct timespec ts;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000605 unsigned long long time = spu->stats.times[state];
606
Andre Detsch27ec41d2007-07-20 21:39:33 +0200607 /*
608 * If the spu is idle or the context is stopped, utilization
609 * statistics are not updated. Apply the time delta from the
610 * last recorded state of the spu.
611 */
612 if (spu->stats.util_state == state) {
613 ktime_get_ts(&ts);
614 time += timespec_to_ns(&ts) - spu->stats.tstamp;
615 }
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000616
Andre Detsch27ec41d2007-07-20 21:39:33 +0200617 return time / NSEC_PER_MSEC;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000618}
619
620
621static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf)
622{
623 struct spu *spu = container_of(sysdev, struct spu, sysdev);
624
625 return sprintf(buf, "%s %llu %llu %llu %llu "
626 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +0200627 spu_state_names[spu->stats.util_state],
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000628 spu_acct_time(spu, SPU_UTIL_USER),
629 spu_acct_time(spu, SPU_UTIL_SYSTEM),
630 spu_acct_time(spu, SPU_UTIL_IOWAIT),
Andre Detsch27ec41d2007-07-20 21:39:33 +0200631 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000632 spu->stats.vol_ctx_switch,
633 spu->stats.invol_ctx_switch,
634 spu->stats.slb_flt,
635 spu->stats.hash_flt,
636 spu->stats.min_flt,
637 spu->stats.maj_flt,
638 spu->stats.class2_intr,
639 spu->stats.libassist);
640}
641
642static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);
643
Arnd Bergmann67207b92005-11-15 15:53:48 -0500644static int __init init_spu_base(void)
645{
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200646 int i, ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500647
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200648 for (i = 0; i < MAX_NUMNODES; i++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200649 mutex_init(&cbe_spu_info[i].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200650 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200651 }
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200652
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100653 if (!spu_management_ops)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200654 goto out;
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100655
Jeremy Kerr1d640932006-06-19 20:33:19 +0200656 /* create sysdev class for spus */
657 ret = sysdev_class_register(&spu_sysdev_class);
658 if (ret)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200659 goto out;
Jeremy Kerr1d640932006-06-19 20:33:19 +0200660
Geoff Levande28b0032006-11-23 00:46:49 +0100661 ret = spu_enumerate_spus(create_spu);
662
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700663 if (ret < 0) {
Geoff Levande28b0032006-11-23 00:46:49 +0100664 printk(KERN_WARNING "%s: Error initializing spus\n",
665 __FUNCTION__);
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200666 goto out_unregister_sysdev_class;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500667 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200668
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700669 if (ret > 0) {
670 /*
671 * We cannot put the forward declaration in
672 * <linux/linux_logo.h> because of conflicting session type
673 * conflicts for const and __initdata with different compiler
674 * versions
675 */
676 extern const struct linux_logo logo_spe_clut224;
677
678 fb_append_extra_logo(&logo_spe_clut224, ret);
679 }
680
Christoph Hellwig24140592007-07-20 21:39:51 +0200681 mutex_lock(&spu_full_list_mutex);
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200682 xmon_register_spus(&spu_full_list);
Andre Detsch8d2655e2007-07-20 21:39:27 +0200683 crash_register_spus(&spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200684 mutex_unlock(&spu_full_list_mutex);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000685 spu_add_sysdev_attr(&attr_stat);
686
Andre Detschf5996442007-08-03 18:53:46 -0700687 spu_init_affinity();
Arnd Bergmann3ad216c2007-07-20 21:39:46 +0200688
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200689 return 0;
690
691 out_unregister_sysdev_class:
692 sysdev_class_unregister(&spu_sysdev_class);
693 out:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500694 return ret;
695}
696module_init(init_spu_base);
697
698MODULE_LICENSE("GPL");
699MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");