We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b929c0 commit c5bc073Copy full SHA for c5bc073
drivers/gpu/drm/i915/gt/intel_gt.c
@@ -1109,9 +1109,15 @@ static void mmio_invalidate_full(struct intel_gt *gt)
1109
continue;
1110
1111
if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 50)) {
1112
+ u32 val = BIT(engine->instance);
1113
+
1114
+ if (engine->class == VIDEO_DECODE_CLASS ||
1115
+ engine->class == VIDEO_ENHANCEMENT_CLASS ||
1116
+ engine->class == COMPUTE_CLASS)
1117
+ val = _MASKED_BIT_ENABLE(val);
1118
intel_gt_mcr_multicast_write_fw(gt,
1119
xehp_regs[engine->class],
- BIT(engine->instance));
1120
+ val);
1121
} else {
1122
rb = get_reg_and_bit(engine, regs == gen8_regs, regs, num);
1123
if (!i915_mmio_reg_offset(rb.reg))
0 commit comments