blob: 525712055bb2bd81aaaa9fcd3472d5c95c3cfe52 [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/*
Jeremy Kerr3ce2f622007-12-05 13:49:31 +110050 * The spufs fault-handling code needs to call force_sig_info to raise signals
51 * on DMA errors. Export it here to avoid general kernel-wide access to this
52 * function
53 */
54EXPORT_SYMBOL_GPL(force_sig_info);
55
56/*
Christoph Hellwig24140592007-07-20 21:39:51 +020057 * Protects cbe_spu_info and spu->number.
58 */
59static DEFINE_SPINLOCK(spu_lock);
60
61/*
62 * List of all spus in the system.
63 *
64 * This list is iterated by callers from irq context and callers that
65 * want to sleep. Thus modifications need to be done with both
66 * spu_full_list_lock and spu_full_list_mutex held, while iterating
67 * through it requires either of these locks.
68 *
69 * In addition spu_full_list_lock protects all assignmens to
70 * spu->mm.
71 */
72static LIST_HEAD(spu_full_list);
73static DEFINE_SPINLOCK(spu_full_list_lock);
74static DEFINE_MUTEX(spu_full_list_mutex);
75
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010076void spu_invalidate_slbs(struct spu *spu)
77{
78 struct spu_priv2 __iomem *priv2 = spu->priv2;
79
80 if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
81 out_be64(&priv2->slb_invalidate_all_W, 0UL);
82}
83EXPORT_SYMBOL_GPL(spu_invalidate_slbs);
84
85/* This is called by the MM core when a segment size is changed, to
86 * request a flush of all the SPEs using a given mm
87 */
88void spu_flush_all_slbs(struct mm_struct *mm)
89{
90 struct spu *spu;
91 unsigned long flags;
92
Christoph Hellwig24140592007-07-20 21:39:51 +020093 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010094 list_for_each_entry(spu, &spu_full_list, full_list) {
95 if (spu->mm == mm)
96 spu_invalidate_slbs(spu);
97 }
Christoph Hellwig24140592007-07-20 21:39:51 +020098 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010099}
100
101/* The hack below stinks... try to do something better one of
102 * these days... Does it even work properly with NR_CPUS == 1 ?
103 */
104static inline void mm_needs_global_tlbie(struct mm_struct *mm)
105{
106 int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
107
108 /* Global TLBIE broadcast required with SPEs. */
109 __cpus_setall(&mm->cpu_vm_mask, nr);
110}
111
112void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
113{
114 unsigned long flags;
115
Christoph Hellwig24140592007-07-20 21:39:51 +0200116 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100117 spu->mm = mm;
Christoph Hellwig24140592007-07-20 21:39:51 +0200118 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100119 if (mm)
120 mm_needs_global_tlbie(mm);
121}
122EXPORT_SYMBOL_GPL(spu_associate_mm);
123
Arnd Bergmann67207b92005-11-15 15:53:48 -0500124static int __spu_trap_invalid_dma(struct spu *spu)
125{
126 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200127 spu->dma_callback(spu, SPE_EVENT_INVALID_DMA);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500128 return 0;
129}
130
131static int __spu_trap_dma_align(struct spu *spu)
132{
133 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200134 spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500135 return 0;
136}
137
138static int __spu_trap_error(struct spu *spu)
139{
140 pr_debug("%s\n", __FUNCTION__);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200141 spu->dma_callback(spu, SPE_EVENT_SPE_ERROR);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500142 return 0;
143}
144
145static void spu_restart_dma(struct spu *spu)
146{
147 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -0500148
Arnd Bergmann8837d922006-01-04 20:31:28 +0100149 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -0500150 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500151}
152
153static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
154{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500155 struct spu_priv2 __iomem *priv2 = spu->priv2;
156 struct mm_struct *mm = spu->mm;
arnd@arndb.de724bd802006-06-19 20:33:23 +0200157 u64 esid, vsid, llp;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100158 int psize;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500159
160 pr_debug("%s\n", __FUNCTION__);
161
Arnd Bergmann8837d922006-01-04 20:31:28 +0100162 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500163 /* SLBs are pre-loaded for context switch, so
164 * we should never get here!
165 */
Mark Nutter5473af02005-11-15 15:53:49 -0500166 printk("%s: invalid access during switch!\n", __func__);
167 return 1;
168 }
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200169 esid = (ea & ESID_MASK) | SLB_ESID_V;
170
171 switch(REGION_ID(ea)) {
172 case USER_REGION_ID:
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000173#ifdef CONFIG_PPC_MM_SLICES
174 psize = get_slice_psize(mm, ea);
175#else
176 psize = mm->context.user_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200177#endif
Paul Mackerras1189be62007-10-11 20:37:10 +1000178 vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100179 SLB_VSID_USER;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200180 break;
181 case VMALLOC_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100182 if (ea < VMALLOC_END)
183 psize = mmu_vmalloc_psize;
184 else
185 psize = mmu_io_psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000186 vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100187 SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200188 break;
189 case KERNEL_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100190 psize = mmu_linear_psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000191 vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100192 SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200193 break;
194 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500195 /* Future: support kernel segments so that drivers
196 * can use SPUs.
197 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500198 pr_debug("invalid region access at %016lx\n", ea);
199 return 1;
200 }
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100201 llp = mmu_psize_defs[psize].sllp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500202
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500203 out_be64(&priv2->slb_index_W, spu->slb_replace);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100204 out_be64(&priv2->slb_vsid_RW, vsid | llp);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500205 out_be64(&priv2->slb_esid_RW, esid);
206
207 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500208 if (spu->slb_replace >= 8)
209 spu->slb_replace = 0;
210
Arnd Bergmann67207b92005-11-15 15:53:48 -0500211 spu_restart_dma(spu);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000212 spu->stats.slb_flt++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500213 return 0;
214}
215
Mark Nutter5473af02005-11-15 15:53:49 -0500216extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500217static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500218{
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100219 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500220
Mark Nutter5473af02005-11-15 15:53:49 -0500221 /* Handle kernel space hash faults immediately.
222 User hash faults need to be deferred to process context. */
223 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
224 && REGION_ID(ea) != USER_REGION_ID
225 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
226 spu_restart_dma(spu);
227 return 0;
228 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500229
Arnd Bergmann8837d922006-01-04 20:31:28 +0100230 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Mark Nutter5473af02005-11-15 15:53:49 -0500231 printk("%s: invalid access during switch!\n", __func__);
232 return 1;
233 }
234
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500235 spu->dar = ea;
236 spu->dsisr = dsisr;
237 mb();
Masato Noguchiba723fe22006-06-19 20:33:33 +0200238 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500239 return 0;
240}
241
242static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200243spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500244{
245 struct spu *spu;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000246 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500247
248 spu = data;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000249
250 mask = spu_int_mask_get(spu, 0);
251 stat = spu_int_stat_get(spu, 0);
252 stat &= mask;
253
254 spin_lock(&spu->register_lock);
255 spu->class_0_pending |= stat;
256 spin_unlock(&spu->register_lock);
257
Masato Noguchiba723fe22006-06-19 20:33:33 +0200258 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500259
Masato Noguchib7f90a42007-09-07 18:28:27 +1000260 spu_int_stat_clear(spu, 0, stat);
261
Arnd Bergmann67207b92005-11-15 15:53:48 -0500262 return IRQ_HANDLED;
263}
264
Arnd Bergmann51104592005-12-05 22:52:25 -0500265int
Arnd Bergmann67207b92005-11-15 15:53:48 -0500266spu_irq_class_0_bottom(struct spu *spu)
267{
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900268 unsigned long flags;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000269 unsigned long stat;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500270
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900271 spin_lock_irqsave(&spu->register_lock, flags);
Masato Noguchib7f90a42007-09-07 18:28:27 +1000272 stat = spu->class_0_pending;
273 spu->class_0_pending = 0;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500274
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200275 if (stat & 1) /* invalid DMA alignment */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500276 __spu_trap_dma_align(spu);
277
Arnd Bergmann2cd90bc2006-06-23 20:57:50 +0200278 if (stat & 2) /* invalid MFC DMA */
279 __spu_trap_invalid_dma(spu);
280
Arnd Bergmann67207b92005-11-15 15:53:48 -0500281 if (stat & 4) /* error on SPU */
282 __spu_trap_error(spu);
283
Ishizaki Kou3650cfe2007-01-12 09:52:41 +0900284 spin_unlock_irqrestore(&spu->register_lock, flags);
Arnd Bergmann51104592005-12-05 22:52:25 -0500285
286 return (stat & 0x7) ? -EIO : 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500287}
Arnd Bergmann51104592005-12-05 22:52:25 -0500288EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500289
290static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200291spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500292{
293 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500294 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500295
296 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500297
298 /* atomically read & clear class1 status. */
299 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100300 mask = spu_int_mask_get(spu, 1);
301 stat = spu_int_stat_get(spu, 1) & mask;
302 dar = spu_mfc_dar_get(spu);
303 dsisr = spu_mfc_dsisr_get(spu);
Arnd Bergmann38307342005-12-09 19:04:18 +0100304 if (stat & 2) /* mapping fault */
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100305 spu_mfc_dsisr_set(spu, 0ul);
306 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500307 spin_unlock(&spu->register_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100308 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
309 dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500310
311 if (stat & 1) /* segment fault */
312 __spu_trap_data_seg(spu, dar);
313
314 if (stat & 2) { /* mapping fault */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500315 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500316 }
317
318 if (stat & 4) /* ls compare & suspend on get */
319 ;
320
321 if (stat & 8) /* ls compare & suspend on put */
322 ;
323
Arnd Bergmann67207b92005-11-15 15:53:48 -0500324 return stat ? IRQ_HANDLED : IRQ_NONE;
325}
326
327static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200328spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500329{
330 struct spu *spu;
331 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500332 unsigned long mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500333
334 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200335 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100336 stat = spu_int_stat_get(spu, 2);
337 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200338 /* ignore interrupts we're not waiting for */
339 stat &= mask;
340 /*
341 * mailbox interrupts (0x1 and 0x10) are level triggered.
342 * mask them now before acknowledging.
343 */
344 if (stat & 0x11)
345 spu_int_mask_and(spu, 2, ~(stat & 0x11));
346 /* acknowledge all interrupts before the callbacks */
347 spu_int_stat_clear(spu, 2, stat);
348 spin_unlock(&spu->register_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500349
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500350 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500351
Arnd Bergmann67207b92005-11-15 15:53:48 -0500352 if (stat & 1) /* PPC core mailbox */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200353 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500354
355 if (stat & 2) /* SPU stop-and-signal */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200356 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500357
358 if (stat & 4) /* SPU halted */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200359 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500360
361 if (stat & 8) /* DMA tag group complete */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200362 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500363
364 if (stat & 0x10) /* SPU mailbox threshold */
Masato Noguchiba723fe22006-06-19 20:33:33 +0200365 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500366
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000367 spu->stats.class2_intr++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500368 return stat ? IRQ_HANDLED : IRQ_NONE;
369}
370
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000371static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500372{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000373 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500374
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000375 if (spu->irqs[0] != NO_IRQ) {
376 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
377 spu->number);
378 ret = request_irq(spu->irqs[0], spu_irq_class_0,
379 IRQF_DISABLED,
380 spu->irq_c0, spu);
381 if (ret)
382 goto bail0;
383 }
384 if (spu->irqs[1] != NO_IRQ) {
385 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
386 spu->number);
387 ret = request_irq(spu->irqs[1], spu_irq_class_1,
388 IRQF_DISABLED,
389 spu->irq_c1, spu);
390 if (ret)
391 goto bail1;
392 }
393 if (spu->irqs[2] != NO_IRQ) {
394 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
395 spu->number);
396 ret = request_irq(spu->irqs[2], spu_irq_class_2,
397 IRQF_DISABLED,
398 spu->irq_c2, spu);
399 if (ret)
400 goto bail2;
401 }
402 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500403
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000404bail2:
405 if (spu->irqs[1] != NO_IRQ)
406 free_irq(spu->irqs[1], spu);
407bail1:
408 if (spu->irqs[0] != NO_IRQ)
409 free_irq(spu->irqs[0], spu);
410bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500411 return ret;
412}
413
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000414static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500415{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000416 if (spu->irqs[0] != NO_IRQ)
417 free_irq(spu->irqs[0], spu);
418 if (spu->irqs[1] != NO_IRQ)
419 free_irq(spu->irqs[1], spu);
420 if (spu->irqs[2] != NO_IRQ)
421 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500422}
423
Christoph Hellwig486acd42007-07-20 21:39:54 +0200424void spu_init_channels(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500425{
426 static const struct {
427 unsigned channel;
428 unsigned count;
429 } zero_list[] = {
430 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
431 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
432 }, count_list[] = {
433 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
434 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
435 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
436 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100437 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500438 int i;
439
440 priv2 = spu->priv2;
441
442 /* initialize all channel data to zero */
443 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
444 int count;
445
446 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
447 for (count = 0; count < zero_list[i].count; count++)
448 out_be64(&priv2->spu_chnldata_RW, 0);
449 }
450
451 /* initialize channel counts to meaningful values */
452 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
453 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
454 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
455 }
456}
Christoph Hellwig486acd42007-07-20 21:39:54 +0200457EXPORT_SYMBOL_GPL(spu_init_channels);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500458
Geoff Levand6deac062007-06-16 07:17:32 +1000459static int spu_shutdown(struct sys_device *sysdev)
460{
461 struct spu *spu = container_of(sysdev, struct spu, sysdev);
462
463 spu_free_irqs(spu);
464 spu_destroy_spu(spu);
465 return 0;
466}
467
Sebastian Siewior12388192007-09-19 14:38:12 +1000468static struct sysdev_class spu_sysdev_class = {
Geoff Levand6deac062007-06-16 07:17:32 +1000469 set_kset_name("spu"),
470 .shutdown = spu_shutdown,
Jeremy Kerr1d640932006-06-19 20:33:19 +0200471};
472
Christian Kraffte570beb2006-10-24 18:31:23 +0200473int spu_add_sysdev_attr(struct sysdev_attribute *attr)
474{
475 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200476
Christoph Hellwig24140592007-07-20 21:39:51 +0200477 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200478 list_for_each_entry(spu, &spu_full_list, full_list)
479 sysdev_create_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200480 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200481
Christian Kraffte570beb2006-10-24 18:31:23 +0200482 return 0;
483}
484EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
485
486int spu_add_sysdev_attr_group(struct attribute_group *attrs)
487{
488 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200489
Christoph Hellwig24140592007-07-20 21:39:51 +0200490 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200491 list_for_each_entry(spu, &spu_full_list, full_list)
492 sysfs_create_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200493 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200494
Christian Kraffte570beb2006-10-24 18:31:23 +0200495 return 0;
496}
497EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
498
499
500void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
501{
502 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200503
Christoph Hellwig24140592007-07-20 21:39:51 +0200504 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200505 list_for_each_entry(spu, &spu_full_list, full_list)
506 sysdev_remove_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200507 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200508}
509EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
510
511void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
512{
513 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200514
Christoph Hellwig24140592007-07-20 21:39:51 +0200515 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200516 list_for_each_entry(spu, &spu_full_list, full_list)
517 sysfs_remove_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200518 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200519}
520EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
521
Jeremy Kerr1d640932006-06-19 20:33:19 +0200522static int spu_create_sysdev(struct spu *spu)
523{
524 int ret;
525
526 spu->sysdev.id = spu->number;
527 spu->sysdev.cls = &spu_sysdev_class;
528 ret = sysdev_register(&spu->sysdev);
529 if (ret) {
530 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
531 spu->number);
532 return ret;
533 }
534
Geoff Levand00215502006-11-20 18:45:02 +0100535 sysfs_add_device_to_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200536
537 return 0;
538}
539
Geoff Levande28b0032006-11-23 00:46:49 +0100540static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500541{
542 struct spu *spu;
543 int ret;
544 static int number;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100545 unsigned long flags;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200546 struct timespec ts;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500547
548 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200549 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500550 if (!spu)
551 goto out;
552
Christoph Hellwig486acd42007-07-20 21:39:54 +0200553 spu->alloc_state = SPU_FREE;
554
Geoff Levande28b0032006-11-23 00:46:49 +0100555 spin_lock_init(&spu->register_lock);
Christoph Hellwig24140592007-07-20 21:39:51 +0200556 spin_lock(&spu_lock);
Geoff Levande28b0032006-11-23 00:46:49 +0100557 spu->number = number++;
Christoph Hellwig24140592007-07-20 21:39:51 +0200558 spin_unlock(&spu_lock);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000559
Geoff Levande28b0032006-11-23 00:46:49 +0100560 ret = spu_create_spu(spu, data);
561
Arnd Bergmann67207b92005-11-15 15:53:48 -0500562 if (ret)
563 goto out_free;
564
Masato Noguchi24f43b32006-10-24 18:31:14 +0200565 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100566 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500567 ret = spu_request_irqs(spu);
568 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100569 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500570
Jeremy Kerr1d640932006-06-19 20:33:19 +0200571 ret = spu_create_sysdev(spu);
572 if (ret)
573 goto out_free_irqs;
574
Christoph Hellwig486acd42007-07-20 21:39:54 +0200575 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200576 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
577 cbe_spu_info[spu->node].n_spus++;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200578 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
Christoph Hellwig24140592007-07-20 21:39:51 +0200579
580 mutex_lock(&spu_full_list_mutex);
581 spin_lock_irqsave(&spu_full_list_lock, flags);
Christian Kraffte570beb2006-10-24 18:31:23 +0200582 list_add(&spu->full_list, &spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200583 spin_unlock_irqrestore(&spu_full_list_lock, flags);
584 mutex_unlock(&spu_full_list_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500585
Andre Detsch27ec41d2007-07-20 21:39:33 +0200586 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
587 ktime_get_ts(&ts);
588 spu->stats.tstamp = timespec_to_ns(&ts);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000589
Arnd Bergmann9d92af62007-07-20 21:39:45 +0200590 INIT_LIST_HEAD(&spu->aff_list);
591
Arnd Bergmann67207b92005-11-15 15:53:48 -0500592 goto out;
593
Jeremy Kerr1d640932006-06-19 20:33:19 +0200594out_free_irqs:
595 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100596out_destroy:
597 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500598out_free:
599 kfree(spu);
600out:
601 return ret;
602}
603
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000604static const char *spu_state_names[] = {
605 "user", "system", "iowait", "idle"
606};
607
608static unsigned long long spu_acct_time(struct spu *spu,
609 enum spu_utilization_state state)
610{
Andre Detsch27ec41d2007-07-20 21:39:33 +0200611 struct timespec ts;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000612 unsigned long long time = spu->stats.times[state];
613
Andre Detsch27ec41d2007-07-20 21:39:33 +0200614 /*
615 * If the spu is idle or the context is stopped, utilization
616 * statistics are not updated. Apply the time delta from the
617 * last recorded state of the spu.
618 */
619 if (spu->stats.util_state == state) {
620 ktime_get_ts(&ts);
621 time += timespec_to_ns(&ts) - spu->stats.tstamp;
622 }
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000623
Andre Detsch27ec41d2007-07-20 21:39:33 +0200624 return time / NSEC_PER_MSEC;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000625}
626
627
628static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf)
629{
630 struct spu *spu = container_of(sysdev, struct spu, sysdev);
631
632 return sprintf(buf, "%s %llu %llu %llu %llu "
633 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +0200634 spu_state_names[spu->stats.util_state],
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000635 spu_acct_time(spu, SPU_UTIL_USER),
636 spu_acct_time(spu, SPU_UTIL_SYSTEM),
637 spu_acct_time(spu, SPU_UTIL_IOWAIT),
Andre Detsch27ec41d2007-07-20 21:39:33 +0200638 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000639 spu->stats.vol_ctx_switch,
640 spu->stats.invol_ctx_switch,
641 spu->stats.slb_flt,
642 spu->stats.hash_flt,
643 spu->stats.min_flt,
644 spu->stats.maj_flt,
645 spu->stats.class2_intr,
646 spu->stats.libassist);
647}
648
649static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);
650
Arnd Bergmann67207b92005-11-15 15:53:48 -0500651static int __init init_spu_base(void)
652{
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200653 int i, ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500654
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200655 for (i = 0; i < MAX_NUMNODES; i++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200656 mutex_init(&cbe_spu_info[i].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200657 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200658 }
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200659
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100660 if (!spu_management_ops)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200661 goto out;
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100662
Jeremy Kerr1d640932006-06-19 20:33:19 +0200663 /* create sysdev class for spus */
664 ret = sysdev_class_register(&spu_sysdev_class);
665 if (ret)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200666 goto out;
Jeremy Kerr1d640932006-06-19 20:33:19 +0200667
Geoff Levande28b0032006-11-23 00:46:49 +0100668 ret = spu_enumerate_spus(create_spu);
669
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700670 if (ret < 0) {
Geoff Levande28b0032006-11-23 00:46:49 +0100671 printk(KERN_WARNING "%s: Error initializing spus\n",
672 __FUNCTION__);
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200673 goto out_unregister_sysdev_class;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500674 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200675
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700676 if (ret > 0) {
677 /*
678 * We cannot put the forward declaration in
679 * <linux/linux_logo.h> because of conflicting session type
680 * conflicts for const and __initdata with different compiler
681 * versions
682 */
683 extern const struct linux_logo logo_spe_clut224;
684
685 fb_append_extra_logo(&logo_spe_clut224, ret);
686 }
687
Christoph Hellwig24140592007-07-20 21:39:51 +0200688 mutex_lock(&spu_full_list_mutex);
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200689 xmon_register_spus(&spu_full_list);
Andre Detsch8d2655e2007-07-20 21:39:27 +0200690 crash_register_spus(&spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200691 mutex_unlock(&spu_full_list_mutex);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000692 spu_add_sysdev_attr(&attr_stat);
693
Andre Detschf5996442007-08-03 18:53:46 -0700694 spu_init_affinity();
Arnd Bergmann3ad216c2007-07-20 21:39:46 +0200695
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200696 return 0;
697
698 out_unregister_sysdev_class:
699 sysdev_class_unregister(&spu_sysdev_class);
700 out:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500701 return ret;
702}
703module_init(init_spu_base);
704
705MODULE_LICENSE("GPL");
706MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");