i915_gem_context.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  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 its 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 <drm/drmP.h>
  87. #include <drm/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 i915_hw_context *to);
  97. static int get_context_size(struct drm_device *dev)
  98. {
  99. struct drm_i915_private *dev_priv = dev->dev_private;
  100. int ret;
  101. u32 reg;
  102. switch (INTEL_INFO(dev)->gen) {
  103. case 6:
  104. reg = I915_READ(CXT_SIZE);
  105. ret = GEN6_CXT_TOTAL_SIZE(reg) * 64;
  106. break;
  107. case 7:
  108. reg = I915_READ(GEN7_CXT_SIZE);
  109. if (IS_HASWELL(dev))
  110. ret = HSW_CXT_TOTAL_SIZE;
  111. else
  112. ret = GEN7_CXT_TOTAL_SIZE(reg) * 64;
  113. break;
  114. case 8:
  115. ret = GEN8_CXT_TOTAL_SIZE;
  116. break;
  117. default:
  118. BUG();
  119. }
  120. return ret;
  121. }
  122. void i915_gem_context_free(struct kref *ctx_ref)
  123. {
  124. struct i915_hw_context *ctx = container_of(ctx_ref,
  125. typeof(*ctx), ref);
  126. list_del(&ctx->link);
  127. drm_gem_object_unreference(&ctx->obj->base);
  128. kfree(ctx);
  129. }
  130. static struct i915_hw_context *
  131. create_hw_context(struct drm_device *dev,
  132. struct drm_i915_file_private *file_priv)
  133. {
  134. struct drm_i915_private *dev_priv = dev->dev_private;
  135. struct i915_hw_context *ctx;
  136. int ret;
  137. ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
  138. if (ctx == NULL)
  139. return ERR_PTR(-ENOMEM);
  140. kref_init(&ctx->ref);
  141. ctx->obj = i915_gem_alloc_object(dev, dev_priv->hw_context_size);
  142. INIT_LIST_HEAD(&ctx->link);
  143. if (ctx->obj == NULL) {
  144. kfree(ctx);
  145. DRM_DEBUG_DRIVER("Context object allocated failed\n");
  146. return ERR_PTR(-ENOMEM);
  147. }
  148. if (INTEL_INFO(dev)->gen >= 7) {
  149. ret = i915_gem_object_set_cache_level(ctx->obj,
  150. I915_CACHE_L3_LLC);
  151. /* Failure shouldn't ever happen this early */
  152. if (WARN_ON(ret))
  153. goto err_out;
  154. }
  155. /* The ring associated with the context object is handled by the normal
  156. * object tracking code. We give an initial ring value simple to pass an
  157. * assertion in the context switch code.
  158. */
  159. ctx->ring = &dev_priv->ring[RCS];
  160. list_add_tail(&ctx->link, &dev_priv->context_list);
  161. /* Default context will never have a file_priv */
  162. if (file_priv == NULL)
  163. return ctx;
  164. ret = idr_alloc(&file_priv->context_idr, ctx, DEFAULT_CONTEXT_ID + 1, 0,
  165. GFP_KERNEL);
  166. if (ret < 0)
  167. goto err_out;
  168. ctx->file_priv = file_priv;
  169. ctx->id = ret;
  170. /* NB: Mark all slices as needing a remap so that when the context first
  171. * loads it will restore whatever remap state already exists. If there
  172. * is no remap info, it will be a NOP. */
  173. ctx->remap_slice = (1 << NUM_L3_SLICES(dev)) - 1;
  174. return ctx;
  175. err_out:
  176. i915_gem_context_unreference(ctx);
  177. return ERR_PTR(ret);
  178. }
  179. static inline bool is_default_context(struct i915_hw_context *ctx)
  180. {
  181. return (ctx == ctx->ring->default_context);
  182. }
  183. /**
  184. * The default context needs to exist per ring that uses contexts. It stores the
  185. * context state of the GPU for applications that don't utilize HW contexts, as
  186. * well as an idle case.
  187. */
  188. static int create_default_context(struct drm_i915_private *dev_priv)
  189. {
  190. struct i915_hw_context *ctx;
  191. int ret;
  192. BUG_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
  193. ctx = create_hw_context(dev_priv->dev, NULL);
  194. if (IS_ERR(ctx))
  195. return PTR_ERR(ctx);
  196. /* We may need to do things with the shrinker which require us to
  197. * immediately switch back to the default context. This can cause a
  198. * problem as pinning the default context also requires GTT space which
  199. * may not be available. To avoid this we always pin the
  200. * default context.
  201. */
  202. ret = i915_gem_obj_ggtt_pin(ctx->obj, CONTEXT_ALIGN, false, false);
  203. if (ret) {
  204. DRM_DEBUG_DRIVER("Couldn't pin %d\n", ret);
  205. goto err_destroy;
  206. }
  207. ret = do_switch(ctx);
  208. if (ret) {
  209. DRM_DEBUG_DRIVER("Switch failed %d\n", ret);
  210. goto err_unpin;
  211. }
  212. dev_priv->ring[RCS].default_context = ctx;
  213. DRM_DEBUG_DRIVER("Default HW context loaded\n");
  214. return 0;
  215. err_unpin:
  216. i915_gem_object_unpin(ctx->obj);
  217. err_destroy:
  218. i915_gem_context_unreference(ctx);
  219. return ret;
  220. }
  221. void i915_gem_context_init(struct drm_device *dev)
  222. {
  223. struct drm_i915_private *dev_priv = dev->dev_private;
  224. if (!HAS_HW_CONTEXTS(dev)) {
  225. dev_priv->hw_contexts_disabled = true;
  226. DRM_DEBUG_DRIVER("Disabling HW Contexts; old hardware\n");
  227. return;
  228. }
  229. /* If called from reset, or thaw... we've been here already */
  230. if (dev_priv->hw_contexts_disabled ||
  231. dev_priv->ring[RCS].default_context)
  232. return;
  233. dev_priv->hw_context_size = round_up(get_context_size(dev), 4096);
  234. if (dev_priv->hw_context_size > (1<<20)) {
  235. dev_priv->hw_contexts_disabled = true;
  236. DRM_DEBUG_DRIVER("Disabling HW Contexts; invalid size\n");
  237. return;
  238. }
  239. if (create_default_context(dev_priv)) {
  240. dev_priv->hw_contexts_disabled = true;
  241. DRM_DEBUG_DRIVER("Disabling HW Contexts; create failed\n");
  242. return;
  243. }
  244. DRM_DEBUG_DRIVER("HW context support initialized\n");
  245. }
  246. void i915_gem_context_fini(struct drm_device *dev)
  247. {
  248. struct drm_i915_private *dev_priv = dev->dev_private;
  249. struct i915_hw_context *dctx = dev_priv->ring[RCS].default_context;
  250. if (dev_priv->hw_contexts_disabled)
  251. return;
  252. /* The only known way to stop the gpu from accessing the hw context is
  253. * to reset it. Do this as the very last operation to avoid confusing
  254. * other code, leading to spurious errors. */
  255. intel_gpu_reset(dev);
  256. /* When default context is created and switched to, base object refcount
  257. * will be 2 (+1 from object creation and +1 from do_switch()).
  258. * i915_gem_context_fini() will be called after gpu_idle() has switched
  259. * to default context. So we need to unreference the base object once
  260. * to offset the do_switch part, so that i915_gem_context_unreference()
  261. * can then free the base object correctly. */
  262. WARN_ON(!dev_priv->ring[RCS].last_context);
  263. if (dev_priv->ring[RCS].last_context == dctx) {
  264. /* Fake switch to NULL context */
  265. WARN_ON(dctx->obj->active);
  266. i915_gem_object_unpin(dctx->obj);
  267. i915_gem_context_unreference(dctx);
  268. }
  269. i915_gem_object_unpin(dctx->obj);
  270. i915_gem_context_unreference(dctx);
  271. dev_priv->ring[RCS].default_context = NULL;
  272. dev_priv->ring[RCS].last_context = NULL;
  273. }
  274. static int context_idr_cleanup(int id, void *p, void *data)
  275. {
  276. struct i915_hw_context *ctx = p;
  277. BUG_ON(id == DEFAULT_CONTEXT_ID);
  278. i915_gem_context_unreference(ctx);
  279. return 0;
  280. }
  281. struct i915_ctx_hang_stats *
  282. i915_gem_context_get_hang_stats(struct drm_device *dev,
  283. struct drm_file *file,
  284. u32 id)
  285. {
  286. struct drm_i915_private *dev_priv = dev->dev_private;
  287. struct drm_i915_file_private *file_priv = file->driver_priv;
  288. struct i915_hw_context *ctx;
  289. if (id == DEFAULT_CONTEXT_ID)
  290. return &file_priv->hang_stats;
  291. ctx = NULL;
  292. if (!dev_priv->hw_contexts_disabled)
  293. ctx = i915_gem_context_get(file->driver_priv, id);
  294. if (ctx == NULL)
  295. return ERR_PTR(-ENOENT);
  296. return &ctx->hang_stats;
  297. }
  298. void i915_gem_context_close(struct drm_device *dev, struct drm_file *file)
  299. {
  300. struct drm_i915_file_private *file_priv = file->driver_priv;
  301. mutex_lock(&dev->struct_mutex);
  302. idr_for_each(&file_priv->context_idr, context_idr_cleanup, NULL);
  303. idr_destroy(&file_priv->context_idr);
  304. mutex_unlock(&dev->struct_mutex);
  305. }
  306. static struct i915_hw_context *
  307. i915_gem_context_get(struct drm_i915_file_private *file_priv, u32 id)
  308. {
  309. return (struct i915_hw_context *)idr_find(&file_priv->context_idr, id);
  310. }
  311. static inline int
  312. mi_set_context(struct intel_ring_buffer *ring,
  313. struct i915_hw_context *new_context,
  314. u32 hw_flags)
  315. {
  316. int ret;
  317. /* w/a: If Flush TLB Invalidation Mode is enabled, driver must do a TLB
  318. * invalidation prior to MI_SET_CONTEXT. On GEN6 we don't set the value
  319. * explicitly, so we rely on the value at ring init, stored in
  320. * itlb_before_ctx_switch.
  321. */
  322. if (IS_GEN6(ring->dev) && ring->itlb_before_ctx_switch) {
  323. ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, 0);
  324. if (ret)
  325. return ret;
  326. }
  327. ret = intel_ring_begin(ring, 6);
  328. if (ret)
  329. return ret;
  330. /* WaProgramMiArbOnOffAroundMiSetContext:ivb,vlv,hsw */
  331. if (IS_GEN7(ring->dev))
  332. intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_DISABLE);
  333. else
  334. intel_ring_emit(ring, MI_NOOP);
  335. intel_ring_emit(ring, MI_NOOP);
  336. intel_ring_emit(ring, MI_SET_CONTEXT);
  337. intel_ring_emit(ring, i915_gem_obj_ggtt_offset(new_context->obj) |
  338. MI_MM_SPACE_GTT |
  339. MI_SAVE_EXT_STATE_EN |
  340. MI_RESTORE_EXT_STATE_EN |
  341. hw_flags);
  342. /* w/a: MI_SET_CONTEXT must always be followed by MI_NOOP */
  343. intel_ring_emit(ring, MI_NOOP);
  344. if (IS_GEN7(ring->dev))
  345. intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_ENABLE);
  346. else
  347. intel_ring_emit(ring, MI_NOOP);
  348. intel_ring_advance(ring);
  349. return ret;
  350. }
  351. static int do_switch(struct i915_hw_context *to)
  352. {
  353. struct intel_ring_buffer *ring = to->ring;
  354. struct i915_hw_context *from = ring->last_context;
  355. u32 hw_flags = 0;
  356. int ret, i;
  357. BUG_ON(from != NULL && from->obj != NULL && from->obj->pin_count == 0);
  358. if (from == to && !to->remap_slice)
  359. return 0;
  360. ret = i915_gem_obj_ggtt_pin(to->obj, CONTEXT_ALIGN, false, false);
  361. if (ret)
  362. return ret;
  363. /* Clear this page out of any CPU caches for coherent swap-in/out. Note
  364. * that thanks to write = false in this call and us not setting any gpu
  365. * write domains when putting a context object onto the active list
  366. * (when switching away from it), this won't block.
  367. * XXX: We need a real interface to do this instead of trickery. */
  368. ret = i915_gem_object_set_to_gtt_domain(to->obj, false);
  369. if (ret) {
  370. i915_gem_object_unpin(to->obj);
  371. return ret;
  372. }
  373. if (!to->obj->has_global_gtt_mapping)
  374. i915_gem_gtt_bind_object(to->obj, to->obj->cache_level);
  375. if (!to->is_initialized || is_default_context(to))
  376. hw_flags |= MI_RESTORE_INHIBIT;
  377. ret = mi_set_context(ring, to, hw_flags);
  378. if (ret) {
  379. i915_gem_object_unpin(to->obj);
  380. return ret;
  381. }
  382. for (i = 0; i < MAX_L3_SLICES; i++) {
  383. if (!(to->remap_slice & (1<<i)))
  384. continue;
  385. ret = i915_gem_l3_remap(ring, i);
  386. /* If it failed, try again next round */
  387. if (ret)
  388. DRM_DEBUG_DRIVER("L3 remapping failed\n");
  389. else
  390. to->remap_slice &= ~(1<<i);
  391. }
  392. /* The backing object for the context is done after switching to the
  393. * *next* context. Therefore we cannot retire the previous context until
  394. * the next context has already started running. In fact, the below code
  395. * is a bit suboptimal because the retiring can occur simply after the
  396. * MI_SET_CONTEXT instead of when the next seqno has completed.
  397. */
  398. if (from != NULL) {
  399. from->obj->base.read_domains = I915_GEM_DOMAIN_INSTRUCTION;
  400. i915_vma_move_to_active(i915_gem_obj_to_ggtt(from->obj), ring);
  401. /* As long as MI_SET_CONTEXT is serializing, ie. it flushes the
  402. * whole damn pipeline, we don't need to explicitly mark the
  403. * object dirty. The only exception is that the context must be
  404. * correct in case the object gets swapped out. Ideally we'd be
  405. * able to defer doing this until we know the object would be
  406. * swapped, but there is no way to do that yet.
  407. */
  408. from->obj->dirty = 1;
  409. BUG_ON(from->obj->ring != ring);
  410. /* obj is kept alive until the next request by its active ref */
  411. i915_gem_object_unpin(from->obj);
  412. i915_gem_context_unreference(from);
  413. }
  414. i915_gem_context_reference(to);
  415. ring->last_context = to;
  416. to->is_initialized = true;
  417. return 0;
  418. }
  419. /**
  420. * i915_switch_context() - perform a GPU context switch.
  421. * @ring: ring for which we'll execute the context switch
  422. * @file_priv: file_priv associated with the context, may be NULL
  423. * @id: context id number
  424. * @seqno: sequence number by which the new context will be switched to
  425. * @flags:
  426. *
  427. * The context life cycle is simple. The context refcount is incremented and
  428. * decremented by 1 and create and destroy. If the context is in use by the GPU,
  429. * it will have a refoucnt > 1. This allows us to destroy the context abstract
  430. * object while letting the normal object tracking destroy the backing BO.
  431. */
  432. int i915_switch_context(struct intel_ring_buffer *ring,
  433. struct drm_file *file,
  434. int to_id)
  435. {
  436. struct drm_i915_private *dev_priv = ring->dev->dev_private;
  437. struct i915_hw_context *to;
  438. if (dev_priv->hw_contexts_disabled)
  439. return 0;
  440. WARN_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
  441. if (ring != &dev_priv->ring[RCS])
  442. return 0;
  443. if (to_id == DEFAULT_CONTEXT_ID) {
  444. to = ring->default_context;
  445. } else {
  446. if (file == NULL)
  447. return -EINVAL;
  448. to = i915_gem_context_get(file->driver_priv, to_id);
  449. if (to == NULL)
  450. return -ENOENT;
  451. }
  452. return do_switch(to);
  453. }
  454. int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
  455. struct drm_file *file)
  456. {
  457. struct drm_i915_private *dev_priv = dev->dev_private;
  458. struct drm_i915_gem_context_create *args = data;
  459. struct drm_i915_file_private *file_priv = file->driver_priv;
  460. struct i915_hw_context *ctx;
  461. int ret;
  462. if (!(dev->driver->driver_features & DRIVER_GEM))
  463. return -ENODEV;
  464. if (dev_priv->hw_contexts_disabled)
  465. return -ENODEV;
  466. ret = i915_mutex_lock_interruptible(dev);
  467. if (ret)
  468. return ret;
  469. ctx = create_hw_context(dev, file_priv);
  470. mutex_unlock(&dev->struct_mutex);
  471. if (IS_ERR(ctx))
  472. return PTR_ERR(ctx);
  473. args->ctx_id = ctx->id;
  474. DRM_DEBUG_DRIVER("HW context %d created\n", args->ctx_id);
  475. return 0;
  476. }
  477. int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
  478. struct drm_file *file)
  479. {
  480. struct drm_i915_gem_context_destroy *args = data;
  481. struct drm_i915_file_private *file_priv = file->driver_priv;
  482. struct i915_hw_context *ctx;
  483. int ret;
  484. if (!(dev->driver->driver_features & DRIVER_GEM))
  485. return -ENODEV;
  486. ret = i915_mutex_lock_interruptible(dev);
  487. if (ret)
  488. return ret;
  489. ctx = i915_gem_context_get(file_priv, args->ctx_id);
  490. if (!ctx) {
  491. mutex_unlock(&dev->struct_mutex);
  492. return -ENOENT;
  493. }
  494. idr_remove(&ctx->file_priv->context_idr, ctx->id);
  495. i915_gem_context_unreference(ctx);
  496. mutex_unlock(&dev->struct_mutex);
  497. DRM_DEBUG_DRIVER("HW context %d destroyed\n", args->ctx_id);
  498. return 0;
  499. }