blob: a9c35b7b719fda3bd3850dc1dfdaa74d2e5acc6b [file] [log] [blame]
arnd@arndb.de0afacde2006-10-24 18:31:18 +02001#define DEBUG
2
Arnd Bergmannce8ab852006-01-04 20:31:29 +01003#include <linux/wait.h>
4#include <linux/ptrace.h>
5
6#include <asm/spu.h>
Jeremy Kerrc6730ed2006-11-20 18:45:10 +01007#include <asm/spu_priv1.h>
8#include <asm/io.h>
Dave Jonescfff5b22006-03-31 23:53:09 -05009#include <asm/unistd.h>
Arnd Bergmannce8ab852006-01-04 20:31:29 +010010
11#include "spufs.h"
12
13/* interrupt-level stop callback function. */
14void spufs_stop_callback(struct spu *spu)
15{
16 struct spu_context *ctx = spu->ctx;
17
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +090018 /*
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 */
27 ctx->csa.class_0_pending = spu->class_0_pending;
28 ctx->csa.dsisr = spu->dsisr;
29 ctx->csa.dar = spu->dar;
30
31 /* ensure that the exception status has hit memory before a
32 * thread waiting on the context's stop queue is woken */
33 smp_wmb();
34
35 wake_up_all(&ctx->stop_wq);
36 }
37
38 /* Clear callback arguments from spu structure */
39 spu->class_0_pending = 0;
40 spu->dsisr = 0;
41 spu->dar = 0;
Arnd Bergmannce8ab852006-01-04 20:31:29 +010042}
43
Luke Browninge65c2f62007-12-20 16:39:59 +090044int spu_stopped(struct spu_context *ctx, u32 *stat)
Arnd Bergmannce8ab852006-01-04 20:31:29 +010045{
Luke Browninge65c2f62007-12-20 16:39:59 +090046 u64 dsisr;
47 u32 stopped;
Arnd Bergmannce8ab852006-01-04 20:31:29 +010048
49 *stat = ctx->ops->status_read(ctx);
Bob Nelson36aaccc2007-07-20 21:39:52 +020050
Luke Browninge65c2f62007-12-20 16:39:59 +090051 if (test_bit(SPU_SCHED_NOTIFY_ACTIVE, &ctx->sched_flags))
Bob Nelson36aaccc2007-07-20 21:39:52 +020052 return 1;
Luke Browninge65c2f62007-12-20 16:39:59 +090053
54 stopped = SPU_STATUS_INVALID_INSTR | SPU_STATUS_SINGLE_STEP |
55 SPU_STATUS_STOPPED_BY_HALT | SPU_STATUS_STOPPED_BY_STOP;
Luke Browning85687ff2008-02-08 15:50:41 +110056 if (!(*stat & SPU_STATUS_RUNNING) && (*stat & stopped))
Luke Browninge65c2f62007-12-20 16:39:59 +090057 return 1;
58
59 dsisr = ctx->csa.dsisr;
60 if (dsisr & (MFC_DSISR_PTE_NOT_FOUND | MFC_DSISR_ACCESS_DENIED))
61 return 1;
62
63 if (ctx->csa.class_0_pending)
64 return 1;
65
66 return 0;
Arnd Bergmannce8ab852006-01-04 20:31:29 +010067}
68
Jeremy Kerrc6730ed2006-11-20 18:45:10 +010069static int spu_setup_isolated(struct spu_context *ctx)
70{
71 int ret;
72 u64 __iomem *mfc_cntl;
73 u64 sr1;
74 u32 status;
75 unsigned long timeout;
76 const u32 status_loading = SPU_STATUS_RUNNING
77 | SPU_STATUS_ISOLATED_STATE | SPU_STATUS_ISOLATED_LOAD_STATUS;
78
Christoph Hellwig7ec18ab2007-04-23 21:08:12 +020079 ret = -ENODEV;
Jeremy Kerrc6730ed2006-11-20 18:45:10 +010080 if (!isolated_loader)
Jeremy Kerrc6730ed2006-11-20 18:45:10 +010081 goto out;
82
Christoph Hellwig7ec18ab2007-04-23 21:08:12 +020083 /*
84 * We need to exclude userspace access to the context.
85 *
86 * To protect against memory access we invalidate all ptes
87 * and make sure the pagefault handlers block on the mutex.
88 */
89 spu_unmap_mappings(ctx);
90
Jeremy Kerrc6730ed2006-11-20 18:45:10 +010091 mfc_cntl = &ctx->spu->priv2->mfc_control_RW;
92
93 /* purge the MFC DMA queue to ensure no spurious accesses before we
94 * enter kernel mode */
95 timeout = jiffies + HZ;
96 out_be64(mfc_cntl, MFC_CNTL_PURGE_DMA_REQUEST);
97 while ((in_be64(mfc_cntl) & MFC_CNTL_PURGE_DMA_STATUS_MASK)
98 != MFC_CNTL_PURGE_DMA_COMPLETE) {
99 if (time_after(jiffies, timeout)) {
100 printk(KERN_ERR "%s: timeout flushing MFC DMA queue\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100101 __func__);
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100102 ret = -EIO;
Christoph Hellwig7ec18ab2007-04-23 21:08:12 +0200103 goto out;
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100104 }
105 cond_resched();
106 }
107
108 /* put the SPE in kernel mode to allow access to the loader */
109 sr1 = spu_mfc_sr1_get(ctx->spu);
110 sr1 &= ~MFC_STATE1_PROBLEM_STATE_MASK;
111 spu_mfc_sr1_set(ctx->spu, sr1);
112
113 /* start the loader */
114 ctx->ops->signal1_write(ctx, (unsigned long)isolated_loader >> 32);
115 ctx->ops->signal2_write(ctx,
116 (unsigned long)isolated_loader & 0xffffffff);
117
118 ctx->ops->runcntl_write(ctx,
119 SPU_RUNCNTL_RUNNABLE | SPU_RUNCNTL_ISOLATE);
120
121 ret = 0;
122 timeout = jiffies + HZ;
123 while (((status = ctx->ops->status_read(ctx)) & status_loading) ==
124 status_loading) {
125 if (time_after(jiffies, timeout)) {
126 printk(KERN_ERR "%s: timeout waiting for loader\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100127 __func__);
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100128 ret = -EIO;
129 goto out_drop_priv;
130 }
131 cond_resched();
132 }
133
134 if (!(status & SPU_STATUS_RUNNING)) {
135 /* If isolated LOAD has failed: run SPU, we will get a stop-and
136 * signal later. */
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100137 pr_debug("%s: isolated LOAD failed\n", __func__);
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100138 ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_RUNNABLE);
139 ret = -EACCES;
Christoph Hellwig7ec18ab2007-04-23 21:08:12 +0200140 goto out_drop_priv;
141 }
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100142
Christoph Hellwig7ec18ab2007-04-23 21:08:12 +0200143 if (!(status & SPU_STATUS_ISOLATED_STATE)) {
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100144 /* This isn't allowed by the CBEA, but check anyway */
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100145 pr_debug("%s: SPU fell out of isolated mode?\n", __func__);
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100146 ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_STOP);
147 ret = -EINVAL;
Christoph Hellwig7ec18ab2007-04-23 21:08:12 +0200148 goto out_drop_priv;
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100149 }
150
151out_drop_priv:
152 /* Finished accessing the loader. Drop kernel mode */
153 sr1 |= MFC_STATE1_PROBLEM_STATE_MASK;
154 spu_mfc_sr1_set(ctx->spu, sr1);
155
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100156out:
157 return ret;
158}
159
Bob Nelson36aaccc2007-07-20 21:39:52 +0200160static int spu_run_init(struct spu_context *ctx, u32 *npc)
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100161{
Luke Browninge65c2f62007-12-20 16:39:59 +0900162 unsigned long runcntl = SPU_RUNCNTL_RUNNABLE;
Luke Browning91569532007-12-20 16:39:59 +0900163 int ret;
Luke Browningcc210b32007-12-20 16:39:59 +0900164
Andre Detsch27ec41d2007-07-20 21:39:33 +0200165 spuctx_switch_state(ctx, SPU_UTIL_SYSTEM);
166
Luke Browninge65c2f62007-12-20 16:39:59 +0900167 /*
168 * NOSCHED is synchronous scheduling with respect to the caller.
169 * The caller waits for the context to be loaded.
170 */
171 if (ctx->flags & SPU_CREATE_NOSCHED) {
Luke Browning91569532007-12-20 16:39:59 +0900172 if (ctx->state == SPU_STATE_SAVED) {
Luke Browning91569532007-12-20 16:39:59 +0900173 ret = spu_activate(ctx, 0);
Christoph Hellwig7ec18ab2007-04-23 21:08:12 +0200174 if (ret)
Christoph Hellwigaa45e252007-04-23 21:08:27 +0200175 return ret;
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100176 }
Luke Browninge65c2f62007-12-20 16:39:59 +0900177 }
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100178
Luke Browninge65c2f62007-12-20 16:39:59 +0900179 /*
180 * Apply special setup as required.
181 */
182 if (ctx->flags & SPU_CREATE_ISOLATE) {
Luke Browning91569532007-12-20 16:39:59 +0900183 if (!(ctx->ops->status_read(ctx) & SPU_STATUS_ISOLATED_STATE)) {
184 ret = spu_setup_isolated(ctx);
185 if (ret)
186 return ret;
187 }
188
189 /*
190 * If userspace has set the runcntrl register (eg, to
191 * issue an isolated exit), we need to re-set it here
192 */
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100193 runcntl = ctx->ops->runcntl_read(ctx) &
194 (SPU_RUNCNTL_RUNNABLE | SPU_RUNCNTL_ISOLATE);
195 if (runcntl == 0)
196 runcntl = SPU_RUNCNTL_RUNNABLE;
Luke Browninge65c2f62007-12-20 16:39:59 +0900197 }
Luke Browning91569532007-12-20 16:39:59 +0900198
Luke Browninge65c2f62007-12-20 16:39:59 +0900199 if (ctx->flags & SPU_CREATE_NOSCHED) {
Luke Browning91569532007-12-20 16:39:59 +0900200 spuctx_switch_state(ctx, SPU_UTIL_USER);
201 ctx->ops->runcntl_write(ctx, runcntl);
Christoph Hellwig2eb1b122007-02-13 21:54:29 +0100202 } else {
Luke Browningcc210b32007-12-20 16:39:59 +0900203 unsigned long privcntl;
204
Benjamin Herrenschmidt05169232007-06-04 15:15:37 +1000205 if (test_thread_flag(TIF_SINGLESTEP))
Luke Browningcc210b32007-12-20 16:39:59 +0900206 privcntl = SPU_PRIVCNTL_MODE_SINGLE_STEP;
207 else
208 privcntl = SPU_PRIVCNTL_MODE_NORMAL;
Luke Browningcc210b32007-12-20 16:39:59 +0900209
210 ctx->ops->npc_write(ctx, *npc);
211 ctx->ops->privcntl_write(ctx, privcntl);
Luke Browninge65c2f62007-12-20 16:39:59 +0900212 ctx->ops->runcntl_write(ctx, runcntl);
Luke Browning91569532007-12-20 16:39:59 +0900213
214 if (ctx->state == SPU_STATE_SAVED) {
Luke Browning91569532007-12-20 16:39:59 +0900215 ret = spu_activate(ctx, 0);
216 if (ret)
217 return ret;
Luke Browninge65c2f62007-12-20 16:39:59 +0900218 } else {
219 spuctx_switch_state(ctx, SPU_UTIL_USER);
Luke Browning91569532007-12-20 16:39:59 +0900220 }
Christoph Hellwig2eb1b122007-02-13 21:54:29 +0100221 }
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100222
Jeremy Kerrce7c1912008-03-04 20:17:02 +1100223 set_bit(SPU_SCHED_SPU_RUN, &ctx->sched_flags);
Christoph Hellwigaa45e252007-04-23 21:08:27 +0200224 return 0;
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100225}
226
Bob Nelson36aaccc2007-07-20 21:39:52 +0200227static int spu_run_fini(struct spu_context *ctx, u32 *npc,
228 u32 *status)
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100229{
230 int ret = 0;
231
Luke Browninge65c2f62007-12-20 16:39:59 +0900232 spu_del_from_rq(ctx);
233
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100234 *status = ctx->ops->status_read(ctx);
235 *npc = ctx->ops->npc_read(ctx);
Andre Detsch27ec41d2007-07-20 21:39:33 +0200236
237 spuctx_switch_state(ctx, SPU_UTIL_IDLE_LOADED);
Jeremy Kerrce7c1912008-03-04 20:17:02 +1100238 clear_bit(SPU_SCHED_SPU_RUN, &ctx->sched_flags);
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100239 spu_release(ctx);
240
241 if (signal_pending(current))
242 ret = -ERESTARTSYS;
Masato Noguchi2ebb2472006-11-20 18:45:04 +0100243
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100244 return ret;
245}
246
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100247/*
248 * SPU syscall restarting is tricky because we violate the basic
249 * assumption that the signal handler is running on the interrupted
250 * thread. Here instead, the handler runs on PowerPC user space code,
251 * while the syscall was called from the SPU.
252 * This means we can only do a very rough approximation of POSIX
253 * signal semantics.
254 */
Sebastian Siewior12388192007-09-19 14:38:12 +1000255static int spu_handle_restartsys(struct spu_context *ctx, long *spu_ret,
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100256 unsigned int *npc)
257{
258 int ret;
259
260 switch (*spu_ret) {
261 case -ERESTARTSYS:
262 case -ERESTARTNOINTR:
263 /*
264 * Enter the regular syscall restarting for
265 * sys_spu_run, then restart the SPU syscall
266 * callback.
267 */
268 *npc -= 8;
269 ret = -ERESTARTSYS;
270 break;
271 case -ERESTARTNOHAND:
272 case -ERESTART_RESTARTBLOCK:
273 /*
274 * Restart block is too hard for now, just return -EINTR
275 * to the SPU.
276 * ERESTARTNOHAND comes from sys_pause, we also return
277 * -EINTR from there.
278 * Assume that we need to be restarted ourselves though.
279 */
280 *spu_ret = -EINTR;
281 ret = -ERESTARTSYS;
282 break;
283 default:
284 printk(KERN_WARNING "%s: unexpected return code %ld\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100285 __func__, *spu_ret);
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100286 ret = 0;
287 }
288 return ret;
289}
290
Sebastian Siewior12388192007-09-19 14:38:12 +1000291static int spu_process_callback(struct spu_context *ctx)
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100292{
293 struct spu_syscall_block s;
294 u32 ls_pointer, npc;
Akinobu Mita9e2fe2c2007-04-23 21:08:22 +0200295 void __iomem *ls;
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100296 long spu_ret;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900297 int ret, ret2;
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100298
299 /* get syscall block from local store */
Akinobu Mita9e2fe2c2007-04-23 21:08:22 +0200300 npc = ctx->ops->npc_read(ctx) & ~3;
301 ls = (void __iomem *)ctx->ops->get_ls(ctx);
302 ls_pointer = in_be32(ls + npc);
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100303 if (ls_pointer > (LS_SIZE - sizeof(s)))
304 return -EFAULT;
Akinobu Mita9e2fe2c2007-04-23 21:08:22 +0200305 memcpy_fromio(&s, ls + ls_pointer, sizeof(s));
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100306
307 /* do actual syscall without pinning the spu */
308 ret = 0;
309 spu_ret = -ENOSYS;
310 npc += 4;
311
312 if (s.nr_ret < __NR_syscalls) {
313 spu_release(ctx);
314 /* do actual system call from here */
315 spu_ret = spu_sys_callback(&s);
316 if (spu_ret <= -ERESTARTSYS) {
317 ret = spu_handle_restartsys(ctx, &spu_ret, &npc);
318 }
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900319 ret2 = spu_acquire(ctx);
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100320 if (ret == -ERESTARTSYS)
321 return ret;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900322 if (ret2)
323 return -EINTR;
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100324 }
325
Jeremy Kerr4eb5aef2008-03-25 13:32:03 +1100326 /* need to re-get the ls, as it may have changed when we released the
327 * spu */
328 ls = (void __iomem *)ctx->ops->get_ls(ctx);
329
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100330 /* write result, jump over indirect pointer */
Akinobu Mita9e2fe2c2007-04-23 21:08:22 +0200331 memcpy_toio(ls + ls_pointer, &spu_ret, sizeof(spu_ret));
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100332 ctx->ops->npc_write(ctx, npc);
333 ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_RUNNABLE);
334 return ret;
335}
336
Jeremy Kerr50af32a2007-07-20 21:39:42 +0200337long spufs_run_spu(struct spu_context *ctx, u32 *npc, u32 *event)
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100338{
339 int ret;
Bob Nelson36aaccc2007-07-20 21:39:52 +0200340 struct spu *spu;
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200341 u32 status;
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100342
Christoph Hellwige45d48a2007-04-23 21:08:17 +0200343 if (mutex_lock_interruptible(&ctx->run_mutex))
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100344 return -ERESTARTSYS;
345
Masato Noguchic25620d2007-12-05 13:49:31 +1100346 spu_enable_spu(ctx);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200347 ctx->event_return = 0;
Christoph Hellwigaa45e252007-04-23 21:08:27 +0200348
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900349 ret = spu_acquire(ctx);
350 if (ret)
351 goto out_unlock;
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000352
Luke Browning91569532007-12-20 16:39:59 +0900353 spu_update_sched_info(ctx);
Christoph Hellwigaa45e252007-04-23 21:08:27 +0200354
355 ret = spu_run_init(ctx, npc);
356 if (ret) {
357 spu_release(ctx);
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100358 goto out;
Christoph Hellwigaa45e252007-04-23 21:08:27 +0200359 }
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100360
361 do {
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200362 ret = spufs_wait(ctx->stop_wq, spu_stopped(ctx, &status));
Christoph Hellwigeebead52008-02-08 15:50:41 +1100363 if (unlikely(ret)) {
364 /*
365 * This is nasty: we need the state_mutex for all the
366 * bookkeeping even if the syscall was interrupted by
367 * a signal. ewww.
368 */
369 mutex_lock(&ctx->state_mutex);
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100370 break;
Christoph Hellwigeebead52008-02-08 15:50:41 +1100371 }
Bob Nelson36aaccc2007-07-20 21:39:52 +0200372 spu = ctx->spu;
373 if (unlikely(test_and_clear_bit(SPU_SCHED_NOTIFY_ACTIVE,
374 &ctx->sched_flags))) {
375 if (!(status & SPU_STATUS_STOPPED_BY_STOP)) {
376 spu_switch_notify(spu, ctx);
377 continue;
378 }
379 }
Andre Detsch27ec41d2007-07-20 21:39:33 +0200380
381 spuctx_switch_state(ctx, SPU_UTIL_SYSTEM);
382
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200383 if ((status & SPU_STATUS_STOPPED_BY_STOP) &&
384 (status >> SPU_STOP_STATUS_SHIFT == 0x2104)) {
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100385 ret = spu_process_callback(ctx);
386 if (ret)
387 break;
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200388 status &= ~SPU_STATUS_STOPPED_BY_STOP;
Arnd Bergmann2dd14932006-03-23 00:00:09 +0100389 }
Arnd Bergmann57dace22007-04-23 21:08:15 +0200390 ret = spufs_handle_class1(ctx);
391 if (ret)
392 break;
393
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900394 ret = spufs_handle_class0(ctx);
395 if (ret)
396 break;
397
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900398 if (signal_pending(current))
399 ret = -ERESTARTSYS;
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200400 } while (!ret && !(status & (SPU_STATUS_STOPPED_BY_STOP |
Benjamin Herrenschmidt05169232007-06-04 15:15:37 +1000401 SPU_STATUS_STOPPED_BY_HALT |
402 SPU_STATUS_SINGLE_STEP)));
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100403
Masato Noguchic25620d2007-12-05 13:49:31 +1100404 spu_disable_spu(ctx);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200405 ret = spu_run_fini(ctx, npc, &status);
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100406 spu_yield(ctx);
407
Christoph Hellwig5158e9b2008-04-29 17:08:38 +1000408 spu_switch_log_notify(NULL, ctx, SWITCH_LOG_EXIT, status);
409
Luke Browninge66686b42008-02-08 15:50:41 +1100410 if ((status & SPU_STATUS_STOPPED_BY_STOP) &&
411 (((status >> SPU_STOP_STATUS_SHIFT) & 0x3f00) == 0x2100))
412 ctx->stats.libassist++;
413
Masato Noguchi2ebb2472006-11-20 18:45:04 +0100414 if ((ret == 0) ||
415 ((ret == -ERESTARTSYS) &&
416 ((status & SPU_STATUS_STOPPED_BY_HALT) ||
Benjamin Herrenschmidt05169232007-06-04 15:15:37 +1000417 (status & SPU_STATUS_SINGLE_STEP) ||
Masato Noguchi2ebb2472006-11-20 18:45:04 +0100418 ((status & SPU_STATUS_STOPPED_BY_STOP) &&
419 (status >> SPU_STOP_STATUS_SHIFT != 0x2104)))))
420 ret = status;
421
Benjamin Herrenschmidt05169232007-06-04 15:15:37 +1000422 /* Note: we don't need to force_sig SIGTRAP on single-step
423 * since we have TIF_SINGLESTEP set, thus the kernel will do
424 * it upon return from the syscall anyawy
425 */
Jeremy Kerr60cf54d2008-01-11 15:03:26 +1100426 if (unlikely(status & SPU_STATUS_SINGLE_STEP))
427 ret = -ERESTARTSYS;
428
429 else if (unlikely((status & SPU_STATUS_STOPPED_BY_STOP)
430 && (status >> SPU_STOP_STATUS_SHIFT) == 0x3fff)) {
Arnd Bergmannc2b22262006-11-27 19:18:53 +0100431 force_sig(SIGTRAP, current);
432 ret = -ERESTARTSYS;
Masato Noguchi2ebb2472006-11-20 18:45:04 +0100433 }
434
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100435out:
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200436 *event = ctx->event_return;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900437out_unlock:
Christoph Hellwige45d48a2007-04-23 21:08:17 +0200438 mutex_unlock(&ctx->run_mutex);
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100439 return ret;
440}