From patchwork Fri Feb 18 22:38:53 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas De Marchi X-Patchwork-Id: 12751988 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 21AD8C433EF for ; Fri, 18 Feb 2022 22:38:05 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 79D7310EF6B; Fri, 18 Feb 2022 22:38:04 +0000 (UTC) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 46F5E10EF6B; Fri, 18 Feb 2022 22:38:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645223883; x=1676759883; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=/s1wabFbgc28mlABuCGVtAWgq4f+FmKnM0eC6Yos7Ms=; b=E2m4y/fRbiTXAHEB1u8ln2FCevFlnUzzrZV9RmyMMR0HRIVxMtLYKhPZ jbGuSdlEK5Ufu2ER4M3URYwdkxfAQZ+60dTdkmw7TEcWMKfKADhdsJACz sbAH5hT0rUBmUZ+KLm98X+iAId49j3Z/EiXIkCLTNO4FrX4HgUcSctl6z WAPTRmVH16uJJoU2kI6WP8eq7GyGN2BAmqtKFeAhw1A0OPA6QhGQBtueI T5zAYY2jXyPQpmY/e+wpSizYyvHgTTClclaF3PB+/6mVSJ0KEho/FgbiL 7mPuxPLy3uWVqdn83htXEuptbfzL627fdsatth8kUpntaP9pCCc6KJt0O A==; X-IronPort-AV: E=McAfee;i="6200,9189,10262"; a="311982137" X-IronPort-AV: E=Sophos;i="5.88,380,1635231600"; d="scan'208";a="311982137" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Feb 2022 14:38:02 -0800 X-IronPort-AV: E=Sophos;i="5.88,380,1635231600"; d="scan'208";a="605679282" Received: from lucas-s2600cw.jf.intel.com ([10.165.21.202]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Feb 2022 14:38:01 -0800 From: Lucas De Marchi To: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org Date: Fri, 18 Feb 2022 14:38:53 -0800 Message-Id: <20220218223853.939464-1-lucas.demarchi@intel.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH topic/core-for-CI] drm/i915/dg2: Add relocation exception X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Rodrigo Vivi , Lucas De Marchi , Daniel Vetter , Dave Airlie Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" The move to softpin in igt is ongoing and should land soon. Meanwhile, like was done for ADL and RKL, add an exception to allow running the igt display tests before that conversion is complete so we can unblock CI. Cc: Zbigniew Kempczynski Cc: Dave Airlie Cc: Daniel Vetter Cc: Jason Ekstrand Cc: Rodrigo Vivi Signed-off-by: Lucas De Marchi --- drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c index f8f07d0bd83b..85f4808957b9 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c @@ -504,7 +504,7 @@ static bool platform_has_relocs_enabled(const struct i915_execbuffer *eb) */ if (GRAPHICS_VER(eb->i915) < 12 || IS_TIGERLAKE(eb->i915) || IS_ROCKETLAKE(eb->i915) || IS_ALDERLAKE_S(eb->i915) || - IS_ALDERLAKE_P(eb->i915)) + IS_ALDERLAKE_P(eb->i915) || IS_DG2(eb->i915)) return true; return false;