i915_gem_context.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  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. #include "i915_trace.h"
  90. /* This is a HW constraint. The value below is the largest known requirement
  91. * I've seen in a spec to date, and that was a workaround for a non-shipping
  92. * part. It should be safe to decrease this, but it's more future proof as is.
  93. */
  94. #define GEN6_CONTEXT_ALIGN (64<<10)
  95. #define GEN7_CONTEXT_ALIGN 4096
  96. static size_t get_context_alignment(struct drm_device *dev)
  97. {
  98. if (IS_GEN6(dev))
  99. return GEN6_CONTEXT_ALIGN;
  100. return GEN7_CONTEXT_ALIGN;
  101. }
  102. static int get_context_size(struct drm_device *dev)
  103. {
  104. struct drm_i915_private *dev_priv = dev->dev_private;
  105. int ret;
  106. u32 reg;
  107. switch (INTEL_INFO(dev)->gen) {
  108. case 6:
  109. reg = I915_READ(CXT_SIZE);
  110. ret = GEN6_CXT_TOTAL_SIZE(reg) * 64;
  111. break;
  112. case 7:
  113. reg = I915_READ(GEN7_CXT_SIZE);
  114. if (IS_HASWELL(dev))
  115. ret = HSW_CXT_TOTAL_SIZE;
  116. else
  117. ret = GEN7_CXT_TOTAL_SIZE(reg) * 64;
  118. break;
  119. case 8:
  120. ret = GEN8_CXT_TOTAL_SIZE;
  121. break;
  122. default:
  123. BUG();
  124. }
  125. return ret;
  126. }
  127. static void i915_gem_context_clean(struct intel_context *ctx)
  128. {
  129. struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
  130. struct i915_vma *vma, *next;
  131. if (!ppgtt)
  132. return;
  133. list_for_each_entry_safe(vma, next, &ppgtt->base.inactive_list,
  134. mm_list) {
  135. if (WARN_ON(__i915_vma_unbind_no_wait(vma)))
  136. break;
  137. }
  138. }
  139. void i915_gem_context_free(struct kref *ctx_ref)
  140. {
  141. struct intel_context *ctx = container_of(ctx_ref, typeof(*ctx), ref);
  142. trace_i915_context_free(ctx);
  143. if (i915.enable_execlists)
  144. intel_lr_context_free(ctx);
  145. /*
  146. * This context is going away and we need to remove all VMAs still
  147. * around. This is to handle imported shared objects for which
  148. * destructor did not run when their handles were closed.
  149. */
  150. i915_gem_context_clean(ctx);
  151. i915_ppgtt_put(ctx->ppgtt);
  152. if (ctx->legacy_hw_ctx.rcs_state)
  153. drm_gem_object_unreference(&ctx->legacy_hw_ctx.rcs_state->base);
  154. list_del(&ctx->link);
  155. kfree(ctx);
  156. }
  157. struct drm_i915_gem_object *
  158. i915_gem_alloc_context_obj(struct drm_device *dev, size_t size)
  159. {
  160. struct drm_i915_gem_object *obj;
  161. int ret;
  162. obj = i915_gem_alloc_object(dev, size);
  163. if (obj == NULL)
  164. return ERR_PTR(-ENOMEM);
  165. /*
  166. * Try to make the context utilize L3 as well as LLC.
  167. *
  168. * On VLV we don't have L3 controls in the PTEs so we
  169. * shouldn't touch the cache level, especially as that
  170. * would make the object snooped which might have a
  171. * negative performance impact.
  172. */
  173. if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev)) {
  174. ret = i915_gem_object_set_cache_level(obj, I915_CACHE_L3_LLC);
  175. /* Failure shouldn't ever happen this early */
  176. if (WARN_ON(ret)) {
  177. drm_gem_object_unreference(&obj->base);
  178. return ERR_PTR(ret);
  179. }
  180. }
  181. return obj;
  182. }
  183. static struct intel_context *
  184. __create_hw_context(struct drm_device *dev,
  185. struct drm_i915_file_private *file_priv)
  186. {
  187. struct drm_i915_private *dev_priv = dev->dev_private;
  188. struct intel_context *ctx;
  189. int ret;
  190. ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
  191. if (ctx == NULL)
  192. return ERR_PTR(-ENOMEM);
  193. kref_init(&ctx->ref);
  194. list_add_tail(&ctx->link, &dev_priv->context_list);
  195. ctx->i915 = dev_priv;
  196. if (dev_priv->hw_context_size) {
  197. struct drm_i915_gem_object *obj =
  198. i915_gem_alloc_context_obj(dev, dev_priv->hw_context_size);
  199. if (IS_ERR(obj)) {
  200. ret = PTR_ERR(obj);
  201. goto err_out;
  202. }
  203. ctx->legacy_hw_ctx.rcs_state = obj;
  204. }
  205. /* Default context will never have a file_priv */
  206. if (file_priv != NULL) {
  207. ret = idr_alloc(&file_priv->context_idr, ctx,
  208. DEFAULT_CONTEXT_HANDLE, 0, GFP_KERNEL);
  209. if (ret < 0)
  210. goto err_out;
  211. } else
  212. ret = DEFAULT_CONTEXT_HANDLE;
  213. ctx->file_priv = file_priv;
  214. ctx->user_handle = ret;
  215. /* NB: Mark all slices as needing a remap so that when the context first
  216. * loads it will restore whatever remap state already exists. If there
  217. * is no remap info, it will be a NOP. */
  218. ctx->remap_slice = (1 << NUM_L3_SLICES(dev)) - 1;
  219. ctx->hang_stats.ban_period_seconds = DRM_I915_CTX_BAN_PERIOD;
  220. return ctx;
  221. err_out:
  222. i915_gem_context_unreference(ctx);
  223. return ERR_PTR(ret);
  224. }
  225. /**
  226. * The default context needs to exist per ring that uses contexts. It stores the
  227. * context state of the GPU for applications that don't utilize HW contexts, as
  228. * well as an idle case.
  229. */
  230. static struct intel_context *
  231. i915_gem_create_context(struct drm_device *dev,
  232. struct drm_i915_file_private *file_priv)
  233. {
  234. const bool is_global_default_ctx = file_priv == NULL;
  235. struct intel_context *ctx;
  236. int ret = 0;
  237. BUG_ON(!mutex_is_locked(&dev->struct_mutex));
  238. ctx = __create_hw_context(dev, file_priv);
  239. if (IS_ERR(ctx))
  240. return ctx;
  241. if (is_global_default_ctx && ctx->legacy_hw_ctx.rcs_state) {
  242. /* We may need to do things with the shrinker which
  243. * require us to immediately switch back to the default
  244. * context. This can cause a problem as pinning the
  245. * default context also requires GTT space which may not
  246. * be available. To avoid this we always pin the default
  247. * context.
  248. */
  249. ret = i915_gem_obj_ggtt_pin(ctx->legacy_hw_ctx.rcs_state,
  250. get_context_alignment(dev), 0);
  251. if (ret) {
  252. DRM_DEBUG_DRIVER("Couldn't pin %d\n", ret);
  253. goto err_destroy;
  254. }
  255. }
  256. if (USES_FULL_PPGTT(dev)) {
  257. struct i915_hw_ppgtt *ppgtt = i915_ppgtt_create(dev, file_priv);
  258. if (IS_ERR_OR_NULL(ppgtt)) {
  259. DRM_DEBUG_DRIVER("PPGTT setup failed (%ld)\n",
  260. PTR_ERR(ppgtt));
  261. ret = PTR_ERR(ppgtt);
  262. goto err_unpin;
  263. }
  264. ctx->ppgtt = ppgtt;
  265. }
  266. trace_i915_context_create(ctx);
  267. return ctx;
  268. err_unpin:
  269. if (is_global_default_ctx && ctx->legacy_hw_ctx.rcs_state)
  270. i915_gem_object_ggtt_unpin(ctx->legacy_hw_ctx.rcs_state);
  271. err_destroy:
  272. idr_remove(&file_priv->context_idr, ctx->user_handle);
  273. i915_gem_context_unreference(ctx);
  274. return ERR_PTR(ret);
  275. }
  276. void i915_gem_context_reset(struct drm_device *dev)
  277. {
  278. struct drm_i915_private *dev_priv = dev->dev_private;
  279. int i;
  280. if (i915.enable_execlists) {
  281. struct intel_context *ctx;
  282. list_for_each_entry(ctx, &dev_priv->context_list, link) {
  283. intel_lr_context_reset(dev, ctx);
  284. }
  285. return;
  286. }
  287. for (i = 0; i < I915_NUM_RINGS; i++) {
  288. struct intel_engine_cs *ring = &dev_priv->ring[i];
  289. struct intel_context *lctx = ring->last_context;
  290. if (lctx) {
  291. if (lctx->legacy_hw_ctx.rcs_state && i == RCS)
  292. i915_gem_object_ggtt_unpin(lctx->legacy_hw_ctx.rcs_state);
  293. i915_gem_context_unreference(lctx);
  294. ring->last_context = NULL;
  295. }
  296. /* Force the GPU state to be reinitialised on enabling */
  297. if (ring->default_context)
  298. ring->default_context->legacy_hw_ctx.initialized = false;
  299. }
  300. }
  301. int i915_gem_context_init(struct drm_device *dev)
  302. {
  303. struct drm_i915_private *dev_priv = dev->dev_private;
  304. struct intel_context *ctx;
  305. int i;
  306. /* Init should only be called once per module load. Eventually the
  307. * restriction on the context_disabled check can be loosened. */
  308. if (WARN_ON(dev_priv->ring[RCS].default_context))
  309. return 0;
  310. if (intel_vgpu_active(dev) && HAS_LOGICAL_RING_CONTEXTS(dev)) {
  311. if (!i915.enable_execlists) {
  312. DRM_INFO("Only EXECLIST mode is supported in vgpu.\n");
  313. return -EINVAL;
  314. }
  315. }
  316. if (i915.enable_execlists) {
  317. /* NB: intentionally left blank. We will allocate our own
  318. * backing objects as we need them, thank you very much */
  319. dev_priv->hw_context_size = 0;
  320. } else if (HAS_HW_CONTEXTS(dev)) {
  321. dev_priv->hw_context_size = round_up(get_context_size(dev), 4096);
  322. if (dev_priv->hw_context_size > (1<<20)) {
  323. DRM_DEBUG_DRIVER("Disabling HW Contexts; invalid size %d\n",
  324. dev_priv->hw_context_size);
  325. dev_priv->hw_context_size = 0;
  326. }
  327. }
  328. ctx = i915_gem_create_context(dev, NULL);
  329. if (IS_ERR(ctx)) {
  330. DRM_ERROR("Failed to create default global context (error %ld)\n",
  331. PTR_ERR(ctx));
  332. return PTR_ERR(ctx);
  333. }
  334. for (i = 0; i < I915_NUM_RINGS; i++) {
  335. struct intel_engine_cs *ring = &dev_priv->ring[i];
  336. /* NB: RCS will hold a ref for all rings */
  337. ring->default_context = ctx;
  338. }
  339. DRM_DEBUG_DRIVER("%s context support initialized\n",
  340. i915.enable_execlists ? "LR" :
  341. dev_priv->hw_context_size ? "HW" : "fake");
  342. return 0;
  343. }
  344. void i915_gem_context_fini(struct drm_device *dev)
  345. {
  346. struct drm_i915_private *dev_priv = dev->dev_private;
  347. struct intel_context *dctx = dev_priv->ring[RCS].default_context;
  348. int i;
  349. if (dctx->legacy_hw_ctx.rcs_state) {
  350. /* The only known way to stop the gpu from accessing the hw context is
  351. * to reset it. Do this as the very last operation to avoid confusing
  352. * other code, leading to spurious errors. */
  353. intel_gpu_reset(dev);
  354. /* When default context is created and switched to, base object refcount
  355. * will be 2 (+1 from object creation and +1 from do_switch()).
  356. * i915_gem_context_fini() will be called after gpu_idle() has switched
  357. * to default context. So we need to unreference the base object once
  358. * to offset the do_switch part, so that i915_gem_context_unreference()
  359. * can then free the base object correctly. */
  360. WARN_ON(!dev_priv->ring[RCS].last_context);
  361. if (dev_priv->ring[RCS].last_context == dctx) {
  362. /* Fake switch to NULL context */
  363. WARN_ON(dctx->legacy_hw_ctx.rcs_state->active);
  364. i915_gem_object_ggtt_unpin(dctx->legacy_hw_ctx.rcs_state);
  365. i915_gem_context_unreference(dctx);
  366. dev_priv->ring[RCS].last_context = NULL;
  367. }
  368. i915_gem_object_ggtt_unpin(dctx->legacy_hw_ctx.rcs_state);
  369. }
  370. for (i = 0; i < I915_NUM_RINGS; i++) {
  371. struct intel_engine_cs *ring = &dev_priv->ring[i];
  372. if (ring->last_context)
  373. i915_gem_context_unreference(ring->last_context);
  374. ring->default_context = NULL;
  375. ring->last_context = NULL;
  376. }
  377. i915_gem_context_unreference(dctx);
  378. }
  379. int i915_gem_context_enable(struct drm_i915_gem_request *req)
  380. {
  381. struct intel_engine_cs *ring = req->ring;
  382. int ret;
  383. if (i915.enable_execlists) {
  384. if (ring->init_context == NULL)
  385. return 0;
  386. ret = ring->init_context(req);
  387. } else
  388. ret = i915_switch_context(req);
  389. if (ret) {
  390. DRM_ERROR("ring init context: %d\n", ret);
  391. return ret;
  392. }
  393. return 0;
  394. }
  395. static int context_idr_cleanup(int id, void *p, void *data)
  396. {
  397. struct intel_context *ctx = p;
  398. i915_gem_context_unreference(ctx);
  399. return 0;
  400. }
  401. int i915_gem_context_open(struct drm_device *dev, struct drm_file *file)
  402. {
  403. struct drm_i915_file_private *file_priv = file->driver_priv;
  404. struct intel_context *ctx;
  405. idr_init(&file_priv->context_idr);
  406. mutex_lock(&dev->struct_mutex);
  407. ctx = i915_gem_create_context(dev, file_priv);
  408. mutex_unlock(&dev->struct_mutex);
  409. if (IS_ERR(ctx)) {
  410. idr_destroy(&file_priv->context_idr);
  411. return PTR_ERR(ctx);
  412. }
  413. return 0;
  414. }
  415. void i915_gem_context_close(struct drm_device *dev, struct drm_file *file)
  416. {
  417. struct drm_i915_file_private *file_priv = file->driver_priv;
  418. idr_for_each(&file_priv->context_idr, context_idr_cleanup, NULL);
  419. idr_destroy(&file_priv->context_idr);
  420. }
  421. struct intel_context *
  422. i915_gem_context_get(struct drm_i915_file_private *file_priv, u32 id)
  423. {
  424. struct intel_context *ctx;
  425. ctx = (struct intel_context *)idr_find(&file_priv->context_idr, id);
  426. if (!ctx)
  427. return ERR_PTR(-ENOENT);
  428. return ctx;
  429. }
  430. static inline int
  431. mi_set_context(struct drm_i915_gem_request *req, u32 hw_flags)
  432. {
  433. struct intel_engine_cs *ring = req->ring;
  434. u32 flags = hw_flags | MI_MM_SPACE_GTT;
  435. const int num_rings =
  436. /* Use an extended w/a on ivb+ if signalling from other rings */
  437. i915_semaphore_is_enabled(ring->dev) ?
  438. hweight32(INTEL_INFO(ring->dev)->ring_mask) - 1 :
  439. 0;
  440. int len, i, ret;
  441. /* w/a: If Flush TLB Invalidation Mode is enabled, driver must do a TLB
  442. * invalidation prior to MI_SET_CONTEXT. On GEN6 we don't set the value
  443. * explicitly, so we rely on the value at ring init, stored in
  444. * itlb_before_ctx_switch.
  445. */
  446. if (IS_GEN6(ring->dev)) {
  447. ret = ring->flush(req, I915_GEM_GPU_DOMAINS, 0);
  448. if (ret)
  449. return ret;
  450. }
  451. /* These flags are for resource streamer on HSW+ */
  452. if (IS_HASWELL(ring->dev) || INTEL_INFO(ring->dev)->gen >= 8)
  453. flags |= (HSW_MI_RS_SAVE_STATE_EN | HSW_MI_RS_RESTORE_STATE_EN);
  454. else if (INTEL_INFO(ring->dev)->gen < 8)
  455. flags |= (MI_SAVE_EXT_STATE_EN | MI_RESTORE_EXT_STATE_EN);
  456. len = 4;
  457. if (INTEL_INFO(ring->dev)->gen >= 7)
  458. len += 2 + (num_rings ? 4*num_rings + 2 : 0);
  459. ret = intel_ring_begin(req, len);
  460. if (ret)
  461. return ret;
  462. /* WaProgramMiArbOnOffAroundMiSetContext:ivb,vlv,hsw,bdw,chv */
  463. if (INTEL_INFO(ring->dev)->gen >= 7) {
  464. intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_DISABLE);
  465. if (num_rings) {
  466. struct intel_engine_cs *signaller;
  467. intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(num_rings));
  468. for_each_ring(signaller, to_i915(ring->dev), i) {
  469. if (signaller == ring)
  470. continue;
  471. intel_ring_emit(ring, RING_PSMI_CTL(signaller->mmio_base));
  472. intel_ring_emit(ring, _MASKED_BIT_ENABLE(GEN6_PSMI_SLEEP_MSG_DISABLE));
  473. }
  474. }
  475. }
  476. intel_ring_emit(ring, MI_NOOP);
  477. intel_ring_emit(ring, MI_SET_CONTEXT);
  478. intel_ring_emit(ring, i915_gem_obj_ggtt_offset(req->ctx->legacy_hw_ctx.rcs_state) |
  479. flags);
  480. /*
  481. * w/a: MI_SET_CONTEXT must always be followed by MI_NOOP
  482. * WaMiSetContext_Hang:snb,ivb,vlv
  483. */
  484. intel_ring_emit(ring, MI_NOOP);
  485. if (INTEL_INFO(ring->dev)->gen >= 7) {
  486. if (num_rings) {
  487. struct intel_engine_cs *signaller;
  488. intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(num_rings));
  489. for_each_ring(signaller, to_i915(ring->dev), i) {
  490. if (signaller == ring)
  491. continue;
  492. intel_ring_emit(ring, RING_PSMI_CTL(signaller->mmio_base));
  493. intel_ring_emit(ring, _MASKED_BIT_DISABLE(GEN6_PSMI_SLEEP_MSG_DISABLE));
  494. }
  495. }
  496. intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_ENABLE);
  497. }
  498. intel_ring_advance(ring);
  499. return ret;
  500. }
  501. static inline bool should_skip_switch(struct intel_engine_cs *ring,
  502. struct intel_context *from,
  503. struct intel_context *to)
  504. {
  505. if (to->remap_slice)
  506. return false;
  507. if (to->ppgtt && from == to &&
  508. !(intel_ring_flag(ring) & to->ppgtt->pd_dirty_rings))
  509. return true;
  510. return false;
  511. }
  512. static bool
  513. needs_pd_load_pre(struct intel_engine_cs *ring, struct intel_context *to)
  514. {
  515. struct drm_i915_private *dev_priv = ring->dev->dev_private;
  516. if (!to->ppgtt)
  517. return false;
  518. if (INTEL_INFO(ring->dev)->gen < 8)
  519. return true;
  520. if (ring != &dev_priv->ring[RCS])
  521. return true;
  522. return false;
  523. }
  524. static bool
  525. needs_pd_load_post(struct intel_engine_cs *ring, struct intel_context *to,
  526. u32 hw_flags)
  527. {
  528. struct drm_i915_private *dev_priv = ring->dev->dev_private;
  529. if (!to->ppgtt)
  530. return false;
  531. if (!IS_GEN8(ring->dev))
  532. return false;
  533. if (ring != &dev_priv->ring[RCS])
  534. return false;
  535. if (hw_flags & MI_RESTORE_INHIBIT)
  536. return true;
  537. return false;
  538. }
  539. static int do_switch(struct drm_i915_gem_request *req)
  540. {
  541. struct intel_context *to = req->ctx;
  542. struct intel_engine_cs *ring = req->ring;
  543. struct drm_i915_private *dev_priv = ring->dev->dev_private;
  544. struct intel_context *from = ring->last_context;
  545. u32 hw_flags = 0;
  546. bool uninitialized = false;
  547. int ret, i;
  548. if (from != NULL && ring == &dev_priv->ring[RCS]) {
  549. BUG_ON(from->legacy_hw_ctx.rcs_state == NULL);
  550. BUG_ON(!i915_gem_obj_is_pinned(from->legacy_hw_ctx.rcs_state));
  551. }
  552. if (should_skip_switch(ring, from, to))
  553. return 0;
  554. /* Trying to pin first makes error handling easier. */
  555. if (ring == &dev_priv->ring[RCS]) {
  556. ret = i915_gem_obj_ggtt_pin(to->legacy_hw_ctx.rcs_state,
  557. get_context_alignment(ring->dev), 0);
  558. if (ret)
  559. return ret;
  560. }
  561. /*
  562. * Pin can switch back to the default context if we end up calling into
  563. * evict_everything - as a last ditch gtt defrag effort that also
  564. * switches to the default context. Hence we need to reload from here.
  565. */
  566. from = ring->last_context;
  567. if (needs_pd_load_pre(ring, to)) {
  568. /* Older GENs and non render rings still want the load first,
  569. * "PP_DCLV followed by PP_DIR_BASE register through Load
  570. * Register Immediate commands in Ring Buffer before submitting
  571. * a context."*/
  572. trace_switch_mm(ring, to);
  573. ret = to->ppgtt->switch_mm(to->ppgtt, req);
  574. if (ret)
  575. goto unpin_out;
  576. /* Doing a PD load always reloads the page dirs */
  577. to->ppgtt->pd_dirty_rings &= ~intel_ring_flag(ring);
  578. }
  579. if (ring != &dev_priv->ring[RCS]) {
  580. if (from)
  581. i915_gem_context_unreference(from);
  582. goto done;
  583. }
  584. /*
  585. * Clear this page out of any CPU caches for coherent swap-in/out. Note
  586. * that thanks to write = false in this call and us not setting any gpu
  587. * write domains when putting a context object onto the active list
  588. * (when switching away from it), this won't block.
  589. *
  590. * XXX: We need a real interface to do this instead of trickery.
  591. */
  592. ret = i915_gem_object_set_to_gtt_domain(to->legacy_hw_ctx.rcs_state, false);
  593. if (ret)
  594. goto unpin_out;
  595. if (!to->legacy_hw_ctx.initialized || i915_gem_context_is_default(to)) {
  596. hw_flags |= MI_RESTORE_INHIBIT;
  597. /* NB: If we inhibit the restore, the context is not allowed to
  598. * die because future work may end up depending on valid address
  599. * space. This means we must enforce that a page table load
  600. * occur when this occurs. */
  601. } else if (to->ppgtt &&
  602. (intel_ring_flag(ring) & to->ppgtt->pd_dirty_rings)) {
  603. hw_flags |= MI_FORCE_RESTORE;
  604. to->ppgtt->pd_dirty_rings &= ~intel_ring_flag(ring);
  605. }
  606. /* We should never emit switch_mm more than once */
  607. WARN_ON(needs_pd_load_pre(ring, to) &&
  608. needs_pd_load_post(ring, to, hw_flags));
  609. ret = mi_set_context(req, hw_flags);
  610. if (ret)
  611. goto unpin_out;
  612. /* GEN8 does *not* require an explicit reload if the PDPs have been
  613. * setup, and we do not wish to move them.
  614. */
  615. if (needs_pd_load_post(ring, to, hw_flags)) {
  616. trace_switch_mm(ring, to);
  617. ret = to->ppgtt->switch_mm(to->ppgtt, req);
  618. /* The hardware context switch is emitted, but we haven't
  619. * actually changed the state - so it's probably safe to bail
  620. * here. Still, let the user know something dangerous has
  621. * happened.
  622. */
  623. if (ret) {
  624. DRM_ERROR("Failed to change address space on context switch\n");
  625. goto unpin_out;
  626. }
  627. }
  628. for (i = 0; i < MAX_L3_SLICES; i++) {
  629. if (!(to->remap_slice & (1<<i)))
  630. continue;
  631. ret = i915_gem_l3_remap(req, i);
  632. /* If it failed, try again next round */
  633. if (ret)
  634. DRM_DEBUG_DRIVER("L3 remapping failed\n");
  635. else
  636. to->remap_slice &= ~(1<<i);
  637. }
  638. /* The backing object for the context is done after switching to the
  639. * *next* context. Therefore we cannot retire the previous context until
  640. * the next context has already started running. In fact, the below code
  641. * is a bit suboptimal because the retiring can occur simply after the
  642. * MI_SET_CONTEXT instead of when the next seqno has completed.
  643. */
  644. if (from != NULL) {
  645. from->legacy_hw_ctx.rcs_state->base.read_domains = I915_GEM_DOMAIN_INSTRUCTION;
  646. i915_vma_move_to_active(i915_gem_obj_to_ggtt(from->legacy_hw_ctx.rcs_state), req);
  647. /* As long as MI_SET_CONTEXT is serializing, ie. it flushes the
  648. * whole damn pipeline, we don't need to explicitly mark the
  649. * object dirty. The only exception is that the context must be
  650. * correct in case the object gets swapped out. Ideally we'd be
  651. * able to defer doing this until we know the object would be
  652. * swapped, but there is no way to do that yet.
  653. */
  654. from->legacy_hw_ctx.rcs_state->dirty = 1;
  655. /* obj is kept alive until the next request by its active ref */
  656. i915_gem_object_ggtt_unpin(from->legacy_hw_ctx.rcs_state);
  657. i915_gem_context_unreference(from);
  658. }
  659. uninitialized = !to->legacy_hw_ctx.initialized;
  660. to->legacy_hw_ctx.initialized = true;
  661. done:
  662. i915_gem_context_reference(to);
  663. ring->last_context = to;
  664. if (uninitialized) {
  665. if (ring->init_context) {
  666. ret = ring->init_context(req);
  667. if (ret)
  668. DRM_ERROR("ring init context: %d\n", ret);
  669. }
  670. }
  671. return 0;
  672. unpin_out:
  673. if (ring->id == RCS)
  674. i915_gem_object_ggtt_unpin(to->legacy_hw_ctx.rcs_state);
  675. return ret;
  676. }
  677. /**
  678. * i915_switch_context() - perform a GPU context switch.
  679. * @req: request for which we'll execute the context switch
  680. *
  681. * The context life cycle is simple. The context refcount is incremented and
  682. * decremented by 1 and create and destroy. If the context is in use by the GPU,
  683. * it will have a refcount > 1. This allows us to destroy the context abstract
  684. * object while letting the normal object tracking destroy the backing BO.
  685. *
  686. * This function should not be used in execlists mode. Instead the context is
  687. * switched by writing to the ELSP and requests keep a reference to their
  688. * context.
  689. */
  690. int i915_switch_context(struct drm_i915_gem_request *req)
  691. {
  692. struct intel_engine_cs *ring = req->ring;
  693. struct drm_i915_private *dev_priv = ring->dev->dev_private;
  694. WARN_ON(i915.enable_execlists);
  695. WARN_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
  696. if (req->ctx->legacy_hw_ctx.rcs_state == NULL) { /* We have the fake context */
  697. if (req->ctx != ring->last_context) {
  698. i915_gem_context_reference(req->ctx);
  699. if (ring->last_context)
  700. i915_gem_context_unreference(ring->last_context);
  701. ring->last_context = req->ctx;
  702. }
  703. return 0;
  704. }
  705. return do_switch(req);
  706. }
  707. static bool contexts_enabled(struct drm_device *dev)
  708. {
  709. return i915.enable_execlists || to_i915(dev)->hw_context_size;
  710. }
  711. int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
  712. struct drm_file *file)
  713. {
  714. struct drm_i915_gem_context_create *args = data;
  715. struct drm_i915_file_private *file_priv = file->driver_priv;
  716. struct intel_context *ctx;
  717. int ret;
  718. if (!contexts_enabled(dev))
  719. return -ENODEV;
  720. ret = i915_mutex_lock_interruptible(dev);
  721. if (ret)
  722. return ret;
  723. ctx = i915_gem_create_context(dev, file_priv);
  724. mutex_unlock(&dev->struct_mutex);
  725. if (IS_ERR(ctx))
  726. return PTR_ERR(ctx);
  727. args->ctx_id = ctx->user_handle;
  728. DRM_DEBUG_DRIVER("HW context %d created\n", args->ctx_id);
  729. return 0;
  730. }
  731. int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
  732. struct drm_file *file)
  733. {
  734. struct drm_i915_gem_context_destroy *args = data;
  735. struct drm_i915_file_private *file_priv = file->driver_priv;
  736. struct intel_context *ctx;
  737. int ret;
  738. if (args->ctx_id == DEFAULT_CONTEXT_HANDLE)
  739. return -ENOENT;
  740. ret = i915_mutex_lock_interruptible(dev);
  741. if (ret)
  742. return ret;
  743. ctx = i915_gem_context_get(file_priv, args->ctx_id);
  744. if (IS_ERR(ctx)) {
  745. mutex_unlock(&dev->struct_mutex);
  746. return PTR_ERR(ctx);
  747. }
  748. idr_remove(&ctx->file_priv->context_idr, ctx->user_handle);
  749. i915_gem_context_unreference(ctx);
  750. mutex_unlock(&dev->struct_mutex);
  751. DRM_DEBUG_DRIVER("HW context %d destroyed\n", args->ctx_id);
  752. return 0;
  753. }
  754. int i915_gem_context_getparam_ioctl(struct drm_device *dev, void *data,
  755. struct drm_file *file)
  756. {
  757. struct drm_i915_file_private *file_priv = file->driver_priv;
  758. struct drm_i915_gem_context_param *args = data;
  759. struct intel_context *ctx;
  760. int ret;
  761. ret = i915_mutex_lock_interruptible(dev);
  762. if (ret)
  763. return ret;
  764. ctx = i915_gem_context_get(file_priv, args->ctx_id);
  765. if (IS_ERR(ctx)) {
  766. mutex_unlock(&dev->struct_mutex);
  767. return PTR_ERR(ctx);
  768. }
  769. args->size = 0;
  770. switch (args->param) {
  771. case I915_CONTEXT_PARAM_BAN_PERIOD:
  772. args->value = ctx->hang_stats.ban_period_seconds;
  773. break;
  774. case I915_CONTEXT_PARAM_NO_ZEROMAP:
  775. args->value = ctx->flags & CONTEXT_NO_ZEROMAP;
  776. break;
  777. default:
  778. ret = -EINVAL;
  779. break;
  780. }
  781. mutex_unlock(&dev->struct_mutex);
  782. return ret;
  783. }
  784. int i915_gem_context_setparam_ioctl(struct drm_device *dev, void *data,
  785. struct drm_file *file)
  786. {
  787. struct drm_i915_file_private *file_priv = file->driver_priv;
  788. struct drm_i915_gem_context_param *args = data;
  789. struct intel_context *ctx;
  790. int ret;
  791. ret = i915_mutex_lock_interruptible(dev);
  792. if (ret)
  793. return ret;
  794. ctx = i915_gem_context_get(file_priv, args->ctx_id);
  795. if (IS_ERR(ctx)) {
  796. mutex_unlock(&dev->struct_mutex);
  797. return PTR_ERR(ctx);
  798. }
  799. switch (args->param) {
  800. case I915_CONTEXT_PARAM_BAN_PERIOD:
  801. if (args->size)
  802. ret = -EINVAL;
  803. else if (args->value < ctx->hang_stats.ban_period_seconds &&
  804. !capable(CAP_SYS_ADMIN))
  805. ret = -EPERM;
  806. else
  807. ctx->hang_stats.ban_period_seconds = args->value;
  808. break;
  809. case I915_CONTEXT_PARAM_NO_ZEROMAP:
  810. if (args->size) {
  811. ret = -EINVAL;
  812. } else {
  813. ctx->flags &= ~CONTEXT_NO_ZEROMAP;
  814. ctx->flags |= args->value ? CONTEXT_NO_ZEROMAP : 0;
  815. }
  816. break;
  817. default:
  818. ret = -EINVAL;
  819. break;
  820. }
  821. mutex_unlock(&dev->struct_mutex);
  822. return ret;
  823. }