]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/platforms/cell/spu_base.c
powerpc/numa: NUMA topology support for PowerNV
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / platforms / cell / spu_base.c
CommitLineData
67207b96
AB
1/*
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
3b3d22cb 23#undef DEBUG
67207b96
AB
24
25#include <linux/interrupt.h>
26#include <linux/list.h>
27#include <linux/module.h>
67207b96
AB
28#include <linux/ptrace.h>
29#include <linux/slab.h>
30#include <linux/wait.h>
e28b0031
GL
31#include <linux/mm.h>
32#include <linux/io.h>
14cc3e2b 33#include <linux/mutex.h>
bce94513 34#include <linux/linux_logo.h>
f5a592f7 35#include <linux/syscore_ops.h>
67207b96 36#include <asm/spu.h>
540270d8 37#include <asm/spu_priv1.h>
58bd403c 38#include <asm/spu_csa.h>
ff8a8f25 39#include <asm/xmon.h>
3ad216ca 40#include <asm/prom.h>
158d5b5e 41#include <asm/kexec.h>
67207b96 42
e28b0031 43const struct spu_management_ops *spu_management_ops;
ccf17e9d
JK
44EXPORT_SYMBOL_GPL(spu_management_ops);
45
540270d8 46const struct spu_priv1_ops *spu_priv1_ops;
24140594 47EXPORT_SYMBOL_GPL(spu_priv1_ops);
540270d8 48
24140594
CH
49struct cbe_spu_info cbe_spu_info[MAX_NUMNODES];
50EXPORT_SYMBOL_GPL(cbe_spu_info);
94b2a439 51
3ce2f62b
JK
52/*
53 * 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
24140594
CH
59/*
60 * 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);
540270d8 78
58bd403c
JK
79struct spu_slb {
80 u64 esid, vsid;
81};
82
94b2a439
BH
83void spu_invalidate_slbs(struct spu *spu)
84{
85 struct spu_priv2 __iomem *priv2 = spu->priv2;
c92a1acb 86 unsigned long flags;
94b2a439 87
c92a1acb 88 spin_lock_irqsave(&spu->register_lock, flags);
94b2a439
BH
89 if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK)
90 out_be64(&priv2->slb_invalidate_all_W, 0UL);
c92a1acb 91 spin_unlock_irqrestore(&spu->register_lock, flags);
94b2a439
BH
92}
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
24140594 103 spin_lock_irqsave(&spu_full_list_lock, flags);
94b2a439
BH
104 list_for_each_entry(spu, &spu_full_list, full_list) {
105 if (spu->mm == mm)
106 spu_invalidate_slbs(spu);
107 }
24140594 108 spin_unlock_irqrestore(&spu_full_list_lock, flags);
94b2a439
BH
109}
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. */
56aa4129 119 bitmap_fill(cpumask_bits(mm_cpumask(mm)), nr);
94b2a439
BH
120}
121
122void spu_associate_mm(struct spu *spu, struct mm_struct *mm)
123{
124 unsigned long flags;
125
24140594 126 spin_lock_irqsave(&spu_full_list_lock, flags);
94b2a439 127 spu->mm = mm;
24140594 128 spin_unlock_irqrestore(&spu_full_list_lock, flags);
94b2a439
BH
129 if (mm)
130 mm_needs_global_tlbie(mm);
131}
132EXPORT_SYMBOL_GPL(spu_associate_mm);
133
f6eb7d7f
JK
134int 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
67207b96
AB
140static void spu_restart_dma(struct spu *spu)
141{
142 struct spu_priv2 __iomem *priv2 = spu->priv2;
5473af04 143
8837d921 144 if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))
5473af04 145 out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);
de102892
LB
146 else {
147 set_bit(SPU_CONTEXT_FAULT_PENDING, &spu->flags);
148 mb();
149 }
67207b96
AB
150}
151
58bd403c
JK
152static inline void spu_load_slb(struct spu *spu, int slbe, struct spu_slb *slb)
153{
154 struct spu_priv2 __iomem *priv2 = spu->priv2;
155
fe333321 156 pr_debug("%s: adding SLB[%d] 0x%016llx 0x%016llx\n",
58bd403c
JK
157 __func__, slbe, slb->vsid, slb->esid);
158
159 out_be64(&priv2->slb_index_W, slbe);
cc4b7c18
AB
160 /* set invalid before writing vsid */
161 out_be64(&priv2->slb_esid_RW, 0);
162 /* now it's safe to write the vsid */
58bd403c 163 out_be64(&priv2->slb_vsid_RW, slb->vsid);
cc4b7c18 164 /* setting the new esid makes the entry valid again */
58bd403c
JK
165 out_be64(&priv2->slb_esid_RW, slb->esid);
166}
167
67207b96
AB
168static int __spu_trap_data_seg(struct spu *spu, unsigned long ea)
169{
8b3d6663 170 struct mm_struct *mm = spu->mm;
4d43466d 171 struct spu_slb slb;
94b2a439 172 int psize;
67207b96 173
e48b1b45 174 pr_debug("%s\n", __func__);
67207b96 175
4d43466d 176 slb.esid = (ea & ESID_MASK) | SLB_ESID_V;
0afacde3
AB
177
178 switch(REGION_ID(ea)) {
179 case USER_REGION_ID:
d0f13e3c
BH
180#ifdef CONFIG_PPC_MM_SLICES
181 psize = get_slice_psize(mm, ea);
182#else
183 psize = mm->context.user_psize;
0afacde3 184#endif
4d43466d
JK
185 slb.vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M)
186 << SLB_VSID_SHIFT) | SLB_VSID_USER;
0afacde3
AB
187 break;
188 case VMALLOC_REGION_ID:
94b2a439
BH
189 if (ea < VMALLOC_END)
190 psize = mmu_vmalloc_psize;
191 else
192 psize = mmu_io_psize;
4d43466d
JK
193 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
194 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
0afacde3
AB
195 break;
196 case KERNEL_REGION_ID:
94b2a439 197 psize = mmu_linear_psize;
4d43466d
JK
198 slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M)
199 << SLB_VSID_SHIFT) | SLB_VSID_KERNEL;
0afacde3
AB
200 break;
201 default:
8b3d6663
AB
202 /* Future: support kernel segments so that drivers
203 * can use SPUs.
204 */
67207b96
AB
205 pr_debug("invalid region access at %016lx\n", ea);
206 return 1;
207 }
4d43466d 208 slb.vsid |= mmu_psize_defs[psize].sllp;
67207b96 209
4d43466d 210 spu_load_slb(spu, spu->slb_replace, &slb);
8b3d6663
AB
211
212 spu->slb_replace++;
67207b96
AB
213 if (spu->slb_replace >= 8)
214 spu->slb_replace = 0;
215
67207b96 216 spu_restart_dma(spu);
e9f8a0b6 217 spu->stats.slb_flt++;
67207b96
AB
218 return 0;
219}
220
5473af04 221extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
8b3d6663 222static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
67207b96 223{
2c911a14
LB
224 int ret;
225
fe333321 226 pr_debug("%s, %llx, %lx\n", __func__, dsisr, ea);
67207b96 227
2c911a14
LB
228 /*
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 }
5473af04
MN
243 }
244
f3d69e05
LB
245 spu->class_1_dar = ea;
246 spu->class_1_dsisr = dsisr;
247
248 spu->stop_callback(spu, 1);
d6ad39bc 249
f3d69e05
LB
250 spu->class_1_dar = 0;
251 spu->class_1_dsisr = 0;
d6ad39bc 252
67207b96
AB
253 return 0;
254}
255
58bd403c
JK
256static 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
684bd614
JK
271/**
272 * 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
58bd403c
JK
288/**
289 * 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.
684bd614
JK
291 *
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.
58bd403c 296 */
684bd614
JK
297void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa,
298 void *code, int code_size)
58bd403c 299{
684bd614
JK
300 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 };
307
308 /* 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;
313
314 __spu_kernel_slb(addrs[i], &slbs[nr_slbs]);
315 nr_slbs++;
316 }
58bd403c 317
c92a1acb 318 spin_lock_irq(&spu->register_lock);
684bd614
JK
319 /* Add the set of SLBs */
320 for (i = 0; i < nr_slbs; i++)
321 spu_load_slb(spu, i, &slbs[i]);
c92a1acb 322 spin_unlock_irq(&spu->register_lock);
58bd403c
JK
323}
324EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs);
325
67207b96 326static irqreturn_t
f5a92458 327spu_irq_class_0(int irq, void *data)
67207b96
AB
328{
329 struct spu *spu;
b7f90a40 330 unsigned long stat, mask;
67207b96
AB
331
332 spu = data;
b7f90a40 333
d6ad39bc 334 spin_lock(&spu->register_lock);
b7f90a40 335 mask = spu_int_mask_get(spu, 0);
d6ad39bc 336 stat = spu_int_stat_get(spu, 0) & mask;
b7f90a40 337
b7f90a40 338 spu->class_0_pending |= stat;
f3d69e05 339 spu->class_0_dar = spu_mfc_dar_get(spu);
f3d69e05 340 spu->stop_callback(spu, 0);
f3d69e05 341 spu->class_0_pending = 0;
f3d69e05 342 spu->class_0_dar = 0;
67207b96 343
b7f90a40 344 spu_int_stat_clear(spu, 0, stat);
2c911a14 345 spin_unlock(&spu->register_lock);
b7f90a40 346
67207b96
AB
347 return IRQ_HANDLED;
348}
349
67207b96 350static irqreturn_t
f5a92458 351spu_irq_class_1(int irq, void *data)
67207b96
AB
352{
353 struct spu *spu;
8b3d6663 354 unsigned long stat, mask, dar, dsisr;
67207b96
AB
355
356 spu = data;
8b3d6663
AB
357
358 /* atomically read & clear class1 status. */
359 spin_lock(&spu->register_lock);
f0831acc
AB
360 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);
8af30675 364 if (stat & CLASS1_STORAGE_FAULT_INTR)
f0831acc
AB
365 spu_mfc_dsisr_set(spu, 0ul);
366 spu_int_stat_clear(spu, 1, stat);
67207b96 367
e48b1b45 368 pr_debug("%s: %lx %lx %lx %lx\n", __func__, mask, stat,
c92a1acb
AB
369 dar, dsisr);
370
2c911a14
LB
371 if (stat & CLASS1_SEGMENT_FAULT_INTR)
372 __spu_trap_data_seg(spu, dar);
373
8af30675 374 if (stat & CLASS1_STORAGE_FAULT_INTR)
8b3d6663 375 __spu_trap_data_map(spu, dar, dsisr);
67207b96 376
8af30675 377 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_GET_INTR)
67207b96
AB
378 ;
379
8af30675 380 if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_PUT_INTR)
67207b96
AB
381 ;
382
f3d69e05
LB
383 spu->class_1_dsisr = 0;
384 spu->class_1_dar = 0;
385
2c911a14
LB
386 spin_unlock(&spu->register_lock);
387
67207b96
AB
388 return stat ? IRQ_HANDLED : IRQ_NONE;
389}
390
391static irqreturn_t
f5a92458 392spu_irq_class_2(int irq, void *data)
67207b96
AB
393{
394 struct spu *spu;
395 unsigned long stat;
3a843d7c 396 unsigned long mask;
8af30675
JK
397 const int mailbox_intrs =
398 CLASS2_MAILBOX_THRESHOLD_INTR | CLASS2_MAILBOX_INTR;
67207b96
AB
399
400 spu = data;
ba723fe2 401 spin_lock(&spu->register_lock);
f0831acc
AB
402 stat = spu_int_stat_get(spu, 2);
403 mask = spu_int_mask_get(spu, 2);
ba723fe2
MN
404 /* ignore interrupts we're not waiting for */
405 stat &= mask;
8af30675
JK
406 /* 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));
ba723fe2
MN
410 /* acknowledge all interrupts before the callbacks */
411 spu_int_stat_clear(spu, 2, stat);
67207b96 412
3a843d7c 413 pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);
67207b96 414
8af30675 415 if (stat & CLASS2_MAILBOX_INTR)
ba723fe2 416 spu->ibox_callback(spu);
67207b96 417
8af30675 418 if (stat & CLASS2_SPU_STOP_INTR)
f3d69e05 419 spu->stop_callback(spu, 2);
67207b96 420
8af30675 421 if (stat & CLASS2_SPU_HALT_INTR)
f3d69e05 422 spu->stop_callback(spu, 2);
67207b96 423
8af30675 424 if (stat & CLASS2_SPU_DMA_TAG_GROUP_COMPLETE_INTR)
ba723fe2 425 spu->mfc_callback(spu);
67207b96 426
8af30675 427 if (stat & CLASS2_MAILBOX_THRESHOLD_INTR)
ba723fe2 428 spu->wbox_callback(spu);
67207b96 429
e9f8a0b6 430 spu->stats.class2_intr++;
2c911a14
LB
431
432 spin_unlock(&spu->register_lock);
433
67207b96
AB
434 return stat ? IRQ_HANDLED : IRQ_NONE;
435}
436
0ebfff14 437static int spu_request_irqs(struct spu *spu)
67207b96 438{
0ebfff14 439 int ret = 0;
67207b96 440
0ebfff14
BH
441 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,
445 IRQF_DISABLED,
446 spu->irq_c0, spu);
447 if (ret)
448 goto bail0;
449 }
450 if (spu->irqs[1] != NO_IRQ) {
451 snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1",
452 spu->number);
453 ret = request_irq(spu->irqs[1], spu_irq_class_1,
454 IRQF_DISABLED,
455 spu->irq_c1, spu);
456 if (ret)
457 goto bail1;
458 }
459 if (spu->irqs[2] != NO_IRQ) {
460 snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2",
461 spu->number);
462 ret = request_irq(spu->irqs[2], spu_irq_class_2,
463 IRQF_DISABLED,
464 spu->irq_c2, spu);
465 if (ret)
466 goto bail2;
467 }
468 return 0;
67207b96 469
0ebfff14
BH
470bail2:
471 if (spu->irqs[1] != NO_IRQ)
472 free_irq(spu->irqs[1], spu);
473bail1:
474 if (spu->irqs[0] != NO_IRQ)
475 free_irq(spu->irqs[0], spu);
476bail0:
67207b96
AB
477 return ret;
478}
479
0ebfff14 480static void spu_free_irqs(struct spu *spu)
67207b96 481{
0ebfff14
BH
482 if (spu->irqs[0] != NO_IRQ)
483 free_irq(spu->irqs[0], spu);
484 if (spu->irqs[1] != NO_IRQ)
485 free_irq(spu->irqs[1], spu);
486 if (spu->irqs[2] != NO_IRQ)
487 free_irq(spu->irqs[2], spu);
67207b96
AB
488}
489
486acd48 490void spu_init_channels(struct spu *spu)
67207b96
AB
491{
492 static const struct {
493 unsigned channel;
494 unsigned count;
495 } zero_list[] = {
496 { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },
497 { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },
498 }, count_list[] = {
499 { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },
500 { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },
501 { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },
502 };
6ff730c3 503 struct spu_priv2 __iomem *priv2;
67207b96
AB
504 int i;
505
506 priv2 = spu->priv2;
507
508 /* initialize all channel data to zero */
509 for (i = 0; i < ARRAY_SIZE(zero_list); i++) {
510 int count;
511
512 out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);
513 for (count = 0; count < zero_list[i].count; count++)
514 out_be64(&priv2->spu_chnldata_RW, 0);
515 }
516
517 /* initialize channel counts to meaningful values */
518 for (i = 0; i < ARRAY_SIZE(count_list); i++) {
519 out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);
520 out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);
521 }
522}
486acd48 523EXPORT_SYMBOL_GPL(spu_init_channels);
67207b96 524
1238819a 525static struct sysdev_class spu_sysdev_class = {
af5ca3f4 526 .name = "spu",
1d64093f
JK
527};
528
e570beb6
CK
529int spu_add_sysdev_attr(struct sysdev_attribute *attr)
530{
531 struct spu *spu;
e570beb6 532
24140594 533 mutex_lock(&spu_full_list_mutex);
e570beb6
CK
534 list_for_each_entry(spu, &spu_full_list, full_list)
535 sysdev_create_file(&spu->sysdev, attr);
24140594 536 mutex_unlock(&spu_full_list_mutex);
e570beb6 537
e570beb6
CK
538 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;
1e771039 545 int rc = 0;
e570beb6 546
24140594 547 mutex_lock(&spu_full_list_mutex);
1e771039
JK
548 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
24140594 563 mutex_unlock(&spu_full_list_mutex);
e570beb6 564
1e771039 565 return rc;
e570beb6
CK
566}
567EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group);
568
569
570void spu_remove_sysdev_attr(struct sysdev_attribute *attr)
571{
572 struct spu *spu;
e570beb6 573
24140594 574 mutex_lock(&spu_full_list_mutex);
e570beb6
CK
575 list_for_each_entry(spu, &spu_full_list, full_list)
576 sysdev_remove_file(&spu->sysdev, attr);
24140594 577 mutex_unlock(&spu_full_list_mutex);
e570beb6
CK
578}
579EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr);
580
581void spu_remove_sysdev_attr_group(struct attribute_group *attrs)
582{
583 struct spu *spu;
e570beb6 584
24140594 585 mutex_lock(&spu_full_list_mutex);
e570beb6
CK
586 list_for_each_entry(spu, &spu_full_list, full_list)
587 sysfs_remove_group(&spu->sysdev.kobj, attrs);
24140594 588 mutex_unlock(&spu_full_list_mutex);
e570beb6
CK
589}
590EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group);
591
1d64093f
JK
592static 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
0021550c 605 sysfs_add_device_to_node(&spu->sysdev, spu->node);
1d64093f
JK
606
607 return 0;
608}
609
e28b0031 610static int __init create_spu(void *data)
67207b96
AB
611{
612 struct spu *spu;
613 int ret;
614 static int number;
94b2a439 615 unsigned long flags;
27ec41d3 616 struct timespec ts;
67207b96
AB
617
618 ret = -ENOMEM;
ecec2177 619 spu = kzalloc(sizeof (*spu), GFP_KERNEL);
67207b96
AB
620 if (!spu)
621 goto out;
622
486acd48
CH
623 spu->alloc_state = SPU_FREE;
624
e28b0031 625 spin_lock_init(&spu->register_lock);
24140594 626 spin_lock(&spu_lock);
e28b0031 627 spu->number = number++;
24140594 628 spin_unlock(&spu_lock);
e28b0031
GL
629
630 ret = spu_create_spu(spu, data);
e5267b4b 631
67207b96
AB
632 if (ret)
633 goto out_free;
634
24f43b33 635 spu_mfc_sdr_setup(spu);
f0831acc 636 spu_mfc_sr1_set(spu, 0x33);
67207b96
AB
637 ret = spu_request_irqs(spu);
638 if (ret)
e28b0031 639 goto out_destroy;
67207b96 640
1d64093f
JK
641 ret = spu_create_sysdev(spu);
642 if (ret)
643 goto out_free_irqs;
644
486acd48 645 mutex_lock(&cbe_spu_info[spu->node].list_mutex);
aa6d5b20
AB
646 list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus);
647 cbe_spu_info[spu->node].n_spus++;
486acd48 648 mutex_unlock(&cbe_spu_info[spu->node].list_mutex);
24140594
CH
649
650 mutex_lock(&spu_full_list_mutex);
651 spin_lock_irqsave(&spu_full_list_lock, flags);
e570beb6 652 list_add(&spu->full_list, &spu_full_list);
24140594
CH
653 spin_unlock_irqrestore(&spu_full_list_lock, flags);
654 mutex_unlock(&spu_full_list_mutex);
67207b96 655
27ec41d3
AD
656 spu->stats.util_state = SPU_UTIL_IDLE_LOADED;
657 ktime_get_ts(&ts);
658 spu->stats.tstamp = timespec_to_ns(&ts);
fe2f896d 659
9d92af62
AB
660 INIT_LIST_HEAD(&spu->aff_list);
661
67207b96
AB
662 goto out;
663
1d64093f
JK
664out_free_irqs:
665 spu_free_irqs(spu);
e28b0031
GL
666out_destroy:
667 spu_destroy_spu(spu);
67207b96
AB
668out_free:
669 kfree(spu);
670out:
671 return ret;
672}
673
fe2f896d
CH
674static 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{
27ec41d3 681 struct timespec ts;
fe2f896d
CH
682 unsigned long long time = spu->stats.times[state];
683
27ec41d3
AD
684 /*
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 }
fe2f896d 693
27ec41d3 694 return time / NSEC_PER_MSEC;
fe2f896d
CH
695}
696
697
4a0b2b4d
AK
698static ssize_t spu_stat_show(struct sys_device *sysdev,
699 struct sysdev_attribute *attr, char *buf)
fe2f896d
CH
700{
701 struct spu *spu = container_of(sysdev, struct spu, sysdev);
702
703 return sprintf(buf, "%s %llu %llu %llu %llu "
704 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
27ec41d3 705 spu_state_names[spu->stats.util_state],
fe2f896d
CH
706 spu_acct_time(spu, SPU_UTIL_USER),
707 spu_acct_time(spu, SPU_UTIL_SYSTEM),
708 spu_acct_time(spu, SPU_UTIL_IOWAIT),
27ec41d3 709 spu_acct_time(spu, SPU_UTIL_IDLE_LOADED),
fe2f896d
CH
710 spu->stats.vol_ctx_switch,
711 spu->stats.invol_ctx_switch,
712 spu->stats.slb_flt,
713 spu->stats.hash_flt,
714 spu->stats.min_flt,
715 spu->stats.maj_flt,
716 spu->stats.class2_intr,
717 spu->stats.libassist);
718}
719
720static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL);
721
158d5b5e
AB
722#ifdef CONFIG_KEXEC
723
724struct crash_spu_info {
725 struct spu *spu;
726 u32 saved_spu_runcntl_RW;
727 u32 saved_spu_status_R;
728 u32 saved_spu_npc_RW;
729 u64 saved_mfc_sr1_RW;
730 u64 saved_mfc_dar;
731 u64 saved_mfc_dsisr;
732};
733
734#define CRASH_NUM_SPUS 16 /* Enough for current hardware */
735static struct crash_spu_info crash_spu_info[CRASH_NUM_SPUS];
736
737static void crash_kexec_stop_spus(void)
738{
739 struct spu *spu;
740 int i;
741 u64 tmp;
742
743 for (i = 0; i < CRASH_NUM_SPUS; i++) {
744 if (!crash_spu_info[i].spu)
745 continue;
746
747 spu = crash_spu_info[i].spu;
748
749 crash_spu_info[i].saved_spu_runcntl_RW =
750 in_be32(&spu->problem->spu_runcntl_RW);
751 crash_spu_info[i].saved_spu_status_R =
752 in_be32(&spu->problem->spu_status_R);
753 crash_spu_info[i].saved_spu_npc_RW =
754 in_be32(&spu->problem->spu_npc_RW);
755
756 crash_spu_info[i].saved_mfc_dar = spu_mfc_dar_get(spu);
757 crash_spu_info[i].saved_mfc_dsisr = spu_mfc_dsisr_get(spu);
758 tmp = spu_mfc_sr1_get(spu);
759 crash_spu_info[i].saved_mfc_sr1_RW = tmp;
760
761 tmp &= ~MFC_STATE1_MASTER_RUN_CONTROL_MASK;
762 spu_mfc_sr1_set(spu, tmp);
763
764 __delay(200);
765 }
766}
767
768static void crash_register_spus(struct list_head *list)
769{
770 struct spu *spu;
771 int ret;
772
773 list_for_each_entry(spu, list, full_list) {
774 if (WARN_ON(spu->number >= CRASH_NUM_SPUS))
775 continue;
776
777 crash_spu_info[spu->number].spu = spu;
778 }
779
780 ret = crash_shutdown_register(&crash_kexec_stop_spus);
781 if (ret)
782 printk(KERN_ERR "Could not register SPU crash handler");
783}
784
785#else
786static inline void crash_register_spus(struct list_head *list)
787{
788}
789#endif
790
f5a592f7
RW
791static void spu_shutdown(void)
792{
793 struct spu *spu;
794
795 mutex_lock(&spu_full_list_mutex);
796 list_for_each_entry(spu, &spu_full_list, full_list) {
797 spu_free_irqs(spu);
798 spu_destroy_spu(spu);
799 }
800 mutex_unlock(&spu_full_list_mutex);
801}
802
803static struct syscore_ops spu_syscore_ops = {
804 .shutdown = spu_shutdown,
805};
806
67207b96
AB
807static int __init init_spu_base(void)
808{
befdc746 809 int i, ret = 0;
67207b96 810
aa6d5b20 811 for (i = 0; i < MAX_NUMNODES; i++) {
486acd48 812 mutex_init(&cbe_spu_info[i].list_mutex);
aa6d5b20 813 INIT_LIST_HEAD(&cbe_spu_info[i].spus);
aa6d5b20 814 }
ccf17e9d 815
da06aa08 816 if (!spu_management_ops)
befdc746 817 goto out;
da06aa08 818
1d64093f
JK
819 /* create sysdev class for spus */
820 ret = sysdev_class_register(&spu_sysdev_class);
821 if (ret)
befdc746 822 goto out;
1d64093f 823
e28b0031
GL
824 ret = spu_enumerate_spus(create_spu);
825
bce94513 826 if (ret < 0) {
e28b0031 827 printk(KERN_WARNING "%s: Error initializing spus\n",
e48b1b45 828 __func__);
befdc746 829 goto out_unregister_sysdev_class;
67207b96 830 }
ff8a8f25 831
ae52bb23 832 if (ret > 0)
bce94513 833 fb_append_extra_logo(&logo_spe_clut224, ret);
bce94513 834
24140594 835 mutex_lock(&spu_full_list_mutex);
ff8a8f25 836 xmon_register_spus(&spu_full_list);
8d2655e6 837 crash_register_spus(&spu_full_list);
24140594 838 mutex_unlock(&spu_full_list_mutex);
fe2f896d 839 spu_add_sysdev_attr(&attr_stat);
f5a592f7 840 register_syscore_ops(&spu_syscore_ops);
fe2f896d 841
f5996449 842 spu_init_affinity();
3ad216ca 843
befdc746
CH
844 return 0;
845
846 out_unregister_sysdev_class:
847 sysdev_class_unregister(&spu_sysdev_class);
848 out:
67207b96
AB
849 return ret;
850}
851module_init(init_spu_base);
852
853MODULE_LICENSE("GPL");
854MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");