From 45b676b473e38a5cf4bb85872439003cac46cbc0 Mon Sep 17 00:00:00 2001 From: CvH Date: Sat, 30 Jan 2021 12:32:18 +0100 Subject: [PATCH] [PATCH] Generic: linux: Remove patches included in 5.10.9 --- ...porary_i915_haswell_black_screen_fix.patch | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 projects/Generic/patches/linux/linux-100-temporary_i915_haswell_black_screen_fix.patch diff --git a/projects/Generic/patches/linux/linux-100-temporary_i915_haswell_black_screen_fix.patch b/projects/Generic/patches/linux/linux-100-temporary_i915_haswell_black_screen_fix.patch deleted file mode 100644 index d6c715afd7..0000000000 --- a/projects/Generic/patches/linux/linux-100-temporary_i915_haswell_black_screen_fix.patch +++ /dev/null @@ -1,21 +0,0 @@ - -Starting with kernel 5.7 there are GPU hangs on Intel Haswell CPUs. - -See https://gitlab.freedesktop.org/drm/intel/-/issues/2024 - -Patch set https://patchwork.freedesktop.org/series/74363/ was identified to cause the issue -and is disabled by this patch. The patch and the failing code only affects Haswell CPUs. - -diff --git a/drivers/gpu/drm/i915/gt/intel_ring_submission.c b/drivers/gpu/drm/i915/gt/intel_ring_submission.c -index 68a08486fc87..51545897f1ec 100644 ---- a/drivers/gpu/drm/i915/gt/intel_ring_submission.c -+++ b/drivers/gpu/drm/i915/gt/intel_ring_submission.c -@@ -2083,7 +2083,7 @@ int intel_ring_submission_setup(struct intel_engine_cs *engine) - - GEM_BUG_ON(timeline->hwsp_ggtt != engine->status_page.vma); - -- if (IS_HASWELL(engine->i915) && engine->class == RENDER_CLASS) { -+ if (IS_HASWELL(engine->i915) && engine->class == RENDER_CLASS && 0) { - err = gen7_ctx_switch_bb_init(engine); - if (err) - goto err_ring_unpin;