blob: 70c660121ec4d0d2da4a36071d851a1acd3e7870 [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;
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +010084 unsigned long flags;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010085
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +010086 spin_lock_irqsave(&spu->register_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010087 if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
88 out_be64(&priv2->slb_invalidate_all_W, 0UL);
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +010089 spin_unlock_irqrestore(&spu->register_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010090}
91EXPORT_SYMBOL_GPL(spu_invalidate_slbs);
92
93/* This is called by the MM core when a segment size is changed, to
94 * request a flush of all the SPEs using a given mm
95 */
96void spu_flush_all_slbs(struct mm_struct *mm)
97{
98 struct spu *spu;
99 unsigned long flags;
100
Christoph Hellwig24140592007-07-20 21:39:51 +0200101 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100102 list_for_each_entry(spu, &spu_full_list, full_list) {
103 if (spu->mm == mm)
104 spu_invalidate_slbs(spu);
105 }
Christoph Hellwig24140592007-07-20 21:39:51 +0200106 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100107}
108
109/* The hack below stinks... try to do something better one of
110 * these days... Does it even work properly with NR_CPUS == 1 ?
111 */
112static inline void mm_needs_global_tlbie(struct mm_struct *mm)
113{
114 int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
115
116 /* Global TLBIE broadcast required with SPEs. */
117 __cpus_setall(&mm->cpu_vm_mask, nr);
118}
119
120void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
121{
122 unsigned long flags;
123
Christoph Hellwig24140592007-07-20 21:39:51 +0200124 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100125 spu->mm = mm;
Christoph Hellwig24140592007-07-20 21:39:51 +0200126 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100127 if (mm)
128 mm_needs_global_tlbie(mm);
129}
130EXPORT_SYMBOL_GPL(spu_associate_mm);
131
Jeremy Kerrf6eb7d7f2007-12-05 13:49:31 +1100132int spu_64k_pages_available(void)
133{
134 return mmu_psize_defs[MMU_PAGE_64K].shift != 0;
135}
136EXPORT_SYMBOL_GPL(spu_64k_pages_available);
137
Arnd Bergmann67207b92005-11-15 15:53:48 -0500138static 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);
Luke Browningde102892008-04-28 17:35:56 +1000144 else {
145 set_bit(SPU_CONTEXT_FAULT_PENDING, &spu->flags);
146 mb();
147 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500148}
149
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100150static inline void spu_load_slb(struct spu *spu, int slbe, struct spu_slb *slb)
151{
152 struct spu_priv2 __iomem *priv2 = spu->priv2;
153
154 pr_debug("%s: adding SLB[%d] 0x%016lx 0x%016lx\n",
155 __func__, slbe, slb->vsid, slb->esid);
156
157 out_be64(&priv2->slb_index_W, slbe);
Arnd Bergmanncc4b7c12008-02-26 07:01:56 +0100158 /* set invalid before writing vsid */
159 out_be64(&priv2->slb_esid_RW, 0);
160 /* now it's safe to write the vsid */
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100161 out_be64(&priv2->slb_vsid_RW, slb->vsid);
Arnd Bergmanncc4b7c12008-02-26 07:01:56 +0100162 /* setting the new esid makes the entry valid again */
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100163 out_be64(&priv2->slb_esid_RW, slb->esid);
164}
165
Arnd Bergmann67207b92005-11-15 15:53:48 -0500166static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
167{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500168 struct mm_struct *mm = spu->mm;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100169 struct spu_slb slb;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100170 int psize;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500171
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100172 pr_debug("%s\n", __func__);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500173
Jeremy Kerr4d434662007-12-05 13:49:31 +1100174 slb.esid = (ea & ESID_MASK) | SLB_ESID_V;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200175
176 switch(REGION_ID(ea)) {
177 case USER_REGION_ID:
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000178#ifdef CONFIG_PPC_MM_SLICES
179 psize = get_slice_psize(mm, ea);
180#else
181 psize = mm->context.user_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200182#endif
Jeremy Kerr4d434662007-12-05 13:49:31 +1100183 slb.vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M)
184 << SLB_VSID_SHIFT) | SLB_VSID_USER;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200185 break;
186 case VMALLOC_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100187 if (ea < VMALLOC_END)
188 psize = mmu_vmalloc_psize;
189 else
190 psize = mmu_io_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100191 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
192 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200193 break;
194 case KERNEL_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100195 psize = mmu_linear_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100196 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
197 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200198 break;
199 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500200 /* Future: support kernel segments so that drivers
201 * can use SPUs.
202 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500203 pr_debug("invalid region access at %016lx\n", ea);
204 return 1;
205 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100206 slb.vsid |= mmu_psize_defs[psize].sllp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500207
Jeremy Kerr4d434662007-12-05 13:49:31 +1100208 spu_load_slb(spu, spu->slb_replace, &slb);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500209
210 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500211 if (spu->slb_replace >= 8)
212 spu->slb_replace = 0;
213
Arnd Bergmann67207b92005-11-15 15:53:48 -0500214 spu_restart_dma(spu);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000215 spu->stats.slb_flt++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500216 return 0;
217}
218
Mark Nutter5473af02005-11-15 15:53:49 -0500219extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500220static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500221{
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100222 pr_debug("%s, %lx, %lx\n", __func__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500223
Mark Nutter5473af02005-11-15 15:53:49 -0500224 /* Handle kernel space hash faults immediately.
225 User hash faults need to be deferred to process context. */
226 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
227 && REGION_ID(ea) != USER_REGION_ID
228 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
229 spu_restart_dma(spu);
230 return 0;
231 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500232
Luke Browningf3d69e02008-04-27 18:41:55 +0000233 spu->class_1_dar = ea;
234 spu->class_1_dsisr = dsisr;
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900235
Luke Browningf3d69e02008-04-27 18:41:55 +0000236 spu->stop_callback(spu, 1);
237
238 spu->class_1_dar = 0;
239 spu->class_1_dsisr = 0;
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900240
Arnd Bergmann67207b92005-11-15 15:53:48 -0500241 return 0;
242}
243
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100244static void __spu_kernel_slb(void *addr, struct spu_slb *slb)
245{
246 unsigned long ea = (unsigned long)addr;
247 u64 llp;
248
249 if (REGION_ID(ea) == KERNEL_REGION_ID)
250 llp = mmu_psize_defs[mmu_linear_psize].sllp;
251 else
252 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
253
254 slb->vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
255 SLB_VSID_KERNEL | llp;
256 slb->esid = (ea & ESID_MASK) | SLB_ESID_V;
257}
258
259/**
Jeremy Kerr684bd612007-12-05 13:49:31 +1100260 * Given an array of @nr_slbs SLB entries, @slbs, return non-zero if the
261 * address @new_addr is present.
262 */
263static inline int __slb_present(struct spu_slb *slbs, int nr_slbs,
264 void *new_addr)
265{
266 unsigned long ea = (unsigned long)new_addr;
267 int i;
268
269 for (i = 0; i < nr_slbs; i++)
270 if (!((slbs[i].esid ^ ea) & ESID_MASK))
271 return 1;
272
273 return 0;
274}
275
276/**
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100277 * Setup the SPU kernel SLBs, in preparation for a context save/restore. We
278 * need to map both the context save area, and the save/restore code.
Jeremy Kerr684bd612007-12-05 13:49:31 +1100279 *
280 * Because the lscsa and code may cross segment boundaires, we check to see
281 * if mappings are required for the start and end of each range. We currently
282 * assume that the mappings are smaller that one segment - if not, something
283 * is seriously wrong.
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100284 */
Jeremy Kerr684bd612007-12-05 13:49:31 +1100285void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa,
286 void *code, int code_size)
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100287{
Jeremy Kerr684bd612007-12-05 13:49:31 +1100288 struct spu_slb slbs[4];
289 int i, nr_slbs = 0;
290 /* start and end addresses of both mappings */
291 void *addrs[] = {
292 lscsa, (void *)lscsa + sizeof(*lscsa) - 1,
293 code, code + code_size - 1
294 };
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100295
Jeremy Kerr684bd612007-12-05 13:49:31 +1100296 /* check the set of addresses, and create a new entry in the slbs array
297 * if there isn't already a SLB for that address */
298 for (i = 0; i < ARRAY_SIZE(addrs); i++) {
299 if (__slb_present(slbs, nr_slbs, addrs[i]))
300 continue;
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100301
Jeremy Kerr684bd612007-12-05 13:49:31 +1100302 __spu_kernel_slb(addrs[i], &slbs[nr_slbs]);
303 nr_slbs++;
304 }
305
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +0100306 spin_lock_irq(&spu->register_lock);
Jeremy Kerr684bd612007-12-05 13:49:31 +1100307 /* Add the set of SLBs */
308 for (i = 0; i < nr_slbs; i++)
309 spu_load_slb(spu, i, &slbs[i]);
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +0100310 spin_unlock_irq(&spu->register_lock);
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100311}
312EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs);
313
Arnd Bergmann67207b92005-11-15 15:53:48 -0500314static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200315spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500316{
317 struct spu *spu;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000318 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500319
320 spu = data;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000321
Masato Noguchib7f90a42007-09-07 18:28:27 +1000322 spin_lock(&spu->register_lock);
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900323 mask = spu_int_mask_get(spu, 0);
324 stat = spu_int_stat_get(spu, 0) & mask;
325
Masato Noguchib7f90a42007-09-07 18:28:27 +1000326 spu->class_0_pending |= stat;
Luke Browningf3d69e02008-04-27 18:41:55 +0000327 spu->class_0_dsisr = spu_mfc_dsisr_get(spu);
328 spu->class_0_dar = spu_mfc_dar_get(spu);
Masato Noguchib7f90a42007-09-07 18:28:27 +1000329 spin_unlock(&spu->register_lock);
330
Luke Browningf3d69e02008-04-27 18:41:55 +0000331 spu->stop_callback(spu, 0);
332
333 spu->class_0_pending = 0;
334 spu->class_0_dsisr = 0;
335 spu->class_0_dar = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500336
Masato Noguchib7f90a42007-09-07 18:28:27 +1000337 spu_int_stat_clear(spu, 0, stat);
338
Arnd Bergmann67207b92005-11-15 15:53:48 -0500339 return IRQ_HANDLED;
340}
341
Arnd Bergmann67207b92005-11-15 15:53:48 -0500342static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200343spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500344{
345 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500346 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500347
348 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500349
350 /* atomically read & clear class1 status. */
351 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100352 mask = spu_int_mask_get(spu, 1);
353 stat = spu_int_stat_get(spu, 1) & mask;
354 dar = spu_mfc_dar_get(spu);
355 dsisr = spu_mfc_dsisr_get(spu);
Jeremy Kerr8af30672007-12-20 16:39:59 +0900356 if (stat & CLASS1_STORAGE_FAULT_INTR)
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100357 spu_mfc_dsisr_set(spu, 0ul);
358 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500359
Jeremy Kerr8af30672007-12-20 16:39:59 +0900360 if (stat & CLASS1_SEGMENT_FAULT_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500361 __spu_trap_data_seg(spu, dar);
362
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +0100363 spin_unlock(&spu->register_lock);
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100364 pr_debug("%s: %lx %lx %lx %lx\n", __func__, mask, stat,
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +0100365 dar, dsisr);
366
Jeremy Kerr8af30672007-12-20 16:39:59 +0900367 if (stat & CLASS1_STORAGE_FAULT_INTR)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500368 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500369
Jeremy Kerr8af30672007-12-20 16:39:59 +0900370 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_GET_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500371 ;
372
Jeremy Kerr8af30672007-12-20 16:39:59 +0900373 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_PUT_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500374 ;
375
Luke Browningf3d69e02008-04-27 18:41:55 +0000376 spu->class_1_dsisr = 0;
377 spu->class_1_dar = 0;
378
Arnd Bergmann67207b92005-11-15 15:53:48 -0500379 return stat ? IRQ_HANDLED : IRQ_NONE;
380}
381
382static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200383spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500384{
385 struct spu *spu;
386 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500387 unsigned long mask;
Jeremy Kerr8af30672007-12-20 16:39:59 +0900388 const int mailbox_intrs =
389 CLASS2_MAILBOX_THRESHOLD_INTR | CLASS2_MAILBOX_INTR;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500390
391 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200392 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100393 stat = spu_int_stat_get(spu, 2);
394 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200395 /* ignore interrupts we're not waiting for */
396 stat &= mask;
Jeremy Kerr8af30672007-12-20 16:39:59 +0900397
398 /* mailbox interrupts are level triggered. mask them now before
399 * acknowledging */
400 if (stat & mailbox_intrs)
401 spu_int_mask_and(spu, 2, ~(stat & mailbox_intrs));
Masato Noguchiba723fe22006-06-19 20:33:33 +0200402 /* acknowledge all interrupts before the callbacks */
403 spu_int_stat_clear(spu, 2, stat);
404 spin_unlock(&spu->register_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500405
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500406 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500407
Jeremy Kerr8af30672007-12-20 16:39:59 +0900408 if (stat & CLASS2_MAILBOX_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200409 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500410
Jeremy Kerr8af30672007-12-20 16:39:59 +0900411 if (stat & CLASS2_SPU_STOP_INTR)
Luke Browningf3d69e02008-04-27 18:41:55 +0000412 spu->stop_callback(spu, 2);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500413
Jeremy Kerr8af30672007-12-20 16:39:59 +0900414 if (stat & CLASS2_SPU_HALT_INTR)
Luke Browningf3d69e02008-04-27 18:41:55 +0000415 spu->stop_callback(spu, 2);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500416
Jeremy Kerr8af30672007-12-20 16:39:59 +0900417 if (stat & CLASS2_SPU_DMA_TAG_GROUP_COMPLETE_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200418 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500419
Jeremy Kerr8af30672007-12-20 16:39:59 +0900420 if (stat & CLASS2_MAILBOX_THRESHOLD_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200421 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500422
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000423 spu->stats.class2_intr++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500424 return stat ? IRQ_HANDLED : IRQ_NONE;
425}
426
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000427static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500428{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000429 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500430
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000431 if (spu->irqs[0] != NO_IRQ) {
432 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
433 spu->number);
434 ret = request_irq(spu->irqs[0], spu_irq_class_0,
435 IRQF_DISABLED,
436 spu->irq_c0, spu);
437 if (ret)
438 goto bail0;
439 }
440 if (spu->irqs[1] != NO_IRQ) {
441 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
442 spu->number);
443 ret = request_irq(spu->irqs[1], spu_irq_class_1,
444 IRQF_DISABLED,
445 spu->irq_c1, spu);
446 if (ret)
447 goto bail1;
448 }
449 if (spu->irqs[2] != NO_IRQ) {
450 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
451 spu->number);
452 ret = request_irq(spu->irqs[2], spu_irq_class_2,
453 IRQF_DISABLED,
454 spu->irq_c2, spu);
455 if (ret)
456 goto bail2;
457 }
458 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500459
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000460bail2:
461 if (spu->irqs[1] != NO_IRQ)
462 free_irq(spu->irqs[1], spu);
463bail1:
464 if (spu->irqs[0] != NO_IRQ)
465 free_irq(spu->irqs[0], spu);
466bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500467 return ret;
468}
469
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000470static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500471{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000472 if (spu->irqs[0] != NO_IRQ)
473 free_irq(spu->irqs[0], spu);
474 if (spu->irqs[1] != NO_IRQ)
475 free_irq(spu->irqs[1], spu);
476 if (spu->irqs[2] != NO_IRQ)
477 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500478}
479
Christoph Hellwig486acd42007-07-20 21:39:54 +0200480void spu_init_channels(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500481{
482 static const struct {
483 unsigned channel;
484 unsigned count;
485 } zero_list[] = {
486 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
487 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
488 }, count_list[] = {
489 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
490 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
491 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
492 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100493 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500494 int i;
495
496 priv2 = spu->priv2;
497
498 /* initialize all channel data to zero */
499 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
500 int count;
501
502 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
503 for (count = 0; count < zero_list[i].count; count++)
504 out_be64(&priv2->spu_chnldata_RW, 0);
505 }
506
507 /* initialize channel counts to meaningful values */
508 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
509 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
510 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
511 }
512}
Christoph Hellwig486acd42007-07-20 21:39:54 +0200513EXPORT_SYMBOL_GPL(spu_init_channels);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500514
Geoff Levand6deac062007-06-16 07:17:32 +1000515static int spu_shutdown(struct sys_device *sysdev)
516{
517 struct spu *spu = container_of(sysdev, struct spu, sysdev);
518
519 spu_free_irqs(spu);
520 spu_destroy_spu(spu);
521 return 0;
522}
523
Sebastian Siewior12388192007-09-19 14:38:12 +1000524static struct sysdev_class spu_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100525 .name = "spu",
Geoff Levand6deac062007-06-16 07:17:32 +1000526 .shutdown = spu_shutdown,
Jeremy Kerr1d640932006-06-19 20:33:19 +0200527};
528
Christian Kraffte570beb2006-10-24 18:31:23 +0200529int spu_add_sysdev_attr(struct sysdev_attribute *attr)
530{
531 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200532
Christoph Hellwig24140592007-07-20 21:39:51 +0200533 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200534 list_for_each_entry(spu, &spu_full_list, full_list)
535 sysdev_create_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200536 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200537
Christian Kraffte570beb2006-10-24 18:31:23 +0200538 return 0;
539}
540EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
541
542int spu_add_sysdev_attr_group(struct attribute_group *attrs)
543{
544 struct spu *spu;
Jeremy Kerr1e771032007-12-05 13:49:31 +1100545 int rc = 0;
Christian Kraffte570beb2006-10-24 18:31:23 +0200546
Christoph Hellwig24140592007-07-20 21:39:51 +0200547 mutex_lock(&spu_full_list_mutex);
Jeremy Kerr1e771032007-12-05 13:49:31 +1100548 list_for_each_entry(spu, &spu_full_list, full_list) {
549 rc = sysfs_create_group(&spu->sysdev.kobj, attrs);
550
551 /* we're in trouble here, but try unwinding anyway */
552 if (rc) {
553 printk(KERN_ERR "%s: can't create sysfs group '%s'\n",
554 __func__, attrs->name);
555
556 list_for_each_entry_continue_reverse(spu,
557 &spu_full_list, full_list)
558 sysfs_remove_group(&spu->sysdev.kobj, attrs);
559 break;
560 }
561 }
562
Christoph Hellwig24140592007-07-20 21:39:51 +0200563 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200564
Jeremy Kerr1e771032007-12-05 13:49:31 +1100565 return rc;
Christian Kraffte570beb2006-10-24 18:31:23 +0200566}
567EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
568
569
570void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
571{
572 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200573
Christoph Hellwig24140592007-07-20 21:39:51 +0200574 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200575 list_for_each_entry(spu, &spu_full_list, full_list)
576 sysdev_remove_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200577 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200578}
579EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
580
581void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
582{
583 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200584
Christoph Hellwig24140592007-07-20 21:39:51 +0200585 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200586 list_for_each_entry(spu, &spu_full_list, full_list)
587 sysfs_remove_group(&spu->sysdev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200588 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200589}
590EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
591
Jeremy Kerr1d640932006-06-19 20:33:19 +0200592static int spu_create_sysdev(struct spu *spu)
593{
594 int ret;
595
596 spu->sysdev.id = spu->number;
597 spu->sysdev.cls = &spu_sysdev_class;
598 ret = sysdev_register(&spu->sysdev);
599 if (ret) {
600 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
601 spu->number);
602 return ret;
603 }
604
Geoff Levand00215502006-11-20 18:45:02 +0100605 sysfs_add_device_to_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200606
607 return 0;
608}
609
Geoff Levande28b0032006-11-23 00:46:49 +0100610static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500611{
612 struct spu *spu;
613 int ret;
614 static int number;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100615 unsigned long flags;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200616 struct timespec ts;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500617
618 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200619 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500620 if (!spu)
621 goto out;
622
Christoph Hellwig486acd42007-07-20 21:39:54 +0200623 spu->alloc_state = SPU_FREE;
624
Geoff Levande28b0032006-11-23 00:46:49 +0100625 spin_lock_init(&spu->register_lock);
Christoph Hellwig24140592007-07-20 21:39:51 +0200626 spin_lock(&spu_lock);
Geoff Levande28b0032006-11-23 00:46:49 +0100627 spu->number = number++;
Christoph Hellwig24140592007-07-20 21:39:51 +0200628 spin_unlock(&spu_lock);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000629
Geoff Levande28b0032006-11-23 00:46:49 +0100630 ret = spu_create_spu(spu, data);
631
Arnd Bergmann67207b92005-11-15 15:53:48 -0500632 if (ret)
633 goto out_free;
634
Masato Noguchi24f43b32006-10-24 18:31:14 +0200635 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100636 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500637 ret = spu_request_irqs(spu);
638 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100639 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500640
Jeremy Kerr1d640932006-06-19 20:33:19 +0200641 ret = spu_create_sysdev(spu);
642 if (ret)
643 goto out_free_irqs;
644
Christoph Hellwig486acd42007-07-20 21:39:54 +0200645 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200646 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
647 cbe_spu_info[spu->node].n_spus++;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200648 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
Christoph Hellwig24140592007-07-20 21:39:51 +0200649
650 mutex_lock(&spu_full_list_mutex);
651 spin_lock_irqsave(&spu_full_list_lock, flags);
Christian Kraffte570beb2006-10-24 18:31:23 +0200652 list_add(&spu->full_list, &spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200653 spin_unlock_irqrestore(&spu_full_list_lock, flags);
654 mutex_unlock(&spu_full_list_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500655
Andre Detsch27ec41d2007-07-20 21:39:33 +0200656 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
657 ktime_get_ts(&ts);
658 spu->stats.tstamp = timespec_to_ns(&ts);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000659
Arnd Bergmann9d92af62007-07-20 21:39:45 +0200660 INIT_LIST_HEAD(&spu->aff_list);
661
Arnd Bergmann67207b92005-11-15 15:53:48 -0500662 goto out;
663
Jeremy Kerr1d640932006-06-19 20:33:19 +0200664out_free_irqs:
665 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100666out_destroy:
667 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500668out_free:
669 kfree(spu);
670out:
671 return ret;
672}
673
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000674static const char *spu_state_names[] = {
675 "user", "system", "iowait", "idle"
676};
677
678static unsigned long long spu_acct_time(struct spu *spu,
679 enum spu_utilization_state state)
680{
Andre Detsch27ec41d2007-07-20 21:39:33 +0200681 struct timespec ts;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000682 unsigned long long time = spu->stats.times[state];
683
Andre Detsch27ec41d2007-07-20 21:39:33 +0200684 /*
685 * If the spu is idle or the context is stopped, utilization
686 * statistics are not updated. Apply the time delta from the
687 * last recorded state of the spu.
688 */
689 if (spu->stats.util_state == state) {
690 ktime_get_ts(&ts);
691 time += timespec_to_ns(&ts) - spu->stats.tstamp;
692 }
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000693
Andre Detsch27ec41d2007-07-20 21:39:33 +0200694 return time / NSEC_PER_MSEC;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000695}
696
697
698static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf)
699{
700 struct spu *spu = container_of(sysdev, struct spu, sysdev);
701
702 return sprintf(buf, "%s %llu %llu %llu %llu "
703 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +0200704 spu_state_names[spu->stats.util_state],
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000705 spu_acct_time(spu, SPU_UTIL_USER),
706 spu_acct_time(spu, SPU_UTIL_SYSTEM),
707 spu_acct_time(spu, SPU_UTIL_IOWAIT),
Andre Detsch27ec41d2007-07-20 21:39:33 +0200708 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000709 spu->stats.vol_ctx_switch,
710 spu->stats.invol_ctx_switch,
711 spu->stats.slb_flt,
712 spu->stats.hash_flt,
713 spu->stats.min_flt,
714 spu->stats.maj_flt,
715 spu->stats.class2_intr,
716 spu->stats.libassist);
717}
718
719static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);
720
Arnd Bergmann67207b92005-11-15 15:53:48 -0500721static int __init init_spu_base(void)
722{
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200723 int i, ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500724
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200725 for (i = 0; i < MAX_NUMNODES; i++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200726 mutex_init(&cbe_spu_info[i].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200727 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200728 }
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200729
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100730 if (!spu_management_ops)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200731 goto out;
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100732
Jeremy Kerr1d640932006-06-19 20:33:19 +0200733 /* create sysdev class for spus */
734 ret = sysdev_class_register(&spu_sysdev_class);
735 if (ret)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200736 goto out;
Jeremy Kerr1d640932006-06-19 20:33:19 +0200737
Geoff Levande28b0032006-11-23 00:46:49 +0100738 ret = spu_enumerate_spus(create_spu);
739
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700740 if (ret < 0) {
Geoff Levande28b0032006-11-23 00:46:49 +0100741 printk(KERN_WARNING "%s: Error initializing spus\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100742 __func__);
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200743 goto out_unregister_sysdev_class;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500744 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200745
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700746 if (ret > 0) {
747 /*
748 * We cannot put the forward declaration in
749 * <linux/linux_logo.h> because of conflicting session type
750 * conflicts for const and __initdata with different compiler
751 * versions
752 */
753 extern const struct linux_logo logo_spe_clut224;
754
755 fb_append_extra_logo(&logo_spe_clut224, ret);
756 }
757
Christoph Hellwig24140592007-07-20 21:39:51 +0200758 mutex_lock(&spu_full_list_mutex);
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200759 xmon_register_spus(&spu_full_list);
Andre Detsch8d2655e2007-07-20 21:39:27 +0200760 crash_register_spus(&spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200761 mutex_unlock(&spu_full_list_mutex);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000762 spu_add_sysdev_attr(&attr_stat);
763
Andre Detschf5996442007-08-03 18:53:46 -0700764 spu_init_affinity();
Arnd Bergmann3ad216c2007-07-20 21:39:46 +0200765
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200766 return 0;
767
768 out_unregister_sysdev_class:
769 sysdev_class_unregister(&spu_sysdev_class);
770 out:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500771 return ret;
772}
773module_init(init_spu_base);
774
775MODULE_LICENSE("GPL");
776MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");