Skip to content

Commit

Permalink
drm/i915: Finalize contexts in GEM_CONTEXT_CREATE on version 13+
Browse files Browse the repository at this point in the history
All the proto-context stuff for context creation exists to allow older
userspace drivers to set VMs and engine sets via SET_CONTEXT_PARAM.
Drivers need to update to use CONTEXT_CREATE_EXT_* for this going
forward.  Force the issue by blocking the old mechanism on any future
hardware generations.

Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
  • Loading branch information
gfxstrand authored and intel-lab-lkp committed Jun 9, 2021
1 parent 82e92cf commit 48a06ef
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions drivers/gpu/drm/i915/gem/i915_gem_context.c
Expand Up @@ -1994,9 +1994,22 @@ int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
goto err_pc;
}

ret = proto_context_register(ext_data.fpriv, ext_data.pc, &id);
if (ret < 0)
goto err_pc;
if (GRAPHICS_VER(i915) > 12) {
struct i915_gem_context *ctx;

ctx = i915_gem_create_context(i915, ext_data.pc);
if (IS_ERR(ctx)) {
ret = PTR_ERR(ctx);
goto err_pc;
}

proto_context_close(ext_data.pc);
gem_context_register(ctx, ext_data.fpriv, id);
} else {
ret = proto_context_register(ext_data.fpriv, ext_data.pc, &id);
if (ret < 0)
goto err_pc;
}

args->ctx_id = id;
drm_dbg(&i915->drm, "HW context %d created\n", args->ctx_id);
Expand Down Expand Up @@ -2179,15 +2192,17 @@ int i915_gem_context_setparam_ioctl(struct drm_device *dev, void *data,
mutex_lock(&file_priv->proto_context_lock);
ctx = __context_lookup(file_priv, args->ctx_id);
if (!ctx) {
/* FIXME: We should consider disallowing SET_CONTEXT_PARAM
* for most things on future platforms. Clients should be
* using CONTEXT_CREATE_EXT_PARAM instead.
*/
pc = xa_load(&file_priv->proto_context_xa, args->ctx_id);
if (pc)
if (pc) {
/* Contexts should be finalized inside
* GEM_CONTEXT_CREATE starting with graphics
* version 13.
*/
WARN_ON(GRAPHICS_VER(file_priv->dev_priv) > 12);
ret = set_proto_ctx_param(file_priv, pc, args);
else
} else {
ret = -ENOENT;
}
}
mutex_unlock(&file_priv->proto_context_lock);

Expand Down

0 comments on commit 48a06ef

Please sign in to comment.