arnd@arndb.de | 0afacde | 2006-10-24 18:31:18 +0200 | [diff] [blame] | 1 | #define DEBUG |
| 2 | |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 3 | #include <linux/wait.h> |
| 4 | #include <linux/ptrace.h> |
| 5 | |
| 6 | #include <asm/spu.h> |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 7 | #include <asm/spu_priv1.h> |
| 8 | #include <asm/io.h> |
Dave Jones | cfff5b2 | 2006-03-31 23:53:09 -0500 | [diff] [blame] | 9 | #include <asm/unistd.h> |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 10 | |
| 11 | #include "spufs.h" |
| 12 | |
| 13 | /* interrupt-level stop callback function. */ |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 14 | void spufs_stop_callback(struct spu *spu, int irq) |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 15 | { |
| 16 | struct spu_context *ctx = spu->ctx; |
| 17 | |
Jeremy Kerr | d6ad39b | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 18 | /* |
| 19 | * It should be impossible to preempt a context while an exception |
| 20 | * is being processed, since the context switch code is specially |
| 21 | * coded to deal with interrupts ... But, just in case, sanity check |
| 22 | * the context pointer. It is OK to return doing nothing since |
| 23 | * the exception will be regenerated when the context is resumed. |
| 24 | */ |
| 25 | if (ctx) { |
| 26 | /* Copy exception arguments into module specific structure */ |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 27 | switch(irq) { |
| 28 | case 0 : |
| 29 | ctx->csa.class_0_pending = spu->class_0_pending; |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 30 | ctx->csa.class_0_dar = spu->class_0_dar; |
| 31 | break; |
| 32 | case 1 : |
| 33 | ctx->csa.class_1_dsisr = spu->class_1_dsisr; |
| 34 | ctx->csa.class_1_dar = spu->class_1_dar; |
| 35 | break; |
| 36 | case 2 : |
| 37 | break; |
| 38 | } |
Jeremy Kerr | d6ad39b | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 39 | |
| 40 | /* ensure that the exception status has hit memory before a |
| 41 | * thread waiting on the context's stop queue is woken */ |
| 42 | smp_wmb(); |
| 43 | |
| 44 | wake_up_all(&ctx->stop_wq); |
| 45 | } |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 46 | } |
| 47 | |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 48 | int spu_stopped(struct spu_context *ctx, u32 *stat) |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 49 | { |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 50 | u64 dsisr; |
| 51 | u32 stopped; |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 52 | |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 53 | stopped = SPU_STATUS_INVALID_INSTR | SPU_STATUS_SINGLE_STEP | |
| 54 | SPU_STATUS_STOPPED_BY_HALT | SPU_STATUS_STOPPED_BY_STOP; |
Luke Browning | d84050f | 2008-05-29 17:46:10 -0300 | [diff] [blame] | 55 | |
| 56 | top: |
| 57 | *stat = ctx->ops->status_read(ctx); |
| 58 | if (*stat & stopped) { |
| 59 | /* |
| 60 | * If the spu hasn't finished stopping, we need to |
| 61 | * re-read the register to get the stopped value. |
| 62 | */ |
| 63 | if (*stat & SPU_STATUS_RUNNING) |
| 64 | goto top; |
| 65 | return 1; |
| 66 | } |
| 67 | |
| 68 | if (test_bit(SPU_SCHED_NOTIFY_ACTIVE, &ctx->sched_flags)) |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 69 | return 1; |
| 70 | |
Luke Browning | f3d69e0 | 2008-04-27 18:41:55 +0000 | [diff] [blame] | 71 | dsisr = ctx->csa.class_1_dsisr; |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 72 | if (dsisr & (MFC_DSISR_PTE_NOT_FOUND | MFC_DSISR_ACCESS_DENIED)) |
| 73 | return 1; |
| 74 | |
| 75 | if (ctx->csa.class_0_pending) |
| 76 | return 1; |
| 77 | |
| 78 | return 0; |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 79 | } |
| 80 | |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 81 | static int spu_setup_isolated(struct spu_context *ctx) |
| 82 | { |
| 83 | int ret; |
| 84 | u64 __iomem *mfc_cntl; |
| 85 | u64 sr1; |
| 86 | u32 status; |
| 87 | unsigned long timeout; |
| 88 | const u32 status_loading = SPU_STATUS_RUNNING |
| 89 | | SPU_STATUS_ISOLATED_STATE | SPU_STATUS_ISOLATED_LOAD_STATUS; |
| 90 | |
Christoph Hellwig | 7ec18ab | 2007-04-23 21:08:12 +0200 | [diff] [blame] | 91 | ret = -ENODEV; |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 92 | if (!isolated_loader) |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 93 | goto out; |
| 94 | |
Christoph Hellwig | 7ec18ab | 2007-04-23 21:08:12 +0200 | [diff] [blame] | 95 | /* |
| 96 | * We need to exclude userspace access to the context. |
| 97 | * |
| 98 | * To protect against memory access we invalidate all ptes |
| 99 | * and make sure the pagefault handlers block on the mutex. |
| 100 | */ |
| 101 | spu_unmap_mappings(ctx); |
| 102 | |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 103 | mfc_cntl = &ctx->spu->priv2->mfc_control_RW; |
| 104 | |
| 105 | /* purge the MFC DMA queue to ensure no spurious accesses before we |
| 106 | * enter kernel mode */ |
| 107 | timeout = jiffies + HZ; |
| 108 | out_be64(mfc_cntl, MFC_CNTL_PURGE_DMA_REQUEST); |
| 109 | while ((in_be64(mfc_cntl) & MFC_CNTL_PURGE_DMA_STATUS_MASK) |
| 110 | != MFC_CNTL_PURGE_DMA_COMPLETE) { |
| 111 | if (time_after(jiffies, timeout)) { |
| 112 | printk(KERN_ERR "%s: timeout flushing MFC DMA queue\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 113 | __func__); |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 114 | ret = -EIO; |
Christoph Hellwig | 7ec18ab | 2007-04-23 21:08:12 +0200 | [diff] [blame] | 115 | goto out; |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 116 | } |
| 117 | cond_resched(); |
| 118 | } |
| 119 | |
| 120 | /* put the SPE in kernel mode to allow access to the loader */ |
| 121 | sr1 = spu_mfc_sr1_get(ctx->spu); |
| 122 | sr1 &= ~MFC_STATE1_PROBLEM_STATE_MASK; |
| 123 | spu_mfc_sr1_set(ctx->spu, sr1); |
| 124 | |
| 125 | /* start the loader */ |
| 126 | ctx->ops->signal1_write(ctx, (unsigned long)isolated_loader >> 32); |
| 127 | ctx->ops->signal2_write(ctx, |
| 128 | (unsigned long)isolated_loader & 0xffffffff); |
| 129 | |
| 130 | ctx->ops->runcntl_write(ctx, |
| 131 | SPU_RUNCNTL_RUNNABLE | SPU_RUNCNTL_ISOLATE); |
| 132 | |
| 133 | ret = 0; |
| 134 | timeout = jiffies + HZ; |
| 135 | while (((status = ctx->ops->status_read(ctx)) & status_loading) == |
| 136 | status_loading) { |
| 137 | if (time_after(jiffies, timeout)) { |
| 138 | printk(KERN_ERR "%s: timeout waiting for loader\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 139 | __func__); |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 140 | ret = -EIO; |
| 141 | goto out_drop_priv; |
| 142 | } |
| 143 | cond_resched(); |
| 144 | } |
| 145 | |
| 146 | if (!(status & SPU_STATUS_RUNNING)) { |
| 147 | /* If isolated LOAD has failed: run SPU, we will get a stop-and |
| 148 | * signal later. */ |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 149 | pr_debug("%s: isolated LOAD failed\n", __func__); |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 150 | ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_RUNNABLE); |
| 151 | ret = -EACCES; |
Christoph Hellwig | 7ec18ab | 2007-04-23 21:08:12 +0200 | [diff] [blame] | 152 | goto out_drop_priv; |
| 153 | } |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 154 | |
Christoph Hellwig | 7ec18ab | 2007-04-23 21:08:12 +0200 | [diff] [blame] | 155 | if (!(status & SPU_STATUS_ISOLATED_STATE)) { |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 156 | /* This isn't allowed by the CBEA, but check anyway */ |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 157 | pr_debug("%s: SPU fell out of isolated mode?\n", __func__); |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 158 | ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_STOP); |
| 159 | ret = -EINVAL; |
Christoph Hellwig | 7ec18ab | 2007-04-23 21:08:12 +0200 | [diff] [blame] | 160 | goto out_drop_priv; |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | out_drop_priv: |
| 164 | /* Finished accessing the loader. Drop kernel mode */ |
| 165 | sr1 |= MFC_STATE1_PROBLEM_STATE_MASK; |
| 166 | spu_mfc_sr1_set(ctx->spu, sr1); |
| 167 | |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 168 | out: |
| 169 | return ret; |
| 170 | } |
| 171 | |
Bob Nelson | 36aaccc | 2007-07-20 21:39:52 +0200 | [diff] [blame] | 172 | static int spu_run_init(struct spu_context *ctx, u32 *npc) |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 173 | { |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 174 | unsigned long runcntl = SPU_RUNCNTL_RUNNABLE; |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 175 | int ret; |
Luke Browning | cc210b3 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 176 | |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 177 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); |
| 178 | |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 179 | /* |
| 180 | * NOSCHED is synchronous scheduling with respect to the caller. |
| 181 | * The caller waits for the context to be loaded. |
| 182 | */ |
| 183 | if (ctx->flags & SPU_CREATE_NOSCHED) { |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 184 | if (ctx->state == SPU_STATE_SAVED) { |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 185 | ret = spu_activate(ctx, 0); |
Christoph Hellwig | 7ec18ab | 2007-04-23 21:08:12 +0200 | [diff] [blame] | 186 | if (ret) |
Christoph Hellwig | aa45e25 | 2007-04-23 21:08:27 +0200 | [diff] [blame] | 187 | return ret; |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 188 | } |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 189 | } |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 190 | |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 191 | /* |
| 192 | * Apply special setup as required. |
| 193 | */ |
| 194 | if (ctx->flags & SPU_CREATE_ISOLATE) { |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 195 | if (!(ctx->ops->status_read(ctx) & SPU_STATUS_ISOLATED_STATE)) { |
| 196 | ret = spu_setup_isolated(ctx); |
| 197 | if (ret) |
| 198 | return ret; |
| 199 | } |
| 200 | |
| 201 | /* |
| 202 | * If userspace has set the runcntrl register (eg, to |
| 203 | * issue an isolated exit), we need to re-set it here |
| 204 | */ |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 205 | runcntl = ctx->ops->runcntl_read(ctx) & |
| 206 | (SPU_RUNCNTL_RUNNABLE | SPU_RUNCNTL_ISOLATE); |
| 207 | if (runcntl == 0) |
| 208 | runcntl = SPU_RUNCNTL_RUNNABLE; |
Christoph Hellwig | 2eb1b12 | 2007-02-13 21:54:29 +0100 | [diff] [blame] | 209 | } else { |
Luke Browning | cc210b3 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 210 | unsigned long privcntl; |
| 211 | |
Benjamin Herrenschmidt | 0516923 | 2007-06-04 15:15:37 +1000 | [diff] [blame] | 212 | if (test_thread_flag(TIF_SINGLESTEP)) |
Luke Browning | cc210b3 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 213 | privcntl = SPU_PRIVCNTL_MODE_SINGLE_STEP; |
| 214 | else |
| 215 | privcntl = SPU_PRIVCNTL_MODE_NORMAL; |
Luke Browning | cc210b3 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 216 | |
Luke Browning | cc210b3 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 217 | ctx->ops->privcntl_write(ctx, privcntl); |
Jeremy Kerr | d9dd421 | 2008-08-13 11:29:31 +1000 | [diff] [blame^] | 218 | ctx->ops->npc_write(ctx, *npc); |
| 219 | } |
| 220 | |
| 221 | ctx->ops->runcntl_write(ctx, runcntl); |
| 222 | |
| 223 | if (ctx->flags & SPU_CREATE_NOSCHED) { |
| 224 | spuctx_switch_state(ctx, SPU_UTIL_USER); |
| 225 | } else { |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 226 | |
| 227 | if (ctx->state == SPU_STATE_SAVED) { |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 228 | ret = spu_activate(ctx, 0); |
| 229 | if (ret) |
| 230 | return ret; |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 231 | } else { |
| 232 | spuctx_switch_state(ctx, SPU_UTIL_USER); |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 233 | } |
Christoph Hellwig | 2eb1b12 | 2007-02-13 21:54:29 +0100 | [diff] [blame] | 234 | } |
Jeremy Kerr | c6730ed | 2006-11-20 18:45:10 +0100 | [diff] [blame] | 235 | |
Jeremy Kerr | ce7c191 | 2008-03-04 20:17:02 +1100 | [diff] [blame] | 236 | set_bit(SPU_SCHED_SPU_RUN, &ctx->sched_flags); |
Christoph Hellwig | aa45e25 | 2007-04-23 21:08:27 +0200 | [diff] [blame] | 237 | return 0; |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 238 | } |
| 239 | |
Bob Nelson | 36aaccc | 2007-07-20 21:39:52 +0200 | [diff] [blame] | 240 | static int spu_run_fini(struct spu_context *ctx, u32 *npc, |
| 241 | u32 *status) |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 242 | { |
| 243 | int ret = 0; |
| 244 | |
Luke Browning | e65c2f6 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 245 | spu_del_from_rq(ctx); |
| 246 | |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 247 | *status = ctx->ops->status_read(ctx); |
| 248 | *npc = ctx->ops->npc_read(ctx); |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 249 | |
| 250 | spuctx_switch_state(ctx, SPU_UTIL_IDLE_LOADED); |
Jeremy Kerr | ce7c191 | 2008-03-04 20:17:02 +1100 | [diff] [blame] | 251 | clear_bit(SPU_SCHED_SPU_RUN, &ctx->sched_flags); |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 252 | spu_release(ctx); |
| 253 | |
| 254 | if (signal_pending(current)) |
| 255 | ret = -ERESTARTSYS; |
Masato Noguchi | 2ebb247 | 2006-11-20 18:45:04 +0100 | [diff] [blame] | 256 | |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 257 | return ret; |
| 258 | } |
| 259 | |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 260 | /* |
| 261 | * SPU syscall restarting is tricky because we violate the basic |
| 262 | * assumption that the signal handler is running on the interrupted |
| 263 | * thread. Here instead, the handler runs on PowerPC user space code, |
| 264 | * while the syscall was called from the SPU. |
| 265 | * This means we can only do a very rough approximation of POSIX |
| 266 | * signal semantics. |
| 267 | */ |
Sebastian Siewior | 1238819 | 2007-09-19 14:38:12 +1000 | [diff] [blame] | 268 | static int spu_handle_restartsys(struct spu_context *ctx, long *spu_ret, |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 269 | unsigned int *npc) |
| 270 | { |
| 271 | int ret; |
| 272 | |
| 273 | switch (*spu_ret) { |
| 274 | case -ERESTARTSYS: |
| 275 | case -ERESTARTNOINTR: |
| 276 | /* |
| 277 | * Enter the regular syscall restarting for |
| 278 | * sys_spu_run, then restart the SPU syscall |
| 279 | * callback. |
| 280 | */ |
| 281 | *npc -= 8; |
| 282 | ret = -ERESTARTSYS; |
| 283 | break; |
| 284 | case -ERESTARTNOHAND: |
| 285 | case -ERESTART_RESTARTBLOCK: |
| 286 | /* |
| 287 | * Restart block is too hard for now, just return -EINTR |
| 288 | * to the SPU. |
| 289 | * ERESTARTNOHAND comes from sys_pause, we also return |
| 290 | * -EINTR from there. |
| 291 | * Assume that we need to be restarted ourselves though. |
| 292 | */ |
| 293 | *spu_ret = -EINTR; |
| 294 | ret = -ERESTARTSYS; |
| 295 | break; |
| 296 | default: |
| 297 | printk(KERN_WARNING "%s: unexpected return code %ld\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 298 | __func__, *spu_ret); |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 299 | ret = 0; |
| 300 | } |
| 301 | return ret; |
| 302 | } |
| 303 | |
Sebastian Siewior | 1238819 | 2007-09-19 14:38:12 +1000 | [diff] [blame] | 304 | static int spu_process_callback(struct spu_context *ctx) |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 305 | { |
| 306 | struct spu_syscall_block s; |
| 307 | u32 ls_pointer, npc; |
Akinobu Mita | 9e2fe2c | 2007-04-23 21:08:22 +0200 | [diff] [blame] | 308 | void __iomem *ls; |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 309 | long spu_ret; |
Jeremy Kerr | d29694f | 2008-04-23 16:02:10 +1000 | [diff] [blame] | 310 | int ret; |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 311 | |
| 312 | /* get syscall block from local store */ |
Akinobu Mita | 9e2fe2c | 2007-04-23 21:08:22 +0200 | [diff] [blame] | 313 | npc = ctx->ops->npc_read(ctx) & ~3; |
| 314 | ls = (void __iomem *)ctx->ops->get_ls(ctx); |
| 315 | ls_pointer = in_be32(ls + npc); |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 316 | if (ls_pointer > (LS_SIZE - sizeof(s))) |
| 317 | return -EFAULT; |
Akinobu Mita | 9e2fe2c | 2007-04-23 21:08:22 +0200 | [diff] [blame] | 318 | memcpy_fromio(&s, ls + ls_pointer, sizeof(s)); |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 319 | |
| 320 | /* do actual syscall without pinning the spu */ |
| 321 | ret = 0; |
| 322 | spu_ret = -ENOSYS; |
| 323 | npc += 4; |
| 324 | |
| 325 | if (s.nr_ret < __NR_syscalls) { |
| 326 | spu_release(ctx); |
| 327 | /* do actual system call from here */ |
| 328 | spu_ret = spu_sys_callback(&s); |
| 329 | if (spu_ret <= -ERESTARTSYS) { |
| 330 | ret = spu_handle_restartsys(ctx, &spu_ret, &npc); |
| 331 | } |
Jeremy Kerr | d29694f | 2008-04-23 16:02:10 +1000 | [diff] [blame] | 332 | mutex_lock(&ctx->state_mutex); |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 333 | if (ret == -ERESTARTSYS) |
| 334 | return ret; |
| 335 | } |
| 336 | |
Jeremy Kerr | 4eb5aef | 2008-03-25 13:32:03 +1100 | [diff] [blame] | 337 | /* need to re-get the ls, as it may have changed when we released the |
| 338 | * spu */ |
| 339 | ls = (void __iomem *)ctx->ops->get_ls(ctx); |
| 340 | |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 341 | /* write result, jump over indirect pointer */ |
Akinobu Mita | 9e2fe2c | 2007-04-23 21:08:22 +0200 | [diff] [blame] | 342 | memcpy_toio(ls + ls_pointer, &spu_ret, sizeof(spu_ret)); |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 343 | ctx->ops->npc_write(ctx, npc); |
| 344 | ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_RUNNABLE); |
| 345 | return ret; |
| 346 | } |
| 347 | |
Jeremy Kerr | 50af32a | 2007-07-20 21:39:42 +0200 | [diff] [blame] | 348 | long spufs_run_spu(struct spu_context *ctx, u32 *npc, u32 *event) |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 349 | { |
| 350 | int ret; |
Bob Nelson | 36aaccc | 2007-07-20 21:39:52 +0200 | [diff] [blame] | 351 | struct spu *spu; |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 352 | u32 status; |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 353 | |
Christoph Hellwig | e45d48a | 2007-04-23 21:08:17 +0200 | [diff] [blame] | 354 | if (mutex_lock_interruptible(&ctx->run_mutex)) |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 355 | return -ERESTARTSYS; |
| 356 | |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 357 | ctx->event_return = 0; |
Christoph Hellwig | aa45e25 | 2007-04-23 21:08:27 +0200 | [diff] [blame] | 358 | |
Christoph Hellwig | c9101bd | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 359 | ret = spu_acquire(ctx); |
| 360 | if (ret) |
| 361 | goto out_unlock; |
Christoph Hellwig | 2cf2b3b | 2007-06-29 10:57:55 +1000 | [diff] [blame] | 362 | |
Jeremy Kerr | c0bace5 | 2008-04-23 14:24:27 +1000 | [diff] [blame] | 363 | spu_enable_spu(ctx); |
| 364 | |
Luke Browning | 9156953 | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 365 | spu_update_sched_info(ctx); |
Christoph Hellwig | aa45e25 | 2007-04-23 21:08:27 +0200 | [diff] [blame] | 366 | |
| 367 | ret = spu_run_init(ctx, npc); |
| 368 | if (ret) { |
| 369 | spu_release(ctx); |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 370 | goto out; |
Christoph Hellwig | aa45e25 | 2007-04-23 21:08:27 +0200 | [diff] [blame] | 371 | } |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 372 | |
| 373 | do { |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 374 | ret = spufs_wait(ctx->stop_wq, spu_stopped(ctx, &status)); |
Christoph Hellwig | eebead5 | 2008-02-08 15:50:41 +1100 | [diff] [blame] | 375 | if (unlikely(ret)) { |
| 376 | /* |
| 377 | * This is nasty: we need the state_mutex for all the |
| 378 | * bookkeeping even if the syscall was interrupted by |
| 379 | * a signal. ewww. |
| 380 | */ |
| 381 | mutex_lock(&ctx->state_mutex); |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 382 | break; |
Christoph Hellwig | eebead5 | 2008-02-08 15:50:41 +1100 | [diff] [blame] | 383 | } |
Bob Nelson | 36aaccc | 2007-07-20 21:39:52 +0200 | [diff] [blame] | 384 | spu = ctx->spu; |
| 385 | if (unlikely(test_and_clear_bit(SPU_SCHED_NOTIFY_ACTIVE, |
| 386 | &ctx->sched_flags))) { |
| 387 | if (!(status & SPU_STATUS_STOPPED_BY_STOP)) { |
| 388 | spu_switch_notify(spu, ctx); |
| 389 | continue; |
| 390 | } |
| 391 | } |
Andre Detsch | 27ec41d | 2007-07-20 21:39:33 +0200 | [diff] [blame] | 392 | |
| 393 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); |
| 394 | |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 395 | if ((status & SPU_STATUS_STOPPED_BY_STOP) && |
| 396 | (status >> SPU_STOP_STATUS_SHIFT == 0x2104)) { |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 397 | ret = spu_process_callback(ctx); |
| 398 | if (ret) |
| 399 | break; |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 400 | status &= ~SPU_STATUS_STOPPED_BY_STOP; |
Arnd Bergmann | 2dd1493 | 2006-03-23 00:00:09 +0100 | [diff] [blame] | 401 | } |
Arnd Bergmann | 57dace2 | 2007-04-23 21:08:15 +0200 | [diff] [blame] | 402 | ret = spufs_handle_class1(ctx); |
| 403 | if (ret) |
| 404 | break; |
| 405 | |
Jeremy Kerr | d6ad39b | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 406 | ret = spufs_handle_class0(ctx); |
| 407 | if (ret) |
| 408 | break; |
| 409 | |
Jeremy Kerr | d6ad39b | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 410 | if (signal_pending(current)) |
| 411 | ret = -ERESTARTSYS; |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 412 | } while (!ret && !(status & (SPU_STATUS_STOPPED_BY_STOP | |
Benjamin Herrenschmidt | 0516923 | 2007-06-04 15:15:37 +1000 | [diff] [blame] | 413 | SPU_STATUS_STOPPED_BY_HALT | |
| 414 | SPU_STATUS_SINGLE_STEP))); |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 415 | |
Masato Noguchi | c25620d | 2007-12-05 13:49:31 +1100 | [diff] [blame] | 416 | spu_disable_spu(ctx); |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 417 | ret = spu_run_fini(ctx, npc, &status); |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 418 | spu_yield(ctx); |
| 419 | |
Christoph Hellwig | 5158e9b | 2008-04-29 17:08:38 +1000 | [diff] [blame] | 420 | spu_switch_log_notify(NULL, ctx, SWITCH_LOG_EXIT, status); |
| 421 | |
Luke Browning | e66686b4 | 2008-02-08 15:50:41 +1100 | [diff] [blame] | 422 | if ((status & SPU_STATUS_STOPPED_BY_STOP) && |
| 423 | (((status >> SPU_STOP_STATUS_SHIFT) & 0x3f00) == 0x2100)) |
| 424 | ctx->stats.libassist++; |
| 425 | |
Masato Noguchi | 2ebb247 | 2006-11-20 18:45:04 +0100 | [diff] [blame] | 426 | if ((ret == 0) || |
| 427 | ((ret == -ERESTARTSYS) && |
| 428 | ((status & SPU_STATUS_STOPPED_BY_HALT) || |
Benjamin Herrenschmidt | 0516923 | 2007-06-04 15:15:37 +1000 | [diff] [blame] | 429 | (status & SPU_STATUS_SINGLE_STEP) || |
Masato Noguchi | 2ebb247 | 2006-11-20 18:45:04 +0100 | [diff] [blame] | 430 | ((status & SPU_STATUS_STOPPED_BY_STOP) && |
| 431 | (status >> SPU_STOP_STATUS_SHIFT != 0x2104))))) |
| 432 | ret = status; |
| 433 | |
Benjamin Herrenschmidt | 0516923 | 2007-06-04 15:15:37 +1000 | [diff] [blame] | 434 | /* Note: we don't need to force_sig SIGTRAP on single-step |
| 435 | * since we have TIF_SINGLESTEP set, thus the kernel will do |
| 436 | * it upon return from the syscall anyawy |
| 437 | */ |
Jeremy Kerr | 60cf54d | 2008-01-11 15:03:26 +1100 | [diff] [blame] | 438 | if (unlikely(status & SPU_STATUS_SINGLE_STEP)) |
| 439 | ret = -ERESTARTSYS; |
| 440 | |
| 441 | else if (unlikely((status & SPU_STATUS_STOPPED_BY_STOP) |
| 442 | && (status >> SPU_STOP_STATUS_SHIFT) == 0x3fff)) { |
Arnd Bergmann | c2b2226 | 2006-11-27 19:18:53 +0100 | [diff] [blame] | 443 | force_sig(SIGTRAP, current); |
| 444 | ret = -ERESTARTSYS; |
Masato Noguchi | 2ebb247 | 2006-11-20 18:45:04 +0100 | [diff] [blame] | 445 | } |
| 446 | |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 447 | out: |
Arnd Bergmann | 9add11d | 2006-10-04 17:26:14 +0200 | [diff] [blame] | 448 | *event = ctx->event_return; |
Christoph Hellwig | c9101bd | 2007-12-20 16:39:59 +0900 | [diff] [blame] | 449 | out_unlock: |
Christoph Hellwig | e45d48a | 2007-04-23 21:08:17 +0200 | [diff] [blame] | 450 | mutex_unlock(&ctx->run_mutex); |
Arnd Bergmann | ce8ab85 | 2006-01-04 20:31:29 +0100 | [diff] [blame] | 451 | return ret; |
| 452 | } |