Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 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 | |
Arnd Bergmann | 3b3d22c | 2005-12-05 22:52:24 -0500 | [diff] [blame] | 23 | #undef DEBUG |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 24 | |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/list.h> |
| 27 | #include <linux/module.h> |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 28 | #include <linux/ptrace.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/wait.h> |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 31 | #include <linux/mm.h> |
| 32 | #include <linux/io.h> |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 33 | #include <linux/mutex.h> |
Geert Uytterhoeven | bce9451 | 2007-07-17 04:05:52 -0700 | [diff] [blame] | 34 | #include <linux/linux_logo.h> |
Rafael J. Wysocki | f5a592f | 2011-04-26 19:14:57 +0200 | [diff] [blame] | 35 | #include <linux/syscore_ops.h> |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 36 | #include <asm/spu.h> |
Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 37 | #include <asm/spu_priv1.h> |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 38 | #include <asm/spu_csa.h> |
Michael Ellerman | ff8a8f2 | 2006-10-24 18:31:27 +0200 | [diff] [blame] | 39 | #include <asm/xmon.h> |
Arnd Bergmann | 3ad216c | 2007-07-20 21:39:46 +0200 | [diff] [blame] | 40 | #include <asm/prom.h> |
Anton Blanchard | 158d5b5e | 2011-01-21 13:43:59 +1100 | [diff] [blame] | 41 | #include <asm/kexec.h> |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 42 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 43 | const struct spu_management_ops *spu_management_ops; |
Jeremy Kerr | ccf17e9 | 2007-04-23 21:08:29 +0200 | [diff] [blame] | 44 | EXPORT_SYMBOL_GPL(spu_management_ops); |
| 45 | |
Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 46 | const struct spu_priv1_ops *spu_priv1_ops; |
Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 47 | EXPORT_SYMBOL_GPL(spu_priv1_ops); |
| 48 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 49 | struct cbe_spu_info cbe_spu_info[MAX_NUMNODES]; |
| 50 | EXPORT_SYMBOL_GPL(cbe_spu_info); |
| 51 | |
| 52 | /* |
Jeremy Kerr | 3ce2f62 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 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 | */ |
| 57 | EXPORT_SYMBOL_GPL(force_sig_info); |
| 58 | |
| 59 | /* |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 60 | * Protects cbe_spu_info and spu->number. |
| 61 | */ |
| 62 | static 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 | */ |
| 75 | static LIST_HEAD(spu_full_list); |
| 76 | static DEFINE_SPINLOCK(spu_full_list_lock); |
| 77 | static DEFINE_MUTEX(spu_full_list_mutex); |
| 78 | |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 79 | struct spu_slb { |
| 80 | u64 esid, vsid; |
| 81 | }; |
| 82 | |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 83 | void spu_invalidate_slbs(struct spu *spu) |
| 84 | { |
| 85 | struct spu_priv2 __iomem *priv2 = spu->priv2; |
Arnd Bergmann | c92a1ac | 2008-02-28 06:06:30 +0100 | [diff] [blame] | 86 | unsigned long flags; |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 87 | |
Arnd Bergmann | c92a1ac | 2008-02-28 06:06:30 +0100 | [diff] [blame] | 88 | spin_lock_irqsave(&spu->register_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 89 | if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK) |
| 90 | out_be64(&priv2->slb_invalidate_all_W, 0UL); |
Arnd Bergmann | c92a1ac | 2008-02-28 06:06:30 +0100 | [diff] [blame] | 91 | spin_unlock_irqrestore(&spu->register_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 92 | } |
| 93 | EXPORT_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 | */ |
| 98 | void spu_flush_all_slbs(struct mm_struct *mm) |
| 99 | { |
| 100 | struct spu *spu; |
| 101 | unsigned long flags; |
| 102 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 103 | spin_lock_irqsave(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 104 | list_for_each_entry(spu, &spu_full_list, full_list) { |
| 105 | if (spu->mm == mm) |
| 106 | spu_invalidate_slbs(spu); |
| 107 | } |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 108 | spin_unlock_irqrestore(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 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 | */ |
| 114 | static 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 Russell | 56aa412 | 2009-03-15 18:16:43 +0000 | [diff] [blame] | 119 | bitmap_fill(cpumask_bits(mm_cpumask(mm)), nr); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | void spu_associate_mm(struct spu *spu, struct mm_struct *mm) |
| 123 | { |
| 124 | unsigned long flags; |
| 125 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 126 | spin_lock_irqsave(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 127 | spu->mm = mm; |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 128 | spin_unlock_irqrestore(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 129 | if (mm) |
| 130 | mm_needs_global_tlbie(mm); |
| 131 | } |
| 132 | EXPORT_SYMBOL_GPL(spu_associate_mm); |
| 133 | |
Jeremy Kerr | f6eb7d7f | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 134 | int spu_64k_pages_available(void) |
| 135 | { |
| 136 | return mmu_psize_defs[MMU_PAGE_64K].shift != 0; |
| 137 | } |
| 138 | EXPORT_SYMBOL_GPL(spu_64k_pages_available); |
| 139 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 140 | static void spu_restart_dma(struct spu *spu) |
| 141 | { |
| 142 | struct spu_priv2 __iomem *priv2 = spu->priv2; |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 143 | |
Arnd Bergmann | 8837d92 | 2006-01-04 20:31:28 +0100 | [diff] [blame] | 144 | if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags)) |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 145 | out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND); |
Luke Browning | de10289 | 2008-04-28 17:35:56 +1000 | [diff] [blame] | 146 | else { |
| 147 | set_bit(SPU_CONTEXT_FAULT_PENDING, &spu->flags); |
| 148 | mb(); |
| 149 | } |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 150 | } |
| 151 | |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 152 | static 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 Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 156 | pr_debug("%s: adding SLB[%d] 0x%016llx 0x%016llx\n", |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 157 | __func__, slbe, slb->vsid, slb->esid); |
| 158 | |
| 159 | out_be64(&priv2->slb_index_W, slbe); |
Arnd Bergmann | cc4b7c1 | 2008-02-26 07:01:56 +0100 | [diff] [blame] | 160 | /* set invalid before writing vsid */ |
| 161 | out_be64(&priv2->slb_esid_RW, 0); |
| 162 | /* now it's safe to write the vsid */ |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 163 | out_be64(&priv2->slb_vsid_RW, slb->vsid); |
Arnd Bergmann | cc4b7c1 | 2008-02-26 07:01:56 +0100 | [diff] [blame] | 164 | /* setting the new esid makes the entry valid again */ |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 165 | out_be64(&priv2->slb_esid_RW, slb->esid); |
| 166 | } |
| 167 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 168 | static int __spu_trap_data_seg(struct spu *spu, unsigned long ea) |
| 169 | { |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 170 | struct mm_struct *mm = spu->mm; |
Jeremy Kerr | 4d43466 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 171 | struct spu_slb slb; |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 172 | int psize; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 173 | |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 174 | pr_debug("%s\n", __func__); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 175 | |
Jeremy Kerr | 4d43466 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 176 | slb.esid = (ea & ESID_MASK) | SLB_ESID_V; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 177 | |
| 178 | switch(REGION_ID(ea)) { |
| 179 | case USER_REGION_ID: |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 180 | #ifdef CONFIG_PPC_MM_SLICES |
| 181 | psize = get_slice_psize(mm, ea); |
| 182 | #else |
| 183 | psize = mm->context.user_psize; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 184 | #endif |
Jeremy Kerr | 4d43466 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 185 | slb.vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M) |
| 186 | << SLB_VSID_SHIFT) | SLB_VSID_USER; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 187 | break; |
| 188 | case VMALLOC_REGION_ID: |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 189 | if (ea < VMALLOC_END) |
| 190 | psize = mmu_vmalloc_psize; |
| 191 | else |
| 192 | psize = mmu_io_psize; |
Jeremy Kerr | 4d43466 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 193 | slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) |
| 194 | << SLB_VSID_SHIFT) | SLB_VSID_KERNEL; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 195 | break; |
| 196 | case KERNEL_REGION_ID: |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 197 | psize = mmu_linear_psize; |
Jeremy Kerr | 4d43466 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 198 | slb.vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) |
| 199 | << SLB_VSID_SHIFT) | SLB_VSID_KERNEL; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 200 | break; |
| 201 | default: |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 202 | /* Future: support kernel segments so that drivers |
| 203 | * can use SPUs. |
| 204 | */ |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 205 | pr_debug("invalid region access at %016lx\n", ea); |
| 206 | return 1; |
| 207 | } |
Jeremy Kerr | 4d43466 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 208 | slb.vsid |= mmu_psize_defs[psize].sllp; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 209 | |
Jeremy Kerr | 4d43466 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 210 | spu_load_slb(spu, spu->slb_replace, &slb); |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 211 | |
| 212 | spu->slb_replace++; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 213 | if (spu->slb_replace >= 8) |
| 214 | spu->slb_replace = 0; |
| 215 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 216 | spu_restart_dma(spu); |
Christoph Hellwig | e9f8a0b | 2007-06-29 10:58:03 +1000 | [diff] [blame] | 217 | spu->stats.slb_flt++; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 221 | extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 222 | static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 223 | { |
Luke Browning | 2c911a1 | 2008-06-13 14:17:35 +1000 | [diff] [blame] | 224 | int ret; |
| 225 | |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 226 | pr_debug("%s, %llx, %lx\n", __func__, dsisr, ea); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 227 | |
Luke Browning | 2c911a1 | 2008-06-13 14:17:35 +1000 | [diff] [blame] | 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 | } |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 243 | } |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 244 | |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 245 | spu->class_1_dar = ea; |
| 246 | spu->class_1_dsisr = dsisr; |
Jeremy Kerr | d6ad39b | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 247 | |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 248 | spu->stop_callback(spu, 1); |
| 249 | |
| 250 | spu->class_1_dar = 0; |
| 251 | spu->class_1_dsisr = 0; |
Jeremy Kerr | d6ad39b | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 252 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 253 | return 0; |
| 254 | } |
| 255 | |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 256 | static 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 Kerr | 684bd61 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 272 | * Given an array of @nr_slbs SLB entries, @slbs, return non-zero if the |
| 273 | * address @new_addr is present. |
| 274 | */ |
| 275 | static 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 Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 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. |
Jeremy Kerr | 684bd61 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 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. |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 296 | */ |
Jeremy Kerr | 684bd61 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 297 | void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa, |
| 298 | void *code, int code_size) |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 299 | { |
Jeremy Kerr | 684bd61 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 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 | }; |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 307 | |
Jeremy Kerr | 684bd61 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 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; |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 313 | |
Jeremy Kerr | 684bd61 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 314 | __spu_kernel_slb(addrs[i], &slbs[nr_slbs]); |
| 315 | nr_slbs++; |
| 316 | } |
| 317 | |
Arnd Bergmann | c92a1ac | 2008-02-28 06:06:30 +0100 | [diff] [blame] | 318 | spin_lock_irq(&spu->register_lock); |
Jeremy Kerr | 684bd61 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 319 | /* Add the set of SLBs */ |
| 320 | for (i = 0; i < nr_slbs; i++) |
| 321 | spu_load_slb(spu, i, &slbs[i]); |
Arnd Bergmann | c92a1ac | 2008-02-28 06:06:30 +0100 | [diff] [blame] | 322 | spin_unlock_irq(&spu->register_lock); |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 323 | } |
| 324 | EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs); |
| 325 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 326 | static irqreturn_t |
Olaf Hering | f5a9245 | 2006-10-06 22:52:16 +0200 | [diff] [blame] | 327 | spu_irq_class_0(int irq, void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 328 | { |
| 329 | struct spu *spu; |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 330 | unsigned long stat, mask; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 331 | |
| 332 | spu = data; |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 333 | |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 334 | spin_lock(&spu->register_lock); |
Jeremy Kerr | d6ad39b | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 335 | mask = spu_int_mask_get(spu, 0); |
| 336 | stat = spu_int_stat_get(spu, 0) & mask; |
| 337 | |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 338 | spu->class_0_pending |= stat; |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 339 | spu->class_0_dar = spu_mfc_dar_get(spu); |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 340 | spu->stop_callback(spu, 0); |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 341 | spu->class_0_pending = 0; |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 342 | spu->class_0_dar = 0; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 343 | |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 344 | spu_int_stat_clear(spu, 0, stat); |
Luke Browning | 2c911a1 | 2008-06-13 14:17:35 +1000 | [diff] [blame] | 345 | spin_unlock(&spu->register_lock); |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 346 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 347 | return IRQ_HANDLED; |
| 348 | } |
| 349 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 350 | static irqreturn_t |
Olaf Hering | f5a9245 | 2006-10-06 22:52:16 +0200 | [diff] [blame] | 351 | spu_irq_class_1(int irq, void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 352 | { |
| 353 | struct spu *spu; |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 354 | unsigned long stat, mask, dar, dsisr; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 355 | |
| 356 | spu = data; |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 357 | |
| 358 | /* atomically read & clear class1 status. */ |
| 359 | spin_lock(&spu->register_lock); |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 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); |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 364 | if (stat & CLASS1_STORAGE_FAULT_INTR) |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 365 | spu_mfc_dsisr_set(spu, 0ul); |
| 366 | spu_int_stat_clear(spu, 1, stat); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 367 | |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 368 | pr_debug("%s: %lx %lx %lx %lx\n", __func__, mask, stat, |
Arnd Bergmann | c92a1ac | 2008-02-28 06:06:30 +0100 | [diff] [blame] | 369 | dar, dsisr); |
| 370 | |
Luke Browning | 2c911a1 | 2008-06-13 14:17:35 +1000 | [diff] [blame] | 371 | if (stat & CLASS1_SEGMENT_FAULT_INTR) |
| 372 | __spu_trap_data_seg(spu, dar); |
| 373 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 374 | if (stat & CLASS1_STORAGE_FAULT_INTR) |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 375 | __spu_trap_data_map(spu, dar, dsisr); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 376 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 377 | if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_GET_INTR) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 378 | ; |
| 379 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 380 | if (stat & CLASS1_LS_COMPARE_SUSPEND_ON_PUT_INTR) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 381 | ; |
| 382 | |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 383 | spu->class_1_dsisr = 0; |
| 384 | spu->class_1_dar = 0; |
| 385 | |
Luke Browning | 2c911a1 | 2008-06-13 14:17:35 +1000 | [diff] [blame] | 386 | spin_unlock(&spu->register_lock); |
| 387 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 388 | return stat ? IRQ_HANDLED : IRQ_NONE; |
| 389 | } |
| 390 | |
| 391 | static irqreturn_t |
Olaf Hering | f5a9245 | 2006-10-06 22:52:16 +0200 | [diff] [blame] | 392 | spu_irq_class_2(int irq, void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 393 | { |
| 394 | struct spu *spu; |
| 395 | unsigned long stat; |
Arnd Bergmann | 3a843d7 | 2005-12-05 22:52:27 -0500 | [diff] [blame] | 396 | unsigned long mask; |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 397 | const int mailbox_intrs = |
| 398 | CLASS2_MAILBOX_THRESHOLD_INTR | CLASS2_MAILBOX_INTR; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 399 | |
| 400 | spu = data; |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 401 | spin_lock(&spu->register_lock); |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 402 | stat = spu_int_stat_get(spu, 2); |
| 403 | mask = spu_int_mask_get(spu, 2); |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 404 | /* ignore interrupts we're not waiting for */ |
| 405 | stat &= mask; |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 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)); |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 410 | /* acknowledge all interrupts before the callbacks */ |
| 411 | spu_int_stat_clear(spu, 2, stat); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 412 | |
Arnd Bergmann | 3a843d7 | 2005-12-05 22:52:27 -0500 | [diff] [blame] | 413 | pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 414 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 415 | if (stat & CLASS2_MAILBOX_INTR) |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 416 | spu->ibox_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 417 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 418 | if (stat & CLASS2_SPU_STOP_INTR) |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 419 | spu->stop_callback(spu, 2); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 420 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 421 | if (stat & CLASS2_SPU_HALT_INTR) |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 422 | spu->stop_callback(spu, 2); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 423 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 424 | if (stat & CLASS2_SPU_DMA_TAG_GROUP_COMPLETE_INTR) |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 425 | spu->mfc_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 426 | |
Jeremy Kerr | 8af3067 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 427 | if (stat & CLASS2_MAILBOX_THRESHOLD_INTR) |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 428 | spu->wbox_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 429 | |
Christoph Hellwig | e9f8a0b | 2007-06-29 10:58:03 +1000 | [diff] [blame] | 430 | spu->stats.class2_intr++; |
Luke Browning | 2c911a1 | 2008-06-13 14:17:35 +1000 | [diff] [blame] | 431 | |
| 432 | spin_unlock(&spu->register_lock); |
| 433 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 434 | return stat ? IRQ_HANDLED : IRQ_NONE; |
| 435 | } |
| 436 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 437 | static int spu_request_irqs(struct spu *spu) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 438 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 439 | int ret = 0; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 440 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 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; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 469 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 470 | bail2: |
| 471 | if (spu->irqs[1] != NO_IRQ) |
| 472 | free_irq(spu->irqs[1], spu); |
| 473 | bail1: |
| 474 | if (spu->irqs[0] != NO_IRQ) |
| 475 | free_irq(spu->irqs[0], spu); |
| 476 | bail0: |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 477 | return ret; |
| 478 | } |
| 479 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 480 | static void spu_free_irqs(struct spu *spu) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 481 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 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); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 488 | } |
| 489 | |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 490 | void spu_init_channels(struct spu *spu) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 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 | }; |
Arnd Bergmann | 6ff730c | 2006-01-04 20:31:31 +0100 | [diff] [blame] | 503 | struct spu_priv2 __iomem *priv2; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 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 | } |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 523 | EXPORT_SYMBOL_GPL(spu_init_channels); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 524 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 525 | static struct bus_type spu_subsys = { |
Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 526 | .name = "spu", |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 527 | .dev_name = "spu", |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 528 | }; |
| 529 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 530 | int spu_add_dev_attr(struct device_attribute *attr) |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 531 | { |
| 532 | struct spu *spu; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 533 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 534 | mutex_lock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 535 | list_for_each_entry(spu, &spu_full_list, full_list) |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 536 | device_create_file(&spu->dev, attr); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 537 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 538 | |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 539 | return 0; |
| 540 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 541 | EXPORT_SYMBOL_GPL(spu_add_dev_attr); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 542 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 543 | int spu_add_dev_attr_group(struct attribute_group *attrs) |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 544 | { |
| 545 | struct spu *spu; |
Jeremy Kerr | 1e77103 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 546 | int rc = 0; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 547 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 548 | mutex_lock(&spu_full_list_mutex); |
Jeremy Kerr | 1e77103 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 549 | list_for_each_entry(spu, &spu_full_list, full_list) { |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 550 | rc = sysfs_create_group(&spu->dev.kobj, attrs); |
Jeremy Kerr | 1e77103 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 551 | |
| 552 | /* we're in trouble here, but try unwinding anyway */ |
| 553 | if (rc) { |
| 554 | printk(KERN_ERR "%s: can't create sysfs group '%s'\n", |
| 555 | __func__, attrs->name); |
| 556 | |
| 557 | list_for_each_entry_continue_reverse(spu, |
| 558 | &spu_full_list, full_list) |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 559 | sysfs_remove_group(&spu->dev.kobj, attrs); |
Jeremy Kerr | 1e77103 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 560 | break; |
| 561 | } |
| 562 | } |
| 563 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 564 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 565 | |
Jeremy Kerr | 1e77103 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 566 | return rc; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 567 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 568 | EXPORT_SYMBOL_GPL(spu_add_dev_attr_group); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 569 | |
| 570 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 571 | void spu_remove_dev_attr(struct device_attribute *attr) |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 572 | { |
| 573 | struct spu *spu; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 574 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 575 | mutex_lock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 576 | list_for_each_entry(spu, &spu_full_list, full_list) |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 577 | device_remove_file(&spu->dev, attr); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 578 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 579 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 580 | EXPORT_SYMBOL_GPL(spu_remove_dev_attr); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 581 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 582 | void spu_remove_dev_attr_group(struct attribute_group *attrs) |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 583 | { |
| 584 | struct spu *spu; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 585 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 586 | mutex_lock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 587 | list_for_each_entry(spu, &spu_full_list, full_list) |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 588 | sysfs_remove_group(&spu->dev.kobj, attrs); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 589 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 590 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 591 | EXPORT_SYMBOL_GPL(spu_remove_dev_attr_group); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 592 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 593 | static int spu_create_dev(struct spu *spu) |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 594 | { |
| 595 | int ret; |
| 596 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 597 | spu->dev.id = spu->number; |
| 598 | spu->dev.bus = &spu_subsys; |
| 599 | ret = device_register(&spu->dev); |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 600 | if (ret) { |
| 601 | printk(KERN_ERR "Can't register SPU %d with sysfs\n", |
| 602 | spu->number); |
| 603 | return ret; |
| 604 | } |
| 605 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 606 | sysfs_add_device_to_node(&spu->dev, spu->node); |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 607 | |
| 608 | return 0; |
| 609 | } |
| 610 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 611 | static int __init create_spu(void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 612 | { |
| 613 | struct spu *spu; |
| 614 | int ret; |
| 615 | static int number; |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 616 | unsigned long flags; |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 617 | struct timespec ts; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 618 | |
| 619 | ret = -ENOMEM; |
Jeremy Kerr | ecec217 | 2006-06-19 20:33:26 +0200 | [diff] [blame] | 620 | spu = kzalloc(sizeof (*spu), GFP_KERNEL); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 621 | if (!spu) |
| 622 | goto out; |
| 623 | |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 624 | spu->alloc_state = SPU_FREE; |
| 625 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 626 | spin_lock_init(&spu->register_lock); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 627 | spin_lock(&spu_lock); |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 628 | spu->number = number++; |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 629 | spin_unlock(&spu_lock); |
Benjamin Herrenschmidt | e5267b4 | 2006-10-10 15:14:12 +1000 | [diff] [blame] | 630 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 631 | ret = spu_create_spu(spu, data); |
| 632 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 633 | if (ret) |
| 634 | goto out_free; |
| 635 | |
Masato Noguchi | 24f43b3 | 2006-10-24 18:31:14 +0200 | [diff] [blame] | 636 | spu_mfc_sdr_setup(spu); |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 637 | spu_mfc_sr1_set(spu, 0x33); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 638 | ret = spu_request_irqs(spu); |
| 639 | if (ret) |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 640 | goto out_destroy; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 641 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 642 | ret = spu_create_dev(spu); |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 643 | if (ret) |
| 644 | goto out_free_irqs; |
| 645 | |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 646 | mutex_lock(&cbe_spu_info[spu->node].list_mutex); |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 647 | list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus); |
| 648 | cbe_spu_info[spu->node].n_spus++; |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 649 | mutex_unlock(&cbe_spu_info[spu->node].list_mutex); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 650 | |
| 651 | mutex_lock(&spu_full_list_mutex); |
| 652 | spin_lock_irqsave(&spu_full_list_lock, flags); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 653 | list_add(&spu->full_list, &spu_full_list); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 654 | spin_unlock_irqrestore(&spu_full_list_lock, flags); |
| 655 | mutex_unlock(&spu_full_list_mutex); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 656 | |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 657 | spu->stats.util_state = SPU_UTIL_IDLE_LOADED; |
| 658 | ktime_get_ts(&ts); |
| 659 | spu->stats.tstamp = timespec_to_ns(&ts); |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 660 | |
Arnd Bergmann | 9d92af6 | 2007-07-20 21:39:45 +0200 | [diff] [blame] | 661 | INIT_LIST_HEAD(&spu->aff_list); |
| 662 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 663 | goto out; |
| 664 | |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 665 | out_free_irqs: |
| 666 | spu_free_irqs(spu); |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 667 | out_destroy: |
| 668 | spu_destroy_spu(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 669 | out_free: |
| 670 | kfree(spu); |
| 671 | out: |
| 672 | return ret; |
| 673 | } |
| 674 | |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 675 | static const char *spu_state_names[] = { |
| 676 | "user", "system", "iowait", "idle" |
| 677 | }; |
| 678 | |
| 679 | static unsigned long long spu_acct_time(struct spu *spu, |
| 680 | enum spu_utilization_state state) |
| 681 | { |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 682 | struct timespec ts; |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 683 | unsigned long long time = spu->stats.times[state]; |
| 684 | |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 685 | /* |
| 686 | * If the spu is idle or the context is stopped, utilization |
| 687 | * statistics are not updated. Apply the time delta from the |
| 688 | * last recorded state of the spu. |
| 689 | */ |
| 690 | if (spu->stats.util_state == state) { |
| 691 | ktime_get_ts(&ts); |
| 692 | time += timespec_to_ns(&ts) - spu->stats.tstamp; |
| 693 | } |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 694 | |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 695 | return time / NSEC_PER_MSEC; |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 699 | static ssize_t spu_stat_show(struct device *dev, |
| 700 | struct device_attribute *attr, char *buf) |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 701 | { |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 702 | struct spu *spu = container_of(dev, struct spu, dev); |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 703 | |
| 704 | return sprintf(buf, "%s %llu %llu %llu %llu " |
| 705 | "%llu %llu %llu %llu %llu %llu %llu %llu\n", |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 706 | spu_state_names[spu->stats.util_state], |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 707 | spu_acct_time(spu, SPU_UTIL_USER), |
| 708 | spu_acct_time(spu, SPU_UTIL_SYSTEM), |
| 709 | spu_acct_time(spu, SPU_UTIL_IOWAIT), |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 710 | spu_acct_time(spu, SPU_UTIL_IDLE_LOADED), |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 711 | spu->stats.vol_ctx_switch, |
| 712 | spu->stats.invol_ctx_switch, |
| 713 | spu->stats.slb_flt, |
| 714 | spu->stats.hash_flt, |
| 715 | spu->stats.min_flt, |
| 716 | spu->stats.maj_flt, |
| 717 | spu->stats.class2_intr, |
| 718 | spu->stats.libassist); |
| 719 | } |
| 720 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 721 | static DEVICE_ATTR(stat, 0644, spu_stat_show, NULL); |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 722 | |
Anton Blanchard | 158d5b5e | 2011-01-21 13:43:59 +1100 | [diff] [blame] | 723 | #ifdef CONFIG_KEXEC |
| 724 | |
| 725 | struct crash_spu_info { |
| 726 | struct spu *spu; |
| 727 | u32 saved_spu_runcntl_RW; |
| 728 | u32 saved_spu_status_R; |
| 729 | u32 saved_spu_npc_RW; |
| 730 | u64 saved_mfc_sr1_RW; |
| 731 | u64 saved_mfc_dar; |
| 732 | u64 saved_mfc_dsisr; |
| 733 | }; |
| 734 | |
| 735 | #define CRASH_NUM_SPUS 16 /* Enough for current hardware */ |
| 736 | static struct crash_spu_info crash_spu_info[CRASH_NUM_SPUS]; |
| 737 | |
| 738 | static void crash_kexec_stop_spus(void) |
| 739 | { |
| 740 | struct spu *spu; |
| 741 | int i; |
| 742 | u64 tmp; |
| 743 | |
| 744 | for (i = 0; i < CRASH_NUM_SPUS; i++) { |
| 745 | if (!crash_spu_info[i].spu) |
| 746 | continue; |
| 747 | |
| 748 | spu = crash_spu_info[i].spu; |
| 749 | |
| 750 | crash_spu_info[i].saved_spu_runcntl_RW = |
| 751 | in_be32(&spu->problem->spu_runcntl_RW); |
| 752 | crash_spu_info[i].saved_spu_status_R = |
| 753 | in_be32(&spu->problem->spu_status_R); |
| 754 | crash_spu_info[i].saved_spu_npc_RW = |
| 755 | in_be32(&spu->problem->spu_npc_RW); |
| 756 | |
| 757 | crash_spu_info[i].saved_mfc_dar = spu_mfc_dar_get(spu); |
| 758 | crash_spu_info[i].saved_mfc_dsisr = spu_mfc_dsisr_get(spu); |
| 759 | tmp = spu_mfc_sr1_get(spu); |
| 760 | crash_spu_info[i].saved_mfc_sr1_RW = tmp; |
| 761 | |
| 762 | tmp &= ~MFC_STATE1_MASTER_RUN_CONTROL_MASK; |
| 763 | spu_mfc_sr1_set(spu, tmp); |
| 764 | |
| 765 | __delay(200); |
| 766 | } |
| 767 | } |
| 768 | |
| 769 | static void crash_register_spus(struct list_head *list) |
| 770 | { |
| 771 | struct spu *spu; |
| 772 | int ret; |
| 773 | |
| 774 | list_for_each_entry(spu, list, full_list) { |
| 775 | if (WARN_ON(spu->number >= CRASH_NUM_SPUS)) |
| 776 | continue; |
| 777 | |
| 778 | crash_spu_info[spu->number].spu = spu; |
| 779 | } |
| 780 | |
| 781 | ret = crash_shutdown_register(&crash_kexec_stop_spus); |
| 782 | if (ret) |
| 783 | printk(KERN_ERR "Could not register SPU crash handler"); |
| 784 | } |
| 785 | |
| 786 | #else |
| 787 | static inline void crash_register_spus(struct list_head *list) |
| 788 | { |
| 789 | } |
| 790 | #endif |
| 791 | |
Rafael J. Wysocki | f5a592f | 2011-04-26 19:14:57 +0200 | [diff] [blame] | 792 | static void spu_shutdown(void) |
| 793 | { |
| 794 | struct spu *spu; |
| 795 | |
| 796 | mutex_lock(&spu_full_list_mutex); |
| 797 | list_for_each_entry(spu, &spu_full_list, full_list) { |
| 798 | spu_free_irqs(spu); |
| 799 | spu_destroy_spu(spu); |
| 800 | } |
| 801 | mutex_unlock(&spu_full_list_mutex); |
| 802 | } |
| 803 | |
| 804 | static struct syscore_ops spu_syscore_ops = { |
| 805 | .shutdown = spu_shutdown, |
| 806 | }; |
| 807 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 808 | static int __init init_spu_base(void) |
| 809 | { |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 810 | int i, ret = 0; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 811 | |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 812 | for (i = 0; i < MAX_NUMNODES; i++) { |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 813 | mutex_init(&cbe_spu_info[i].list_mutex); |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 814 | INIT_LIST_HEAD(&cbe_spu_info[i].spus); |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 815 | } |
Jeremy Kerr | ccf17e9 | 2007-04-23 21:08:29 +0200 | [diff] [blame] | 816 | |
Stephen Rothwell | da06aa0 | 2006-11-27 19:18:54 +0100 | [diff] [blame] | 817 | if (!spu_management_ops) |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 818 | goto out; |
Stephen Rothwell | da06aa0 | 2006-11-27 19:18:54 +0100 | [diff] [blame] | 819 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 820 | /* create system subsystem for spus */ |
| 821 | ret = subsys_system_register(&spu_subsys, NULL); |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 822 | if (ret) |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 823 | goto out; |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 824 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 825 | ret = spu_enumerate_spus(create_spu); |
| 826 | |
Geert Uytterhoeven | bce9451 | 2007-07-17 04:05:52 -0700 | [diff] [blame] | 827 | if (ret < 0) { |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 828 | printk(KERN_WARNING "%s: Error initializing spus\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 829 | __func__); |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 830 | goto out_unregister_subsys; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 831 | } |
Michael Ellerman | ff8a8f2 | 2006-10-24 18:31:27 +0200 | [diff] [blame] | 832 | |
Geert Uytterhoeven | ae52bb2 | 2009-06-16 15:34:19 -0700 | [diff] [blame] | 833 | if (ret > 0) |
Geert Uytterhoeven | bce9451 | 2007-07-17 04:05:52 -0700 | [diff] [blame] | 834 | fb_append_extra_logo(&logo_spe_clut224, ret); |
Geert Uytterhoeven | bce9451 | 2007-07-17 04:05:52 -0700 | [diff] [blame] | 835 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 836 | mutex_lock(&spu_full_list_mutex); |
Michael Ellerman | ff8a8f2 | 2006-10-24 18:31:27 +0200 | [diff] [blame] | 837 | xmon_register_spus(&spu_full_list); |
Andre Detsch | 8d2655e | 2007-07-20 21:39:27 +0200 | [diff] [blame] | 838 | crash_register_spus(&spu_full_list); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 839 | mutex_unlock(&spu_full_list_mutex); |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 840 | spu_add_dev_attr(&dev_attr_stat); |
Rafael J. Wysocki | f5a592f | 2011-04-26 19:14:57 +0200 | [diff] [blame] | 841 | register_syscore_ops(&spu_syscore_ops); |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 842 | |
Andre Detsch | f599644 | 2007-08-03 18:53:46 -0700 | [diff] [blame] | 843 | spu_init_affinity(); |
Arnd Bergmann | 3ad216c | 2007-07-20 21:39:46 +0200 | [diff] [blame] | 844 | |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 845 | return 0; |
| 846 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame^] | 847 | out_unregister_subsys: |
| 848 | bus_unregister(&spu_subsys); |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 849 | out: |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 850 | return ret; |
| 851 | } |
| 852 | module_init(init_spu_base); |
| 853 | |
| 854 | MODULE_LICENSE("GPL"); |
| 855 | MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>"); |