From patchwork Tue Sep 5 19:36:24 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Sripada, Radhakrishna" X-Patchwork-Id: 13375007 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 6B1D6CA1006 for ; Tue, 5 Sep 2023 19:38:51 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F357C10E498; Tue, 5 Sep 2023 19:38:50 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.120]) by gabe.freedesktop.org (Postfix) with ESMTPS id 38AF310E1AE; Tue, 5 Sep 2023 19:38:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1693942729; x=1725478729; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=UhvgFEm6UyiK4bEr3ZPxGzwMC7S3fNzkTt2gStFiObU=; b=kehWQSlDaSPPIdlBbiUVfgMmKcocYZZ85v7ZQw0ercsQaG6z6rsiEe0b iCAMOWW8ve6AiOxx/gIRC4hUHbQnvzXhhL1i5rQEqQfjvJD3yMAQjZjCL fdX885Vm3SbqbGbrhCOhE/HnIULgSlD6EDArHqUeyUEZz+nWjKGgmrxmC 3P6s5LVJYfHz3p0qIzPk5yMmkRNghmxPxL6CC8MuJI/QRcUltkM1+30UF f4m1wBaEC7MSdsLq4qX2BArHjTRPRsSdmSzPK0BMjguZ9brEsajKKXjA+ OFbb5hCu4kjKkDkdiL/Qd56FhOu4sbfyBMIsPy5wM+K6HiuSYyXhQHHsO A==; X-IronPort-AV: E=McAfee;i="6600,9927,10824"; a="375783683" X-IronPort-AV: E=Sophos;i="6.02,229,1688454000"; d="scan'208";a="375783683" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2023 12:38:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10824"; a="776305620" X-IronPort-AV: E=Sophos;i="6.02,229,1688454000"; d="scan'208";a="776305620" Received: from invictus.jf.intel.com ([10.165.21.201]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2023 12:38:48 -0700 From: Radhakrishna Sripada To: intel-gfx@lists.freedesktop.org Date: Tue, 5 Sep 2023 12:36:24 -0700 Message-Id: <20230905193624.525020-1-radhakrishna.sripada@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH] drm/i915/mtl: Drop force_probe requirement 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: dri-devel@lists.freedesktop.org, rodrigo.vivi@intel.com Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Meteorlake has been very usable for a while now, all of uapi changes related to fundamental platform usage have been finalized and all required firmware blobs are available. Recent CI results have also been healthy, so we're ready to drop the force_probe requirement and enable the platform by default. Cc: Rodrigo Vivi Cc: Tvrtko Ursulin Cc: Joonas Lahtinen Cc: Jani Nikula Signed-off-by: Radhakrishna Sripada --- drivers/gpu/drm/i915/i915_pci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c index df7c261410f7..fe748906c06f 100644 --- a/drivers/gpu/drm/i915/i915_pci.c +++ b/drivers/gpu/drm/i915/i915_pci.c @@ -836,7 +836,6 @@ static const struct intel_device_info mtl_info = { .has_pxp = 1, .memory_regions = REGION_SMEM | REGION_STOLEN_LMEM, .platform_engine_mask = BIT(RCS0) | BIT(BCS0) | BIT(CCS0), - .require_force_probe = 1, MTL_CACHELEVEL, };