context.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * SPU file system -- SPU context management
  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. #include <linux/fs.h>
  23. #include <linux/mm.h>
  24. #include <linux/slab.h>
  25. #include <asm/spu.h>
  26. #include <asm/spu_csa.h>
  27. #include "spufs.h"
  28. struct spu_context *alloc_spu_context(struct spu_gang *gang)
  29. {
  30. struct spu_context *ctx;
  31. ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
  32. if (!ctx)
  33. goto out;
  34. /* Binding to physical processor deferred
  35. * until spu_activate().
  36. */
  37. spu_init_csa(&ctx->csa);
  38. if (!ctx->csa.lscsa) {
  39. goto out_free;
  40. }
  41. spin_lock_init(&ctx->mmio_lock);
  42. kref_init(&ctx->kref);
  43. mutex_init(&ctx->state_mutex);
  44. init_MUTEX(&ctx->run_sema);
  45. init_waitqueue_head(&ctx->ibox_wq);
  46. init_waitqueue_head(&ctx->wbox_wq);
  47. init_waitqueue_head(&ctx->stop_wq);
  48. init_waitqueue_head(&ctx->mfc_wq);
  49. ctx->state = SPU_STATE_SAVED;
  50. ctx->ops = &spu_backing_ops;
  51. ctx->owner = get_task_mm(current);
  52. if (gang)
  53. spu_gang_add_ctx(gang, ctx);
  54. ctx->prio = current->prio;
  55. goto out;
  56. out_free:
  57. kfree(ctx);
  58. ctx = NULL;
  59. out:
  60. return ctx;
  61. }
  62. void destroy_spu_context(struct kref *kref)
  63. {
  64. struct spu_context *ctx;
  65. ctx = container_of(kref, struct spu_context, kref);
  66. mutex_lock(&ctx->state_mutex);
  67. spu_deactivate(ctx);
  68. mutex_unlock(&ctx->state_mutex);
  69. spu_fini_csa(&ctx->csa);
  70. if (ctx->gang)
  71. spu_gang_remove_ctx(ctx->gang, ctx);
  72. kfree(ctx);
  73. }
  74. struct spu_context * get_spu_context(struct spu_context *ctx)
  75. {
  76. kref_get(&ctx->kref);
  77. return ctx;
  78. }
  79. int put_spu_context(struct spu_context *ctx)
  80. {
  81. return kref_put(&ctx->kref, &destroy_spu_context);
  82. }
  83. /* give up the mm reference when the context is about to be destroyed */
  84. void spu_forget(struct spu_context *ctx)
  85. {
  86. struct mm_struct *mm;
  87. spu_acquire_saved(ctx);
  88. mm = ctx->owner;
  89. ctx->owner = NULL;
  90. mmput(mm);
  91. spu_release(ctx);
  92. }
  93. void spu_unmap_mappings(struct spu_context *ctx)
  94. {
  95. if (ctx->local_store)
  96. unmap_mapping_range(ctx->local_store, 0, LS_SIZE, 1);
  97. if (ctx->mfc)
  98. unmap_mapping_range(ctx->mfc, 0, 0x1000, 1);
  99. if (ctx->cntl)
  100. unmap_mapping_range(ctx->cntl, 0, 0x1000, 1);
  101. if (ctx->signal1)
  102. unmap_mapping_range(ctx->signal1, 0, PAGE_SIZE, 1);
  103. if (ctx->signal2)
  104. unmap_mapping_range(ctx->signal2, 0, PAGE_SIZE, 1);
  105. if (ctx->mss)
  106. unmap_mapping_range(ctx->mss, 0, 0x1000, 1);
  107. if (ctx->psmap)
  108. unmap_mapping_range(ctx->psmap, 0, 0x20000, 1);
  109. }
  110. /**
  111. * spu_acquire_exclusive - lock spu contex and protect against userspace access
  112. * @ctx: spu contex to lock
  113. *
  114. * Note:
  115. * Returns 0 and with the context locked on success
  116. * Returns negative error and with the context _unlocked_ on failure.
  117. */
  118. int spu_acquire_exclusive(struct spu_context *ctx)
  119. {
  120. int ret = -EINVAL;
  121. spu_acquire(ctx);
  122. /*
  123. * Context is about to be freed, so we can't acquire it anymore.
  124. */
  125. if (!ctx->owner)
  126. goto out_unlock;
  127. if (ctx->state == SPU_STATE_SAVED) {
  128. ret = spu_activate(ctx, 0);
  129. if (ret)
  130. goto out_unlock;
  131. } else {
  132. /*
  133. * We need to exclude userspace access to the context.
  134. *
  135. * To protect against memory access we invalidate all ptes
  136. * and make sure the pagefault handlers block on the mutex.
  137. */
  138. spu_unmap_mappings(ctx);
  139. }
  140. return 0;
  141. out_unlock:
  142. spu_release(ctx);
  143. return ret;
  144. }
  145. /**
  146. * spu_acquire_runnable - lock spu contex and make sure it is in runnable state
  147. * @ctx: spu contex to lock
  148. *
  149. * Note:
  150. * Returns 0 and with the context locked on success
  151. * Returns negative error and with the context _unlocked_ on failure.
  152. */
  153. int spu_acquire_runnable(struct spu_context *ctx, unsigned long flags)
  154. {
  155. int ret = -EINVAL;
  156. spu_acquire(ctx);
  157. if (ctx->state == SPU_STATE_SAVED) {
  158. /*
  159. * Context is about to be freed, so we can't acquire it anymore.
  160. */
  161. if (!ctx->owner)
  162. goto out_unlock;
  163. ret = spu_activate(ctx, flags);
  164. if (ret)
  165. goto out_unlock;
  166. }
  167. return 0;
  168. out_unlock:
  169. spu_release(ctx);
  170. return ret;
  171. }
  172. /**
  173. * spu_acquire_saved - lock spu contex and make sure it is in saved state
  174. * @ctx: spu contex to lock
  175. */
  176. void spu_acquire_saved(struct spu_context *ctx)
  177. {
  178. spu_acquire(ctx);
  179. if (ctx->state != SPU_STATE_SAVED)
  180. spu_deactivate(ctx);
  181. }