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> |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 35 | #include <asm/spu.h> |
Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 36 | #include <asm/spu_priv1.h> |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame^] | 37 | #include <asm/spu_csa.h> |
Michael Ellerman | ff8a8f2 | 2006-10-24 18:31:27 +0200 | [diff] [blame] | 38 | #include <asm/xmon.h> |
Arnd Bergmann | 3ad216c | 2007-07-20 21:39:46 +0200 | [diff] [blame] | 39 | #include <asm/prom.h> |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 40 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 41 | const struct spu_management_ops *spu_management_ops; |
Jeremy Kerr | ccf17e9 | 2007-04-23 21:08:29 +0200 | [diff] [blame] | 42 | EXPORT_SYMBOL_GPL(spu_management_ops); |
| 43 | |
Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 44 | const struct spu_priv1_ops *spu_priv1_ops; |
Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 45 | EXPORT_SYMBOL_GPL(spu_priv1_ops); |
| 46 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 47 | struct cbe_spu_info cbe_spu_info[MAX_NUMNODES]; |
| 48 | EXPORT_SYMBOL_GPL(cbe_spu_info); |
| 49 | |
| 50 | /* |
Jeremy Kerr | 3ce2f62 | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 51 | * The spufs fault-handling code needs to call force_sig_info to raise signals |
| 52 | * on DMA errors. Export it here to avoid general kernel-wide access to this |
| 53 | * function |
| 54 | */ |
| 55 | EXPORT_SYMBOL_GPL(force_sig_info); |
| 56 | |
| 57 | /* |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 58 | * Protects cbe_spu_info and spu->number. |
| 59 | */ |
| 60 | static DEFINE_SPINLOCK(spu_lock); |
| 61 | |
| 62 | /* |
| 63 | * List of all spus in the system. |
| 64 | * |
| 65 | * This list is iterated by callers from irq context and callers that |
| 66 | * want to sleep. Thus modifications need to be done with both |
| 67 | * spu_full_list_lock and spu_full_list_mutex held, while iterating |
| 68 | * through it requires either of these locks. |
| 69 | * |
| 70 | * In addition spu_full_list_lock protects all assignmens to |
| 71 | * spu->mm. |
| 72 | */ |
| 73 | static LIST_HEAD(spu_full_list); |
| 74 | static DEFINE_SPINLOCK(spu_full_list_lock); |
| 75 | static DEFINE_MUTEX(spu_full_list_mutex); |
| 76 | |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame^] | 77 | struct spu_slb { |
| 78 | u64 esid, vsid; |
| 79 | }; |
| 80 | |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 81 | void spu_invalidate_slbs(struct spu *spu) |
| 82 | { |
| 83 | struct spu_priv2 __iomem *priv2 = spu->priv2; |
| 84 | |
| 85 | if (spu_mfc_sr1_get(spu) & MFC_STATE1_RELOCATE_MASK) |
| 86 | out_be64(&priv2->slb_invalidate_all_W, 0UL); |
| 87 | } |
| 88 | EXPORT_SYMBOL_GPL(spu_invalidate_slbs); |
| 89 | |
| 90 | /* This is called by the MM core when a segment size is changed, to |
| 91 | * request a flush of all the SPEs using a given mm |
| 92 | */ |
| 93 | void spu_flush_all_slbs(struct mm_struct *mm) |
| 94 | { |
| 95 | struct spu *spu; |
| 96 | unsigned long flags; |
| 97 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 98 | spin_lock_irqsave(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 99 | list_for_each_entry(spu, &spu_full_list, full_list) { |
| 100 | if (spu->mm == mm) |
| 101 | spu_invalidate_slbs(spu); |
| 102 | } |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 103 | spin_unlock_irqrestore(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | /* The hack below stinks... try to do something better one of |
| 107 | * these days... Does it even work properly with NR_CPUS == 1 ? |
| 108 | */ |
| 109 | static inline void mm_needs_global_tlbie(struct mm_struct *mm) |
| 110 | { |
| 111 | int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1; |
| 112 | |
| 113 | /* Global TLBIE broadcast required with SPEs. */ |
| 114 | __cpus_setall(&mm->cpu_vm_mask, nr); |
| 115 | } |
| 116 | |
| 117 | void spu_associate_mm(struct spu *spu, struct mm_struct *mm) |
| 118 | { |
| 119 | unsigned long flags; |
| 120 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 121 | spin_lock_irqsave(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 122 | spu->mm = mm; |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 123 | spin_unlock_irqrestore(&spu_full_list_lock, flags); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 124 | if (mm) |
| 125 | mm_needs_global_tlbie(mm); |
| 126 | } |
| 127 | EXPORT_SYMBOL_GPL(spu_associate_mm); |
| 128 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 129 | static int __spu_trap_invalid_dma(struct spu *spu) |
| 130 | { |
| 131 | pr_debug("%s\n", __FUNCTION__); |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 132 | spu->dma_callback(spu, SPE_EVENT_INVALID_DMA); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | static int __spu_trap_dma_align(struct spu *spu) |
| 137 | { |
| 138 | pr_debug("%s\n", __FUNCTION__); |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 139 | spu->dma_callback(spu, SPE_EVENT_DMA_ALIGNMENT); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 140 | return 0; |
| 141 | } |
| 142 | |
| 143 | static int __spu_trap_error(struct spu *spu) |
| 144 | { |
| 145 | pr_debug("%s\n", __FUNCTION__); |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 146 | spu->dma_callback(spu, SPE_EVENT_SPE_ERROR); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | static void spu_restart_dma(struct spu *spu) |
| 151 | { |
| 152 | struct spu_priv2 __iomem *priv2 = spu->priv2; |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 153 | |
Arnd Bergmann | 8837d92 | 2006-01-04 20:31:28 +0100 | [diff] [blame] | 154 | if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags)) |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 155 | out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 156 | } |
| 157 | |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame^] | 158 | static inline void spu_load_slb(struct spu *spu, int slbe, struct spu_slb *slb) |
| 159 | { |
| 160 | struct spu_priv2 __iomem *priv2 = spu->priv2; |
| 161 | |
| 162 | pr_debug("%s: adding SLB[%d] 0x%016lx 0x%016lx\n", |
| 163 | __func__, slbe, slb->vsid, slb->esid); |
| 164 | |
| 165 | out_be64(&priv2->slb_index_W, slbe); |
| 166 | out_be64(&priv2->slb_vsid_RW, slb->vsid); |
| 167 | out_be64(&priv2->slb_esid_RW, slb->esid); |
| 168 | } |
| 169 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 170 | static int __spu_trap_data_seg(struct spu *spu, unsigned long ea) |
| 171 | { |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 172 | struct spu_priv2 __iomem *priv2 = spu->priv2; |
| 173 | struct mm_struct *mm = spu->mm; |
arnd@arndb.de | 724bd80 | 2006-06-19 20:33:23 +0200 | [diff] [blame] | 174 | u64 esid, vsid, llp; |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 175 | int psize; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 176 | |
| 177 | pr_debug("%s\n", __FUNCTION__); |
| 178 | |
Arnd Bergmann | 8837d92 | 2006-01-04 20:31:28 +0100 | [diff] [blame] | 179 | if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) { |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 180 | /* SLBs are pre-loaded for context switch, so |
| 181 | * we should never get here! |
| 182 | */ |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 183 | printk("%s: invalid access during switch!\n", __func__); |
| 184 | return 1; |
| 185 | } |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 186 | esid = (ea & ESID_MASK) | SLB_ESID_V; |
| 187 | |
| 188 | switch(REGION_ID(ea)) { |
| 189 | case USER_REGION_ID: |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 190 | #ifdef CONFIG_PPC_MM_SLICES |
| 191 | psize = get_slice_psize(mm, ea); |
| 192 | #else |
| 193 | psize = mm->context.user_psize; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 194 | #endif |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 195 | vsid = (get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) | |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 196 | SLB_VSID_USER; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 197 | break; |
| 198 | case VMALLOC_REGION_ID: |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 199 | if (ea < VMALLOC_END) |
| 200 | psize = mmu_vmalloc_psize; |
| 201 | else |
| 202 | psize = mmu_io_psize; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 203 | vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) | |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 204 | SLB_VSID_KERNEL; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 205 | break; |
| 206 | case KERNEL_REGION_ID: |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 207 | psize = mmu_linear_psize; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 208 | vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) | |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 209 | SLB_VSID_KERNEL; |
arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 210 | break; |
| 211 | default: |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 212 | /* Future: support kernel segments so that drivers |
| 213 | * can use SPUs. |
| 214 | */ |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 215 | pr_debug("invalid region access at %016lx\n", ea); |
| 216 | return 1; |
| 217 | } |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 218 | llp = mmu_psize_defs[psize].sllp; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 219 | |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 220 | out_be64(&priv2->slb_index_W, spu->slb_replace); |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 221 | out_be64(&priv2->slb_vsid_RW, vsid | llp); |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 222 | out_be64(&priv2->slb_esid_RW, esid); |
| 223 | |
| 224 | spu->slb_replace++; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 225 | if (spu->slb_replace >= 8) |
| 226 | spu->slb_replace = 0; |
| 227 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 228 | spu_restart_dma(spu); |
Christoph Hellwig | e9f8a0b | 2007-06-29 10:58:03 +1000 | [diff] [blame] | 229 | spu->stats.slb_flt++; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 230 | return 0; |
| 231 | } |
| 232 | |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 233 | 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] | 234 | 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] | 235 | { |
Arnd Bergmann | a33a7d7 | 2006-03-23 00:00:11 +0100 | [diff] [blame] | 236 | pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 237 | |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 238 | /* Handle kernel space hash faults immediately. |
| 239 | User hash faults need to be deferred to process context. */ |
| 240 | if ((dsisr & MFC_DSISR_PTE_NOT_FOUND) |
| 241 | && REGION_ID(ea) != USER_REGION_ID |
| 242 | && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) { |
| 243 | spu_restart_dma(spu); |
| 244 | return 0; |
| 245 | } |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 246 | |
Arnd Bergmann | 8837d92 | 2006-01-04 20:31:28 +0100 | [diff] [blame] | 247 | if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) { |
Mark Nutter | 5473af0 | 2005-11-15 15:53:49 -0500 | [diff] [blame] | 248 | printk("%s: invalid access during switch!\n", __func__); |
| 249 | return 1; |
| 250 | } |
| 251 | |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 252 | spu->dar = ea; |
| 253 | spu->dsisr = dsisr; |
| 254 | mb(); |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 255 | spu->stop_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 256 | return 0; |
| 257 | } |
| 258 | |
Jeremy Kerr | 58bd403 | 2007-12-05 13:49:31 +1100 | [diff] [blame^] | 259 | static void __spu_kernel_slb(void *addr, struct spu_slb *slb) |
| 260 | { |
| 261 | unsigned long ea = (unsigned long)addr; |
| 262 | u64 llp; |
| 263 | |
| 264 | if (REGION_ID(ea) == KERNEL_REGION_ID) |
| 265 | llp = mmu_psize_defs[mmu_linear_psize].sllp; |
| 266 | else |
| 267 | llp = mmu_psize_defs[mmu_virtual_psize].sllp; |
| 268 | |
| 269 | slb->vsid = (get_kernel_vsid(ea, MMU_SEGSIZE_256M) << SLB_VSID_SHIFT) | |
| 270 | SLB_VSID_KERNEL | llp; |
| 271 | slb->esid = (ea & ESID_MASK) | SLB_ESID_V; |
| 272 | } |
| 273 | |
| 274 | /** |
| 275 | * Setup the SPU kernel SLBs, in preparation for a context save/restore. We |
| 276 | * need to map both the context save area, and the save/restore code. |
| 277 | */ |
| 278 | void spu_setup_kernel_slbs(struct spu *spu, struct spu_lscsa *lscsa, void *code) |
| 279 | { |
| 280 | struct spu_slb code_slb, lscsa_slb; |
| 281 | |
| 282 | __spu_kernel_slb(lscsa, &lscsa_slb); |
| 283 | __spu_kernel_slb(code, &code_slb); |
| 284 | |
| 285 | spu_load_slb(spu, 0, &lscsa_slb); |
| 286 | if (lscsa_slb.esid != code_slb.esid) |
| 287 | spu_load_slb(spu, 1, &code_slb); |
| 288 | } |
| 289 | EXPORT_SYMBOL_GPL(spu_setup_kernel_slbs); |
| 290 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 291 | static irqreturn_t |
Olaf Hering | f5a9245 | 2006-10-06 22:52:16 +0200 | [diff] [blame] | 292 | spu_irq_class_0(int irq, void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 293 | { |
| 294 | struct spu *spu; |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 295 | unsigned long stat, mask; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 296 | |
| 297 | spu = data; |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 298 | |
| 299 | mask = spu_int_mask_get(spu, 0); |
| 300 | stat = spu_int_stat_get(spu, 0); |
| 301 | stat &= mask; |
| 302 | |
| 303 | spin_lock(&spu->register_lock); |
| 304 | spu->class_0_pending |= stat; |
| 305 | spin_unlock(&spu->register_lock); |
| 306 | |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 307 | spu->stop_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 308 | |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 309 | spu_int_stat_clear(spu, 0, stat); |
| 310 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 311 | return IRQ_HANDLED; |
| 312 | } |
| 313 | |
Arnd Bergmann | 5110459 | 2005-12-05 22:52:25 -0500 | [diff] [blame] | 314 | int |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 315 | spu_irq_class_0_bottom(struct spu *spu) |
| 316 | { |
Ishizaki Kou | 3650cfe | 2007-01-12 09:52:41 +0900 | [diff] [blame] | 317 | unsigned long flags; |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 318 | unsigned long stat; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 319 | |
Ishizaki Kou | 3650cfe | 2007-01-12 09:52:41 +0900 | [diff] [blame] | 320 | spin_lock_irqsave(&spu->register_lock, flags); |
Masato Noguchi | b7f90a4 | 2007-09-07 18:28:27 +1000 | [diff] [blame] | 321 | stat = spu->class_0_pending; |
| 322 | spu->class_0_pending = 0; |
Arnd Bergmann | 3a843d7 | 2005-12-05 22:52:27 -0500 | [diff] [blame] | 323 | |
Arnd Bergmann | 2cd90bc | 2006-06-23 20:57:50 +0200 | [diff] [blame] | 324 | if (stat & 1) /* invalid DMA alignment */ |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 325 | __spu_trap_dma_align(spu); |
| 326 | |
Arnd Bergmann | 2cd90bc | 2006-06-23 20:57:50 +0200 | [diff] [blame] | 327 | if (stat & 2) /* invalid MFC DMA */ |
| 328 | __spu_trap_invalid_dma(spu); |
| 329 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 330 | if (stat & 4) /* error on SPU */ |
| 331 | __spu_trap_error(spu); |
| 332 | |
Ishizaki Kou | 3650cfe | 2007-01-12 09:52:41 +0900 | [diff] [blame] | 333 | spin_unlock_irqrestore(&spu->register_lock, flags); |
Arnd Bergmann | 5110459 | 2005-12-05 22:52:25 -0500 | [diff] [blame] | 334 | |
| 335 | return (stat & 0x7) ? -EIO : 0; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 336 | } |
Arnd Bergmann | 5110459 | 2005-12-05 22:52:25 -0500 | [diff] [blame] | 337 | EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 338 | |
| 339 | static irqreturn_t |
Olaf Hering | f5a9245 | 2006-10-06 22:52:16 +0200 | [diff] [blame] | 340 | spu_irq_class_1(int irq, void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 341 | { |
| 342 | struct spu *spu; |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 343 | unsigned long stat, mask, dar, dsisr; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 344 | |
| 345 | spu = data; |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 346 | |
| 347 | /* atomically read & clear class1 status. */ |
| 348 | spin_lock(&spu->register_lock); |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 349 | mask = spu_int_mask_get(spu, 1); |
| 350 | stat = spu_int_stat_get(spu, 1) & mask; |
| 351 | dar = spu_mfc_dar_get(spu); |
| 352 | dsisr = spu_mfc_dsisr_get(spu); |
Arnd Bergmann | 3830734 | 2005-12-09 19:04:18 +0100 | [diff] [blame] | 353 | if (stat & 2) /* mapping fault */ |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 354 | spu_mfc_dsisr_set(spu, 0ul); |
| 355 | spu_int_stat_clear(spu, 1, stat); |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 356 | spin_unlock(&spu->register_lock); |
Arnd Bergmann | a33a7d7 | 2006-03-23 00:00:11 +0100 | [diff] [blame] | 357 | pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat, |
| 358 | dar, dsisr); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 359 | |
| 360 | if (stat & 1) /* segment fault */ |
| 361 | __spu_trap_data_seg(spu, dar); |
| 362 | |
| 363 | if (stat & 2) { /* mapping fault */ |
Arnd Bergmann | 8b3d666 | 2005-11-15 15:53:52 -0500 | [diff] [blame] | 364 | __spu_trap_data_map(spu, dar, dsisr); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | if (stat & 4) /* ls compare & suspend on get */ |
| 368 | ; |
| 369 | |
| 370 | if (stat & 8) /* ls compare & suspend on put */ |
| 371 | ; |
| 372 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 373 | return stat ? IRQ_HANDLED : IRQ_NONE; |
| 374 | } |
| 375 | |
| 376 | static irqreturn_t |
Olaf Hering | f5a9245 | 2006-10-06 22:52:16 +0200 | [diff] [blame] | 377 | spu_irq_class_2(int irq, void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 378 | { |
| 379 | struct spu *spu; |
| 380 | unsigned long stat; |
Arnd Bergmann | 3a843d7 | 2005-12-05 22:52:27 -0500 | [diff] [blame] | 381 | unsigned long mask; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 382 | |
| 383 | spu = data; |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 384 | spin_lock(&spu->register_lock); |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 385 | stat = spu_int_stat_get(spu, 2); |
| 386 | mask = spu_int_mask_get(spu, 2); |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 387 | /* ignore interrupts we're not waiting for */ |
| 388 | stat &= mask; |
| 389 | /* |
| 390 | * mailbox interrupts (0x1 and 0x10) are level triggered. |
| 391 | * mask them now before acknowledging. |
| 392 | */ |
| 393 | if (stat & 0x11) |
| 394 | spu_int_mask_and(spu, 2, ~(stat & 0x11)); |
| 395 | /* acknowledge all interrupts before the callbacks */ |
| 396 | spu_int_stat_clear(spu, 2, stat); |
| 397 | spin_unlock(&spu->register_lock); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 398 | |
Arnd Bergmann | 3a843d7 | 2005-12-05 22:52:27 -0500 | [diff] [blame] | 399 | pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 400 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 401 | if (stat & 1) /* PPC core mailbox */ |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 402 | spu->ibox_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 403 | |
| 404 | if (stat & 2) /* SPU stop-and-signal */ |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 405 | spu->stop_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 406 | |
| 407 | if (stat & 4) /* SPU halted */ |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 408 | spu->stop_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 409 | |
| 410 | if (stat & 8) /* DMA tag group complete */ |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 411 | spu->mfc_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 412 | |
| 413 | if (stat & 0x10) /* SPU mailbox threshold */ |
Masato Noguchi | ba723fe2 | 2006-06-19 20:33:33 +0200 | [diff] [blame] | 414 | spu->wbox_callback(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 415 | |
Christoph Hellwig | e9f8a0b | 2007-06-29 10:58:03 +1000 | [diff] [blame] | 416 | spu->stats.class2_intr++; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 417 | return stat ? IRQ_HANDLED : IRQ_NONE; |
| 418 | } |
| 419 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 420 | static int spu_request_irqs(struct spu *spu) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 421 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 422 | int ret = 0; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 423 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 424 | if (spu->irqs[0] != NO_IRQ) { |
| 425 | snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0", |
| 426 | spu->number); |
| 427 | ret = request_irq(spu->irqs[0], spu_irq_class_0, |
| 428 | IRQF_DISABLED, |
| 429 | spu->irq_c0, spu); |
| 430 | if (ret) |
| 431 | goto bail0; |
| 432 | } |
| 433 | if (spu->irqs[1] != NO_IRQ) { |
| 434 | snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1", |
| 435 | spu->number); |
| 436 | ret = request_irq(spu->irqs[1], spu_irq_class_1, |
| 437 | IRQF_DISABLED, |
| 438 | spu->irq_c1, spu); |
| 439 | if (ret) |
| 440 | goto bail1; |
| 441 | } |
| 442 | if (spu->irqs[2] != NO_IRQ) { |
| 443 | snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2", |
| 444 | spu->number); |
| 445 | ret = request_irq(spu->irqs[2], spu_irq_class_2, |
| 446 | IRQF_DISABLED, |
| 447 | spu->irq_c2, spu); |
| 448 | if (ret) |
| 449 | goto bail2; |
| 450 | } |
| 451 | return 0; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 452 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 453 | bail2: |
| 454 | if (spu->irqs[1] != NO_IRQ) |
| 455 | free_irq(spu->irqs[1], spu); |
| 456 | bail1: |
| 457 | if (spu->irqs[0] != NO_IRQ) |
| 458 | free_irq(spu->irqs[0], spu); |
| 459 | bail0: |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 460 | return ret; |
| 461 | } |
| 462 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 463 | static void spu_free_irqs(struct spu *spu) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 464 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 465 | if (spu->irqs[0] != NO_IRQ) |
| 466 | free_irq(spu->irqs[0], spu); |
| 467 | if (spu->irqs[1] != NO_IRQ) |
| 468 | free_irq(spu->irqs[1], spu); |
| 469 | if (spu->irqs[2] != NO_IRQ) |
| 470 | free_irq(spu->irqs[2], spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 471 | } |
| 472 | |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 473 | void spu_init_channels(struct spu *spu) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 474 | { |
| 475 | static const struct { |
| 476 | unsigned channel; |
| 477 | unsigned count; |
| 478 | } zero_list[] = { |
| 479 | { 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, }, |
| 480 | { 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, }, |
| 481 | }, count_list[] = { |
| 482 | { 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, }, |
| 483 | { 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, }, |
| 484 | { 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, }, |
| 485 | }; |
Arnd Bergmann | 6ff730c | 2006-01-04 20:31:31 +0100 | [diff] [blame] | 486 | struct spu_priv2 __iomem *priv2; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 487 | int i; |
| 488 | |
| 489 | priv2 = spu->priv2; |
| 490 | |
| 491 | /* initialize all channel data to zero */ |
| 492 | for (i = 0; i < ARRAY_SIZE(zero_list); i++) { |
| 493 | int count; |
| 494 | |
| 495 | out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel); |
| 496 | for (count = 0; count < zero_list[i].count; count++) |
| 497 | out_be64(&priv2->spu_chnldata_RW, 0); |
| 498 | } |
| 499 | |
| 500 | /* initialize channel counts to meaningful values */ |
| 501 | for (i = 0; i < ARRAY_SIZE(count_list); i++) { |
| 502 | out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel); |
| 503 | out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count); |
| 504 | } |
| 505 | } |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 506 | EXPORT_SYMBOL_GPL(spu_init_channels); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 507 | |
Geoff Levand | 6deac06 | 2007-06-16 07:17:32 +1000 | [diff] [blame] | 508 | static int spu_shutdown(struct sys_device *sysdev) |
| 509 | { |
| 510 | struct spu *spu = container_of(sysdev, struct spu, sysdev); |
| 511 | |
| 512 | spu_free_irqs(spu); |
| 513 | spu_destroy_spu(spu); |
| 514 | return 0; |
| 515 | } |
| 516 | |
Sebastian Siewior | 1238819 | 2007-09-19 14:38:12 +1000 | [diff] [blame] | 517 | static struct sysdev_class spu_sysdev_class = { |
Geoff Levand | 6deac06 | 2007-06-16 07:17:32 +1000 | [diff] [blame] | 518 | set_kset_name("spu"), |
| 519 | .shutdown = spu_shutdown, |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 520 | }; |
| 521 | |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 522 | int spu_add_sysdev_attr(struct sysdev_attribute *attr) |
| 523 | { |
| 524 | struct spu *spu; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 525 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 526 | mutex_lock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 527 | list_for_each_entry(spu, &spu_full_list, full_list) |
| 528 | sysdev_create_file(&spu->sysdev, attr); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 529 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 530 | |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 531 | return 0; |
| 532 | } |
| 533 | EXPORT_SYMBOL_GPL(spu_add_sysdev_attr); |
| 534 | |
| 535 | int spu_add_sysdev_attr_group(struct attribute_group *attrs) |
| 536 | { |
| 537 | struct spu *spu; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 538 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 539 | mutex_lock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 540 | list_for_each_entry(spu, &spu_full_list, full_list) |
| 541 | sysfs_create_group(&spu->sysdev.kobj, attrs); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 542 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 543 | |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 544 | return 0; |
| 545 | } |
| 546 | EXPORT_SYMBOL_GPL(spu_add_sysdev_attr_group); |
| 547 | |
| 548 | |
| 549 | void spu_remove_sysdev_attr(struct sysdev_attribute *attr) |
| 550 | { |
| 551 | struct spu *spu; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 552 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 553 | mutex_lock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 554 | list_for_each_entry(spu, &spu_full_list, full_list) |
| 555 | sysdev_remove_file(&spu->sysdev, attr); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 556 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 557 | } |
| 558 | EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr); |
| 559 | |
| 560 | void spu_remove_sysdev_attr_group(struct attribute_group *attrs) |
| 561 | { |
| 562 | struct spu *spu; |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 563 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 564 | mutex_lock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 565 | list_for_each_entry(spu, &spu_full_list, full_list) |
| 566 | sysfs_remove_group(&spu->sysdev.kobj, attrs); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 567 | mutex_unlock(&spu_full_list_mutex); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 568 | } |
| 569 | EXPORT_SYMBOL_GPL(spu_remove_sysdev_attr_group); |
| 570 | |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 571 | static int spu_create_sysdev(struct spu *spu) |
| 572 | { |
| 573 | int ret; |
| 574 | |
| 575 | spu->sysdev.id = spu->number; |
| 576 | spu->sysdev.cls = &spu_sysdev_class; |
| 577 | ret = sysdev_register(&spu->sysdev); |
| 578 | if (ret) { |
| 579 | printk(KERN_ERR "Can't register SPU %d with sysfs\n", |
| 580 | spu->number); |
| 581 | return ret; |
| 582 | } |
| 583 | |
Geoff Levand | 0021550 | 2006-11-20 18:45:02 +0100 | [diff] [blame] | 584 | sysfs_add_device_to_node(&spu->sysdev, spu->node); |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 585 | |
| 586 | return 0; |
| 587 | } |
| 588 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 589 | static int __init create_spu(void *data) |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 590 | { |
| 591 | struct spu *spu; |
| 592 | int ret; |
| 593 | static int number; |
Benjamin Herrenschmidt | 94b2a43 | 2007-03-10 00:05:37 +0100 | [diff] [blame] | 594 | unsigned long flags; |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 595 | struct timespec ts; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 596 | |
| 597 | ret = -ENOMEM; |
Jeremy Kerr | ecec217 | 2006-06-19 20:33:26 +0200 | [diff] [blame] | 598 | spu = kzalloc(sizeof (*spu), GFP_KERNEL); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 599 | if (!spu) |
| 600 | goto out; |
| 601 | |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 602 | spu->alloc_state = SPU_FREE; |
| 603 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 604 | spin_lock_init(&spu->register_lock); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 605 | spin_lock(&spu_lock); |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 606 | spu->number = number++; |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 607 | spin_unlock(&spu_lock); |
Benjamin Herrenschmidt | e5267b4 | 2006-10-10 15:14:12 +1000 | [diff] [blame] | 608 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 609 | ret = spu_create_spu(spu, data); |
| 610 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 611 | if (ret) |
| 612 | goto out_free; |
| 613 | |
Masato Noguchi | 24f43b3 | 2006-10-24 18:31:14 +0200 | [diff] [blame] | 614 | spu_mfc_sdr_setup(spu); |
Arnd Bergmann | f0831ac | 2006-01-04 20:31:30 +0100 | [diff] [blame] | 615 | spu_mfc_sr1_set(spu, 0x33); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 616 | ret = spu_request_irqs(spu); |
| 617 | if (ret) |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 618 | goto out_destroy; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 619 | |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 620 | ret = spu_create_sysdev(spu); |
| 621 | if (ret) |
| 622 | goto out_free_irqs; |
| 623 | |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 624 | mutex_lock(&cbe_spu_info[spu->node].list_mutex); |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 625 | list_add(&spu->cbe_list, &cbe_spu_info[spu->node].spus); |
| 626 | cbe_spu_info[spu->node].n_spus++; |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 627 | mutex_unlock(&cbe_spu_info[spu->node].list_mutex); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 628 | |
| 629 | mutex_lock(&spu_full_list_mutex); |
| 630 | spin_lock_irqsave(&spu_full_list_lock, flags); |
Christian Krafft | e570beb | 2006-10-24 18:31:23 +0200 | [diff] [blame] | 631 | list_add(&spu->full_list, &spu_full_list); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 632 | spin_unlock_irqrestore(&spu_full_list_lock, flags); |
| 633 | mutex_unlock(&spu_full_list_mutex); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 634 | |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 635 | spu->stats.util_state = SPU_UTIL_IDLE_LOADED; |
| 636 | ktime_get_ts(&ts); |
| 637 | spu->stats.tstamp = timespec_to_ns(&ts); |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 638 | |
Arnd Bergmann | 9d92af6 | 2007-07-20 21:39:45 +0200 | [diff] [blame] | 639 | INIT_LIST_HEAD(&spu->aff_list); |
| 640 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 641 | goto out; |
| 642 | |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 643 | out_free_irqs: |
| 644 | spu_free_irqs(spu); |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 645 | out_destroy: |
| 646 | spu_destroy_spu(spu); |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 647 | out_free: |
| 648 | kfree(spu); |
| 649 | out: |
| 650 | return ret; |
| 651 | } |
| 652 | |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 653 | static const char *spu_state_names[] = { |
| 654 | "user", "system", "iowait", "idle" |
| 655 | }; |
| 656 | |
| 657 | static unsigned long long spu_acct_time(struct spu *spu, |
| 658 | enum spu_utilization_state state) |
| 659 | { |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 660 | struct timespec ts; |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 661 | unsigned long long time = spu->stats.times[state]; |
| 662 | |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 663 | /* |
| 664 | * If the spu is idle or the context is stopped, utilization |
| 665 | * statistics are not updated. Apply the time delta from the |
| 666 | * last recorded state of the spu. |
| 667 | */ |
| 668 | if (spu->stats.util_state == state) { |
| 669 | ktime_get_ts(&ts); |
| 670 | time += timespec_to_ns(&ts) - spu->stats.tstamp; |
| 671 | } |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 672 | |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 673 | return time / NSEC_PER_MSEC; |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | |
| 677 | static ssize_t spu_stat_show(struct sys_device *sysdev, char *buf) |
| 678 | { |
| 679 | struct spu *spu = container_of(sysdev, struct spu, sysdev); |
| 680 | |
| 681 | return sprintf(buf, "%s %llu %llu %llu %llu " |
| 682 | "%llu %llu %llu %llu %llu %llu %llu %llu\n", |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 683 | spu_state_names[spu->stats.util_state], |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 684 | spu_acct_time(spu, SPU_UTIL_USER), |
| 685 | spu_acct_time(spu, SPU_UTIL_SYSTEM), |
| 686 | spu_acct_time(spu, SPU_UTIL_IOWAIT), |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 687 | spu_acct_time(spu, SPU_UTIL_IDLE_LOADED), |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 688 | spu->stats.vol_ctx_switch, |
| 689 | spu->stats.invol_ctx_switch, |
| 690 | spu->stats.slb_flt, |
| 691 | spu->stats.hash_flt, |
| 692 | spu->stats.min_flt, |
| 693 | spu->stats.maj_flt, |
| 694 | spu->stats.class2_intr, |
| 695 | spu->stats.libassist); |
| 696 | } |
| 697 | |
| 698 | static SYSDEV_ATTR(stat, 0644, spu_stat_show, NULL); |
| 699 | |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 700 | static int __init init_spu_base(void) |
| 701 | { |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 702 | int i, ret = 0; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 703 | |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 704 | for (i = 0; i < MAX_NUMNODES; i++) { |
Christoph Hellwig | 486acd4 | 2007-07-20 21:39:54 +0200 | [diff] [blame] | 705 | mutex_init(&cbe_spu_info[i].list_mutex); |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 706 | INIT_LIST_HEAD(&cbe_spu_info[i].spus); |
Arnd Bergmann | aa6d5b2 | 2007-07-20 21:39:44 +0200 | [diff] [blame] | 707 | } |
Jeremy Kerr | ccf17e9 | 2007-04-23 21:08:29 +0200 | [diff] [blame] | 708 | |
Stephen Rothwell | da06aa0 | 2006-11-27 19:18:54 +0100 | [diff] [blame] | 709 | if (!spu_management_ops) |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 710 | goto out; |
Stephen Rothwell | da06aa0 | 2006-11-27 19:18:54 +0100 | [diff] [blame] | 711 | |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 712 | /* create sysdev class for spus */ |
| 713 | ret = sysdev_class_register(&spu_sysdev_class); |
| 714 | if (ret) |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 715 | goto out; |
Jeremy Kerr | 1d64093 | 2006-06-19 20:33:19 +0200 | [diff] [blame] | 716 | |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 717 | ret = spu_enumerate_spus(create_spu); |
| 718 | |
Geert Uytterhoeven | bce9451 | 2007-07-17 04:05:52 -0700 | [diff] [blame] | 719 | if (ret < 0) { |
Geoff Levand | e28b003 | 2006-11-23 00:46:49 +0100 | [diff] [blame] | 720 | printk(KERN_WARNING "%s: Error initializing spus\n", |
| 721 | __FUNCTION__); |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 722 | goto out_unregister_sysdev_class; |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 723 | } |
Michael Ellerman | ff8a8f2 | 2006-10-24 18:31:27 +0200 | [diff] [blame] | 724 | |
Geert Uytterhoeven | bce9451 | 2007-07-17 04:05:52 -0700 | [diff] [blame] | 725 | if (ret > 0) { |
| 726 | /* |
| 727 | * We cannot put the forward declaration in |
| 728 | * <linux/linux_logo.h> because of conflicting session type |
| 729 | * conflicts for const and __initdata with different compiler |
| 730 | * versions |
| 731 | */ |
| 732 | extern const struct linux_logo logo_spe_clut224; |
| 733 | |
| 734 | fb_append_extra_logo(&logo_spe_clut224, ret); |
| 735 | } |
| 736 | |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 737 | mutex_lock(&spu_full_list_mutex); |
Michael Ellerman | ff8a8f2 | 2006-10-24 18:31:27 +0200 | [diff] [blame] | 738 | xmon_register_spus(&spu_full_list); |
Andre Detsch | 8d2655e | 2007-07-20 21:39:27 +0200 | [diff] [blame] | 739 | crash_register_spus(&spu_full_list); |
Christoph Hellwig | 2414059 | 2007-07-20 21:39:51 +0200 | [diff] [blame] | 740 | mutex_unlock(&spu_full_list_mutex); |
Christoph Hellwig | fe2f896 | 2007-06-29 10:58:07 +1000 | [diff] [blame] | 741 | spu_add_sysdev_attr(&attr_stat); |
| 742 | |
Andre Detsch | f599644 | 2007-08-03 18:53:46 -0700 | [diff] [blame] | 743 | spu_init_affinity(); |
Arnd Bergmann | 3ad216c | 2007-07-20 21:39:46 +0200 | [diff] [blame] | 744 | |
Christoph Hellwig | befdc74 | 2007-04-23 21:08:28 +0200 | [diff] [blame] | 745 | return 0; |
| 746 | |
| 747 | out_unregister_sysdev_class: |
| 748 | sysdev_class_unregister(&spu_sysdev_class); |
| 749 | out: |
Arnd Bergmann | 67207b9 | 2005-11-15 15:53:48 -0500 | [diff] [blame] | 750 | return ret; |
| 751 | } |
| 752 | module_init(init_spu_base); |
| 753 | |
| 754 | MODULE_LICENSE("GPL"); |
| 755 | MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>"); |