blob: fb266ae320954ed2e344e2786e526dd24d5b0347 [file] [log] [blame]
Arnd Bergmann67207b92005-11-15 15:53:48 -05001/*
2 * Low-level SPU handling
3 *
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
5 *
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
Arnd Bergmann3b3d22c2005-12-05 22:52:24 -050023#undef DEBUG
Arnd Bergmann67207b92005-11-15 15:53:48 -050024
25#include <linux/interrupt.h>
26#include <linux/list.h>
27#include <linux/module.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050028#include <linux/ptrace.h>
29#include <linux/slab.h>
30#include <linux/wait.h>
Geoff Levande28b0032006-11-23 00:46:49 +010031#include <linux/mm.h>
32#include <linux/io.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080033#include <linux/mutex.h>
Geert Uytterhoevenbce94512007-07-17 04:05:52 -070034#include <linux/linux_logo.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050035#include <asm/spu.h>
Geoff Levand540270d2006-06-19 20:33:29 +020036#include <asm/spu_priv1.h>
Jeremy Kerr58bd4032007-12-05 13:49:31 +110037#include <asm/spu_csa.h>
Michael Ellermanff8a8f22006-10-24 18:31:27 +020038#include <asm/xmon.h>
Arnd Bergmann3ad216c2007-07-20 21:39:46 +020039#include <asm/prom.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050040
Geoff Levande28b0032006-11-23 00:46:49 +010041const struct spu_management_ops *spu_management_ops;
Jeremy Kerrccf17e92007-04-23 21:08:29 +020042EXPORT_SYMBOL_GPL(spu_management_ops);
43
Geoff Levand540270d2006-06-19 20:33:29 +020044const struct spu_priv1_ops *spu_priv1_ops;
Geoff Levand540270d2006-06-19 20:33:29 +020045EXPORT_SYMBOL_GPL(spu_priv1_ops);
46
Christoph Hellwig24140592007-07-20 21:39:51 +020047struct cbe_spu_info cbe_spu_info[MAX_NUMNODES];
48EXPORT_SYMBOL_GPL(cbe_spu_info);
49
50/*
Jeremy Kerr3ce2f622007-12-05 13:49:31 +110051 * The spufs fault-handling code needs to call force_sig_info to raise signals
52 * on DMA errors. Export it here to avoid general kernel-wide access to this
53 * function
54 */
55EXPORT_SYMBOL_GPL(force_sig_info);
56
57/*
Christoph Hellwig24140592007-07-20 21:39:51 +020058 * Protects cbe_spu_info and spu->number.
59 */
60static DEFINE_SPINLOCK(spu_lock);
61
62/*
63 * List of all spus in the system.
64 *
65 * This list is iterated by callers from irq context and callers that
66 * want to sleep. Thus modifications need to be done with both
67 * spu_full_list_lock and spu_full_list_mutex held, while iterating
68 * through it requires either of these locks.
69 *
70 * In addition spu_full_list_lock protects all assignmens to
71 * spu->mm.
72 */
73static LIST_HEAD(spu_full_list);
74static DEFINE_SPINLOCK(spu_full_list_lock);
75static DEFINE_MUTEX(spu_full_list_mutex);
76
Jeremy Kerr58bd4032007-12-05 13:49:31 +110077struct spu_slb {
78 u64 esid, vsid;
79};
80
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010081void spu_invalidate_slbs(struct spu *spu)
82{
83 struct spu_priv2 __iomem *priv2 = spu->priv2;
84
85 if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
86 out_be64(&priv2->slb_invalidate_all_W, 0UL);
87}
88EXPORT_SYMBOL_GPL(spu_invalidate_slbs);
89
90/* This is called by the MM core when a segment size is changed, to
91 * request a flush of all the SPEs using a given mm
92 */
93void spu_flush_all_slbs(struct mm_struct *mm)
94{
95 struct spu *spu;
96 unsigned long flags;
97
Christoph Hellwig24140592007-07-20 21:39:51 +020098 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010099 list_for_each_entry(spu, &spu_full_list, full_list) {
100 if (spu->mm == mm)
101 spu_invalidate_slbs(spu);
102 }
Christoph Hellwig24140592007-07-20 21:39:51 +0200103 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100104}
105
106/* The hack below stinks... try to do something better one of
107 * these days... Does it even work properly with NR_CPUS == 1 ?
108 */
109static inline void mm_needs_global_tlbie(struct mm_struct *mm)
110{
111 int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
112
113 /* Global TLBIE broadcast required with SPEs. */
114 __cpus_setall(&mm->cpu_vm_mask, nr);
115}
116
117void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
118{
119 unsigned long flags;
120
Christoph Hellwig24140592007-07-20 21:39:51 +0200121 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100122 spu->mm = mm;
Christoph Hellwig24140592007-07-20 21:39:51 +0200123 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100124 if (mm)
125 mm_needs_global_tlbie(mm);
126}
127EXPORT_SYMBOL_GPL(spu_associate_mm);
128
Jeremy Kerrf6eb7d7f2007-12-05 13:49:31 +1100129int spu_64k_pages_available(void)
130{
131 return mmu_psize_defs[MMU_PAGE_64K].shift != 0;
132}
133EXPORT_SYMBOL_GPL(spu_64k_pages_available);
134
Arnd Bergmann67207b92005-11-15 15:53:48 -0500135static void spu_restart_dma(struct spu *spu)
136{
137 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -0500138
Arnd Bergmann8837d922006-01-04 20:31:28 +0100139 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -0500140 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500141}
142
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100143static inline void spu_load_slb(struct spu *spu, int slbe, struct spu_slb *slb)
144{
145 struct spu_priv2 __iomem *priv2 = spu->priv2;
146
147 pr_debug("%s: adding SLB[%d] 0x%016lx 0x%016lx\n",
148 __func__, slbe, slb->vsid, slb->esid);
149
150 out_be64(&priv2->slb_index_W, slbe);
151 out_be64(&priv2->slb_vsid_RW, slb->vsid);
152 out_be64(&priv2->slb_esid_RW, slb->esid);
153}
154
Arnd Bergmann67207b92005-11-15 15:53:48 -0500155static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
156{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500157 struct mm_struct *mm = spu->mm;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100158 struct spu_slb slb;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100159 int psize;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500160
161 pr_debug("%s\n", __FUNCTION__);
162
Arnd Bergmann8837d922006-01-04 20:31:28 +0100163 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500164 /* SLBs are pre-loaded for context switch, so
165 * we should never get here!
166 */
Mark Nutter5473af02005-11-15 15:53:49 -0500167 printk("%s: invalid access during switch!\n", __func__);
168 return 1;
169 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100170 slb.esid = (ea & ESID_MASK) | SLB_ESID_V;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200171
172 switch(REGION_ID(ea)) {
173 case USER_REGION_ID:
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000174#ifdef CONFIG_PPC_MM_SLICES
175 psize = get_slice_psize(mm, ea);
176#else
177 psize = mm->context.user_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200178#endif
Jeremy Kerr4d434662007-12-05 13:49:31 +1100179 slb.vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M)
180 << SLB_VSID_SHIFT) | SLB_VSID_USER;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200181 break;
182 case VMALLOC_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100183 if (ea < VMALLOC_END)
184 psize = mmu_vmalloc_psize;
185 else
186 psize = mmu_io_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100187 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
188 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200189 break;
190 case KERNEL_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100191 psize = mmu_linear_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100192 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
193 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200194 break;
195 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500196 /* Future: support kernel segments so that drivers
197 * can use SPUs.
198 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500199 pr_debug("invalid region access at %016lx\n", ea);
200 return 1;
201 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100202 slb.vsid |= mmu_psize_defs[psize].sllp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500203
Jeremy Kerr4d434662007-12-05 13:49:31 +1100204 spu_load_slb(spu, spu->slb_replace, &slb);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500205
206 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500207 if (spu->slb_replace >= 8)
208 spu->slb_replace = 0;
209
Arnd Bergmann67207b92005-11-15 15:53:48 -0500210 spu_restart_dma(spu);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000211 spu->stats.slb_flt++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500212 return 0;
213}
214
Mark Nutter5473af02005-11-15 15:53:49 -0500215extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500216static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500217{
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100218 pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500219
Mark Nutter5473af02005-11-15 15:53:49 -0500220 /* Handle kernel space hash faults immediately.
221 User hash faults need to be deferred to process context. */
222 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)
223 && REGION_ID(ea) != USER_REGION_ID
224 && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {
225 spu_restart_dma(spu);
226 return 0;
227 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500228
Arnd Bergmann8837d922006-01-04 20:31:28 +0100229 if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {
Mark Nutter5473af02005-11-15 15:53:49 -0500230 printk("%s: invalid access during switch!\n", __func__);
231 return 1;
232 }
233
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900234 spu->class_0_pending = 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500235 spu->dar = ea;
236 spu->dsisr = dsisr;
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900237
Masato Noguchiba723fe22006-06-19 20:33:33 +0200238 spu->stop_callback(spu);
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900239
Arnd Bergmann67207b92005-11-15 15:53:48 -0500240 return 0;
241}
242
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100243static void __spu_kernel_slb(void *addr, struct spu_slb *slb)
244{
245 unsigned long ea = (unsigned long)addr;
246 u64 llp;
247
248 if (REGION_ID(ea) == KERNEL_REGION_ID)
249 llp = mmu_psize_defs[mmu_linear_psize].sllp;
250 else
251 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
252
253 slb->vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
254 SLB_VSID_KERNEL | llp;
255 slb->esid = (ea & ESID_MASK) | SLB_ESID_V;
256}
257
258/**
Jeremy Kerr684bd612007-12-05 13:49:31 +1100259 * Given an array of @nr_slbs SLB entries, @slbs, return non-zero if the
260 * address @new_addr is present.
261 */
262static inline int __slb_present(struct spu_slb *slbs, int nr_slbs,
263 void *new_addr)
264{
265 unsigned long ea = (unsigned long)new_addr;
266 int i;
267
268 for (i = 0; i < nr_slbs; i++)
269 if (!((slbs[i].esid ^ ea) & ESID_MASK))
270 return 1;
271
272 return 0;
273}
274
275/**
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100276 * Setup the SPU kernel SLBs, in preparation for a context save/restore. We
277 * need to map both the context save area, and the save/restore code.
Jeremy Kerr684bd612007-12-05 13:49:31 +1100278 *
279 * Because the lscsa and code may cross segment boundaires, we check to see
280 * if mappings are required for the start and end of each range. We currently
281 * assume that the mappings are smaller that one segment - if not, something
282 * is seriously wrong.
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100283 */
Jeremy Kerr684bd612007-12-05 13:49:31 +1100284void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa,
285 void *code, int code_size)
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100286{
Jeremy Kerr684bd612007-12-05 13:49:31 +1100287 struct spu_slb slbs[4];
288 int i, nr_slbs = 0;
289 /* start and end addresses of both mappings */
290 void *addrs[] = {
291 lscsa, (void *)lscsa + sizeof(*lscsa) - 1,
292 code, code + code_size - 1
293 };
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100294
Jeremy Kerr684bd612007-12-05 13:49:31 +1100295 /* check the set of addresses, and create a new entry in the slbs array
296 * if there isn't already a SLB for that address */
297 for (i = 0; i < ARRAY_SIZE(addrs); i++) {
298 if (__slb_present(slbs, nr_slbs, addrs[i]))
299 continue;
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100300
Jeremy Kerr684bd612007-12-05 13:49:31 +1100301 __spu_kernel_slb(addrs[i], &slbs[nr_slbs]);
302 nr_slbs++;
303 }
304
305 /* Add the set of SLBs */
306 for (i = 0; i < nr_slbs; i++)
307 spu_load_slb(spu, i, &slbs[i]);
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100308}
309EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs);
310
Arnd Bergmann67207b92005-11-15 15:53:48 -0500311static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200312spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500313{
314 struct spu *spu;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000315 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500316
317 spu = data;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000318
Masato Noguchib7f90a42007-09-07 18:28:27 +1000319 spin_lock(&spu->register_lock);
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900320 mask = spu_int_mask_get(spu, 0);
321 stat = spu_int_stat_get(spu, 0) & mask;
322
Masato Noguchib7f90a42007-09-07 18:28:27 +1000323 spu->class_0_pending |= stat;
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900324 spu->dsisr = spu_mfc_dsisr_get(spu);
325 spu->dar = spu_mfc_dar_get(spu);
Masato Noguchib7f90a42007-09-07 18:28:27 +1000326 spin_unlock(&spu->register_lock);
327
Masato Noguchiba723fe22006-06-19 20:33:33 +0200328 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500329
Masato Noguchib7f90a42007-09-07 18:28:27 +1000330 spu_int_stat_clear(spu, 0, stat);
331
Arnd Bergmann67207b92005-11-15 15:53:48 -0500332 return IRQ_HANDLED;
333}
334
Arnd Bergmann67207b92005-11-15 15:53:48 -0500335static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200336spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500337{
338 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500339 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500340
341 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500342
343 /* atomically read & clear class1 status. */
344 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100345 mask = spu_int_mask_get(spu, 1);
346 stat = spu_int_stat_get(spu, 1) & mask;
347 dar = spu_mfc_dar_get(spu);
348 dsisr = spu_mfc_dsisr_get(spu);
Jeremy Kerr8af30672007-12-20 16:39:59 +0900349 if (stat & CLASS1_STORAGE_FAULT_INTR)
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100350 spu_mfc_dsisr_set(spu, 0ul);
351 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500352 spin_unlock(&spu->register_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100353 pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
354 dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500355
Jeremy Kerr8af30672007-12-20 16:39:59 +0900356 if (stat & CLASS1_SEGMENT_FAULT_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500357 __spu_trap_data_seg(spu, dar);
358
Jeremy Kerr8af30672007-12-20 16:39:59 +0900359 if (stat & CLASS1_STORAGE_FAULT_INTR)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500360 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500361
Jeremy Kerr8af30672007-12-20 16:39:59 +0900362 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_GET_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500363 ;
364
Jeremy Kerr8af30672007-12-20 16:39:59 +0900365 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_PUT_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500366 ;
367
Arnd Bergmann67207b92005-11-15 15:53:48 -0500368 return stat ? IRQ_HANDLED : IRQ_NONE;
369}
370
371static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200372spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500373{
374 struct spu *spu;
375 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500376 unsigned long mask;
Jeremy Kerr8af30672007-12-20 16:39:59 +0900377 const int mailbox_intrs =
378 CLASS2_MAILBOX_THRESHOLD_INTR | CLASS2_MAILBOX_INTR;
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;
Jeremy Kerr8af30672007-12-20 16:39:59 +0900386
387 /* mailbox interrupts are level triggered. mask them now before
388 * acknowledging */
389 if (stat & mailbox_intrs)
390 spu_int_mask_and(spu, 2, ~(stat & mailbox_intrs));
Masato Noguchiba723fe22006-06-19 20:33:33 +0200391 /* acknowledge all interrupts before the callbacks */
392 spu_int_stat_clear(spu, 2, stat);
393 spin_unlock(&spu->register_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500394
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500395 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500396
Jeremy Kerr8af30672007-12-20 16:39:59 +0900397 if (stat & CLASS2_MAILBOX_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200398 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500399
Jeremy Kerr8af30672007-12-20 16:39:59 +0900400 if (stat & CLASS2_SPU_STOP_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200401 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500402
Jeremy Kerr8af30672007-12-20 16:39:59 +0900403 if (stat & CLASS2_SPU_HALT_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200404 spu->stop_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500405
Jeremy Kerr8af30672007-12-20 16:39:59 +0900406 if (stat & CLASS2_SPU_DMA_TAG_GROUP_COMPLETE_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200407 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500408
Jeremy Kerr8af30672007-12-20 16:39:59 +0900409 if (stat & CLASS2_MAILBOX_THRESHOLD_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200410 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500411
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000412 spu->stats.class2_intr++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500413 return stat ? IRQ_HANDLED : IRQ_NONE;
414}
415
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000416static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500417{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000418 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500419
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000420 if (spu->irqs[0] != NO_IRQ) {
421 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
422 spu->number);
423 ret = request_irq(spu->irqs[0], spu_irq_class_0,
424 IRQF_DISABLED,
425 spu->irq_c0, spu);
426 if (ret)
427 goto bail0;
428 }
429 if (spu->irqs[1] != NO_IRQ) {
430 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
431 spu->number);
432 ret = request_irq(spu->irqs[1], spu_irq_class_1,
433 IRQF_DISABLED,
434 spu->irq_c1, spu);
435 if (ret)
436 goto bail1;
437 }
438 if (spu->irqs[2] != NO_IRQ) {
439 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
440 spu->number);
441 ret = request_irq(spu->irqs[2], spu_irq_class_2,
442 IRQF_DISABLED,
443 spu->irq_c2, spu);
444 if (ret)
445 goto bail2;
446 }
447 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500448
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000449bail2:
450 if (spu->irqs[1] != NO_IRQ)
451 free_irq(spu->irqs[1], spu);
452bail1:
453 if (spu->irqs[0] != NO_IRQ)
454 free_irq(spu->irqs[0], spu);
455bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500456 return ret;
457}
458
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000459static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500460{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000461 if (spu->irqs[0] != NO_IRQ)
462 free_irq(spu->irqs[0], spu);
463 if (spu->irqs[1] != NO_IRQ)
464 free_irq(spu->irqs[1], spu);
465 if (spu->irqs[2] != NO_IRQ)
466 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500467}
468
Christoph Hellwig486acd42007-07-20 21:39:54 +0200469void spu_init_channels(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500470{
471 static const struct {
472 unsigned channel;
473 unsigned count;
474 } zero_list[] = {
475 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
476 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
477 }, count_list[] = {
478 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
479 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
480 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
481 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100482 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500483 int i;
484
485 priv2 = spu->priv2;
486
487 /* initialize all channel data to zero */
488 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
489 int count;
490
491 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
492 for (count = 0; count < zero_list[i].count; count++)
493 out_be64(&priv2->spu_chnldata_RW, 0);
494 }
495
496 /* initialize channel counts to meaningful values */
497 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
498 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
499 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
500 }
501}
Christoph Hellwig486acd42007-07-20 21:39:54 +0200502EXPORT_SYMBOL_GPL(spu_init_channels);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500503
Geoff Levand6deac062007-06-16 07:17:32 +1000504static int spu_shutdown(struct sys_device *sysdev)
505{
506 struct spu *spu = container_of(sysdev, struct spu, sysdev);
507
508 spu_free_irqs(spu);
509 spu_destroy_spu(spu);
510 return 0;
511}
512
Sebastian Siewior12388192007-09-19 14:38:12 +1000513static struct sysdev_class spu_sysdev_class = {
Geoff Levand6deac062007-06-16 07:17:32 +1000514 set_kset_name("spu"),
515 .shutdown = spu_shutdown,
Jeremy Kerr1d640932006-06-19 20:33:19 +0200516};
517
Christian Kraffte570beb2006-10-24 18:31:23 +0200518int spu_add_sysdev_attr(struct sysdev_attribute *attr)
519{
520 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200521
Christoph Hellwig24140592007-07-20 21:39:51 +0200522 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200523 list_for_each_entry(spu, &spu_full_list, full_list)
524 sysdev_create_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200525 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200526
Christian Kraffte570beb2006-10-24 18:31:23 +0200527 return 0;
528}
529EXPORT_SYMBOL_GPL(spu_add_sysdev_attr);
530
531int spu_add_sysdev_attr_group(struct attribute_group *attrs)
532{
533 struct spu *spu;
Jeremy Kerr1e771032007-12-05 13:49:31 +1100534 int rc = 0;
Christian Kraffte570beb2006-10-24 18:31:23 +0200535
Christoph Hellwig24140592007-07-20 21:39:51 +0200536 mutex_lock(&spu_full_list_mutex);
Jeremy Kerr1e771032007-12-05 13:49:31 +1100537 list_for_each_entry(spu, &spu_full_list, full_list) {
538 rc = sysfs_create_group(&spu->sysdev.kobj, attrs);
539
540 /* we're in trouble here, but try unwinding anyway */
541 if (rc) {
542 printk(KERN_ERR "%s: can't create sysfs group '%s'\n",
543 __func__, attrs->name);
544
545 list_for_each_entry_continue_reverse(spu,
546 &spu_full_list, full_list)
547 sysfs_remove_group(&spu->sysdev.kobj, attrs);
548 break;
549 }
550 }
551
Christoph Hellwig24140592007-07-20 21:39:51 +0200552 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200553
Jeremy Kerr1e771032007-12-05 13:49:31 +1100554 return rc;
Christian Kraffte570beb2006-10-24 18:31:23 +0200555}
556EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
557
558
559void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
560{
561 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200562
Christoph Hellwig24140592007-07-20 21:39:51 +0200563 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200564 list_for_each_entry(spu, &spu_full_list, full_list)
565 sysdev_remove_file(&spu->sysdev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200566 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200567}
568EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
569
570void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
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 sysfs_remove_group(&spu->sysdev.kobj, attrs);
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_group);
580
Jeremy Kerr1d640932006-06-19 20:33:19 +0200581static int spu_create_sysdev(struct spu *spu)
582{
583 int ret;
584
585 spu->sysdev.id = spu->number;
586 spu->sysdev.cls = &spu_sysdev_class;
587 ret = sysdev_register(&spu->sysdev);
588 if (ret) {
589 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
590 spu->number);
591 return ret;
592 }
593
Geoff Levand00215502006-11-20 18:45:02 +0100594 sysfs_add_device_to_node(&spu->sysdev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200595
596 return 0;
597}
598
Geoff Levande28b0032006-11-23 00:46:49 +0100599static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500600{
601 struct spu *spu;
602 int ret;
603 static int number;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100604 unsigned long flags;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200605 struct timespec ts;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500606
607 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200608 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500609 if (!spu)
610 goto out;
611
Christoph Hellwig486acd42007-07-20 21:39:54 +0200612 spu->alloc_state = SPU_FREE;
613
Geoff Levande28b0032006-11-23 00:46:49 +0100614 spin_lock_init(&spu->register_lock);
Christoph Hellwig24140592007-07-20 21:39:51 +0200615 spin_lock(&spu_lock);
Geoff Levande28b0032006-11-23 00:46:49 +0100616 spu->number = number++;
Christoph Hellwig24140592007-07-20 21:39:51 +0200617 spin_unlock(&spu_lock);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000618
Geoff Levande28b0032006-11-23 00:46:49 +0100619 ret = spu_create_spu(spu, data);
620
Arnd Bergmann67207b92005-11-15 15:53:48 -0500621 if (ret)
622 goto out_free;
623
Masato Noguchi24f43b32006-10-24 18:31:14 +0200624 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100625 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500626 ret = spu_request_irqs(spu);
627 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100628 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500629
Jeremy Kerr1d640932006-06-19 20:33:19 +0200630 ret = spu_create_sysdev(spu);
631 if (ret)
632 goto out_free_irqs;
633
Christoph Hellwig486acd42007-07-20 21:39:54 +0200634 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200635 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
636 cbe_spu_info[spu->node].n_spus++;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200637 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
Christoph Hellwig24140592007-07-20 21:39:51 +0200638
639 mutex_lock(&spu_full_list_mutex);
640 spin_lock_irqsave(&spu_full_list_lock, flags);
Christian Kraffte570beb2006-10-24 18:31:23 +0200641 list_add(&spu->full_list, &spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200642 spin_unlock_irqrestore(&spu_full_list_lock, flags);
643 mutex_unlock(&spu_full_list_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500644
Andre Detsch27ec41d2007-07-20 21:39:33 +0200645 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
646 ktime_get_ts(&ts);
647 spu->stats.tstamp = timespec_to_ns(&ts);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000648
Arnd Bergmann9d92af62007-07-20 21:39:45 +0200649 INIT_LIST_HEAD(&spu->aff_list);
650
Arnd Bergmann67207b92005-11-15 15:53:48 -0500651 goto out;
652
Jeremy Kerr1d640932006-06-19 20:33:19 +0200653out_free_irqs:
654 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100655out_destroy:
656 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500657out_free:
658 kfree(spu);
659out:
660 return ret;
661}
662
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000663static const char *spu_state_names[] = {
664 "user", "system", "iowait", "idle"
665};
666
667static unsigned long long spu_acct_time(struct spu *spu,
668 enum spu_utilization_state state)
669{
Andre Detsch27ec41d2007-07-20 21:39:33 +0200670 struct timespec ts;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000671 unsigned long long time = spu->stats.times[state];
672
Andre Detsch27ec41d2007-07-20 21:39:33 +0200673 /*
674 * If the spu is idle or the context is stopped, utilization
675 * statistics are not updated. Apply the time delta from the
676 * last recorded state of the spu.
677 */
678 if (spu->stats.util_state == state) {
679 ktime_get_ts(&ts);
680 time += timespec_to_ns(&ts) - spu->stats.tstamp;
681 }
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000682
Andre Detsch27ec41d2007-07-20 21:39:33 +0200683 return time / NSEC_PER_MSEC;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000684}
685
686
687static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf)
688{
689 struct spu *spu = container_of(sysdev, struct spu, sysdev);
690
691 return sprintf(buf, "%s %llu %llu %llu %llu "
692 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +0200693 spu_state_names[spu->stats.util_state],
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000694 spu_acct_time(spu, SPU_UTIL_USER),
695 spu_acct_time(spu, SPU_UTIL_SYSTEM),
696 spu_acct_time(spu, SPU_UTIL_IOWAIT),
Andre Detsch27ec41d2007-07-20 21:39:33 +0200697 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000698 spu->stats.vol_ctx_switch,
699 spu->stats.invol_ctx_switch,
700 spu->stats.slb_flt,
701 spu->stats.hash_flt,
702 spu->stats.min_flt,
703 spu->stats.maj_flt,
704 spu->stats.class2_intr,
705 spu->stats.libassist);
706}
707
708static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);
709
Arnd Bergmann67207b92005-11-15 15:53:48 -0500710static int __init init_spu_base(void)
711{
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200712 int i, ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500713
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200714 for (i = 0; i < MAX_NUMNODES; i++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200715 mutex_init(&cbe_spu_info[i].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200716 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200717 }
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200718
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100719 if (!spu_management_ops)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200720 goto out;
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100721
Jeremy Kerr1d640932006-06-19 20:33:19 +0200722 /* create sysdev class for spus */
723 ret = sysdev_class_register(&spu_sysdev_class);
724 if (ret)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200725 goto out;
Jeremy Kerr1d640932006-06-19 20:33:19 +0200726
Geoff Levande28b0032006-11-23 00:46:49 +0100727 ret = spu_enumerate_spus(create_spu);
728
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700729 if (ret < 0) {
Geoff Levande28b0032006-11-23 00:46:49 +0100730 printk(KERN_WARNING "%s: Error initializing spus\n",
731 __FUNCTION__);
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200732 goto out_unregister_sysdev_class;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500733 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200734
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700735 if (ret > 0) {
736 /*
737 * We cannot put the forward declaration in
738 * <linux/linux_logo.h> because of conflicting session type
739 * conflicts for const and __initdata with different compiler
740 * versions
741 */
742 extern const struct linux_logo logo_spe_clut224;
743
744 fb_append_extra_logo(&logo_spe_clut224, ret);
745 }
746
Christoph Hellwig24140592007-07-20 21:39:51 +0200747 mutex_lock(&spu_full_list_mutex);
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200748 xmon_register_spus(&spu_full_list);
Andre Detsch8d2655e2007-07-20 21:39:27 +0200749 crash_register_spus(&spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200750 mutex_unlock(&spu_full_list_mutex);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000751 spu_add_sysdev_attr(&attr_stat);
752
Andre Detschf5996442007-08-03 18:53:46 -0700753 spu_init_affinity();
Arnd Bergmann3ad216c2007-07-20 21:39:46 +0200754
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200755 return 0;
756
757 out_unregister_sysdev_class:
758 sysdev_class_unregister(&spu_sysdev_class);
759 out:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500760 return ret;
761}
762module_init(init_spu_base);
763
764MODULE_LICENSE("GPL");
765MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");