blob: f85db3a69b4a0fdc73c882d6218b3e9bd45b7307 [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>
Rafael J. Wysockif5a592f2011-04-26 19:14:57 +020035#include <linux/syscore_ops.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050036#include <asm/spu.h>
Geoff Levand540270d2006-06-19 20:33:29 +020037#include <asm/spu_priv1.h>
Jeremy Kerr58bd4032007-12-05 13:49:31 +110038#include <asm/spu_csa.h>
Michael Ellermanff8a8f22006-10-24 18:31:27 +020039#include <asm/xmon.h>
Arnd Bergmann3ad216c2007-07-20 21:39:46 +020040#include <asm/prom.h>
Anton Blanchard158d5b5e2011-01-21 13:43:59 +110041#include <asm/kexec.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050042
Geoff Levande28b0032006-11-23 00:46:49 +010043const struct spu_management_ops *spu_management_ops;
Jeremy Kerrccf17e92007-04-23 21:08:29 +020044EXPORT_SYMBOL_GPL(spu_management_ops);
45
Geoff Levand540270d2006-06-19 20:33:29 +020046const struct spu_priv1_ops *spu_priv1_ops;
Geoff Levand540270d2006-06-19 20:33:29 +020047EXPORT_SYMBOL_GPL(spu_priv1_ops);
48
Christoph Hellwig24140592007-07-20 21:39:51 +020049struct cbe_spu_info cbe_spu_info[MAX_NUMNODES];
50EXPORT_SYMBOL_GPL(cbe_spu_info);
51
52/*
Jeremy Kerr3ce2f622007-12-05 13:49:31 +110053 * The spufs fault-handling code needs to call force_sig_info to raise signals
54 * on DMA errors. Export it here to avoid general kernel-wide access to this
55 * function
56 */
57EXPORT_SYMBOL_GPL(force_sig_info);
58
59/*
Christoph Hellwig24140592007-07-20 21:39:51 +020060 * Protects cbe_spu_info and spu->number.
61 */
62static DEFINE_SPINLOCK(spu_lock);
63
64/*
65 * List of all spus in the system.
66 *
67 * This list is iterated by callers from irq context and callers that
68 * want to sleep. Thus modifications need to be done with both
69 * spu_full_list_lock and spu_full_list_mutex held, while iterating
70 * through it requires either of these locks.
71 *
72 * In addition spu_full_list_lock protects all assignmens to
73 * spu->mm.
74 */
75static LIST_HEAD(spu_full_list);
76static DEFINE_SPINLOCK(spu_full_list_lock);
77static DEFINE_MUTEX(spu_full_list_mutex);
78
Jeremy Kerr58bd4032007-12-05 13:49:31 +110079struct spu_slb {
80 u64 esid, vsid;
81};
82
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010083void spu_invalidate_slbs(struct spu *spu)
84{
85 struct spu_priv2 __iomem *priv2 = spu->priv2;
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +010086 unsigned long flags;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010087
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +010088 spin_lock_irqsave(&spu->register_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010089 if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
90 out_be64(&priv2->slb_invalidate_all_W, 0UL);
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +010091 spin_unlock_irqrestore(&spu->register_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +010092}
93EXPORT_SYMBOL_GPL(spu_invalidate_slbs);
94
95/* This is called by the MM core when a segment size is changed, to
96 * request a flush of all the SPEs using a given mm
97 */
98void spu_flush_all_slbs(struct mm_struct *mm)
99{
100 struct spu *spu;
101 unsigned long flags;
102
Christoph Hellwig24140592007-07-20 21:39:51 +0200103 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100104 list_for_each_entry(spu, &spu_full_list, full_list) {
105 if (spu->mm == mm)
106 spu_invalidate_slbs(spu);
107 }
Christoph Hellwig24140592007-07-20 21:39:51 +0200108 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100109}
110
111/* The hack below stinks... try to do something better one of
112 * these days... Does it even work properly with NR_CPUS == 1 ?
113 */
114static inline void mm_needs_global_tlbie(struct mm_struct *mm)
115{
116 int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
117
118 /* Global TLBIE broadcast required with SPEs. */
Rusty Russell56aa4122009-03-15 18:16:43 +0000119 bitmap_fill(cpumask_bits(mm_cpumask(mm)), nr);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100120}
121
122void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
123{
124 unsigned long flags;
125
Christoph Hellwig24140592007-07-20 21:39:51 +0200126 spin_lock_irqsave(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100127 spu->mm = mm;
Christoph Hellwig24140592007-07-20 21:39:51 +0200128 spin_unlock_irqrestore(&spu_full_list_lock, flags);
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100129 if (mm)
130 mm_needs_global_tlbie(mm);
131}
132EXPORT_SYMBOL_GPL(spu_associate_mm);
133
Jeremy Kerrf6eb7d7f2007-12-05 13:49:31 +1100134int spu_64k_pages_available(void)
135{
136 return mmu_psize_defs[MMU_PAGE_64K].shift != 0;
137}
138EXPORT_SYMBOL_GPL(spu_64k_pages_available);
139
Arnd Bergmann67207b92005-11-15 15:53:48 -0500140static void spu_restart_dma(struct spu *spu)
141{
142 struct spu_priv2 __iomem *priv2 = spu->priv2;
Mark Nutter5473af02005-11-15 15:53:49 -0500143
Arnd Bergmann8837d922006-01-04 20:31:28 +0100144 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
Mark Nutter5473af02005-11-15 15:53:49 -0500145 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
Luke Browningde102892008-04-28 17:35:56 +1000146 else {
147 set_bit(SPU_CONTEXT_FAULT_PENDING, &spu->flags);
148 mb();
149 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500150}
151
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100152static inline void spu_load_slb(struct spu *spu, int slbe, struct spu_slb *slb)
153{
154 struct spu_priv2 __iomem *priv2 = spu->priv2;
155
Ingo Molnarfe333322009-01-06 14:26:03 +0000156 pr_debug("%s: adding SLB[%d] 0x%016llx 0x%016llx\n",
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100157 __func__, slbe, slb->vsid, slb->esid);
158
159 out_be64(&priv2->slb_index_W, slbe);
Arnd Bergmanncc4b7c12008-02-26 07:01:56 +0100160 /* set invalid before writing vsid */
161 out_be64(&priv2->slb_esid_RW, 0);
162 /* now it's safe to write the vsid */
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100163 out_be64(&priv2->slb_vsid_RW, slb->vsid);
Arnd Bergmanncc4b7c12008-02-26 07:01:56 +0100164 /* setting the new esid makes the entry valid again */
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100165 out_be64(&priv2->slb_esid_RW, slb->esid);
166}
167
Arnd Bergmann67207b92005-11-15 15:53:48 -0500168static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
169{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500170 struct mm_struct *mm = spu->mm;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100171 struct spu_slb slb;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100172 int psize;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500173
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100174 pr_debug("%s\n", __func__);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500175
Jeremy Kerr4d434662007-12-05 13:49:31 +1100176 slb.esid = (ea & ESID_MASK) | SLB_ESID_V;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200177
178 switch(REGION_ID(ea)) {
179 case USER_REGION_ID:
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000180#ifdef CONFIG_PPC_MM_SLICES
181 psize = get_slice_psize(mm, ea);
182#else
183 psize = mm->context.user_psize;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200184#endif
Jeremy Kerr4d434662007-12-05 13:49:31 +1100185 slb.vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M)
186 << SLB_VSID_SHIFT) | SLB_VSID_USER;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200187 break;
188 case VMALLOC_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100189 if (ea < VMALLOC_END)
190 psize = mmu_vmalloc_psize;
191 else
192 psize = mmu_io_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100193 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
194 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200195 break;
196 case KERNEL_REGION_ID:
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100197 psize = mmu_linear_psize;
Jeremy Kerr4d434662007-12-05 13:49:31 +1100198 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
199 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200200 break;
201 default:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500202 /* Future: support kernel segments so that drivers
203 * can use SPUs.
204 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500205 pr_debug("invalid region access at %016lx\n", ea);
206 return 1;
207 }
Jeremy Kerr4d434662007-12-05 13:49:31 +1100208 slb.vsid |= mmu_psize_defs[psize].sllp;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500209
Jeremy Kerr4d434662007-12-05 13:49:31 +1100210 spu_load_slb(spu, spu->slb_replace, &slb);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500211
212 spu->slb_replace++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500213 if (spu->slb_replace >= 8)
214 spu->slb_replace = 0;
215
Arnd Bergmann67207b92005-11-15 15:53:48 -0500216 spu_restart_dma(spu);
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000217 spu->stats.slb_flt++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500218 return 0;
219}
220
Mark Nutter5473af02005-11-15 15:53:49 -0500221extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500222static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500223{
Luke Browning2c911a12008-06-13 14:17:35 +1000224 int ret;
225
Ingo Molnarfe333322009-01-06 14:26:03 +0000226 pr_debug("%s, %llx, %lx\n", __func__, dsisr, ea);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500227
Luke Browning2c911a12008-06-13 14:17:35 +1000228 /*
229 * Handle kernel space hash faults immediately. User hash
230 * faults need to be deferred to process context.
231 */
232 if ((dsisr & MFC_DSISR_PTE_NOT_FOUND) &&
233 (REGION_ID(ea) != USER_REGION_ID)) {
234
235 spin_unlock(&spu->register_lock);
236 ret = hash_page(ea, _PAGE_PRESENT, 0x300);
237 spin_lock(&spu->register_lock);
238
239 if (!ret) {
240 spu_restart_dma(spu);
241 return 0;
242 }
Mark Nutter5473af02005-11-15 15:53:49 -0500243 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500244
Luke Browningf3d69e02008-04-27 18:41:55 +0000245 spu->class_1_dar = ea;
246 spu->class_1_dsisr = dsisr;
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900247
Luke Browningf3d69e02008-04-27 18:41:55 +0000248 spu->stop_callback(spu, 1);
249
250 spu->class_1_dar = 0;
251 spu->class_1_dsisr = 0;
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900252
Arnd Bergmann67207b92005-11-15 15:53:48 -0500253 return 0;
254}
255
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100256static void __spu_kernel_slb(void *addr, struct spu_slb *slb)
257{
258 unsigned long ea = (unsigned long)addr;
259 u64 llp;
260
261 if (REGION_ID(ea) == KERNEL_REGION_ID)
262 llp = mmu_psize_defs[mmu_linear_psize].sllp;
263 else
264 llp = mmu_psize_defs[mmu_virtual_psize].sllp;
265
266 slb->vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) |
267 SLB_VSID_KERNEL | llp;
268 slb->esid = (ea & ESID_MASK) | SLB_ESID_V;
269}
270
271/**
Jeremy Kerr684bd612007-12-05 13:49:31 +1100272 * Given an array of @nr_slbs SLB entries, @slbs, return non-zero if the
273 * address @new_addr is present.
274 */
275static inline int __slb_present(struct spu_slb *slbs, int nr_slbs,
276 void *new_addr)
277{
278 unsigned long ea = (unsigned long)new_addr;
279 int i;
280
281 for (i = 0; i < nr_slbs; i++)
282 if (!((slbs[i].esid ^ ea) & ESID_MASK))
283 return 1;
284
285 return 0;
286}
287
288/**
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100289 * Setup the SPU kernel SLBs, in preparation for a context save/restore. We
290 * need to map both the context save area, and the save/restore code.
Jeremy Kerr684bd612007-12-05 13:49:31 +1100291 *
292 * Because the lscsa and code may cross segment boundaires, we check to see
293 * if mappings are required for the start and end of each range. We currently
294 * assume that the mappings are smaller that one segment - if not, something
295 * is seriously wrong.
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100296 */
Jeremy Kerr684bd612007-12-05 13:49:31 +1100297void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa,
298 void *code, int code_size)
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100299{
Jeremy Kerr684bd612007-12-05 13:49:31 +1100300 struct spu_slb slbs[4];
301 int i, nr_slbs = 0;
302 /* start and end addresses of both mappings */
303 void *addrs[] = {
304 lscsa, (void *)lscsa + sizeof(*lscsa) - 1,
305 code, code + code_size - 1
306 };
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100307
Jeremy Kerr684bd612007-12-05 13:49:31 +1100308 /* check the set of addresses, and create a new entry in the slbs array
309 * if there isn't already a SLB for that address */
310 for (i = 0; i < ARRAY_SIZE(addrs); i++) {
311 if (__slb_present(slbs, nr_slbs, addrs[i]))
312 continue;
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100313
Jeremy Kerr684bd612007-12-05 13:49:31 +1100314 __spu_kernel_slb(addrs[i], &slbs[nr_slbs]);
315 nr_slbs++;
316 }
317
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +0100318 spin_lock_irq(&spu->register_lock);
Jeremy Kerr684bd612007-12-05 13:49:31 +1100319 /* Add the set of SLBs */
320 for (i = 0; i < nr_slbs; i++)
321 spu_load_slb(spu, i, &slbs[i]);
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +0100322 spin_unlock_irq(&spu->register_lock);
Jeremy Kerr58bd4032007-12-05 13:49:31 +1100323}
324EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs);
325
Arnd Bergmann67207b92005-11-15 15:53:48 -0500326static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200327spu_irq_class_0(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500328{
329 struct spu *spu;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000330 unsigned long stat, mask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500331
332 spu = data;
Masato Noguchib7f90a42007-09-07 18:28:27 +1000333
Masato Noguchib7f90a42007-09-07 18:28:27 +1000334 spin_lock(&spu->register_lock);
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900335 mask = spu_int_mask_get(spu, 0);
336 stat = spu_int_stat_get(spu, 0) & mask;
337
Masato Noguchib7f90a42007-09-07 18:28:27 +1000338 spu->class_0_pending |= stat;
Luke Browningf3d69e02008-04-27 18:41:55 +0000339 spu->class_0_dar = spu_mfc_dar_get(spu);
Luke Browningf3d69e02008-04-27 18:41:55 +0000340 spu->stop_callback(spu, 0);
Luke Browningf3d69e02008-04-27 18:41:55 +0000341 spu->class_0_pending = 0;
Luke Browningf3d69e02008-04-27 18:41:55 +0000342 spu->class_0_dar = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500343
Masato Noguchib7f90a42007-09-07 18:28:27 +1000344 spu_int_stat_clear(spu, 0, stat);
Luke Browning2c911a12008-06-13 14:17:35 +1000345 spin_unlock(&spu->register_lock);
Masato Noguchib7f90a42007-09-07 18:28:27 +1000346
Arnd Bergmann67207b92005-11-15 15:53:48 -0500347 return IRQ_HANDLED;
348}
349
Arnd Bergmann67207b92005-11-15 15:53:48 -0500350static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200351spu_irq_class_1(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500352{
353 struct spu *spu;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500354 unsigned long stat, mask, dar, dsisr;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500355
356 spu = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500357
358 /* atomically read & clear class1 status. */
359 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100360 mask = spu_int_mask_get(spu, 1);
361 stat = spu_int_stat_get(spu, 1) & mask;
362 dar = spu_mfc_dar_get(spu);
363 dsisr = spu_mfc_dsisr_get(spu);
Jeremy Kerr8af30672007-12-20 16:39:59 +0900364 if (stat & CLASS1_STORAGE_FAULT_INTR)
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100365 spu_mfc_dsisr_set(spu, 0ul);
366 spu_int_stat_clear(spu, 1, stat);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500367
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100368 pr_debug("%s: %lx %lx %lx %lx\n", __func__, mask, stat,
Arnd Bergmannc92a1ac2008-02-28 06:06:30 +0100369 dar, dsisr);
370
Luke Browning2c911a12008-06-13 14:17:35 +1000371 if (stat & CLASS1_SEGMENT_FAULT_INTR)
372 __spu_trap_data_seg(spu, dar);
373
Jeremy Kerr8af30672007-12-20 16:39:59 +0900374 if (stat & CLASS1_STORAGE_FAULT_INTR)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500375 __spu_trap_data_map(spu, dar, dsisr);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500376
Jeremy Kerr8af30672007-12-20 16:39:59 +0900377 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_GET_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500378 ;
379
Jeremy Kerr8af30672007-12-20 16:39:59 +0900380 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_PUT_INTR)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500381 ;
382
Luke Browningf3d69e02008-04-27 18:41:55 +0000383 spu->class_1_dsisr = 0;
384 spu->class_1_dar = 0;
385
Luke Browning2c911a12008-06-13 14:17:35 +1000386 spin_unlock(&spu->register_lock);
387
Arnd Bergmann67207b92005-11-15 15:53:48 -0500388 return stat ? IRQ_HANDLED : IRQ_NONE;
389}
390
391static irqreturn_t
Olaf Heringf5a92452006-10-06 22:52:16 +0200392spu_irq_class_2(int irq, void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500393{
394 struct spu *spu;
395 unsigned long stat;
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500396 unsigned long mask;
Jeremy Kerr8af30672007-12-20 16:39:59 +0900397 const int mailbox_intrs =
398 CLASS2_MAILBOX_THRESHOLD_INTR | CLASS2_MAILBOX_INTR;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500399
400 spu = data;
Masato Noguchiba723fe22006-06-19 20:33:33 +0200401 spin_lock(&spu->register_lock);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100402 stat = spu_int_stat_get(spu, 2);
403 mask = spu_int_mask_get(spu, 2);
Masato Noguchiba723fe22006-06-19 20:33:33 +0200404 /* ignore interrupts we're not waiting for */
405 stat &= mask;
Jeremy Kerr8af30672007-12-20 16:39:59 +0900406 /* mailbox interrupts are level triggered. mask them now before
407 * acknowledging */
408 if (stat & mailbox_intrs)
409 spu_int_mask_and(spu, 2, ~(stat & mailbox_intrs));
Masato Noguchiba723fe22006-06-19 20:33:33 +0200410 /* acknowledge all interrupts before the callbacks */
411 spu_int_stat_clear(spu, 2, stat);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500412
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500413 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500414
Jeremy Kerr8af30672007-12-20 16:39:59 +0900415 if (stat & CLASS2_MAILBOX_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200416 spu->ibox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500417
Jeremy Kerr8af30672007-12-20 16:39:59 +0900418 if (stat & CLASS2_SPU_STOP_INTR)
Luke Browningf3d69e02008-04-27 18:41:55 +0000419 spu->stop_callback(spu, 2);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500420
Jeremy Kerr8af30672007-12-20 16:39:59 +0900421 if (stat & CLASS2_SPU_HALT_INTR)
Luke Browningf3d69e02008-04-27 18:41:55 +0000422 spu->stop_callback(spu, 2);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500423
Jeremy Kerr8af30672007-12-20 16:39:59 +0900424 if (stat & CLASS2_SPU_DMA_TAG_GROUP_COMPLETE_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200425 spu->mfc_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500426
Jeremy Kerr8af30672007-12-20 16:39:59 +0900427 if (stat & CLASS2_MAILBOX_THRESHOLD_INTR)
Masato Noguchiba723fe22006-06-19 20:33:33 +0200428 spu->wbox_callback(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500429
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000430 spu->stats.class2_intr++;
Luke Browning2c911a12008-06-13 14:17:35 +1000431
432 spin_unlock(&spu->register_lock);
433
Arnd Bergmann67207b92005-11-15 15:53:48 -0500434 return stat ? IRQ_HANDLED : IRQ_NONE;
435}
436
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000437static int spu_request_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500438{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000439 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500440
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000441 if (spu->irqs[0] != NO_IRQ) {
442 snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0",
443 spu->number);
444 ret = request_irq(spu->irqs[0], spu_irq_class_0,
Yong Zhanga3a9f3b2011-10-21 23:56:27 +0000445 0, spu->irq_c0, spu);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000446 if (ret)
447 goto bail0;
448 }
449 if (spu->irqs[1] != NO_IRQ) {
450 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
451 spu->number);
452 ret = request_irq(spu->irqs[1], spu_irq_class_1,
Yong Zhanga3a9f3b2011-10-21 23:56:27 +0000453 0, spu->irq_c1, spu);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000454 if (ret)
455 goto bail1;
456 }
457 if (spu->irqs[2] != NO_IRQ) {
458 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
459 spu->number);
460 ret = request_irq(spu->irqs[2], spu_irq_class_2,
Yong Zhanga3a9f3b2011-10-21 23:56:27 +0000461 0, spu->irq_c2, spu);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000462 if (ret)
463 goto bail2;
464 }
465 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500466
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000467bail2:
468 if (spu->irqs[1] != NO_IRQ)
469 free_irq(spu->irqs[1], spu);
470bail1:
471 if (spu->irqs[0] != NO_IRQ)
472 free_irq(spu->irqs[0], spu);
473bail0:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500474 return ret;
475}
476
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000477static void spu_free_irqs(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500478{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000479 if (spu->irqs[0] != NO_IRQ)
480 free_irq(spu->irqs[0], spu);
481 if (spu->irqs[1] != NO_IRQ)
482 free_irq(spu->irqs[1], spu);
483 if (spu->irqs[2] != NO_IRQ)
484 free_irq(spu->irqs[2], spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500485}
486
Christoph Hellwig486acd42007-07-20 21:39:54 +0200487void spu_init_channels(struct spu *spu)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500488{
489 static const struct {
490 unsigned channel;
491 unsigned count;
492 } zero_list[] = {
493 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
494 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
495 }, count_list[] = {
496 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
497 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
498 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
499 };
Arnd Bergmann6ff730c2006-01-04 20:31:31 +0100500 struct spu_priv2 __iomem *priv2;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500501 int i;
502
503 priv2 = spu->priv2;
504
505 /* initialize all channel data to zero */
506 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
507 int count;
508
509 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
510 for (count = 0; count < zero_list[i].count; count++)
511 out_be64(&priv2->spu_chnldata_RW, 0);
512 }
513
514 /* initialize channel counts to meaningful values */
515 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
516 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
517 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
518 }
519}
Christoph Hellwig486acd42007-07-20 21:39:54 +0200520EXPORT_SYMBOL_GPL(spu_init_channels);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500521
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800522static struct bus_type spu_subsys = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100523 .name = "spu",
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800524 .dev_name = "spu",
Jeremy Kerr1d640932006-06-19 20:33:19 +0200525};
526
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800527int spu_add_dev_attr(struct device_attribute *attr)
Christian Kraffte570beb2006-10-24 18:31:23 +0200528{
529 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200530
Christoph Hellwig24140592007-07-20 21:39:51 +0200531 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200532 list_for_each_entry(spu, &spu_full_list, full_list)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800533 device_create_file(&spu->dev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200534 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200535
Christian Kraffte570beb2006-10-24 18:31:23 +0200536 return 0;
537}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800538EXPORT_SYMBOL_GPL(spu_add_dev_attr);
Christian Kraffte570beb2006-10-24 18:31:23 +0200539
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800540int spu_add_dev_attr_group(struct attribute_group *attrs)
Christian Kraffte570beb2006-10-24 18:31:23 +0200541{
542 struct spu *spu;
Jeremy Kerr1e771032007-12-05 13:49:31 +1100543 int rc = 0;
Christian Kraffte570beb2006-10-24 18:31:23 +0200544
Christoph Hellwig24140592007-07-20 21:39:51 +0200545 mutex_lock(&spu_full_list_mutex);
Jeremy Kerr1e771032007-12-05 13:49:31 +1100546 list_for_each_entry(spu, &spu_full_list, full_list) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800547 rc = sysfs_create_group(&spu->dev.kobj, attrs);
Jeremy Kerr1e771032007-12-05 13:49:31 +1100548
549 /* we're in trouble here, but try unwinding anyway */
550 if (rc) {
551 printk(KERN_ERR "%s: can't create sysfs group '%s'\n",
552 __func__, attrs->name);
553
554 list_for_each_entry_continue_reverse(spu,
555 &spu_full_list, full_list)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800556 sysfs_remove_group(&spu->dev.kobj, attrs);
Jeremy Kerr1e771032007-12-05 13:49:31 +1100557 break;
558 }
559 }
560
Christoph Hellwig24140592007-07-20 21:39:51 +0200561 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200562
Jeremy Kerr1e771032007-12-05 13:49:31 +1100563 return rc;
Christian Kraffte570beb2006-10-24 18:31:23 +0200564}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800565EXPORT_SYMBOL_GPL(spu_add_dev_attr_group);
Christian Kraffte570beb2006-10-24 18:31:23 +0200566
567
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800568void spu_remove_dev_attr(struct device_attribute *attr)
Christian Kraffte570beb2006-10-24 18:31:23 +0200569{
570 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200571
Christoph Hellwig24140592007-07-20 21:39:51 +0200572 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200573 list_for_each_entry(spu, &spu_full_list, full_list)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800574 device_remove_file(&spu->dev, attr);
Christoph Hellwig24140592007-07-20 21:39:51 +0200575 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200576}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800577EXPORT_SYMBOL_GPL(spu_remove_dev_attr);
Christian Kraffte570beb2006-10-24 18:31:23 +0200578
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800579void spu_remove_dev_attr_group(struct attribute_group *attrs)
Christian Kraffte570beb2006-10-24 18:31:23 +0200580{
581 struct spu *spu;
Christian Kraffte570beb2006-10-24 18:31:23 +0200582
Christoph Hellwig24140592007-07-20 21:39:51 +0200583 mutex_lock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200584 list_for_each_entry(spu, &spu_full_list, full_list)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800585 sysfs_remove_group(&spu->dev.kobj, attrs);
Christoph Hellwig24140592007-07-20 21:39:51 +0200586 mutex_unlock(&spu_full_list_mutex);
Christian Kraffte570beb2006-10-24 18:31:23 +0200587}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800588EXPORT_SYMBOL_GPL(spu_remove_dev_attr_group);
Christian Kraffte570beb2006-10-24 18:31:23 +0200589
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800590static int spu_create_dev(struct spu *spu)
Jeremy Kerr1d640932006-06-19 20:33:19 +0200591{
592 int ret;
593
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800594 spu->dev.id = spu->number;
595 spu->dev.bus = &spu_subsys;
596 ret = device_register(&spu->dev);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200597 if (ret) {
598 printk(KERN_ERR "Can't register SPU %d with sysfs\n",
599 spu->number);
600 return ret;
601 }
602
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800603 sysfs_add_device_to_node(&spu->dev, spu->node);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200604
605 return 0;
606}
607
Geoff Levande28b0032006-11-23 00:46:49 +0100608static int __init create_spu(void *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500609{
610 struct spu *spu;
611 int ret;
612 static int number;
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100613 unsigned long flags;
Andre Detsch27ec41d2007-07-20 21:39:33 +0200614 struct timespec ts;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500615
616 ret = -ENOMEM;
Jeremy Kerrecec2172006-06-19 20:33:26 +0200617 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500618 if (!spu)
619 goto out;
620
Christoph Hellwig486acd42007-07-20 21:39:54 +0200621 spu->alloc_state = SPU_FREE;
622
Geoff Levande28b0032006-11-23 00:46:49 +0100623 spin_lock_init(&spu->register_lock);
Christoph Hellwig24140592007-07-20 21:39:51 +0200624 spin_lock(&spu_lock);
Geoff Levande28b0032006-11-23 00:46:49 +0100625 spu->number = number++;
Christoph Hellwig24140592007-07-20 21:39:51 +0200626 spin_unlock(&spu_lock);
Benjamin Herrenschmidte5267b42006-10-10 15:14:12 +1000627
Geoff Levande28b0032006-11-23 00:46:49 +0100628 ret = spu_create_spu(spu, data);
629
Arnd Bergmann67207b92005-11-15 15:53:48 -0500630 if (ret)
631 goto out_free;
632
Masato Noguchi24f43b32006-10-24 18:31:14 +0200633 spu_mfc_sdr_setup(spu);
Arnd Bergmannf0831ac2006-01-04 20:31:30 +0100634 spu_mfc_sr1_set(spu, 0x33);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500635 ret = spu_request_irqs(spu);
636 if (ret)
Geoff Levande28b0032006-11-23 00:46:49 +0100637 goto out_destroy;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500638
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800639 ret = spu_create_dev(spu);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200640 if (ret)
641 goto out_free_irqs;
642
Christoph Hellwig486acd42007-07-20 21:39:54 +0200643 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200644 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
645 cbe_spu_info[spu->node].n_spus++;
Christoph Hellwig486acd42007-07-20 21:39:54 +0200646 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
Christoph Hellwig24140592007-07-20 21:39:51 +0200647
648 mutex_lock(&spu_full_list_mutex);
649 spin_lock_irqsave(&spu_full_list_lock, flags);
Christian Kraffte570beb2006-10-24 18:31:23 +0200650 list_add(&spu->full_list, &spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200651 spin_unlock_irqrestore(&spu_full_list_lock, flags);
652 mutex_unlock(&spu_full_list_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500653
Andre Detsch27ec41d2007-07-20 21:39:33 +0200654 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
655 ktime_get_ts(&ts);
656 spu->stats.tstamp = timespec_to_ns(&ts);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000657
Arnd Bergmann9d92af62007-07-20 21:39:45 +0200658 INIT_LIST_HEAD(&spu->aff_list);
659
Arnd Bergmann67207b92005-11-15 15:53:48 -0500660 goto out;
661
Jeremy Kerr1d640932006-06-19 20:33:19 +0200662out_free_irqs:
663 spu_free_irqs(spu);
Geoff Levande28b0032006-11-23 00:46:49 +0100664out_destroy:
665 spu_destroy_spu(spu);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500666out_free:
667 kfree(spu);
668out:
669 return ret;
670}
671
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000672static const char *spu_state_names[] = {
673 "user", "system", "iowait", "idle"
674};
675
676static unsigned long long spu_acct_time(struct spu *spu,
677 enum spu_utilization_state state)
678{
Andre Detsch27ec41d2007-07-20 21:39:33 +0200679 struct timespec ts;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000680 unsigned long long time = spu->stats.times[state];
681
Andre Detsch27ec41d2007-07-20 21:39:33 +0200682 /*
683 * If the spu is idle or the context is stopped, utilization
684 * statistics are not updated. Apply the time delta from the
685 * last recorded state of the spu.
686 */
687 if (spu->stats.util_state == state) {
688 ktime_get_ts(&ts);
689 time += timespec_to_ns(&ts) - spu->stats.tstamp;
690 }
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000691
Andre Detsch27ec41d2007-07-20 21:39:33 +0200692 return time / NSEC_PER_MSEC;
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000693}
694
695
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800696static ssize_t spu_stat_show(struct device *dev,
697 struct device_attribute *attr, char *buf)
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000698{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800699 struct spu *spu = container_of(dev, struct spu, dev);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000700
701 return sprintf(buf, "%s %llu %llu %llu %llu "
702 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +0200703 spu_state_names[spu->stats.util_state],
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000704 spu_acct_time(spu, SPU_UTIL_USER),
705 spu_acct_time(spu, SPU_UTIL_SYSTEM),
706 spu_acct_time(spu, SPU_UTIL_IOWAIT),
Andre Detsch27ec41d2007-07-20 21:39:33 +0200707 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000708 spu->stats.vol_ctx_switch,
709 spu->stats.invol_ctx_switch,
710 spu->stats.slb_flt,
711 spu->stats.hash_flt,
712 spu->stats.min_flt,
713 spu->stats.maj_flt,
714 spu->stats.class2_intr,
715 spu->stats.libassist);
716}
717
Benjamin Herrenschmidt96cf3f62013-05-06 12:02:05 +1000718static DEVICE_ATTR(stat, 0444, spu_stat_show, NULL);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000719
Anton Blanchard158d5b5e2011-01-21 13:43:59 +1100720#ifdef CONFIG_KEXEC
721
722struct crash_spu_info {
723 struct spu *spu;
724 u32 saved_spu_runcntl_RW;
725 u32 saved_spu_status_R;
726 u32 saved_spu_npc_RW;
727 u64 saved_mfc_sr1_RW;
728 u64 saved_mfc_dar;
729 u64 saved_mfc_dsisr;
730};
731
732#define CRASH_NUM_SPUS 16 /* Enough for current hardware */
733static struct crash_spu_info crash_spu_info[CRASH_NUM_SPUS];
734
735static void crash_kexec_stop_spus(void)
736{
737 struct spu *spu;
738 int i;
739 u64 tmp;
740
741 for (i = 0; i < CRASH_NUM_SPUS; i++) {
742 if (!crash_spu_info[i].spu)
743 continue;
744
745 spu = crash_spu_info[i].spu;
746
747 crash_spu_info[i].saved_spu_runcntl_RW =
748 in_be32(&spu->problem->spu_runcntl_RW);
749 crash_spu_info[i].saved_spu_status_R =
750 in_be32(&spu->problem->spu_status_R);
751 crash_spu_info[i].saved_spu_npc_RW =
752 in_be32(&spu->problem->spu_npc_RW);
753
754 crash_spu_info[i].saved_mfc_dar = spu_mfc_dar_get(spu);
755 crash_spu_info[i].saved_mfc_dsisr = spu_mfc_dsisr_get(spu);
756 tmp = spu_mfc_sr1_get(spu);
757 crash_spu_info[i].saved_mfc_sr1_RW = tmp;
758
759 tmp &= ~MFC_STATE1_MASTER_RUN_CONTROL_MASK;
760 spu_mfc_sr1_set(spu, tmp);
761
762 __delay(200);
763 }
764}
765
766static void crash_register_spus(struct list_head *list)
767{
768 struct spu *spu;
769 int ret;
770
771 list_for_each_entry(spu, list, full_list) {
772 if (WARN_ON(spu->number >= CRASH_NUM_SPUS))
773 continue;
774
775 crash_spu_info[spu->number].spu = spu;
776 }
777
778 ret = crash_shutdown_register(&crash_kexec_stop_spus);
779 if (ret)
780 printk(KERN_ERR "Could not register SPU crash handler");
781}
782
783#else
784static inline void crash_register_spus(struct list_head *list)
785{
786}
787#endif
788
Rafael J. Wysockif5a592f2011-04-26 19:14:57 +0200789static void spu_shutdown(void)
790{
791 struct spu *spu;
792
793 mutex_lock(&spu_full_list_mutex);
794 list_for_each_entry(spu, &spu_full_list, full_list) {
795 spu_free_irqs(spu);
796 spu_destroy_spu(spu);
797 }
798 mutex_unlock(&spu_full_list_mutex);
799}
800
801static struct syscore_ops spu_syscore_ops = {
802 .shutdown = spu_shutdown,
803};
804
Arnd Bergmann67207b92005-11-15 15:53:48 -0500805static int __init init_spu_base(void)
806{
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200807 int i, ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500808
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200809 for (i = 0; i < MAX_NUMNODES; i++) {
Christoph Hellwig486acd42007-07-20 21:39:54 +0200810 mutex_init(&cbe_spu_info[i].list_mutex);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200811 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
Arnd Bergmannaa6d5b22007-07-20 21:39:44 +0200812 }
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200813
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100814 if (!spu_management_ops)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200815 goto out;
Stephen Rothwellda06aa02006-11-27 19:18:54 +0100816
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800817 /* create system subsystem for spus */
818 ret = subsys_system_register(&spu_subsys, NULL);
Jeremy Kerr1d640932006-06-19 20:33:19 +0200819 if (ret)
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200820 goto out;
Jeremy Kerr1d640932006-06-19 20:33:19 +0200821
Geoff Levande28b0032006-11-23 00:46:49 +0100822 ret = spu_enumerate_spus(create_spu);
823
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700824 if (ret < 0) {
Geoff Levande28b0032006-11-23 00:46:49 +0100825 printk(KERN_WARNING "%s: Error initializing spus\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100826 __func__);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800827 goto out_unregister_subsys;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500828 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200829
Geert Uytterhoevenae52bb22009-06-16 15:34:19 -0700830 if (ret > 0)
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700831 fb_append_extra_logo(&logo_spe_clut224, ret);
Geert Uytterhoevenbce94512007-07-17 04:05:52 -0700832
Christoph Hellwig24140592007-07-20 21:39:51 +0200833 mutex_lock(&spu_full_list_mutex);
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200834 xmon_register_spus(&spu_full_list);
Andre Detsch8d2655e2007-07-20 21:39:27 +0200835 crash_register_spus(&spu_full_list);
Christoph Hellwig24140592007-07-20 21:39:51 +0200836 mutex_unlock(&spu_full_list_mutex);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800837 spu_add_dev_attr(&dev_attr_stat);
Rafael J. Wysockif5a592f2011-04-26 19:14:57 +0200838 register_syscore_ops(&spu_syscore_ops);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000839
Andre Detschf5996442007-08-03 18:53:46 -0700840 spu_init_affinity();
Arnd Bergmann3ad216c2007-07-20 21:39:46 +0200841
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200842 return 0;
843
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800844 out_unregister_subsys:
845 bus_unregister(&spu_subsys);
Christoph Hellwigbefdc742007-04-23 21:08:28 +0200846 out:
Arnd Bergmann67207b92005-11-15 15:53:48 -0500847 return ret;
848}
849module_init(init_spu_base);
850
851MODULE_LICENSE("GPL");
852MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");