]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commit
drm/i915/gen9: Clear residual context state on context switch
authorAkeem G Abodunrin <akeem.g.abodunrin@intel.com>
Tue, 14 Jan 2020 20:46:50 +0000 (20:46 +0000)
committerMarcelo Henrique Cerri <marcelo.cerri@canonical.com>
Tue, 14 Jan 2020 22:57:11 +0000 (19:57 -0300)
commitac9be128ff189f14651b65b2e40f21003ea938b5
tree6351eca4ca11b698ced10fc5caea324ed6b693e6
parentbb2c329ad5411a1e05986177f8bf3e1da0e839bb
drm/i915/gen9: Clear residual context state on context switch

Intel GPU Hardware prior to Gen11 does not clear EU state
during a context switch. This can result in information
leakage between contexts.

For Gen8 and Gen9, hardware provides a mechanism for
fast cleardown of the EU state, by issuing a PIPE_CONTROL
with bit 27 set. We can use this in a context batch buffer
to explicitly cleardown the state on every context switch.

As this workaround is already in place for gen8, we can borrow
the code verbatim for Gen9.

Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Signed-off-by: Akeem G Abodunrin <akeem.g.abodunrin@intel.com>
CVE-2019-14615

(backported from commit bc8a76a152c5f9ef3b48104154a65a68a8b76946)
[tyhicks: Backport to 5.3:
 - Use (i915_scratch_offset(engine->i915) + 2 * CACHELINE_BYTES) in
   place of LRC_PPHWSP_SCRATCH_ADDR and PIPE_CONTROL_GLOBAL_GTT_IVB in
   place of PIPE_CONTROL_STORE_DATA_INDEX since we're missing commit
   e1237523749e ("drm/i915/execlists: Use per-process HWSP as scratch")]
Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
Acked-by: Connor Kuehl <connor.kuehl@canonical.com>
Acked-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
Signed-off-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
drivers/gpu/drm/i915/gt/intel_lrc.c