i915_gem_context.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. /*
  2. * Copyright © 2011-2012 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. * Authors:
  24. * Ben Widawsky <ben@bwidawsk.net>
  25. *
  26. */
  27. /*
  28. * This file implements HW context support. On gen5+ a HW context consists of an
  29. * opaque GPU object which is referenced at times of context saves and restores.
  30. * With RC6 enabled, the context is also referenced as the GPU enters and exists
  31. * from RC6 (GPU has it's own internal power context, except on gen5). Though
  32. * something like a context does exist for the media ring, the code only
  33. * supports contexts for the render ring.
  34. *
  35. * In software, there is a distinction between contexts created by the user,
  36. * and the default HW context. The default HW context is used by GPU clients
  37. * that do not request setup of their own hardware context. The default
  38. * context's state is never restored to help prevent programming errors. This
  39. * would happen if a client ran and piggy-backed off another clients GPU state.
  40. * The default context only exists to give the GPU some offset to load as the
  41. * current to invoke a save of the context we actually care about. In fact, the
  42. * code could likely be constructed, albeit in a more complicated fashion, to
  43. * never use the default context, though that limits the driver's ability to
  44. * swap out, and/or destroy other contexts.
  45. *
  46. * All other contexts are created as a request by the GPU client. These contexts
  47. * store GPU state, and thus allow GPU clients to not re-emit state (and
  48. * potentially query certain state) at any time. The kernel driver makes
  49. * certain that the appropriate commands are inserted.
  50. *
  51. * The context life cycle is semi-complicated in that context BOs may live
  52. * longer than the context itself because of the way the hardware, and object
  53. * tracking works. Below is a very crude representation of the state machine
  54. * describing the context life.
  55. * refcount pincount active
  56. * S0: initial state 0 0 0
  57. * S1: context created 1 0 0
  58. * S2: context is currently running 2 1 X
  59. * S3: GPU referenced, but not current 2 0 1
  60. * S4: context is current, but destroyed 1 1 0
  61. * S5: like S3, but destroyed 1 0 1
  62. *
  63. * The most common (but not all) transitions:
  64. * S0->S1: client creates a context
  65. * S1->S2: client submits execbuf with context
  66. * S2->S3: other clients submits execbuf with context
  67. * S3->S1: context object was retired
  68. * S3->S2: clients submits another execbuf
  69. * S2->S4: context destroy called with current context
  70. * S3->S5->S0: destroy path
  71. * S4->S5->S0: destroy path on current context
  72. *
  73. * There are two confusing terms used above:
  74. * The "current context" means the context which is currently running on the
  75. * GPU. The GPU has loaded it's state already and has stored away the gtt
  76. * offset of the BO. The GPU is not actively referencing the data at this
  77. * offset, but it will on the next context switch. The only way to avoid this
  78. * is to do a GPU reset.
  79. *
  80. * An "active context' is one which was previously the "current context" and is
  81. * on the active list waiting for the next context switch to occur. Until this
  82. * happens, the object must remain at the same gtt offset. It is therefore
  83. * possible to destroy a context, but it is still active.
  84. *
  85. */
  86. #include "drmP.h"
  87. #include "i915_drm.h"
  88. #include "i915_drv.h"
  89. /* This is a HW constraint. The value below is the largest known requirement
  90. * I've seen in a spec to date, and that was a workaround for a non-shipping
  91. * part. It should be safe to decrease this, but it's more future proof as is.
  92. */
  93. #define CONTEXT_ALIGN (64<<10)
  94. static struct i915_hw_context *
  95. i915_gem_context_get(struct drm_i915_file_private *file_priv, u32 id);
  96. static int do_switch(struct drm_i915_gem_object *from_obj,
  97. struct i915_hw_context *to, u32 seqno);
  98. static int get_context_size(struct drm_device *dev)
  99. {
  100. struct drm_i915_private *dev_priv = dev->dev_private;
  101. int ret;
  102. u32 reg;
  103. switch (INTEL_INFO(dev)->gen) {
  104. case 6:
  105. reg = I915_READ(CXT_SIZE);
  106. ret = GEN6_CXT_TOTAL_SIZE(reg) * 64;
  107. break;
  108. case 7:
  109. reg = I915_READ(GEN7_CTX_SIZE);
  110. ret = GEN7_CTX_TOTAL_SIZE(reg) * 64;
  111. break;
  112. default:
  113. BUG();
  114. }
  115. return ret;
  116. }
  117. static void do_destroy(struct i915_hw_context *ctx)
  118. {
  119. struct drm_device *dev = ctx->obj->base.dev;
  120. struct drm_i915_private *dev_priv = dev->dev_private;
  121. if (ctx->file_priv)
  122. idr_remove(&ctx->file_priv->context_idr, ctx->id);
  123. else
  124. BUG_ON(ctx != dev_priv->ring[RCS].default_context);
  125. drm_gem_object_unreference(&ctx->obj->base);
  126. kfree(ctx);
  127. }
  128. static int
  129. create_hw_context(struct drm_device *dev,
  130. struct drm_i915_file_private *file_priv,
  131. struct i915_hw_context **ctx_out)
  132. {
  133. struct drm_i915_private *dev_priv = dev->dev_private;
  134. int ret, id;
  135. *ctx_out = kzalloc(sizeof(struct drm_i915_file_private), GFP_KERNEL);
  136. if (*ctx_out == NULL)
  137. return -ENOMEM;
  138. (*ctx_out)->obj = i915_gem_alloc_object(dev,
  139. dev_priv->hw_context_size);
  140. if ((*ctx_out)->obj == NULL) {
  141. kfree(*ctx_out);
  142. DRM_DEBUG_DRIVER("Context object allocated failed\n");
  143. return -ENOMEM;
  144. }
  145. /* The ring associated with the context object is handled by the normal
  146. * object tracking code. We give an initial ring value simple to pass an
  147. * assertion in the context switch code.
  148. */
  149. (*ctx_out)->ring = &dev_priv->ring[RCS];
  150. /* Default context will never have a file_priv */
  151. if (file_priv == NULL)
  152. return 0;
  153. (*ctx_out)->file_priv = file_priv;
  154. again:
  155. if (idr_pre_get(&file_priv->context_idr, GFP_KERNEL) == 0) {
  156. ret = -ENOMEM;
  157. DRM_DEBUG_DRIVER("idr allocation failed\n");
  158. goto err_out;
  159. }
  160. ret = idr_get_new_above(&file_priv->context_idr, *ctx_out,
  161. DEFAULT_CONTEXT_ID + 1, &id);
  162. if (ret == 0)
  163. (*ctx_out)->id = id;
  164. if (ret == -EAGAIN)
  165. goto again;
  166. else if (ret)
  167. goto err_out;
  168. return 0;
  169. err_out:
  170. do_destroy(*ctx_out);
  171. return ret;
  172. }
  173. static inline bool is_default_context(struct i915_hw_context *ctx)
  174. {
  175. return (ctx == ctx->ring->default_context);
  176. }
  177. /**
  178. * The default context needs to exist per ring that uses contexts. It stores the
  179. * context state of the GPU for applications that don't utilize HW contexts, as
  180. * well as an idle case.
  181. */
  182. static int create_default_context(struct drm_i915_private *dev_priv)
  183. {
  184. struct i915_hw_context *ctx;
  185. int ret;
  186. BUG_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
  187. ret = create_hw_context(dev_priv->dev, NULL,
  188. &dev_priv->ring[RCS].default_context);
  189. if (ret)
  190. return ret;
  191. /* We may need to do things with the shrinker which require us to
  192. * immediately switch back to the default context. This can cause a
  193. * problem as pinning the default context also requires GTT space which
  194. * may not be available. To avoid this we always pin the
  195. * default context.
  196. */
  197. ctx = dev_priv->ring[RCS].default_context;
  198. ret = i915_gem_object_pin(ctx->obj, CONTEXT_ALIGN, false);
  199. if (ret) {
  200. do_destroy(ctx);
  201. return ret;
  202. }
  203. ret = do_switch(NULL, ctx, 0);
  204. if (ret) {
  205. i915_gem_object_unpin(ctx->obj);
  206. do_destroy(ctx);
  207. } else {
  208. DRM_DEBUG_DRIVER("Default HW context loaded\n");
  209. }
  210. return ret;
  211. }
  212. void i915_gem_context_init(struct drm_device *dev)
  213. {
  214. struct drm_i915_private *dev_priv = dev->dev_private;
  215. uint32_t ctx_size;
  216. if (!HAS_HW_CONTEXTS(dev)) {
  217. dev_priv->hw_contexts_disabled = true;
  218. return;
  219. }
  220. /* If called from reset, or thaw... we've been here already */
  221. if (dev_priv->hw_contexts_disabled ||
  222. dev_priv->ring[RCS].default_context)
  223. return;
  224. ctx_size = get_context_size(dev);
  225. dev_priv->hw_context_size = get_context_size(dev);
  226. dev_priv->hw_context_size = round_up(dev_priv->hw_context_size, 4096);
  227. if (ctx_size <= 0 || ctx_size > (1<<20)) {
  228. dev_priv->hw_contexts_disabled = true;
  229. return;
  230. }
  231. if (create_default_context(dev_priv)) {
  232. dev_priv->hw_contexts_disabled = true;
  233. return;
  234. }
  235. DRM_DEBUG_DRIVER("HW context support initialized\n");
  236. }
  237. void i915_gem_context_fini(struct drm_device *dev)
  238. {
  239. struct drm_i915_private *dev_priv = dev->dev_private;
  240. if (dev_priv->hw_contexts_disabled)
  241. return;
  242. /* The only known way to stop the gpu from accessing the hw context is
  243. * to reset it. Do this as the very last operation to avoid confusing
  244. * other code, leading to spurious errors. */
  245. intel_gpu_reset(dev);
  246. i915_gem_object_unpin(dev_priv->ring[RCS].default_context->obj);
  247. do_destroy(dev_priv->ring[RCS].default_context);
  248. }
  249. static int context_idr_cleanup(int id, void *p, void *data)
  250. {
  251. struct drm_file *file = (struct drm_file *)data;
  252. struct drm_i915_file_private *file_priv = file->driver_priv;
  253. struct i915_hw_context *ctx;
  254. BUG_ON(id == DEFAULT_CONTEXT_ID);
  255. ctx = i915_gem_context_get(file_priv, id);
  256. if (WARN_ON(ctx == NULL))
  257. return -ENXIO;
  258. do_destroy(ctx);
  259. return 0;
  260. }
  261. void i915_gem_context_close(struct drm_device *dev, struct drm_file *file)
  262. {
  263. struct drm_i915_file_private *file_priv = file->driver_priv;
  264. mutex_lock(&dev->struct_mutex);
  265. idr_for_each(&file_priv->context_idr, context_idr_cleanup, file);
  266. idr_destroy(&file_priv->context_idr);
  267. mutex_unlock(&dev->struct_mutex);
  268. }
  269. static struct i915_hw_context *
  270. i915_gem_context_get(struct drm_i915_file_private *file_priv, u32 id)
  271. {
  272. return (struct i915_hw_context *)idr_find(&file_priv->context_idr, id);
  273. }
  274. static inline int
  275. mi_set_context(struct intel_ring_buffer *ring,
  276. struct i915_hw_context *new_context,
  277. u32 hw_flags)
  278. {
  279. int ret;
  280. /* w/a: If Flush TLB Invalidation Mode is enabled, driver must do a TLB
  281. * invalidation prior to MI_SET_CONTEXT. On GEN6 we don't set the value
  282. * explicitly, so we rely on the value at ring init, stored in
  283. * itlb_before_ctx_switch.
  284. */
  285. if (IS_GEN6(ring->dev) && ring->itlb_before_ctx_switch) {
  286. ret = ring->flush(ring, 0, 0);
  287. if (ret)
  288. return ret;
  289. }
  290. ret = intel_ring_begin(ring, 6);
  291. if (ret)
  292. return ret;
  293. if (IS_GEN7(ring->dev))
  294. intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_DISABLE);
  295. else
  296. intel_ring_emit(ring, MI_NOOP);
  297. intel_ring_emit(ring, MI_NOOP);
  298. intel_ring_emit(ring, MI_SET_CONTEXT);
  299. intel_ring_emit(ring, new_context->obj->gtt_offset |
  300. MI_MM_SPACE_GTT |
  301. MI_SAVE_EXT_STATE_EN |
  302. MI_RESTORE_EXT_STATE_EN |
  303. hw_flags);
  304. /* w/a: MI_SET_CONTEXT must always be followed by MI_NOOP */
  305. intel_ring_emit(ring, MI_NOOP);
  306. if (IS_GEN7(ring->dev))
  307. intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_ENABLE);
  308. else
  309. intel_ring_emit(ring, MI_NOOP);
  310. intel_ring_advance(ring);
  311. return ret;
  312. }
  313. static int do_switch(struct drm_i915_gem_object *from_obj,
  314. struct i915_hw_context *to,
  315. u32 seqno)
  316. {
  317. struct intel_ring_buffer *ring = NULL;
  318. u32 hw_flags = 0;
  319. int ret;
  320. BUG_ON(to == NULL);
  321. BUG_ON(from_obj != NULL && from_obj->pin_count == 0);
  322. ret = i915_gem_object_pin(to->obj, CONTEXT_ALIGN, false);
  323. if (ret)
  324. return ret;
  325. if (!to->obj->has_global_gtt_mapping)
  326. i915_gem_gtt_bind_object(to->obj, to->obj->cache_level);
  327. if (!to->is_initialized || is_default_context(to))
  328. hw_flags |= MI_RESTORE_INHIBIT;
  329. else if (WARN_ON_ONCE(from_obj == to->obj)) /* not yet expected */
  330. hw_flags |= MI_FORCE_RESTORE;
  331. ring = to->ring;
  332. ret = mi_set_context(ring, to, hw_flags);
  333. if (ret) {
  334. i915_gem_object_unpin(to->obj);
  335. return ret;
  336. }
  337. /* The backing object for the context is done after switching to the
  338. * *next* context. Therefore we cannot retire the previous context until
  339. * the next context has already started running. In fact, the below code
  340. * is a bit suboptimal because the retiring can occur simply after the
  341. * MI_SET_CONTEXT instead of when the next seqno has completed.
  342. */
  343. if (from_obj != NULL) {
  344. from_obj->base.read_domains = I915_GEM_DOMAIN_INSTRUCTION;
  345. i915_gem_object_move_to_active(from_obj, ring, seqno);
  346. /* As long as MI_SET_CONTEXT is serializing, ie. it flushes the
  347. * whole damn pipeline, we don't need to explicitly mark the
  348. * object dirty. The only exception is that the context must be
  349. * correct in case the object gets swapped out. Ideally we'd be
  350. * able to defer doing this until we know the object would be
  351. * swapped, but there is no way to do that yet.
  352. */
  353. from_obj->dirty = 1;
  354. BUG_ON(from_obj->ring != to->ring);
  355. i915_gem_object_unpin(from_obj);
  356. }
  357. ring->last_context_obj = to->obj;
  358. to->is_initialized = true;
  359. return 0;
  360. }
  361. /**
  362. * i915_switch_context() - perform a GPU context switch.
  363. * @ring: ring for which we'll execute the context switch
  364. * @file_priv: file_priv associated with the context, may be NULL
  365. * @id: context id number
  366. * @seqno: sequence number by which the new context will be switched to
  367. * @flags:
  368. *
  369. * The context life cycle is simple. The context refcount is incremented and
  370. * decremented by 1 and create and destroy. If the context is in use by the GPU,
  371. * it will have a refoucnt > 1. This allows us to destroy the context abstract
  372. * object while letting the normal object tracking destroy the backing BO.
  373. */
  374. int i915_switch_context(struct intel_ring_buffer *ring,
  375. struct drm_file *file,
  376. int to_id)
  377. {
  378. struct drm_i915_private *dev_priv = ring->dev->dev_private;
  379. struct drm_i915_file_private *file_priv = NULL;
  380. struct i915_hw_context *to;
  381. struct drm_i915_gem_object *from_obj = ring->last_context_obj;
  382. int ret;
  383. if (dev_priv->hw_contexts_disabled)
  384. return 0;
  385. if (ring != &dev_priv->ring[RCS])
  386. return 0;
  387. if (file)
  388. file_priv = file->driver_priv;
  389. if (to_id == DEFAULT_CONTEXT_ID) {
  390. to = ring->default_context;
  391. } else {
  392. to = i915_gem_context_get(file_priv, to_id);
  393. if (to == NULL)
  394. return -EINVAL;
  395. }
  396. if (from_obj == to->obj)
  397. return 0;
  398. ret = do_switch(from_obj, to, i915_gem_next_request_seqno(to->ring));
  399. if (ret)
  400. return ret;
  401. /* Just to make the code a little cleaner we take the object reference
  402. * after the switch was successful. It would be more intuitive to ref
  403. * the 'to' object before the switch but we know the refcount must be >0
  404. * if context_get() succeeded, and we hold struct mutex. So it's safe to
  405. * do this here/now
  406. */
  407. drm_gem_object_reference(&to->obj->base);
  408. if (from_obj != NULL)
  409. drm_gem_object_unreference(&from_obj->base);
  410. return ret;
  411. }
  412. int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
  413. struct drm_file *file)
  414. {
  415. struct drm_i915_private *dev_priv = dev->dev_private;
  416. struct drm_i915_gem_context_create *args = data;
  417. struct drm_i915_file_private *file_priv = file->driver_priv;
  418. struct i915_hw_context *ctx;
  419. int ret;
  420. if (!(dev->driver->driver_features & DRIVER_GEM))
  421. return -ENODEV;
  422. ret = i915_mutex_lock_interruptible(dev);
  423. if (ret)
  424. return ret;
  425. ret = create_hw_context(dev, file_priv, &ctx);
  426. mutex_unlock(&dev->struct_mutex);
  427. args->ctx_id = ctx->id;
  428. DRM_DEBUG_DRIVER("HW context %d created\n", args->ctx_id);
  429. return ret;
  430. }
  431. int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
  432. struct drm_file *file)
  433. {
  434. struct drm_i915_gem_context_destroy *args = data;
  435. struct drm_i915_file_private *file_priv = file->driver_priv;
  436. struct drm_i915_private *dev_priv = dev->dev_private;
  437. struct i915_hw_context *ctx;
  438. int ret;
  439. if (!(dev->driver->driver_features & DRIVER_GEM))
  440. return -ENODEV;
  441. ret = i915_mutex_lock_interruptible(dev);
  442. if (ret)
  443. return ret;
  444. ctx = i915_gem_context_get(file_priv, args->ctx_id);
  445. if (!ctx) {
  446. mutex_unlock(&dev->struct_mutex);
  447. return -EINVAL;
  448. }
  449. do_destroy(ctx);
  450. mutex_unlock(&dev->struct_mutex);
  451. DRM_DEBUG_DRIVER("HW context %d destroyed\n", args->ctx_id);
  452. return 0;
  453. }