Skip to content

Commit 27401d1

Browse files
Thomas Danieldanvet
authored andcommitted
drm/i915/bdw: Enable execlists by default where supported
Execlist support in the i915 driver is now considered good enough for the feature to be enabled by default on Gen8 and later and routinely tested. Adjusted i915 parameters structure initialization to reflect this and updated the comment in intel_sanitize_enable_execlists(). There's still work to do before we can let the wider massive onto it, but there's still time left before the 3.20 cutoff. v2: Update the MODULE_PARM_DESC too. Issue: VIZ-2020 Signed-off-by: Thomas Daniel <thomas.daniel@intel.com> [danvet: Add note that there's still some work left to do.] Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
1 parent a712f8e commit 27401d1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

drivers/gpu/drm/i915/i915_params.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct i915_params i915 __read_mostly = {
3535
.vbt_sdvo_panel_type = -1,
3636
.enable_rc6 = -1,
3737
.enable_fbc = -1,
38-
.enable_execlists = 0,
38+
.enable_execlists = -1,
3939
.enable_hangcheck = true,
4040
.enable_ppgtt = -1,
4141
.enable_psr = 0,
@@ -122,7 +122,7 @@ MODULE_PARM_DESC(enable_ppgtt,
122122
module_param_named(enable_execlists, i915.enable_execlists, int, 0400);
123123
MODULE_PARM_DESC(enable_execlists,
124124
"Override execlists usage. "
125-
"(-1=auto, 0=disabled [default], 1=enabled)");
125+
"(-1=auto [default], 0=disabled, 1=enabled)");
126126

127127
module_param_named(enable_psr, i915.enable_psr, int, 0600);
128128
MODULE_PARM_DESC(enable_psr, "Enable PSR (default: false)");

drivers/gpu/drm/i915/intel_lrc.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,7 @@ static int intel_lr_context_pin(struct intel_engine_cs *ring,
212212
* @enable_execlists: value of i915.enable_execlists module parameter.
213213
*
214214
* Only certain platforms support Execlists (the prerequisites being
215-
* support for Logical Ring Contexts and Aliasing PPGTT or better),
216-
* and only when enabled via module parameter.
215+
* support for Logical Ring Contexts and Aliasing PPGTT or better).
217216
*
218217
* Return: 1 if Execlists is supported and has to be enabled.
219218
*/

0 commit comments

Comments
 (0)