Skip to content

Commit e95e797

Browse files
committed
drm/i915/rkl: Set transcoder mask properly
Although we properly captured RKL's three pipes in the device info structure, we forgot to make the corresponding update to the transcoder mask. Set this field so that our transcoder loops will operate properly. Fixes: 123f62d ("drm/i915/rkl: Add RKL platform info and PCI ids") Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200603211529.3005059-2-matthew.d.roper@intel.com Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
1 parent ac533c5 commit e95e797

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/gpu/drm/i915/i915_pci.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,8 @@ static const struct intel_device_info rkl_info = {
881881
GEN12_FEATURES,
882882
PLATFORM(INTEL_ROCKETLAKE),
883883
.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
884+
.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
885+
BIT(TRANSCODER_C),
884886
.require_force_probe = 1,
885887
.engine_mask =
886888
BIT(RCS0) | BIT(BCS0) | BIT(VECS0) | BIT(VCS0),

0 commit comments

Comments
 (0)