blob: 8398af6b5c0b851ee1572dc18353d974ad415e59 [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
Arnd Bergmann67207b92005-11-15 15:53:48 -0500129static int __spu_trap_invalid_dma(struct spu *spu)
130{
131 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200132 spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500133 return 0;
134}
135
136static int __spu_trap_dma_align(struct spu *spu)
137{
138 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200139 spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500140 return 0;
141}
142
143static int __spu_trap_error(struct spu *spu)
144{
145 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200146 spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500147 return 0;
148}
149
150static void spu_restart_dma(struct spu *spu)
151{
152 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -0500153
Arnd Bergmann8837d922006-01-04 20:31:28 +0100154 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -0500155 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500156}
157
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100158static inline void spu_load_slb(struct spu *spu, int slbe, struct spu_slb *slb)
159{
160 struct spu_priv2 __iomem *priv2 = spu->priv2;
161
162 pr_debug("%s: adding SLB[%d] 0x%016lx 0x%016lx\n",
163 __func__, slbe, slb->vsid, slb->esid);
164
165 out_be64(&priv2->slb_index_W, slbe);
166 out_be64(&priv2->slb_vsid_RW, slb->vsid);
167 out_be64(&priv2->slb_esid_RW, slb->esid);
168}
169
Arnd Bergmann67207b92005-11-15 15:53:48 -0500170static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
171{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500172 struct mm_struct *mm = spu->mm;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100173 struct spu_slb slb;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100174 int psize;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500175
176 pr_debug("%s\n", __FUNCTION__);
177
Arnd Bergmann8837d922006-01-04 20:31:28 +0100178 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500179 /* SLBs are pre-loaded for context switch, so
180 * we should never get here!
181 */
Mark Nutter5473af02005-11-15 15:53:49 -0500182 printk("%s: invalid access during switch!\n", __func__);
183 return 1;
184 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100185 slb.esid = (ea & ESID_MASK) | SLB_ESID_V;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200186
187 switch(REGION_ID(ea)) {
188 case USER_REGION_ID:
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000189#ifdef CONFIG_PPC_MM_SLICES
190 psize = get_slice_psize(mm, ea);
191#else
192 psize = mm->context.user_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200193#endif
Jeremy Kerr4d434662007-12-05 13:49:31 +1100194 slb.vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M)
195 << SLB_VSID_SHIFT) | SLB_VSID_USER;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200196 break;
197 case VMALLOC_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100198 if (ea < VMALLOC_END)
199 psize = mmu_vmalloc_psize;
200 else
201 psize = mmu_io_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100202 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
203 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200204 break;
205 case KERNEL_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100206 psize = mmu_linear_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100207 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
208 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200209 break;
210 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500211 /* Future: support kernel segments so that drivers
212 * can use SPUs.
213 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500214 pr_debug("invalid region access at %016lx\n", ea);
215 return 1;
216 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100217 slb.vsid |= mmu_psize_defs[psize].sllp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500218
Jeremy Kerr4d434662007-12-05 13:49:31 +1100219 spu_load_slb(spu, spu->slb_replace, &slb);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500220
221 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500222 if (spu->slb_replace >= 8)
223 spu->slb_replace = 0;
224
Arnd Bergmann67207b92005-11-15 15:53:48 -0500225 spu_restart_dma(spu);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000226 spu->stats.slb_flt++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500227 return 0;
228}
229
Mark Nutter5473af02005-11-15 15:53:49 -0500230extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500231static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500232{
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100233 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500234
Mark Nutter5473af02005-11-15 15:53:49 -0500235 /* Handle kernel space hash faults immediately.
236 User hash faults need to be deferred to process context. */
237 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
238 && REGION_ID(ea) != USER_REGION_ID
239 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
240 spu_restart_dma(spu);
241 return 0;
242 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500243
Arnd Bergmann8837d922006-01-04 20:31:28 +0100244 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Mark Nutter5473af02005-11-15 15:53:49 -0500245 printk("%s: invalid access during switch!\n", __func__);
246 return 1;
247 }
248
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500249 spu->dar = ea;
250 spu->dsisr = dsisr;
251 mb();
Masato Noguchiba723fe22006-06-19 20:33:33 +0200252 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500253 return 0;
254}
255
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100256static void __spu_kernel_slb(void *addr, struct spu_slb *slb)
257{
258 unsigned long ea = (unsigned long)addr;
259 u64 llp;
260
261 if (REGION_ID(ea) == KERNEL_REGION_ID)
262 llp = mmu_psize_defs[mmu_linear_psize].sllp;
263 else
264 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
265
266 slb->vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
267 SLB_VSID_KERNEL | llp;
268 slb->esid = (ea & ESID_MASK) | SLB_ESID_V;
269}
270
271/**
272 * Setup the SPU kernel SLBs, in preparation for a context save/restore. We
273 * need to map both the context save area, and the save/restore code.
274 */
275void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa, void *code)
276{
277 struct spu_slb code_slb, lscsa_slb;
278
279 __spu_kernel_slb(lscsa, &lscsa_slb);
280 __spu_kernel_slb(code, &code_slb);
281
282 spu_load_slb(spu, 0, &lscsa_slb);
283 if (lscsa_slb.esid != code_slb.esid)
284 spu_load_slb(spu, 1, &code_slb);
285}
286EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs);
287
Arnd Bergmann67207b92005-11-15 15:53:48 -0500288static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200289spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500290{
291 struct spu *spu;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000292 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500293
294 spu = data;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000295
296 mask = spu_int_mask_get(spu, 0);
297 stat = spu_int_stat_get(spu, 0);
298 stat &= mask;
299
300 spin_lock(&spu->register_lock);
301 spu->class_0_pending |= stat;
302 spin_unlock(&spu->register_lock);
303
Masato Noguchiba723fe22006-06-19 20:33:33 +0200304 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500305
Masato Noguchib7f90a42007-09-07 18:28:27 +1000306 spu_int_stat_clear(spu, 0, stat);
307
Arnd Bergmann67207b92005-11-15 15:53:48 -0500308 return IRQ_HANDLED;
309}
310
Arnd Bergmann51104592005-12-05 22:52:25 -0500311int
Arnd Bergmann67207b92005-11-15 15:53:48 -0500312spu_irq_class_0_bottom(struct spu *spu)
313{
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900314 unsigned long flags;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000315 unsigned long stat;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500316
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900317 spin_lock_irqsave(&spu->register_lock, flags);
Masato Noguchib7f90a42007-09-07 18:28:27 +1000318 stat = spu->class_0_pending;
319 spu->class_0_pending = 0;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500320
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200321 if (stat & 1) /* invalid DMA alignment */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500322 __spu_trap_dma_align(spu);
323
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200324 if (stat & 2) /* invalid MFC DMA */
325 __spu_trap_invalid_dma(spu);
326
Arnd Bergmann67207b92005-11-15 15:53:48 -0500327 if (stat & 4) /* error on SPU */
328 __spu_trap_error(spu);
329
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900330 spin_unlock_irqrestore(&spu->register_lock, flags);
Arnd Bergmann51104592005-12-05 22:52:25 -0500331
332 return (stat & 0x7) ? -EIO : 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500333}
Arnd Bergmann51104592005-12-05 22:52:25 -0500334EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500335
336static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200337spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500338{
339 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500340 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500341
342 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500343
344 /* atomically read & clear class1 status. */
345 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100346 mask = spu_int_mask_get(spu, 1);
347 stat = spu_int_stat_get(spu, 1) & mask;
348 dar = spu_mfc_dar_get(spu);
349 dsisr = spu_mfc_dsisr_get(spu);
Arnd Bergmann38307342005-12-09 19:04:18 +0100350 if (stat & 2) /* mapping fault */
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100351 spu_mfc_dsisr_set(spu, 0ul);
352 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500353 spin_unlock(&spu->register_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100354 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
355 dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500356
357 if (stat & 1) /* segment fault */
358 __spu_trap_data_seg(spu, dar);
359
360 if (stat & 2) { /* mapping fault */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500361 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500362 }
363
364 if (stat & 4) /* ls compare & suspend on get */
365 ;
366
367 if (stat & 8) /* ls compare & suspend on put */
368 ;
369
Arnd Bergmann67207b92005-11-15 15:53:48 -0500370 return stat ? IRQ_HANDLED : IRQ_NONE;
371}
372
373static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200374spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500375{
376 struct spu *spu;
377 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500378 unsigned long mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500379
380 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200381 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100382 stat = spu_int_stat_get(spu, 2);
383 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200384 /* ignore interrupts we're not waiting for */
385 stat &= mask;
386 /*
387 * mailbox interrupts (0x1 and 0x10) are level triggered.
388 * mask them now before acknowledging.
389 */
390 if (stat & 0x11)
391 spu_int_mask_and(spu, 2, ~(stat & 0x11));
392 /* acknowledge all interrupts before the callbacks */
393 spu_int_stat_clear(spu, 2, stat);
394 spin_unlock(&spu->register_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500395
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500396 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500397
Arnd Bergmann67207b92005-11-15 15:53:48 -0500398 if (stat & 1) /* PPC core mailbox */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200399 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500400
401 if (stat & 2) /* SPU stop-and-signal */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200402 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500403
404 if (stat & 4) /* SPU halted */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200405 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500406
407 if (stat & 8) /* DMA tag group complete */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200408 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500409
410 if (stat & 0x10) /* SPU mailbox threshold */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200411 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500412
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000413 spu->stats.class2_intr++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500414 return stat ? IRQ_HANDLED : IRQ_NONE;
415}
416
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000417static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500418{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000419 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500420
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000421 if (spu->irqs[0] != NO_IRQ) {
422 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
423 spu->number);
424 ret = request_irq(spu->irqs[0], spu_irq_class_0,
425 IRQF_DISABLED,
426 spu->irq_c0, spu);
427 if (ret)
428 goto bail0;
429 }
430 if (spu->irqs[1] != NO_IRQ) {
431 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
432 spu->number);
433 ret = request_irq(spu->irqs[1], spu_irq_class_1,
434 IRQF_DISABLED,
435 spu->irq_c1, spu);
436 if (ret)
437 goto bail1;
438 }
439 if (spu->irqs[2] != NO_IRQ) {
440 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
441 spu->number);
442 ret = request_irq(spu->irqs[2], spu_irq_class_2,
443 IRQF_DISABLED,
444 spu->irq_c2, spu);
445 if (ret)
446 goto bail2;
447 }
448 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500449
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000450bail2:
451 if (spu->irqs[1] != NO_IRQ)
452 free_irq(spu->irqs[1], spu);
453bail1:
454 if (spu->irqs[0] != NO_IRQ)
455 free_irq(spu->irqs[0], spu);
456bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500457 return ret;
458}
459
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000460static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500461{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000462 if (spu->irqs[0] != NO_IRQ)
463 free_irq(spu->irqs[0], spu);
464 if (spu->irqs[1] != NO_IRQ)
465 free_irq(spu->irqs[1], spu);
466 if (spu->irqs[2] != NO_IRQ)
467 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500468}
469
Christoph Hellwig486acd42007-07-20 21:39:54 +0200470void spu_init_channels(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500471{
472 static const struct {
473 unsigned channel;
474 unsigned count;
475 } zero_list[] = {
476 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
477 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
478 }, count_list[] = {
479 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
480 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
481 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
482 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100483 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500484 int i;
485
486 priv2 = spu->priv2;
487
488 /* initialize all channel data to zero */
489 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
490 int count;
491
492 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
493 for (count = 0; count < zero_list[i].count; count++)
494 out_be64(&priv2->spu_chnldata_RW, 0);
495 }
496
497 /* initialize channel counts to meaningful values */
498 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
499 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
500 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
501 }
502}
Christoph Hellwig486acd42007-07-20 21:39:54 +0200503EXPORT_SYMBOL_GPL(spu_init_channels);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500504
Geoff Levand6deac062007-06-16 07:17:32 +1000505static int spu_shutdown(struct sys_device *sysdev)
506{
507 struct spu *spu = container_of(sysdev, struct spu, sysdev);
508
509 spu_free_irqs(spu);
510 spu_destroy_spu(spu);
511 return 0;
512}
513
Sebastian Siewior12388192007-09-19 14:38:12 +1000514static struct sysdev_class spu_sysdev_class = {
Geoff Levand6deac062007-06-16 07:17:32 +1000515 set_kset_name("spu"),
516 .shutdown = spu_shutdown,
Jeremy Kerr1d640932006-06-19 20:33:19 +0200517};
518
Christian Kraffte570beb2006-10-24 18:31:23 +0200519int spu_add_sysdev_attr(struct sysdev_attribute *attr)
520{
521 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200522
Christoph Hellwig24140592007-07-20 21:39:51 +0200523 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200524 list_for_each_entry(spu, &spu_full_list, full_list)
525 sysdev_create_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200526 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200527
Christian Kraffte570beb2006-10-24 18:31:23 +0200528 return 0;
529}
530EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
531
532int spu_add_sysdev_attr_group(struct attribute_group *attrs)
533{
534 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200535
Christoph Hellwig24140592007-07-20 21:39:51 +0200536 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200537 list_for_each_entry(spu, &spu_full_list, full_list)
538 sysfs_create_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200539 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200540
Christian Kraffte570beb2006-10-24 18:31:23 +0200541 return 0;
542}
543EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
544
545
546void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
547{
548 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200549
Christoph Hellwig24140592007-07-20 21:39:51 +0200550 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200551 list_for_each_entry(spu, &spu_full_list, full_list)
552 sysdev_remove_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200553 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200554}
555EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
556
557void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
558{
559 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200560
Christoph Hellwig24140592007-07-20 21:39:51 +0200561 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200562 list_for_each_entry(spu, &spu_full_list, full_list)
563 sysfs_remove_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200564 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200565}
566EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
567
Jeremy Kerr1d640932006-06-19 20:33:19 +0200568static int spu_create_sysdev(struct spu *spu)
569{
570 int ret;
571
572 spu->sysdev.id = spu->number;
573 spu->sysdev.cls = &spu_sysdev_class;
574 ret = sysdev_register(&spu->sysdev);
575 if (ret) {
576 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
577 spu->number);
578 return ret;
579 }
580
Geoff Levand00215502006-11-20 18:45:02 +0100581 sysfs_add_device_to_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200582
583 return 0;
584}
585
Geoff Levande28b0032006-11-23 00:46:49 +0100586static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500587{
588 struct spu *spu;
589 int ret;
590 static int number;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100591 unsigned long flags;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200592 struct timespec ts;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500593
594 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200595 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500596 if (!spu)
597 goto out;
598
Christoph Hellwig486acd42007-07-20 21:39:54 +0200599 spu->alloc_state = SPU_FREE;
600
Geoff Levande28b0032006-11-23 00:46:49 +0100601 spin_lock_init(&spu->register_lock);
Christoph Hellwig24140592007-07-20 21:39:51 +0200602 spin_lock(&spu_lock);
Geoff Levande28b0032006-11-23 00:46:49 +0100603 spu->number = number++;
Christoph Hellwig24140592007-07-20 21:39:51 +0200604 spin_unlock(&spu_lock);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000605
Geoff Levande28b0032006-11-23 00:46:49 +0100606 ret = spu_create_spu(spu, data);
607
Arnd Bergmann67207b92005-11-15 15:53:48 -0500608 if (ret)
609 goto out_free;
610
Masato Noguchi24f43b32006-10-24 18:31:14 +0200611 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100612 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500613 ret = spu_request_irqs(spu);
614 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100615 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500616
Jeremy Kerr1d640932006-06-19 20:33:19 +0200617 ret = spu_create_sysdev(spu);
618 if (ret)
619 goto out_free_irqs;
620
Christoph Hellwig486acd42007-07-20 21:39:54 +0200621 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200622 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
623 cbe_spu_info[spu->node].n_spus++;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200624 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
Christoph Hellwig24140592007-07-20 21:39:51 +0200625
626 mutex_lock(&spu_full_list_mutex);
627 spin_lock_irqsave(&spu_full_list_lock, flags);
Christian Kraffte570beb2006-10-24 18:31:23 +0200628 list_add(&spu->full_list, &spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200629 spin_unlock_irqrestore(&spu_full_list_lock, flags);
630 mutex_unlock(&spu_full_list_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500631
Andre Detsch27ec41d2007-07-20 21:39:33 +0200632 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
633 ktime_get_ts(&ts);
634 spu->stats.tstamp = timespec_to_ns(&ts);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000635
Arnd Bergmann9d92af62007-07-20 21:39:45 +0200636 INIT_LIST_HEAD(&spu->aff_list);
637
Arnd Bergmann67207b92005-11-15 15:53:48 -0500638 goto out;
639
Jeremy Kerr1d640932006-06-19 20:33:19 +0200640out_free_irqs:
641 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100642out_destroy:
643 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500644out_free:
645 kfree(spu);
646out:
647 return ret;
648}
649
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000650static const char *spu_state_names[] = {
651 "user", "system", "iowait", "idle"
652};
653
654static unsigned long long spu_acct_time(struct spu *spu,
655 enum spu_utilization_state state)
656{
Andre Detsch27ec41d2007-07-20 21:39:33 +0200657 struct timespec ts;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000658 unsigned long long time = spu->stats.times[state];
659
Andre Detsch27ec41d2007-07-20 21:39:33 +0200660 /*
661 * If the spu is idle or the context is stopped, utilization
662 * statistics are not updated. Apply the time delta from the
663 * last recorded state of the spu.
664 */
665 if (spu->stats.util_state == state) {
666 ktime_get_ts(&ts);
667 time += timespec_to_ns(&ts) - spu->stats.tstamp;
668 }
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000669
Andre Detsch27ec41d2007-07-20 21:39:33 +0200670 return time / NSEC_PER_MSEC;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000671}
672
673
674static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf)
675{
676 struct spu *spu = container_of(sysdev, struct spu, sysdev);
677
678 return sprintf(buf, "%s %llu %llu %llu %llu "
679 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +0200680 spu_state_names[spu->stats.util_state],
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000681 spu_acct_time(spu, SPU_UTIL_USER),
682 spu_acct_time(spu, SPU_UTIL_SYSTEM),
683 spu_acct_time(spu, SPU_UTIL_IOWAIT),
Andre Detsch27ec41d2007-07-20 21:39:33 +0200684 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000685 spu->stats.vol_ctx_switch,
686 spu->stats.invol_ctx_switch,
687 spu->stats.slb_flt,
688 spu->stats.hash_flt,
689 spu->stats.min_flt,
690 spu->stats.maj_flt,
691 spu->stats.class2_intr,
692 spu->stats.libassist);
693}
694
695static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);
696
Arnd Bergmann67207b92005-11-15 15:53:48 -0500697static int __init init_spu_base(void)
698{
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200699 int i, ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500700
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200701 for (i = 0; i < MAX_NUMNODES; i++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200702 mutex_init(&cbe_spu_info[i].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200703 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200704 }
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200705
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100706 if (!spu_management_ops)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200707 goto out;
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100708
Jeremy Kerr1d640932006-06-19 20:33:19 +0200709 /* create sysdev class for spus */
710 ret = sysdev_class_register(&spu_sysdev_class);
711 if (ret)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200712 goto out;
Jeremy Kerr1d640932006-06-19 20:33:19 +0200713
Geoff Levande28b0032006-11-23 00:46:49 +0100714 ret = spu_enumerate_spus(create_spu);
715
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700716 if (ret < 0) {
Geoff Levande28b0032006-11-23 00:46:49 +0100717 printk(KERN_WARNING "%s: Error initializing spus\n",
718 __FUNCTION__);
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200719 goto out_unregister_sysdev_class;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500720 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200721
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700722 if (ret > 0) {
723 /*
724 * We cannot put the forward declaration in
725 * <linux/linux_logo.h> because of conflicting session type
726 * conflicts for const and __initdata with different compiler
727 * versions
728 */
729 extern const struct linux_logo logo_spe_clut224;
730
731 fb_append_extra_logo(&logo_spe_clut224, ret);
732 }
733
Christoph Hellwig24140592007-07-20 21:39:51 +0200734 mutex_lock(&spu_full_list_mutex);
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200735 xmon_register_spus(&spu_full_list);
Andre Detsch8d2655e2007-07-20 21:39:27 +0200736 crash_register_spus(&spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200737 mutex_unlock(&spu_full_list_mutex);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000738 spu_add_sysdev_attr(&attr_stat);
739
Andre Detschf5996442007-08-03 18:53:46 -0700740 spu_init_affinity();
Arnd Bergmann3ad216c2007-07-20 21:39:46 +0200741
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200742 return 0;
743
744 out_unregister_sysdev_class:
745 sysdev_class_unregister(&spu_sysdev_class);
746 out:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500747 return ret;
748}
749module_init(init_spu_base);
750
751MODULE_LICENSE("GPL");
752MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");